rearrage_stuff

This commit is contained in:
Kim Ravn Hansen
2025-09-16 11:26:40 +02:00
parent 40e8c5e0ab
commit 3f11ebe6dc
4937 changed files with 1146031 additions and 134 deletions

187
node_modules/figlet/.all-contributorsrc generated vendored Normal file
View File

@@ -0,0 +1,187 @@
{
"projectName": "figlet.js",
"projectOwner": "patorjk",
"files": [
"README.md"
],
"commitType": "docs",
"commitConvention": "angular",
"contributorsPerLine": 7,
"contributors": [
{
"login": "patorjk",
"name": "patorjk",
"avatar_url": "https://avatars.githubusercontent.com/u/521224?v=4",
"profile": "http://patorjk.com/",
"contributions": [
"code",
"doc",
"test",
"infra",
"example"
]
},
{
"login": "jcubic",
"name": "Jakub T. Jankiewicz",
"avatar_url": "https://avatars.githubusercontent.com/u/280241?v=4",
"profile": "https://jcu.bi",
"contributions": [
"code",
"doc",
"test"
]
},
{
"login": "tracker1",
"name": "Michael J. Ryan",
"avatar_url": "https://avatars.githubusercontent.com/u/444316?v=4",
"profile": "https://tracker1.dev/",
"contributions": [
"code",
"doc"
]
},
{
"login": "seriousManual",
"name": "Manuel Ernst",
"avatar_url": "https://avatars.githubusercontent.com/u/1330022?v=4",
"profile": "https://github.com/seriousManual",
"contributions": [
"code",
"doc"
]
},
{
"login": "eiriksm",
"name": "Eirik Stanghelle Morland",
"avatar_url": "https://avatars.githubusercontent.com/u/865153?v=4",
"profile": "https://github.com/eiriksm",
"contributions": [
"infra"
]
},
{
"login": "Horhik",
"name": "George",
"avatar_url": "https://avatars.githubusercontent.com/u/46262811?v=4",
"profile": "http://und.ooo",
"contributions": [
"example",
"doc"
]
},
{
"login": "websemantics",
"name": "Adnan M.Sagar, PhD",
"avatar_url": "https://avatars.githubusercontent.com/u/2190455?v=4",
"profile": "http://websemantics.ca",
"contributions": [
"code",
"doc"
]
},
{
"login": "shreemaan-abhishek",
"name": "Abhishek Choudhary",
"avatar_url": "https://avatars.githubusercontent.com/u/61597896?v=4",
"profile": "http://abhishekchoudhary.com.np",
"contributions": [
"doc"
]
},
{
"login": "JasonGoemaat",
"name": "Jason",
"avatar_url": "https://avatars.githubusercontent.com/u/114062?v=4",
"profile": "https://github.com/JasonGoemaat",
"contributions": [
"code",
"doc"
]
},
{
"login": "mbodomi",
"name": "mbodomi",
"avatar_url": "https://avatars.githubusercontent.com/u/390802?v=4",
"profile": "https://github.com/mbodomi",
"contributions": [
"design",
"code"
]
},
{
"login": "orkhan-huseyn",
"name": "Orkhan Huseynli",
"avatar_url": "https://avatars.githubusercontent.com/u/21221412?v=4",
"profile": "https://orkhan-huseyn.github.io",
"contributions": [
"code"
]
},
{
"login": "LetsMelon",
"name": "Domenic Melcher",
"avatar_url": "https://avatars.githubusercontent.com/u/35605787?v=4",
"profile": "https://melcher.io",
"contributions": [
"doc"
]
},
{
"login": "a-raccoon",
"name": "a-raccoon",
"avatar_url": "https://avatars.githubusercontent.com/u/1052090?v=4",
"profile": "https://github.com/a-raccoon",
"contributions": [
"doc"
]
},
{
"login": "pdehaan",
"name": "Peter deHaan",
"avatar_url": "https://avatars.githubusercontent.com/u/557895?v=4",
"profile": "http://about.me/peterdehaan",
"contributions": [
"doc"
]
},
{
"login": "IonicaBizau",
"name": "Ionică Bizău (Johnny B.)",
"avatar_url": "https://avatars.githubusercontent.com/u/2864371?v=4",
"profile": "https://ionicabizau.net",
"contributions": [
"doc"
]
},
{
"login": "t1st3",
"name": "t1st3",
"avatar_url": "https://avatars.githubusercontent.com/u/1469638?v=4",
"profile": "https://www.t1st3.com/",
"contributions": [
"code"
]
},
{
"login": "timhudson",
"name": "Tim Hudson",
"avatar_url": "https://avatars.githubusercontent.com/u/122594?v=4",
"profile": "https://github.com/timhudson",
"contributions": [
"code"
]
},
{
"login": "Lev-Shapiro",
"name": "Lev-Shapiro",
"avatar_url": "https://avatars.githubusercontent.com/u/96536068?v=4",
"profile": "https://github.com/Lev-Shapiro",
"contributions": [
"code",
"example"
]
}
]
}

4
node_modules/figlet/.husky/pre-commit generated vendored Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
npx lint-staged

14
node_modules/figlet/.jshintrc generated vendored Executable file
View File

@@ -0,0 +1,14 @@
{
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"boss": true,
"eqnull": true,
"node": true,
"esversion": 9
}

2
node_modules/figlet/.prettierignore generated vendored Normal file
View File

@@ -0,0 +1,2 @@
fonts
importable-fonts

1
node_modules/figlet/.prettierrc.json generated vendored Normal file
View File

@@ -0,0 +1 @@
{}

8
node_modules/figlet/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,8 @@
language: node_js
node_js:
- "8"
script:
- npm test
before_install: npm install -g grunt-cli

35
node_modules/figlet/Gruntfile.js generated vendored Normal file
View File

@@ -0,0 +1,35 @@
"use strict";
module.exports = function (grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
all: ["Gruntfile.js", "lib/*.js", "<%= nodeunit.tests %>"],
options: {
jshintrc: ".jshintrc",
},
},
// Before generating any new files, remove any previously-created files.
clean: {
tests: ["tmp"],
},
// Unit tests.
nodeunit: {
tests: ["test/*_test.js"],
},
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-contrib-nodeunit");
// Whenever the "test" task is run, first clean the "tmp" dir, then run this
// plugin's task(s), then test the result.
grunt.registerTask("test", ["clean", "nodeunit"]);
// By default, lint and run all tests.
grunt.registerTask("default", ["jshint", "test"]);
};

21
node_modules/figlet/LICENSE.txt generated vendored Normal file
View File

@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (C) 2014-present Patrick Gillespie and other contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

449
node_modules/figlet/README.md generated vendored Normal file
View File

@@ -0,0 +1,449 @@
```
___________.___ ________.__ __ __
\_ _____/| |/ _____/| | _____/ |_ |__| ______
| __) | / \ ___| | _/ __ \ __\ | |/ ___/
| \ | \ \_\ \ |_\ ___/| | | |\___ \
\___ / |___|\______ /____/\___ >__| /\ /\__| /____ >
\/ \/ \/ \/ \______| \/
```
[![Build Status](https://travis-ci.org/patorjk/figlet.js.svg)](https://travis-ci.org/patorjk/figlet.js)
[![NPM Downloads](https://img.shields.io/npm/dt/figlet.svg?style=flat)](https://npmcharts.com/compare/figlet?minimal=true)
This project aims to fully implement the FIGfont spec in JavaScript. It works in the browser and with Node.js. You can see it in action here: http://patorjk.com/software/taag/ (the figlet.js file was written to power that application)
## Quick Start - Node.js
Install:
```sh
npm install figlet
```
Simple usage:
```js
var figlet = require("figlet");
figlet("Hello World!!", function (err, data) {
if (err) {
console.log("Something went wrong...");
console.dir(err);
return;
}
console.log(data);
});
```
That should print out:
```
_ _ _ _ __ __ _ _ _ _
| | | | ___| | | ___ \ \ / /__ _ __| | __| | | |
| |_| |/ _ \ | |/ _ \ \ \ /\ / / _ \| '__| |/ _` | | |
| _ | __/ | | (_) | \ V V / (_) | | | | (_| |_|_|
|_| |_|\___|_|_|\___/ \_/\_/ \___/|_| |_|\__,_(_|_)
```
## Basic Usage - Node.js
### text
Calling the figlet object as a function is shorthand for calling the text function. This method allows you to create ASCII Art from text. It takes in 3 parameters:
- Input Text - A string of text to turn into ASCII Art.
- Options - Either a string indicating the font name or an options object (description below).
- Callback - Optional function to execute with the generated ASCII Art.
- Return value is a promise that resolves to generated ASCII Art.
Example:
```js
figlet.text(
"Boo!",
{
font: "Ghost",
horizontalLayout: "default",
verticalLayout: "default",
width: 80,
whitespaceBreak: true,
},
function (err, data) {
if (err) {
console.log("Something went wrong...");
console.dir(err);
return;
}
console.log(data);
}
);
```
That will print out:
```
.-. .-') ,---.
\ ( OO ) | |
;-----.\ .-'),-----. .-'),-----. | |
| .-. | ( OO' .-. '( OO' .-. '| |
| '-' /_)/ | | | |/ | | | || |
| .-. `. \_) | |\| |\_) | |\| || .'
| | \ | \ | | | | \ | | | |`--'
| '--' / `' '-' ' `' '-' '.--.
`------' `-----' `-----' '--'
```
Similary you can use Promise API:
```js
try {
console.log(
await figlet.text("Boo!", {
font: "Ghost",
horizontalLayout: "default",
verticalLayout: "default",
width: 80,
whitespaceBreak: true,
})
);
} catch (err) {
console.log("Something went wrong...");
console.dir(err);
}
```
This will print the same output.
### textSync
This method is the synchronous version of the method above.
- Input Text - A string of text to turn into ASCII Art.
- Font Options - Either a string indicating the font name or an options object (description below).
Example:
```js
console.log(
figlet.textSync("Boo!", {
font: "Ghost",
horizontalLayout: "default",
verticalLayout: "default",
width: 80,
whitespaceBreak: true,
})
);
```
That will print out:
```
.-. .-') ,---.
\ ( OO ) | |
;-----.\ .-'),-----. .-'),-----. | |
| .-. | ( OO' .-. '( OO' .-. '| |
| '-' /_)/ | | | |/ | | | || |
| .-. `. \_) | |\| |\_) | |\| || .'
| | \ | \ | | | | \ | | | |`--'
| '--' / `' '-' ' `' '-' '.--.
`------' `-----' `-----' '--'
```
### Options
The options object has several parameters which you can set:
#### font
Type: `String`
Default value: `'Standard'`
A string value that indicates the FIGlet font to use.
#### horizontalLayout
Type: `String`
Default value: `'default'`
A string value that indicates the horizontal layout to use. FIGlet fonts have 5 possible values for this: "default", "full", "fitted", "controlled smushing", and "universal smushing". "default" does the kerning the way the font designer intended, "full" uses full letter spacing, "fitted" moves the letters together until they almost touch, and "controlled smushing" and "universal smushing" are common FIGlet kerning setups.
#### verticalLayout
Type: `String`
Default value: `'default'`
A string value that indicates the vertical layout to use. FIGlet fonts have 5 possible values for this: "default", "full", "fitted", "controlled smushing", and "universal smushing". "default" does the kerning the way the font designer intended, "full" uses full letter spacing, "fitted" moves the letters together until they almost touch, and "controlled smushing" and "universal smushing" are common FIGlet kerning setups.
#### width
Type: `Number`
Default value: `undefined`
This option allows you to limit the width of the output. For example, if you want your output to be a max of 80 characters wide, you would set this option to 80. [Example](https://github.com/patorjk/figlet.js/blob/master/examples/front-end/index.htm)
#### whitespaceBreak
Type: `Boolean`
Default value: `false`
This option works in conjunction with "width". If this option is set to true, then the library will attempt to break text up on whitespace when limiting the width. [Example](https://github.com/patorjk/figlet.js/blob/master/examples/front-end/index.htm)
### Understanding Kerning
The 2 layout options allow you to override a font's default "kerning". Below you can see how this effects the text. The string "Kerning" was printed using the "Standard" font with horizontal layouts of "default", "fitted" and then "full".
```
_ __ _
| |/ /___ _ __ _ __ (_)_ __ __ _
| ' // _ \ '__| '_ \| | '_ \ / _` |
| . \ __/ | | | | | | | | | (_| |
|_|\_\___|_| |_| |_|_|_| |_|\__, |
|___/
_ __ _
| |/ / ___ _ __ _ __ (_) _ __ __ _
| ' / / _ \| '__|| '_ \ | || '_ \ / _` |
| . \| __/| | | | | || || | | || (_| |
|_|\_\\___||_| |_| |_||_||_| |_| \__, |
|___/
_ __ _
| |/ / ___ _ __ _ __ (_) _ __ __ _
| ' / / _ \ | '__| | '_ \ | | | '_ \ / _` |
| . \ | __/ | | | | | | | | | | | | | (_| |
|_|\_\ \___| |_| |_| |_| |_| |_| |_| \__, |
|___/
```
In most cases you'll either use the default setting or the "fitted" setting. Most fonts don't support vertical kerning, but a hand full of them do (like the "Standard" font).
### metadata
The metadata function allows you to retrieve a font's default options and header comment. Example usage:
```js
figlet.metadata("Standard", function (err, options, headerComment) {
if (err) {
console.log("something went wrong...");
console.dir(err);
return;
}
console.dir(options);
console.log(headerComment);
});
```
The function also return a promise that return an array with two values:
```js
try {
const [options, headerComment] = await figlet.metadata("Standard");
console.dir(options);
console.log(headerComment);
} catch (err) {
console.log("something went wrong...");
console.dir(err);
}
```
### fonts
The fonts function allows you to get a list of all of the available fonts. Example usage:
```js
figlet.fonts(function (err, fonts) {
if (err) {
console.log("something went wrong...");
console.dir(err);
return;
}
console.dir(fonts);
});
```
`fonts` is Node.js only.
### fontsSync
The synchronous version of the fonts method
```js
console.log(figlet.fontsSync());
```
same as `fonts`, `fontsSync` is Node.js only.
### parseFont
Allows you to use a font from another source.
```js
const fs = require("fs");
const path = require("path");
let data = fs.readFileSync(path.join(__dirname, "myfont.flf"), "utf8");
figlet.parseFont("myfont", data);
console.log(figlet.textSync("myfont!", "myfont"));
```
## Getting Started - Webpack / React
Webpack/React usage will be very similar to what's talked about in the "Getting Started - The Browser" section. The main difference is that you import fonts via the importable-fonts folder. Example:
```js
import figlet from "figlet";
import standard from "figlet/importable-fonts/Standard.js";
figlet.parseFont("Standard", standard);
figlet.text(
"test",
{
font: "Standard",
},
function (err, data) {
console.log(data);
}
);
```
## Getting Started - The Browser
The browser API is the same as the Node API with the exception of the "fonts" method not being available. The browser version also requires [fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) (or a [shim](https://github.com/github/fetch)) for its loadFont function.
Example usage:
```html
<script
type="text/javascript"
src="//cdnjs.cloudflare.com/ajax/libs/fetch/1.0.0/fetch.min.js"
></script>
<script type="text/javascript" src="figlet.js"></script>
<script>
figlet(inputText, "Standard", function (err, text) {
if (err) {
console.log("something went wrong...");
console.dir(err);
return;
}
console.log(text);
});
</script>
```
### textSync
The browser API supports synchronous mode so long as fonts used are preloaded.
Example:
```js
figlet.defaults({ fontPath: "assets/fonts" });
figlet.preloadFonts(["Standard", "Ghost"], ready);
function ready() {
console.log(figlet.textSync("ASCII"));
console.log(figlet.textSync("Art", "Ghost"));
}
```
That will print out:
```
_ ____ ____ ___ ___
/ \ / ___| / ___||_ _||_ _|
/ _ \ \___ \ | | | | | |
/ ___ \ ___) || |___ | | | |
/_/ \_\|____/ \____||___||___|
('-. _ .-') .-') _
( OO ).-.( \( -O ) ( OO) )
/ . --. / ,------. / '._
| \-. \ | /`. '|'--...__)
.-'-' | | | / | |'--. .--'
\| |_.' | | |_.' | | |
| .-. | | . '.' | |
| | | | | |\ \ | |
`--' `--' `--' '--' `--'
```
See the examples folder for a more robust front-end example.
## Getting Started - Command Line
To use figlet.js on the command line, install figlet-cli:
```sh
npm install -g figlet-cli
```
And then you should be able run from the command line. Example:
```sh
figlet -f "Dancing Font" "Hi"
```
For more info see the [figlet-cli](https://github.com/patorjk/figlet-cli).
## Contributors
Thanks goes to these people: ([emoji key](https://allcontributors.org/docs/en/emoji-key))
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://patorjk.com/"><img src="https://avatars.githubusercontent.com/u/521224?v=4?s=100" width="100px;" alt="patorjk"/><br /><sub><b>patorjk</b></sub></a><br /><a href="#code-patorjk" title="Code">💻</a> <a href="#doc-patorjk" title="Documentation">📖</a> <a href="#test-patorjk" title="Tests">⚠️</a> <a href="#infra-patorjk" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#example-patorjk" title="Examples">💡</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jcu.bi"><img src="https://avatars.githubusercontent.com/u/280241?v=4?s=100" width="100px;" alt="Jakub T. Jankiewicz"/><br /><sub><b>Jakub T. Jankiewicz</b></sub></a><br /><a href="#code-jcubic" title="Code">💻</a> <a href="#doc-jcubic" title="Documentation">📖</a> <a href="#test-jcubic" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://tracker1.dev/"><img src="https://avatars.githubusercontent.com/u/444316?v=4?s=100" width="100px;" alt="Michael J. Ryan"/><br /><sub><b>Michael J. Ryan</b></sub></a><br /><a href="#code-tracker1" title="Code">💻</a> <a href="#doc-tracker1" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/seriousManual"><img src="https://avatars.githubusercontent.com/u/1330022?v=4?s=100" width="100px;" alt="Manuel Ernst"/><br /><sub><b>Manuel Ernst</b></sub></a><br /><a href="#code-seriousManual" title="Code">💻</a> <a href="#doc-seriousManual" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/eiriksm"><img src="https://avatars.githubusercontent.com/u/865153?v=4?s=100" width="100px;" alt="Eirik Stanghelle Morland"/><br /><sub><b>Eirik Stanghelle Morland</b></sub></a><br /><a href="#infra-eiriksm" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://und.ooo"><img src="https://avatars.githubusercontent.com/u/46262811?v=4?s=100" width="100px;" alt="George"/><br /><sub><b>George</b></sub></a><br /><a href="#example-Horhik" title="Examples">💡</a> <a href="#doc-Horhik" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://websemantics.ca"><img src="https://avatars.githubusercontent.com/u/2190455?v=4?s=100" width="100px;" alt="Adnan M.Sagar, PhD"/><br /><sub><b>Adnan M.Sagar, PhD</b></sub></a><br /><a href="#code-websemantics" title="Code">💻</a> <a href="#doc-websemantics" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://abhishekchoudhary.com.np"><img src="https://avatars.githubusercontent.com/u/61597896?v=4?s=100" width="100px;" alt="Abhishek Choudhary"/><br /><sub><b>Abhishek Choudhary</b></sub></a><br /><a href="#doc-shreemaan-abhishek" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JasonGoemaat"><img src="https://avatars.githubusercontent.com/u/114062?v=4?s=100" width="100px;" alt="Jason"/><br /><sub><b>Jason</b></sub></a><br /><a href="#code-JasonGoemaat" title="Code">💻</a> <a href="#doc-JasonGoemaat" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mbodomi"><img src="https://avatars.githubusercontent.com/u/390802?v=4?s=100" width="100px;" alt="mbodomi"/><br /><sub><b>mbodomi</b></sub></a><br /><a href="#design-mbodomi" title="Design">🎨</a> <a href="#code-mbodomi" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://orkhan-huseyn.github.io"><img src="https://avatars.githubusercontent.com/u/21221412?v=4?s=100" width="100px;" alt="Orkhan Huseynli"/><br /><sub><b>Orkhan Huseynli</b></sub></a><br /><a href="#code-orkhan-huseyn" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://melcher.io"><img src="https://avatars.githubusercontent.com/u/35605787?v=4?s=100" width="100px;" alt="Domenic Melcher"/><br /><sub><b>Domenic Melcher</b></sub></a><br /><a href="#doc-LetsMelon" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/a-raccoon"><img src="https://avatars.githubusercontent.com/u/1052090?v=4?s=100" width="100px;" alt="a-raccoon"/><br /><sub><b>a-raccoon</b></sub></a><br /><a href="#doc-a-raccoon" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://about.me/peterdehaan"><img src="https://avatars.githubusercontent.com/u/557895?v=4?s=100" width="100px;" alt="Peter deHaan"/><br /><sub><b>Peter deHaan</b></sub></a><br /><a href="#doc-pdehaan" title="Documentation">📖</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://ionicabizau.net"><img src="https://avatars.githubusercontent.com/u/2864371?v=4?s=100" width="100px;" alt="Ionică Bizău (Johnny B.)"/><br /><sub><b>Ionică Bizău (Johnny B.)</b></sub></a><br /><a href="#doc-IonicaBizau" title="Documentation">📖</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.t1st3.com/"><img src="https://avatars.githubusercontent.com/u/1469638?v=4?s=100" width="100px;" alt="t1st3"/><br /><sub><b>t1st3</b></sub></a><br /><a href="#code-t1st3" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/timhudson"><img src="https://avatars.githubusercontent.com/u/122594?v=4?s=100" width="100px;" alt="Tim Hudson"/><br /><sub><b>Tim Hudson</b></sub></a><br /><a href="#code-timhudson" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Lev-Shapiro"><img src="https://avatars.githubusercontent.com/u/96536068?v=4?s=100" width="100px;" alt="Lev-Shapiro"/><br /><sub><b>Lev-Shapiro</b></sub></a><br /><a href="#code-Lev-Shapiro" title="Code">💻</a> <a href="#example-Lev-Shapiro" title="Examples">💡</a></td>
</tr>
</tbody>
</table>
<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->
<!-- ALL-CONTRIBUTORS-LIST:END -->
## Release History
- 2025.07.11 v1.8.2 Added Terrace and Wavescape fonts. Fixed tag validation (https://github.com/patorjk/figlet.js/pull/134) thanks to @deverac
- 2025.04.11 v1.8.1 Added miniwi font.
- 2024.10.08 v1.8.0 Added support for promises for loadFont, preloadedFonts, and metadata methods. 5 fonts added: DiamFont, RubiFont, CosMike2, BlurVision ASCII, and Shaded Blocky.
- 2023.10.01 v1.7.0 Added support for promises for text method.
- 2023.04.08 v1.6.0 Added npx support (ex: npx figlet test).
- 2021.08.11 v1.5.2 Minor bug fixes.
- 2020.07.12 v1.5.1 Fixed with vertical smushing, updated lodash version.
- 2020.07.12 v1.5.0 Added width and whitespaceBreak options.
- 2020.04.26 v1.4.0 Removed jQuery from preloader and examples.
- 2020.02.23 v1.3.0 Added the "ANSI Regular" font and updated the README with info on how to use with Webpack.
- 2018.03.26 v1.2.1 parseFont works in node for adding fonts manually
- 2016.09.27 v1.2.0 jQuery replaced with fetch API / polyfill.
- 2016.04.28 v1.1.2 textSync now works in the browser with font pre-loading.
- 2014.08.15 v1.1.0 Sync functions added.
- 2014.07.31 v1.0.1 Bug fixes.
- 2013.12.28 v1.0.7 README update and minor tweaks.
- 2013.01.02 v1.0.8 Added tests and command line info.

3
node_modules/figlet/action.yml generated vendored Normal file
View File

@@ -0,0 +1,3 @@
name: All Contributors Auto Action
uses: JoshuaKGoldberg/all-contributors-auto-action@v0.3.2

15
node_modules/figlet/bin/index.js generated vendored Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env node
const figlet = require("../lib/node-figlet");
const [text] = process.argv.slice(2);
if (!text) {
throw new Error("You need to provide some text.");
}
figlet(text, function (err, formattedText) {
if (err) {
throw err;
}
console.log(formattedText);
});

1683
node_modules/figlet/doc/figfont.txt generated vendored Normal file

File diff suppressed because it is too large Load Diff

173
node_modules/figlet/examples/front-end/index.htm generated vendored Normal file
View File

@@ -0,0 +1,173 @@
<!DOCTYPE html>
<html>
<head>
<title>FIGlet Example</title>
</head>
<body>
<div>
<label for="font">Font:</label>
<select id="font">
<option value="3D Diagonal">3D Diagonal</option>
<option value="Dancing Font">Dancing Font</option>
<option value="Ghost">Ghost</option>
<option value="Graffiti">Graffiti</option>
<option value="Patorjk's Cheese">Patorjk's Cheese</option>
<option value="Standard" selected>Standard</option>
<option value="Pagga">Pagga</option>
<option value="Pawp">Pawp</option>
</select>
</div>
<div>
<label for="hLayout">Horizontal Layout:</label>
<select id="hLayout">
<option value="default" selected>Default</option>
<option value="full">Full</option>
<option value="fitted">Fitted</option>
<option value="controlled smushing">Controlled Smushing</option>
<option value="universal smushing">Universal Smushing</option>
</select>
</div>
<div>
<label for="vLayout">Vertical Layout:</label>
<select id="vLayout">
<option value="default" selected>Default</option>
<option value="full">Full</option>
<option value="fitted">Fitted</option>
<option value="controlled smushing">Controlled Smushing</option>
<option value="universal smushing">Universal Smushing</option>
</select>
</div>
<div>
<label for="width">Width:</label>
<select id="width">
<option value="none">none</option>
<option value="40" selected>40</option>
<option value="41">41</option>
<option value="42">42</option>
<option value="43">43</option>
<option value="44">44</option>
<option value="45">45</option>
<option value="80">80</option>
<option value="81">81</option>
<option value="100">100</option>
</select>
</div>
<div>
<label for="whitespaceBreak">Break on Whitespace (if width set):</label>
<select id="whitespaceBreak">
<option value="false">false</option>
<option value="true" selected>true</option>
</select>
</div>
<div>
<label for="inputText">Input:</label>
</div>
<textarea id="inputText" style="height: 100px; width: 200px">
test
123</textarea
>
<p></p>
<div>
<label for="outputFigDisplay">Output</label>
</div>
<pre>
0000000000111111111122222222223333333333444444444455555555556666666666777777777788888888889999999999</pre
>
<div id="outputFigDisplay"></div>
<script type="text/javascript" src="../../lib/figlet.js?1"></script>
<script>
if (window.location.protocol === "file:") {
alert("fetch APi does not support file: protocol.");
}
figlet.defaults({
fontPath: "../../fonts",
});
figlet.preloadFonts(["Standard", "Ghost"], function () {
console.log("prefetching done (only did it for 2 fonts)!");
});
/*
Generates the put
*/
var update = function () {
var fontName = document.querySelector("#font option:checked").value,
inputText = document.querySelector("#inputText").value,
vLayout = document.querySelector("#vLayout option:checked").value,
hLayout = document.querySelector("#hLayout option:checked").value,
width = document.querySelector("#width option:checked").value,
whitespaceBreak = document.querySelector(
"#whitespaceBreak option:checked"
).value;
/*
How to use the text output.
The below call could also have been: figlet.text(...
*/
figlet(
inputText,
{
font: fontName,
horizontalLayout: hLayout,
verticalLayout: vLayout,
width: width === "none" ? undefined : width,
whitespaceBreak:
width === "none"
? undefined
: whitespaceBreak === "true"
? true
: false,
},
function (err, text) {
if (err) {
console.log("something went wrong...");
console.dir(err);
return;
}
document.querySelector("#outputFigDisplay").innerHTML =
"<pre>" + text + "</pre>";
}
);
/*
How to read the metadata for a font
*/
/*
figlet.metadata(fontName, function(err, options, headerComment) {
if (err) {
console.log('something went wrong...');
console.dir(err);
return;
}
console.dir(options);
console.log(headerComment);
});
*/
};
/*
GUI Controls
*/
document.querySelector("#hLayout").addEventListener("change", update);
document.querySelector("#vLayout").addEventListener("change", update);
document.querySelector("#font").addEventListener("change", update);
document.querySelector("#inputText").addEventListener("keyup", update);
document.querySelector("#width").addEventListener("change", update);
document
.querySelector("#whitespaceBreak")
.addEventListener("change", update);
update(); // init
</script>
</body>
</html>

50
node_modules/figlet/examples/node/app.js generated vendored Normal file
View File

@@ -0,0 +1,50 @@
/*
Example
*/
var figlet = require("../../lib/node-figlet.js");
/*
Once this has been run:
npm install figlet
Use the below line instead of the above line
*/
// var figlet = require('figlet');
(async () => {
const helloWorld = await figlet("Async World!", "Standard");
console.log(helloWorld);
const example2 = await figlet.text("Async Example", "Graffiti");
console.log(example2);
const example3 = await figlet.text("Bonus Example.", {
font: "Standard",
horizontalLayout: "full",
verticalLayout: "full",
});
console.log(example3);
figlet("Callback World!", "Standard", function (err, data) {
if (err) {
console.log("Something went wrong...");
console.dir(err);
return;
}
console.log(data);
figlet.text("Callback Example", "Graffiti", function (err, data) {
if (err) {
console.log("Something went wrong...");
console.dir(err);
return;
}
console.log(data);
});
});
})();

24
node_modules/figlet/examples/node/appSync.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
/*
Example
*/
var figlet = require("../../lib/node-figlet.js");
/*
Once this has been run:
npm install figlet
Use the below line instead of the above line
*/
// var figlet = require('figlet');
console.log(figlet.textSync("Hello World!", "Standard"));
console.log(figlet.textSync("Again, Hello World!", "Graffiti"));
console.log(
figlet.textSync("Last time...", {
font: "Standard",
horizontalLayout: "full",
verticalLayout: "full",
})
);

218
node_modules/figlet/fonts/1Row.flf generated vendored Normal file
View File

@@ -0,0 +1,218 @@
flf2a$ 2 1 8 -1 13
1row font by unknown
=======================
-> Conversion to FigLet font by MEPH. (Part of ASCII Editor Service Pack I)
(http://studenten.freepage.de/meph/ascii/editor/_index.htm)
-> Defined: ASCII code alphanumeric
-> Uppercase characters only.
Was a part of a '1row' font collection. Author unknown.
$@
$@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
(\) @
@@
'| @
@@
^/_ @
@@
-} @
@@
+| @
@@
;~ @
@@
(o @
@@
"/ @
@@
{} @
@@
"| @
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
/\ @
@@
]3 @
@@
( @
@@
|) @
@@
[- @
@@
/= @
@@
(_, @
@@
|-| @
@@
| @
@@
_T @
@@
/< @
@@
|_ @
@@
|\/| @
@@
|\| @
@@
() @
@@
|^ @
@@
()_ @
@@
/? @
@@
_\~ @
@@
~|~ @
@@
|_| @
@@
\/ @
@@
\/\/ @
@@
>< @
@@
`/ @
@@
~/_ @
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
/\ @
@@
]3 @
@@
( @
@@
|) @
@@
[- @
@@
/= @
@@
(_, @
@@
|-| @
@@
| @
@@
_T @
@@
/< @
@@
|_ @
@@
|\/| @
@@
|\| @
@@
() @
@@
|^ @
@@
()_ @
@@
/? @
@@
_\~ @
@@
~|~ @
@@
|_| @
@@
\/ @
@@
\/\/ @
@@
>< @
@@
`/ @
@@
~/_ @
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@

823
node_modules/figlet/fonts/3-D.flf generated vendored Normal file
View File

@@ -0,0 +1,823 @@
flf2a$ 8 8 20 -1 6
3-D font created by Daniel Henninger <dahennin@eos.ncsu.edu>
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
**@
/**@
/**@
/**@
/**@
// @
**@
// @@
* *@
/* /*@
/ / @
@
@
@
@
@@
@
** ** @
************@
///**////**/ @
/** /** @
************@
///**////**/ @
// // @@
* @
*****@
/*/*/ @
/*****@
///*/*@
*****@
///*/ @
/ @@
@
** ** @
// ** @
** @
** @
** @
** ** @
// // @@
** @
*/ * @
/ ** @
*/ * *@
* / * @
/* /* @
/ **** *@
//// / @@
**@
//*@
/ @
@
@
@
@
@@
**@
** @
** @
/** @
/** @
//** @
//**@
// @@
** @
//** @
//**@
/**@
/**@
** @
** @
// @@
** @
** /** ** @
//** /** ** @
**************@
///**//**//**/ @
** /** //** @
// /** // @
// @@
@
* @
/* @
*********@
/////*/// @
/* @
/ @
@@
@
@
@
@
@
**@
//*@
/ @@
@
@
@
*****@
///// @
@
@
@@
@
@
@
@
@
**@
/**@
// @@
**@
** @
** @
** @
** @
** @
** @
// @@
**** @
*///**@
/* */*@
/* * /*@
/** /*@
/* /*@
/ **** @
//// @@
** @
*** @
//** @
/** @
/** @
/** @
****@
//// @@
**** @
*/// *@
/ /*@
*** @
*// @
* @
/******@
////// @@
**** @
*/// *@
/ /*@
*** @
/// *@
* /*@
/ **** @
//// @@
** @
*/* @
* /* @
******@
/////* @
/* @
/* @
/ @@
******@
/*//// @
/***** @
///// *@
/*@
* /*@
/ **** @
//// @@
**** @
*/// *@
/* / @
/***** @
/*/// *@
/* /*@
/ **** @
//// @@
******@
//////*@
/*@
* @
* @
* @
* @
/ @@
**** @
*/// *@
/* /*@
/ **** @
*/// *@
/* /*@
/ **** @
//// @@
**** @
*/// *@
/* /*@
/ **** @
///* @
* @
* @
/ @@
@
@
@
@
**@
// @
**@
// @@
@
@
@
**@
// @
**@
//*@
/ @@
**@
**/ @
**/ @
**/ @
// ** @
// ** @
// **@
// @@
@
@
******@
////// @
******@
////// @
@
@@
** @
// ** @
// ** @
// **@
**/ @
**/ @
**/ @
// @@
**** @
**//**@
/** /**@
// ** @
** @
// @
** @
// @@
**** @
*/// *@
/* **/*@
/*/* /*@
/*/ ** @
/* // @
/ *****@
///// @@
** @
**** @
**//** @
** //** @
**********@
/**//////**@
/** /**@
// // @@
****** @
/*////** @
/* /** @
/****** @
/*//// **@
/* /**@
/******* @
/////// @@
****** @
**////**@
** // @
/** @
/** @
//** **@
//****** @
////// @@
******* @
/**////** @
/** /**@
/** /**@
/** /**@
/** ** @
/******* @
/////// @@
********@
/**///// @
/** @
/******* @
/**//// @
/** @
/********@
//////// @@
********@
/**///// @
/** @
/******* @
/**//// @
/** @
/** @
// @@
******** @
**//////**@
** // @
/** @
/** *****@
//** ////**@
//******** @
//////// @@
** **@
/** /**@
/** /**@
/**********@
/**//////**@
/** /**@
/** /**@
// // @@
**@
/**@
/**@
/**@
/**@
/**@
/**@
// @@
**@
/**@
/**@
/**@
/**@
** /**@
//***** @
///// @@
** **@
/** ** @
/** ** @
/**** @
/**/** @
/**//** @
/** //**@
// // @@
** @
/** @
/** @
/** @
/** @
/** @
/********@
//////// @@
**** ****@
/**/** **/**@
/**//** ** /**@
/** //*** /**@
/** //* /**@
/** / /**@
/** /**@
// // @@
**** **@
/**/** /**@
/**//** /**@
/** //** /**@
/** //**/**@
/** //****@
/** //***@
// /// @@
******* @
**/////** @
** //**@
/** /**@
/** /**@
//** ** @
//******* @
/////// @@
******* @
/**////**@
/** /**@
/******* @
/**//// @
/** @
/** @
// @@
******* @
**/////** @
** //** @
/** /** @
/** **/** @
//** // ** @
//******* **@
/////// // @@
******* @
/**////** @
/** /** @
/******* @
/**///** @
/** //** @
/** //**@
// // @@
********@
**////// @
/** @
/*********@
////////**@
/**@
******** @
//////// @@
**********@
/////**/// @
/** @
/** @
/** @
/** @
/** @
// @@
** **@
/** /**@
/** /**@
/** /**@
/** /**@
/** /**@
//******* @
/////// @@
** **@
/** /**@
/** /**@
//** ** @
//** ** @
//**** @
//** @
// @@
** **@
/** /**@
/** * /**@
/** *** /**@
/** **/**/**@
/**** //****@
/**/ ///**@
// // @@
** **@
//** ** @
//** ** @
//*** @
**/** @
** //** @
** //**@
// // @@
** **@
//** ** @
//**** @
//** @
/** @
/** @
/** @
// @@
********@
//////** @
** @
** @
** @
** @
********@
//////// @@
*****@
/**// @
/** @
/** @
/** @
/** @
/*****@
///// @@
** @
//** @
//** @
//** @
//** @
//** @
//**@
// @@
*****@
////**@
/**@
/**@
/**@
/**@
*****@
///// @@
** @
**/ ** @
** // **@
// // @
@
@
@
@@
@
@
@
@
@
@
*****@
///// @@
**@
/* @
/ @
@
@
@
@
@@
@
@
****** @
//////** @
******* @
**////** @
//********@
//////// @@
** @
/** @
/** @
/****** @
/**///**@
/** /**@
/****** @
///// @@
@
@
***** @
**///**@
/** // @
/** **@
//***** @
///// @@
**@
/**@
/**@
******@
**///**@
/** /**@
//******@
////// @@
@
@
***** @
**///**@
/*******@
/**//// @
//******@
////// @@
****@
/**/ @
******@
///**/ @
/** @
/** @
/** @
// @@
@
***** @
**///**@
/** /**@
//******@
/////**@
***** @
///// @@
** @
/** @
/** @
/****** @
/**///**@
/** /**@
/** /**@
// // @@
**@
// @
**@
/**@
/**@
/**@
/**@
// @@
**@
// @
**@
/**@
/**@
**/**@
//*** @
/// @@
** @
/** @
/** **@
/** ** @
/**** @
/**/** @
/**//**@
// // @@
**@
/**@
/**@
/**@
/**@
/**@
***@
/// @@
@
@
********** @
//**//**//**@
/** /** /**@
/** /** /**@
*** /** /**@
/// // // @@
@
@
******* @
//**///**@
/** /**@
/** /**@
*** /**@
/// // @@
@
@
****** @
**////**@
/** /**@
/** /**@
//****** @
////// @@
@
****** @
/**///**@
/** /**@
/****** @
/**/// @
/** @
// @@
@
**** @
**//** @
/** /** @
//***** @
////** @
/***@
/// @@
@
@
******@
//**//*@
/** / @
/** @
/*** @
/// @@
@
@
******@
**//// @
//***** @
/////**@
****** @
////// @@
** @
/** @
******@
///**/ @
/** @
/** @
//** @
// @@
@
@
** **@
/** /**@
/** /**@
/** /**@
//******@
////// @@
@
@
** **@
/** /**@
//** /** @
//**** @
//** @
// @@
@
@
*** **@
//** * /**@
/** ***/**@
/****/****@
***/ ///**@
/// /// @@
@
@
** **@
//** ** @
//*** @
**/** @
** //**@
// // @@
@
** **@
//** ** @
//*** @
/** @
** @
** @
// @@
@
@
******@
////** @
** @
** @
******@
////// @@
***@
**/ @
/** @
*** @
///** @
/** @
//***@
/// @@
*@
/*@
/*@
/ @
*@
/*@
/*@
/ @@
*** @
///** @
/** @
//***@
**/ @
/** @
*** @
/// @@
** *** @
//***//**@
/// // @
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@

1670
node_modules/figlet/fonts/3D Diagonal.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

1028
node_modules/figlet/fonts/3D-ASCII.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

617
node_modules/figlet/fonts/3x5.flf generated vendored Normal file
View File

@@ -0,0 +1,617 @@
flf2a$ 6 4 6 -1 4
3x5 font by Richard Kirk (rak@crosfield.co.uk).
Ported to figlet, and slightly changed (without permission :-})
by Daniel Cabeza Gras (bardo@dia.fi.upm.es)
@
@
@
@
@
@@
@
# @
# @
# @
@
# @@
@
# # @
# # @
@
@
@@
@
# # @
### @
# # @
### @
# # @@
@
## @
## @
### @
## @
## @@
@
# # @
# @
# @
# @
# # @@
@
# @
# @
## @
# # @
### @@
@
# @
# @
# @
@
@@
@
# @
# @
# @
# @
# @@
@
# @
# @
# @
# @
# @@
@
# @
### @
# @
### @
# @@
@
@
# @
### @
# @
@@
@
@
@
@
# @
# @@
@
@
@
### @
@
@@
@
@
@
@
@
# @@
@
# @
# @
# @
# @
# @@
@
### @
# # @
# # @
# # @
### @@
@
# @
## @
# @
# @
### @@
@
### @
# @
### @
# @
### @@
@
### @
# @
## @
# @
### @@
@
# # @
# # @
### @
# @
# @@
@
### @
# @
### @
# @
### @@
@
### @
# @
### @
# # @
### @@
@
### @
# @
# @
# @
# @@
@
### @
# # @
### @
# # @
### @@
@
### @
# # @
### @
# @
### @@
@
@
# @
@
# @
@@
@
@
# @
@
# @
# @@
@
# @
# @
# @
# @
# @@
@
@
### @
@
### @
@@
@
# @
# @
# @
# @
# @@
@
### @
# @
## @
@
# @@
@
### @
# # @
# @
### @
@@
@
# @
# # @
### @
# # @
# # @@
@
## @
# # @
## @
# # @
## @@
@
## @
# @
# @
# @
## @@
@
## @
# # @
# # @
# # @
## @@
@
### @
# @
## @
# @
### @@
@
### @
# @
## @
# @
# @@
@
## @
# @
# # @
# # @
## @@
@
# # @
# # @
### @
# # @
# # @@
@
### @
# @
# @
# @
### @@
@
## @
# @
# @
# # @
# @@
@
# # @
# # @
## @
# # @
# # @@
@
# @
# @
# @
# @
### @@
@
# # @
### @
### @
# # @
# # @@
@
### @
# # @
# # @
# # @
# # @@
@
# @
# # @
# # @
# # @
# @@
@
## @
# # @
## @
# @
# @@
@
# @
# # @
# # @
## @
# @@
@
## @
# # @
## @
# # @
# # @@
@
## @
# @
# @
# @
## @@
@
### @
# @
# @
# @
# @@
@
# # @
# # @
# # @
# # @
### @@
@
# # @
# # @
# # @
# # @
# @@
@
# # @
# # @
### @
### @
# # @@
@
# # @
# # @
# @
# # @
# # @@
@
# # @
# # @
# @
# @
# @@
@
### @
# @
# @
# @
### @@
@
## @
# @
# @
# @
## @@
@
# @
# @
# @
# @
# @@
@
## @
# @
# @
# @
## @@
@
# @
# # @
@
@
@@
@
@
@
@
@
### @@
@
# @
# @
# @
@
@@
@
@
## @
# # @
### @
@@
@
# @
### @
# # @
### @
@@
@
@
### @
# @
### @
@@
@
# @
### @
# # @
### @
@@
@
@
### @
## @
### @
@@
@
## @
# @
### @
# @
## @@
@
@
### @
# # @
## @
### @@
@
# @
### @
# # @
# # @
@@
@
# @
@
# @
## @
@@
@
# @
@
# @
# @
# @@
@
# @
# # @
## @
# # @
@@
@
# @
# @
# @
## @
@@
@
@
### @
### @
# # @
@@
@
@
## @
# # @
# # @
@@
@
@
### @
# # @
### @
@@
@
@
### @
# # @
### @
# @@
@
@
### @
# # @
### @
# @@
@
@
### @
# @
# @
@@
@
@
## @
# @
## @
@@
@
# @
### @
# @
## @
@@
@
@
# # @
# # @
### @
@@
@
@
# # @
# # @
# @
@@
@
@
# # @
### @
### @
@@
@
@
# # @
# @
# # @
@@
@
@
# # @
### @
# @
### @@
@
@
## @
# @
## @
@@
@
## @
# @
## @
# @
## @@
@
# @
# @
# @
# @
# @@
@
## @
# @
## @
# @
## @@
@
# @
### @
# @
@
@@
@
# # @
# @
# # @
### @
# # @@
@
# # @
### @
# # @
# # @
### @@
@
# # @
@
# # @
# # @
### @@
@
# # @
## @
# # @
### @
@@
@
# # @
### @
# # @
### @
@@
@
# # @
@
# # @
### @
@@
@
### @
## @
# # @
## @
# @@

411
node_modules/figlet/fonts/4Max.flf generated vendored Normal file
View File

@@ -0,0 +1,411 @@
flf2a$ 4 4 18 16 2
4max.flf by Philip Menke (philippe@dds.nl)
April 1995
$ $#
$ $#
$ $#
$ $##
d8b$#
Y8P$#
`"'$#
(8)$##
o8o o8o$#
`"' `"'$#
$#
$##
__88_88__$#
""88"88""$#
__88_88__$#
""88"88""$##
.dPIIY8$#
`YbII "$#
o.`II8b$#
8boIIP'$##
.o. dP $#
`"'dP $#
dP.o.$#
dP `"'$##
d888 $#
dP_______$#
Yb"""88""$#
`Ybo 88 $##
.o.$#
,dP'$#
$#
$##
dP$#
dP $#
Yb $#
Yb$##
Yb $#
Yb$#
dP$#
dP $##
o $#
`8.8.8'$#
.8.8.8.$#
" $##
oo $#
___88___$#
"""88"""$#
"" $##
$#
$#
.o.$#
,dP'$##
$#
________$#
""""""""$#
$##
$#
$#
.o.$#
`"'$##
dP$#
dP $#
dP $#
dP $##
dP"Yb $#
dP Yb$#
Yb dP$#
YbodP $##
.d$#
.d88$#
88$#
88$##
oP"Yb.$#
"' dP'$#
dP' $#
.d8888$##
88888$#
.dP$#
o `Yb$#
YbodP$##
dP88 $#
dP 88 $#
d888888$#
88 $##
888888$#
88oo."$#
`8b$#
8888P'$##
dP' $#
.d8' $#
8P"""Yb$#
`YboodP$##
888888P$#
dP $#
dP $#
dP $##
.dP"o.$#
`8b.d'$#
d'`Y8b$#
`bodP'$##
dP""Yb$#
Ybood8$#
.8P'$#
.dP' $##
.o.$#
`"'$#
.o.$#
`"'$##
.o.$#
`"'$#
.o.$#
,dP'$##
.dP'$#
.dP' $#
`Yb. $#
`Yb.$##
$#
oooooo$#
______$#
""""""$##
`Yb. $#
`Yb.$#
.dP'$#
.dP' $##
oP"Yb.$#
"'.dP'$#
8P $#
(8) $##
dP""Yb $#
dP PY Yb$#
Yb boodP$#
Ybooo $##
db $#
dPYb $#
dP__Yb $#
dP""""Yb$##
88""Yb$#
88__dP$#
88""Yb$#
88oodP$##
dP""b8$#
dP `"$#
Yb $#
YboodP$##
8888b. $#
8I Yb$#
8I dY$#
8888Y" $##
888888$#
88__ $#
88"" $#
888888$##
888888$#
88__ $#
88"" $#
88 $##
dP""b8$#
dP `"$#
Yb "88$#
YboodP$##
88 88$#
88 88$#
888888$#
88 88$##
88$#
88$#
88$#
88$##
88888$#
88$#
o. 88$#
"bodP'$##
88 dP$#
88odP $#
88"Yb $#
88 Yb$##
88 $#
88 $#
88 .o$#
88ood8$##
8b d8$#
88b d88$#
88YbdP88$#
88 YY 88$##
88b 88$#
88Yb88$#
88 Y88$#
88 Y8$##
dP"Yb $#
dP Yb$#
Yb dP$#
YbodP $##
88""Yb$#
88__dP$#
88""" $#
88 $##
dP"Yb $#
dP Yb$#
Yb b dP$#
`"YoYo$##
88""Yb$#
88__dP$#
88"Yb $#
88 Yb$##
.dP"Y8$#
`Ybo."$#
o.`Y8b$#
8bodP'$##
888888$#
88 $#
88 $#
88 $##
88 88$#
88 88$#
Y8 8P$#
`YbodP'$##
Yb dP$#
Yb dP $#
YbdP $#
YP $##
Yb dP$#
Yb db dP $#
YbdPYbdP $#
YP YP $##
Yb dP$#
YbdP $#
dPYb $#
dP Yb$##
Yb dP$#
YbdP $#
8P $#
dP $##
8888P$#
dP $#
dP $#
d8888$##
88888$#
88 $#
88 $#
88888$##
Yb $#
Yb $#
Yb $#
Yb$##
88888$#
88$#
88$#
88888$##
.db. $#
.dP'`Yb.$#
$#
$##
$#
$#
$#
oooooooooo$##
.o. $#
`Yb.$#
$#
$##
db $#
dPYb $#
dP__Yb $#
dP""""Yb$##
88""Yb$#
88__dP$#
88""Yb$#
88oodP$##
dP""b8$#
dP `"$#
Yb $#
YboodP$##
8888b. $#
8I Yb$#
8I dY$#
8888Y" $##
888888$#
88__ $#
88"" $#
888888$##
888888$#
88__ $#
88"" $#
88 $##
dP""b8$#
dP `"$#
Yb "88$#
YboodP$##
88 88$#
88 88$#
888888$#
88 88$##
88$#
88$#
88$#
88$##
88888$#
88$#
o. 88$#
"bodP'$##
88 dP$#
88odP $#
88"Yb $#
88 Yb$##
88 $#
88 $#
88 .o$#
88ood8$##
8b d8$#
88b d88$#
88YbdP88$#
88 YY 88$##
88b 88$#
88Yb88$#
88 Y88$#
88 Y8$##
dP"Yb $#
dP Yb$#
Yb dP$#
YbodP $##
88""Yb$#
88__dP$#
88""" $#
88 $##
dP"Yb $#
dP Yb$#
Yb b dP$#
`"YoYo$##
88""Yb$#
88__dP$#
88"Yb $#
88 Yb$##
.dP"Y8$#
`Ybo."$#
o.`Y8b$#
8bodP'$##
888888$#
88 $#
88 $#
88 $##
88 88$#
88 88$#
Y8 8P$#
`YbodP'$##
Yb dP$#
Yb dP $#
YbdP $#
YP $##
Yb dP$#
Yb db dP $#
YbdPYbdP $#
YP YP $##
Yb dP$#
YbdP $#
dPYb $#
dP Yb$##
Yb dP$#
YbdP $#
8P $#
dP $##
8888P$#
dP $#
dP $#
d8888$##
d888$#
.dP $#
`Yb $#
Y888$##
II$#
II$#
II$#
II$##
888b $#
Yb.$#
dP'$#
888P $##
dP"Yb dP$#
dP `YbdP $#
$#
$##
db db db$#
""dPYb""$#
dP__Yb $#
dP""""Yb$##
db db $#
".oo." $#
dP Yb $#
YboodP $##
db db$#
"" ""$#
Yb dP$#
YbodP $##
db db db$#
""dPYb""$#
dP__Yb $#
dP""""Yb$##
db db $#
".oo." $#
dP Yb $#
YboodP $##
db db$#
"" ""$#
Y8 8P$#
YbodP $##
dP"o.$#
88.d'$#
88`8b$#
d8P P'$##

617
node_modules/figlet/fonts/5 Line Oblique.flf generated vendored Normal file
View File

@@ -0,0 +1,617 @@
flf2a$ 6 6 20 15 4
5lineobl.flf 11/94 pk6811s@acad.drake.edu, updated 1/95 syb3@ABER.AC.UK
Definitely a 5-line font.
Changes: 6/2001 Markus Gebhard markus@jave.de
Removed topmost line. It IS a 6 line font! Baseline is 6.
$$@
$$@
$$@
$$@
$$@
$$@@
$ @
$//$@
$//$ @
$//$ @
$ $ @
//$ @@
@
$| |$@
$$$ @
$$$ @
$$$ @
$$$ @@
@
$ __/__/_$@
$__/__/_$ @
$ / / $ @
@
@@
@
__//_ @
( // )$@
\\ @
(__//_)$ @
// @@
@
() //$@
// @
// @
// ()$@
@@
@
(( ))$@
\\ // @
$/\\/ $ @
// \\ @
((___\\$ @@
$$ @
$//$@
$$ @
$ @
$ @
@@
@
_ $@
// $ @
// $ @
// $ @
(( $ @@
@
))$@
//$ @
//$ @
//$ @
//$ @@
@
$ @
@
$_\\/_$@
$ //\$ @
$ @@
@
@
$ $@
$_||_$@
$ || $@
$ $@@
@
$$ @
@
@
$$ @
$//$@@
$$$$ @
$$$$ @
$$$$ @
____ $@
$$$$ @
$$$$ @@
@
$ @
$ @
@
$$ @
() @@
@
@
//$@
// @
// @
//$ @@
@
___ @
// ) )$@
// / / @
// / / @
((___/ /$ @@
@
@
/_ /$ @
/ / @
/ / @
/ /$ @@
@
___ @
// ) )$@
___/ / @
/ ____/ @
/ /____$ @@
@
___ @
// ) )$@
__ / / @
) ) @
((___/ /$ @@
@
$@
//___/ / @
/____ / @
/ / @
/ /$ @@
@
____ $@
// @
//__ @
) ) @
((___/ /$ @@
@
____$ @
// @
//__ @
// ) ) @
((___/ /$ @@
@
___ $ @
// / / @
/ / @
/ / @
/ /$ @@
@
__ @
// ) )$@
((_ / / @
// ) ) @
((__/ /$ @@
@
___ @
// / /$ @
((___/ / @
/ / @
/ /$ @@
@
@
@
()$@
()$ @
@@
@
@
@
()$@
@
//$ @@
@
$$ @
//$@
<< @
\\$@
$$ @@
$ $@
$ $@
$ ___$@
$/__/$@
$/__/$@
$ $@@
@
$$ @
\\ $@
>>$@
// $@
$$ @@
@
__ @
(( ) )$@
/ / @
( / @
()$ @@
@
__ $ @
// ) )$ @
// / / $ @
\\ () ) )$@
\\__/ /$ @@
@
// | |$@
//__| | @
/ ___ | @
// | | @
// | |$@@
@
// ) )$@
//___/ / @
/ __ ( @
// ) ) @
//____/ /$ @@
@
// ) )$@
// @
// @
// @
((____/ /$ @@
@
// ) )$@
// / / @
// / / @
// / / @
//____/ /$ @@
@
// / /$@
//____ @
/ ____ @
// @
//____/ /$ @@
@
// / /$@
//___$ @
/ ___ $ @
// @
// @@
@
// ) )$@
// @
// ____$ @
// / / @
((____/ /$ @@
@
// / /$@
//___ / / @
/ ___ / @
// / / @
// / /$ @@
___ ___$@
/ / @
/ / @
/ / @
/ / @
__/ /___$ @@
@
/ /$@
/ / @
/ / @
/ / @
$((___/ /$ @@
@
// / /$@
//__ / / @
//__ /$ @
// \ \ @
// \ \$ @@
@
/ / $ @
/ / @
/ / @
/ / @
/ /____/ /$@@
@
/| //| |$@
//| // | | @
// | // | | @
// | // | | @
// |// | |$@@
@
/| / /$@
//| / / @
// | / / @
// | / / @
// |/ /$ @@
@
// ) )$@
// / / @
// / / @
// / / @
((___/ /$ @@
@
// ) )$@
//___/ / @
/ ____ /$ @
// @
// @@
@
// ) )$@
// / / @
// / / @
// \ \ / @
((____\ \$ @@
@
// ) )$@
//___/ / @
/ ___ ( $ @
// | | @
// | |$ @@
@
// ) )$@
(( @
\\ @
) )$ @
((___ / / @@
@
/__ ___/$@
/ / @
/ / @
/ / @
/ / $ @@
@
// / /$@
// / / @
// / / @
// / / @
((___/ /$ @@
@
|| / /$@
|| / / @
|| / / @
||/ / @
| /$ @@
@
|| / | / /$@
|| / | / / @
|| / /||/ / @
||/ / | / @
| / | /$ @@
@
\\ / /$@
\ / @
/ / @
/ /\\ @
/ / \\$@@
@
\\ / /$@
\\ / / @
\\/ / @
/ / @
/ /$ @@
$___ $@
$ / /$@
/ / @
/ / @
$/ / @
/ /___$ @@
@
__$@
/ / @
/ / @
/ / @
/ /__$ @@
@
$ @
\\ $ @
\\ $ @
\\$ @
\\$@@
@
$___ $@
/ /$@
$/ /$ @
/ /$ @
__/ /$ @@
$@
/ |$@
//| |$@
$@
@
$ @@
$$$$$ @
$$$$$ @
$$$$$ @
$$$$$ @
$$$$$ @
_____$@@
$$ @
$@
\\$@
$@
@
$$ @@
@
@
___ @
// ) )$@
// / / @
((___( ($ @@
@
@
/ __ @
// ) )$@
// / / @
((___/ /$ @@
@
@
___ @
// ) )$@
// @
((____$ @@
@
$@
___ /$ @
// ) /$ @
// / /$ @
((___/ /$ @@
@
@
___ @
//___) )$@
// @
((____$ @@
@
// ) )$@
__//__ $ @
// $ @
// $ @
// $ @@
@
@
___ @
// ) )$@
((___/ / @
//__ $ @@
@
@
/ __ @
// ) )$@
// / / @
// / /$ @@
@
@
( )$ @
/ /$ @
/ / @
/ /$ @@
@
@
( )$ @
/ /$ @
/ / @
(( / /$ @@
@
@
/ ___$ @
//\ \ @
// \ \ @
// \ \$@@
@
$@
//$ @
//$ @
//$ @
//$ @@
@
@
_ __ @
// ) ) ) )$@
// / / / / @
// / / / /$ @@
@
@
__ @
// ) )$@
// / / @
// / /$ @@
@
@
___ @
// ) )$@
// / / @
((___/ /$ @@
@
@
___ @
// ) )$@
//___/ / @
// $ @@
@
@
___ @
// ) )$@
((___/ / @
( ($ @@
@
@
__ @
// ) )$@
// @
// $ @@
@
@
___ @
(( ) )$@
\ \ @
// ) )$ @@
@
@
__ ___$@
$/ / $ @
/ / @
/ / $ @@
@
@
@
// / /$@
// / / @
((___( ($ @@
@
@
@
|| / /$@
|| / / @
||/ /$ @@
@
@
@
// / / / /$@
// / / / / @
((__( (__/ /$ @@
@
@
@
\\ / /$@
\/ / @
/ /\$ @@
@
@
@
// / /$@
((___/ / @
/ /$ @@
@
@
$___ @
$ / /$ @
/ / @
/ /__$ @@
@
_$@
// $@
<< $ @
// $ @
((_$ @@
$@
$@
||$@
||$@
||$@
||$@@
@
_ $@
))$@
//$ @
>>$ @
// $ @@
@
_ _$@
// \ \_// $@
$$$ @
$$$ @
@@
_ _ @
@
// | |$@
//__| | @
/ ___ | @
// | |$@@
_ _ @
___ @
// ) )$@
// / / @
// / / @
((___/ /$ @@
_ _ @
@
// / /$@
// / / @
// / / @
((___/ /$ @@
@
_ _ @
___ @
// ) )$@
// / / @
((___( ($ @@
@
_ _ @
___ @
// ) )$@
// / / @
((___/ /$ @@
@
_ _ @
@
// / /$@
// / / @
((___/ /$ @@
@
// ) )$@
//__ / /$ @
/ __ ( @
//___ ) )$ @
// $ @@

427
node_modules/figlet/fonts/AMC 3 Line.flf generated vendored Normal file
View File

@@ -0,0 +1,427 @@
flf2a$ 4 3 10 -1 18
3 lines tall font by LESTER
=============================
-> Conversion to FigLet font by MEPH. (Part of ASCII Editor Service Pack I)
(http://studenten.freepage.de/meph/ascii/ascii/editor/_index.htm)
-> Defined: ASCII code alphanumeric + most used symbols
-> Uppercase characters only.
.-~~-.
(_^..^_)
Lester||||AMC - Anthony Cucchiara
*Mythos Online : Internet Magazine of Lovecraftian Horror - Dead Alice*
http://www.fortunecity.com/victorian/redlion/157/deadal.htm
*Visit my web page ANSI/ASCII/Fonts*
http://members.aol.com/lester5374/
$@
$@
$@
$@@
. @
| @
. @
@@
`' @
`; @
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
`' @
`' @
@
@@
. @
( @
` @
@@
. @
) @
' @
@@
@
@
@
@@
@
@
@
@@
@
@
, @
@@
@
@
@
@@
@
@
. @
@@
, @
,' @
' @
@@
.-. @
|\| @
`-' @
@@
. @
'| @
' @
@@
.-. @
.'' @
`-- @
@@
-. @
-| @
-' @
@@
. . @
`-| @
' @
@@
.-. @
``. @
--' @
@@
.-. @
|-. @
`-' @
@@
.-. @
.' @
' @
@@
.-. @
)-( @
`-' @
@@
.-. @
`-| @
`-' @
@@
| @
@
| @
@@
| @
@
| @
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
.-. @
.' @
. @
@@
@
@
@
@@
.-. @
|-| @
` ' @
@@
.-. @
|( @
`-' @
@@
.-. @
| @
`-' @
@@
.-. @
| )@
`-' @
@@
.-. @
|- @
`-' @
@@
.-. @
|- @
' @
@@
.-. @
|.. @
`-' @
@@
. . @
|-| @
' ` @
@@
.-. @
| @
`-' @
@@
. @
| @
`-' @
@@
. . @
|< @
' ` @
@@
. @
| @
`-' @
@@
. . @
|\/| @
' ` @
@@
. . @
|\| @
' ` @
@@
.-. @
| | @
`-' @
@@
.-. @
|-' @
' @
@@
.-. @
|.| @
`-`.@
@@
.-. @
|( @
' ' @
@@
.-. @
`-. @
`-' @
@@
.-. @
| @
' @
@@
. . @
| | @
`-' @
@@
. . @
| | @
`.' @
@@
. . . @
| | | @
`.'.' @
@@
. . @
)( @
' ` @
@@
. . @
| @
` @
@@
.-. @
/ @
`-' @
@@
.' @
( @
`. @
@@
, @
`, @
` @
@@
`. @
) @
.' @
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
.-. @
|-| @
` ' @
@@
.-. @
|( @
`-' @
@@
.-. @
| @
`-' @
@@
.-. @
| )@
`-' @
@@
.-. @
|- @
`-' @
@@
.-. @
|- @
' @
@@
.-. @
|.. @
`-' @
@@
. . @
|-| @
' ` @
@@
.-. @
| @
`-' @
@@
. @
| @
`-' @
@@
. . @
|< @
' ` @
@@
. @
| @
`-' @
@@
. . @
|\/| @
' ` @
@@
. . @
|\| @
' ` @
@@
.-. @
| | @
`-' @
@@
.-. @
|-' @
' @
@@
.-. @
|.| @
`-`.@
@@
.-. @
|( @
' ' @
@@
.-. @
`-. @
`-' @
@@
.-. @
| @
' @
@@
. . @
| | @
`-' @
@@
. . @
| | @
`.' @
@@
. . . @
| | | @
`.'.' @
@@
. . @
)( @
' ` @
@@
. . @
| @
` @
@@
.-. @
/ @
`-' @
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@

427
node_modules/figlet/fonts/AMC 3 Liv1.flf generated vendored Normal file
View File

@@ -0,0 +1,427 @@
flf2a$ 4 3 11 -1 18
3 line vertical font (tilt head to left) font by LESTER
=======================================================
-> Conversion to FigLet font by MEPH. (Part of ASCII Editor Service Pack I)
(http://studenten.freepage.de/meph/ascii/ascii/editor/_index.htm)
-> Defined: ASCII code alphanumeric
-> Uppercase characters only.
.-~~-.
(_^..^_)
Lester||||AMC - Anthony Cucchiara
*Mythos Online : Internet Magazine of Lovecraftian Horror - Dead Alice*
http://www.fortunecity.com/victorian/redlion/157/deadal.htm
*Visit my web page ANSI/ASCII/Fonts*
http://members.aol.com/lester5374/
$@
$@
$@
$@@
@
.:;s ;: @
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
;: @
@
@@
@
@
@
@@
.:;S;:. @
S ./' S @
`:;S;:' @
@@
. @
.:;s;:: @
` ' @
@@
.:;. . @
S S S @
` `::' @
@@
.:;.;:. @
S S S @
` ' @
@@
.:;.;:. @
S @
`:;' @
@@
. .;:. @
S S S @
`:;' ' @
@@
. .;:. @
S S S @
`:;;;:' @
@@
.:;. @
S S @
` `;:' @
@@
.:;.;:. @
S S S @
`:;';:' @
@@
.:;;;:. @
S S S @
`:;' ' @
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
.:;S;:. @
S S @
`:;S;:' @
@@
.:;.;:. @
S S S @
`:;S;:' @
@@
@
S S @
`:;S;:' @
@@
.:;:. @
S S @
`:;S;:' @
@@
@
S S S @
`:;S;:' @
@@
@
S S @
`:;S;:' @
@@
.: ;:. @
S ' S @
`:;S;:' @
@@
.:;S;:. @
S @
`:;S;:' @
@@
@
.:;s;:' @
@
@@
.:;.;:. @
S @
:' @
@@
. . @
`:s:' @
`:;S;:' @
@@
:. @
S @
`:;S;:' @
@@
.:;S;:. @
) @
`:;S;:' @
@@
.:;S;:. @
/ @
`:;S;:' @
@@
.:;S;:. @
S S @
`:;S;:' @
@@
.::. @
S S @
`:;S;:' @
@@
.:;S;:/ @
S S @
`:;S;:' @
@@
.:;.;:. @
S S @
`:;S;:' @
@@
.: S;:. @
S S S @
`:;S :' @
@@
. @
S:;s;:' @
` @
@@
.:;S;:. @
S @
`:;S;:' @
@@
.:;S;. @
:: @
`:;S;' @
@@
.:;S;:. @
( @
`:;S;:' @
@@
.:;.;:. @
S @
`:;';:' @
@@
.:;. @
S;;: @
`::' @
@@
.:;S . @
S S S @
` S;:' @
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
.:;S;:. @
S S @
`:;S;:' @
@@
.:;.;:. @
S S S @
`:;S;:' @
@@
@
S S @
`:;S;:' @
@@
.:;:. @
S S @
`:;S;:' @
@@
@
S S S @
`:;S;:' @
@@
@
S S @
`:;S;:' @
@@
.: ;:. @
S ' S @
`:;S;:' @
@@
.:;S;:. @
S @
`:;S;:' @
@@
@
.:;s;:' @
@
@@
.:;.;:. @
S @
:' @
@@
. . @
`:s:' @
`:;S;:' @
@@
:. @
S @
`:;S;:' @
@@
.:;S;:. @
) @
`:;S;:' @
@@
.:;S;:. @
/ @
`:;S;:' @
@@
.:;S;:. @
S S @
`:;S;:' @
@@
.::. @
S S @
`:;S;:' @
@@
.:;S;:/ @
S S @
`:;S;:' @
@@
.:;.;:. @
S S @
`:;S;:' @
@@
.: S;:. @
S S S @
`:;S :' @
@@
. @
S:;s;:' @
` @
@@
.:;S;:. @
S @
`:;S;:' @
@@
.:;S;. @
:: @
`:;S;' @
@@
.:;S;:. @
( @
`:;S;:' @
@@
.:;.;:. @
S @
`:;';:' @
@@
.:;. @
S;;: @
`::' @
@@
.:;S . @
S S S @
` S;:' @
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@

1549
node_modules/figlet/fonts/AMC AAA01.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

1043
node_modules/figlet/fonts/AMC Neko.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

733
node_modules/figlet/fonts/AMC Razor.flf generated vendored Normal file
View File

@@ -0,0 +1,733 @@
flf2a$ 7 6 19 -1 18
Razor font by LESTER
======================
-> The "G" was rediddled masterfully by: Tre10@ix.netcom.com (Tom R. Earlywine)
-> Conversion to FigLet font by MEPH. (Part of ASCII Editor Service Pack I)
(http://studenten.freepage.de/meph/ascii/ascii/editor/_index.htm)
-> Defined: ASCII code alphanumeric
-> Uppercase characters only.
.-~~-.
(_^..^_)
Lester||||AMC - Anthony Cucchiara
*Mythos Online : Internet Magazine of Lovecraftian Horror - Dead Alice*
http://www.fortunecity.com/victorian/redlion/157/deadal.htm
*Visit my web page ANSI/ASCII/Fonts*
http://members.aol.com/lester5374/
$@
$@
$@
$@
$@
$@
$@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
.-. @
`/' @
@@
@
@
@
@
@
@
@@
@
@
@
@
.-. @
`-' @
@@
@
@
@
@
@
@
@@
@
.'|=|`. @
.' | | `. @
| |/| | @
`. | | .' @
`.|=|.' @
@@
______ @
`._ | @
| | @
| | @
| | @
|___| @
@@
___ @
`._|=|`. @
| `. @
.'|=|___| @
.' | ___ @
|___|=|_.' @
@@
___ @
`._|=|`. @
___ | `. @
`._|=| | @
___ | | @
`._|=|___| @
@@
@
|`. |`. @
| | | `. @
|__|=| | @
| | @
|___| @
@@
___ ___ @
| |=|_.' @
| | @
|___|=|`. @
___ | `. @
`._|=|___| @
@@
___ @
.'|=|_.' @
.' | @
| |=|`. @
| | | | @
|___|=|__| @
@@
___ ___ @
`._|=| | @
| .' @
.'|=|.' @
.' | @
|___| @
@@
__ __ @
.' |=| `. @
`. | | .' @
.` |=| `. @
| | | | @
`.__|=|__.' @
@@
__ @
| |=|`. @
| | | `. @
`.|=| | @
___ | | @
`._|=|___| @
@@
@
.-. @
`-' @
@
.-. @
`-' @
@@
@
.-. @
`-' @
@
.-. @
`/' @
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
.'|=|`. @
.' | | `. @
| |=| | @
| | | | @
|___| |___| @
@@
_ @
.'|=| `. @
.' | | .' @
| |=|'. @
| | | | @
|___|=|_.' @
@@
___ @
.'|=|_.' @
.' | @
| | @
`. | ___ @
`.|=|_.' @
@@
@
.'|=|`. @
.' | | `. @
| | | | @
| | | .' @
|___|=|.' @
@@
___ @
.'|=|_.' @
.' | ___ @
| |=|_.' @
| | ___ @
|___|=|_.' @
@@
___ @
.'|=|_.' @
.' | ___ @
| |=|_.' @
| | @
|___| @
@@
___ @
.'|=|_.' @
.' |___ @
| |`._|=. @
`. | __|| @
`.|=|_.'' @
@@
@
.'| |`. @
.' | | `. @
| |=| | @
| | | | @
|___| |___| @
@@
@
.'| @
.' | @
| | @
| | @
|___| @
@@
@
.'| @
.' | @
| | @
___ | | @
`._|=|__.' @
@@
@
.'| .'| @
.' | .' .' @
| |=|.: @
| | |'. @
|___| |_| @
@@
@
.'| @
.' | @
| | @
| | ___ @
|___|=|_.' @
@@
@
.'|\/|`. @
.' | | `. @
| | | | @
| | | | @
|___| |___| @
@@
___ @
.'| | | @
.' |\| | @
| | | | @
| | | .' @
|___| |.' @
@@
@
.'|=|`. @
.' | | `. @
| | | | @
`. | | .' @
`.|=|.' @
@@
__ @
.'|=| | @
.' | | | @
| |=|.' @
| | @
|___| @
@@
@
.'|=|`. @
.' | | `. @
| |\| | @
`. | | .' @
`.|=|.'\ @
@@
__ @
.'|=| | @
.' | | | @
| |=|.' @
| | |`. @
|___| |_| @
@@
___ ___ @
| |=|_.' @
`. | @
`.|=|`. @
___ | `.@
`._|=|___|@
@@
___ ___ ___ @
`._|=| |=|_.' @
| | @
| | @
`. | @
`.| @
@@
___ @
| | |`. @
| | | `. @
| | | | @
`. | | | @
`.|=|___| @
@@
___ ___ @
| | | | @
| | | | @
| | | | @
`. | | .' @
`.|=|.' @
@@
___ ___ @
| | | | @
| | | | @
| | | | @
`. | | .' @
`.|/\|.' @
@@
___ ___ @
| | | | @
`. | | .' @
.` |=| `. @
| | | | @
|___| |___| @
@@
___ ___ @
| | | | @
`. |_| .' @
`. .' @
| | @
|___| @
@@
___ ___ @
`._|=| | @
| .' @
.'|=|.' @
.' | ___ @
|___|=|_.' @
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
.'|=|`. @
.' | | `. @
| |=| | @
| | | | @
|___| |___| @
@@
_ @
.'|=| `. @
.' | | .' @
| |=|'. @
| | | | @
|___|=|_.' @
@@
___ @
.'|=|_.' @
.' | @
| | @
`. | ___ @
`.|=|_.' @
@@
@
.'|=|`. @
.' | | `. @
| | | | @
| | | .' @
|___|=|.' @
@@
___ @
.'|=|_.' @
.' | ___ @
| |=|_.' @
| | ___ @
|___|=|_.' @
@@
___ @
.'|=|_.' @
.' | ___ @
| |=|_.' @
| | @
|___| @
@@
___ @
.'|=|_.' @
.' |___ @
| |`._|=. @
`. | __|| @
`.|=|_.'' @
@@
@
.'| |`. @
.' | | `. @
| |=| | @
| | | | @
|___| |___| @
@@
@
.'| @
.' | @
| | @
| | @
|___| @
@@
@
.'| @
.' | @
| | @
___ | | @
`._|=|__.' @
@@
@
.'| .'| @
.' | .' .' @
| |=|.: @
| | |'. @
|___| |_| @
@@
@
.'| @
.' | @
| | @
| | ___ @
|___|=|_.' @
@@
@
.'|\/|`. @
.' | | `. @
| | | | @
| | | | @
|___| |___| @
@@
___ @
.'| | | @
.' |\| | @
| | | | @
| | | .' @
|___| |.' @
@@
@
.'|=|`. @
.' | | `. @
| | | | @
`. | | .' @
`.|=|.' @
@@
__ @
.'|=| | @
.' | | | @
| |=|.' @
| | @
|___| @
@@
@
.'|=|`. @
.' | | `. @
| |\| | @
`. | | .' @
`.|=|.'\ @
@@
__ @
.'|=| | @
.' | | | @
| |=|.' @
| | |`. @
|___| |_| @
@@
___ ___ @
| |=|_.' @
`. | @
`.|=|`. @
___ | `.@
`._|=|___|@
@@
___ ___ ___ @
`._|=| |=|_.' @
| | @
| | @
`. | @
`.| @
@@
___ @
| | |`. @
| | | `. @
| | | | @
`. | | | @
`.|=|___| @
@@
___ ___ @
| | | | @
| | | | @
| | | | @
`. | | .' @
`.|=|.' @
@@
___ ___ @
| | | | @
| | | | @
| | | | @
`. | | .' @
`.|/\|.' @
@@
___ ___ @
| | | | @
`. | | .' @
.` |=| `. @
| | | | @
|___| |___| @
@@
___ ___ @
| | | | @
`. |_| .' @
`. .' @
| | @
|___| @
@@
___ ___ @
`._|=| | @
| .' @
.'|=|.' @
.' | ___ @
|___|=|_.' @
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@

937
node_modules/figlet/fonts/AMC Razor2.flf generated vendored Normal file
View File

@@ -0,0 +1,937 @@
flf2a$ 9 8 18 -1 18
AMC razor 2 font by LESTER
============================
-> Conversion to FigLet font by MEPH. (Part of ASCII Editor Service Pack I)
(http://studenten.freepage.de/meph/ascii/ascii/editor/_index.htm)
-> Defined: ASCII code alphanumeric
-> Uppercase characters only.
.-~~-.
(_^..^_)
Lester||||AMC - Anthony Cucchiara
*Mythos Online : Internet Magazine of Lovecraftian Horror - Dead Alice*
http://www.fortunecity.com/victorian/redlion/157/deadal.htm
*Visit my web page ANSI/ASCII/Fonts*
http://members.aol.com/lester5374/
$@
$@
$@
$@
$@
$@
$@
$@
$@@
. @
|`+. @
| | @
| | @
`+.| @
. @
|`+. @
`+.| @
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
. @
|`+. @
`+.| @
@@
@
@
@
@
@
@
@
@
@@
. . @
.+'|=|`+. @
| +' `+ | @
| |\ | | @
| | \ | | @
| | \| | @
| +. .+ | @
`+.|=|.+' @
@@
. . @
.'|=|`+. @
|.' | | @
| | @
| | @
| | @
| | @
|.+' @
@@
. . @
.+'|=|`+. @
|.+' | | @
. | | @
.+'|=|.+' @
| | . @
| | .+'| @
`+.|=|.+' @
@@
. . @
.+'|=|`+. @
|.+' | | @
.'|=| | @
|.' | | @
. | | @
|`+. | | @
`+.|=|.+' @
@@
. . @
.+'| |`+. @
| | | | @
`++'=| | @
| | @
| | @
| | @
|.+' @
@@
. @
|~~|=|`+. @
| | `+.| @
| | . @
|..|=|`+. @
. | | @
|`+. | | @
`+.|=|.+' @
@@
. . @
|`+.=|`+. @
| | `+.| @
| | . @
| |=|`+. @
| | | | @
| | | | @
`+.|=|.+' @
@@
. . @
.+'|=.+'| @
|.+' | | @
|.+' @
.=' @
.+'| @
| | @
|..| @
@@
. . @
.+'|=|`+. @
| | | | @
.' |=| `. @
| | | | @
| | | | @
| | | | @
`+.|=|.+' @
@@
. . @
.+'|=|`+. @
| | | | @
| | | | @
`+.|=| | @
. | | @
|`+. | | @
`+.|=|.+' @
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
. . @
.+'|=|`+. @
| | | | @
| |=| | @
| | | | @
| | | | @
| | | | @
`+.| |..| @
@@
. . @
.+'|=|`+. @
| | | | @
| |'. '. @
| | | | @
| | | | @
| | | | @
`+.|=|.+' @
@@
. . @
.+'|=|`+. @
| | `+.| @
| | @
| | @
| | . @
| | .+'| @
`+.|=|.+' @
@@
. . @
.+'|=|`+. @
| | `+ | @
| | | | @
| | | | @
| | | | @
| | .+ | @
`+.|=|.+' @
@@
. . @
.+'|=|`+. @
| | `+.| @
| |=|`. @
| | `.| @
| | . @
| | .+'| @
`+.|=|.+' @
@@
. . @
.+'|=|`+. @
| | `+.| @
| |=|`. @
| | `.| @
| | @
| | @
`+.| @
@@
. . @
.+'|=|`+. @
| | `+.| @
| | . @
| | |`+. @
| | `. | @
| | .+ | @
`+.|=|.+' @
@@
. . @
.+'| |`+. @
| | | | @
| |=| | @
| | | | @
| | | | @
| | | | @
`+.| |..| @
@@
. @
|`+. @
| | @
| | @
| | @
| | @
| | @
|.+' @
@@
. @
|`+. @
| | @
| | @
| | @
. | | @
|`+. | | @
`+.|=|.+' @
@@
. . @
.+'| |`. @
| | .+ | @
| |=|.+' @
| | |`+. @
| | | | @
| | | | @
`+.| |..| @
@@
. @
.+'| @
| | @
| | @
| | @
| | . @
| | .+'| @
`+.|=|.+' @
@@
. . . @
.+'|=|`+.=|`+. @
| | `+ | `+ | @
| | | | | | @
| | | | | | @
| | | | | | @
| | | | | | @
`+.| |.| |+' @
@@
. . @
.+'|=|`+. @
| | `+ | @
| | | | @
| | | | @
| | | | @
| | | | @
`+.| |.| @
@@
. . @
.+'|=|`+. @
| | | | @
| | | | @
| | | | @
| | | | @
| | | | @
`+.|=|.+' @
@@
. . @
.+'|=|`+. @
| | | | @
| |=`++' @
| | @
| | @
| | @
`+.| @
@@
. . @
.+'|=|`+. @
| +' `+ | @
| | | | @
| | | | @
| | .| | @
| +.`. | @
`+.|=|.-. @
@@
. . @
.+'|=|`+. @
| | | | @
| |'. '. @
| | | | @
| | | | @
| | | | @
`+.| |.+' @
@@
. . @
.+'|=|`+. @
| | `+.| @
| | . @
`+.|=|`+. @
. | | @
|`+. | | @
`+.|=|.+' @
@@
. . . @
.+'|=|`+.=|`+. @
|.+' | | `+.| @
| | @
| | @
| | @
| | @
|.+' @
@@
. . @
.+'| |`+. @
| | | | @
| | | | @
| | | | @
| | | | @
| | | | @
`+.|=|.+' @
@@
. . @
.+'| .'| @
| | | | @
| | | | @
| | | | @
| | | | @
| | .+ | @
`+.|=|.+' @
@@
. . . @
.+'| .'| .'| @
| | | | | | @
| | | | | | @
| | | | | | @
| | | | | | @
| | .+ | .+ | @
`+.|=|.+'=|.+' @
@@
. . @
.+'| |`+. @
| | | | @
.' .`. `. @
| | | | @
| | | | @
| | | | @
`+.| |.+' @
@@
. . @
.+'|.+'| @
| || | @
`+.`'.+' @
| | @
| | @
| | @
|.+' @
@@
@
|~~|=|~~| @
|.+' | | @
|.+' @
.=' @
.+'| . @
| | .+'| @
|..|=|..| @
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
. . @
.+'|=|`+. @
| | | | @
| |=| | @
| | | | @
| | | | @
| | | | @
`+.| |..| @
@@
. . @
.+'|=|`+. @
| | | | @
| |'. '. @
| | | | @
| | | | @
| | | | @
`+.|=|.+' @
@@
. . @
.+'|=|`+. @
| | `+.| @
| | @
| | @
| | . @
| | .+'| @
`+.|=|.+' @
@@
. . @
.+'|=|`+. @
| | `+ | @
| | | | @
| | | | @
| | | | @
| | .+ | @
`+.|=|.+' @
@@
. . @
.+'|=|`+. @
| | `+.| @
| |=|`. @
| | `.| @
| | . @
| | .+'| @
`+.|=|.+' @
@@
. . @
.+'|=|`+. @
| | `+.| @
| |=|`. @
| | `.| @
| | @
| | @
`+.| @
@@
. . @
.+'|=|`+. @
| | `+.| @
| | . @
| | |`+. @
| | `. | @
| | .+ | @
`+.|=|.+' @
@@
. . @
.+'| |`+. @
| | | | @
| |=| | @
| | | | @
| | | | @
| | | | @
`+.| |..| @
@@
. @
|`+. @
| | @
| | @
| | @
| | @
| | @
|.+' @
@@
. @
|`+. @
| | @
| | @
| | @
. | | @
|`+. | | @
`+.|=|.+' @
@@
. . @
.+'| |`. @
| | .+ | @
| |=|.+' @
| | |`+. @
| | | | @
| | | | @
`+.| |..| @
@@
. @
.+'| @
| | @
| | @
| | @
| | . @
| | .+'| @
`+.|=|.+' @
@@
. . . @
.+'|=|`+.=|`+. @
| | `+ | `+ | @
| | | | | | @
| | | | | | @
| | | | | | @
| | | | | | @
`+.| |.| |+' @
@@
. . @
.+'|=|`+. @
| | `+ | @
| | | | @
| | | | @
| | | | @
| | | | @
`+.| |.| @
@@
. . @
.+'|=|`+. @
| | | | @
| | | | @
| | | | @
| | | | @
| | | | @
`+.|=|.+' @
@@
. . @
.+'|=|`+. @
| | | | @
| |=`++' @
| | @
| | @
| | @
`+.| @
@@
. . @
.+'|=|`+. @
| +' `+ | @
| | | | @
| | | | @
| | .| | @
| +.`. | @
`+.|=|.-. @
@@
. . @
.+'|=|`+. @
| | | | @
| |'. '. @
| | | | @
| | | | @
| | | | @
`+.| |.+' @
@@
. . @
.+'|=|`+. @
| | `+.| @
| | . @
`+.|=|`+. @
. | | @
|`+. | | @
`+.|=|.+' @
@@
. . . @
.+'|=|`+.=|`+. @
|.+' | | `+.| @
| | @
| | @
| | @
| | @
|.+' @
@@
. . @
.+'| |`+. @
| | | | @
| | | | @
| | | | @
| | | | @
| | | | @
`+.|=|.+' @
@@
. . @
.+'| .'| @
| | | | @
| | | | @
| | | | @
| | | | @
| | .+ | @
`+.|=|.+' @
@@
. . . @
.+'| .'| .'| @
| | | | | | @
| | | | | | @
| | | | | | @
| | | | | | @
| | .+ | .+ | @
`+.|=|.+'=|.+' @
@@
. . @
.+'| |`+. @
| | | | @
.' .`. `. @
| | | | @
| | | | @
| | | | @
`+.| |.+' @
@@
. . @
.+'|.+'| @
| || | @
`+.`'.+' @
| | @
| | @
| | @
|.+' @
@@
@
|~~|=|~~| @
|.+' | | @
|.+' @
.=' @
.+'| . @
| | .+'| @
|..|=|..| @
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@

1039
node_modules/figlet/fonts/AMC Slash.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

631
node_modules/figlet/fonts/AMC Slider.flf generated vendored Normal file
View File

@@ -0,0 +1,631 @@
flf2a$ 6 5 23 -1 18
Slider font by LESTER
=======================
-> Conversion to FigLet font by MEPH. (Part of ASCII Editor Service Pack I)
(http://studenten.freepage.de/meph/ascii/ascii/editor/_index.htm)
-> Defined: ASCII code alphabet
-> Uppercase characters only.
.-~~-.
(_^..^_)
Lester||||AMC - Anthony Cucchiara
*Mythos Online : Internet Magazine of Lovecraftian Horror - Dead Alice*
http://www.fortunecity.com/victorian/redlion/157/deadal.htm
*Visit my web page ANSI/ASCII/Fonts*
http://members.aol.com/lester5374/
$@
$@
$@
$@
$@
$@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
.'. @
.''```. @
.' `. @
.' `. @
@@
____ @
| ~. @
|____.'_ @
| ~. @
|_______.' @
@@
______ @
.~ ~. @
| @
| @
`.______.' @
@@
@
|``````. @
| | @
| | @
|......' @
@@
____ @
| @
|______ @
| @
|___________ @
@@
___________ @
| @
|______ @
| @
| @
@@
_____ @
.-~ ~. @
: @
: _____ @
`-._____.'| @
@@
@
| | @
|_________| @
| | @
| | @
@@
@
| @
| @
| @
| @
@@
@
| @
| @
. | @
`..____..' @
@@
@
| ..'' @
|..'' @
|``.. @
| ``.. @
@@
@
| @
| @
| @
|_______ @
@@
@
.'. .`. @
.' ` `. @
.' `. @
.' `. @
@@
@
|.. | @
| ``.. | @
| ``.. | @
| ``| @
@@
______ @
.~ ~. @
| | @
| | @
`.______.' @
@@
@
|`````````, @
|''''''''' @
| @
| @
@@
______ @
.~ ~. @
| | @
| ._ | @
`.______~-_ @
@@
@
|`````````, @
|'''|''''' @
| `. @
| `. @
@@
@
..'''' @
.'' @
..' @
....'' @
@@
@
`````|````` @
| @
| @
| @
@@
@
| | @
| | @
| | @
`._______.' @
@@
@
`. .' @
`. .' @
`. .' @
`.' @
@@
@
`. .' @
`. .' @
`. . .' @
`.' `.' @
@@
@
``.. ..'' @
``..'' @
..'`.. @
..'' ``.. @
@@
@
``.. ..'' @
``.'' @
| @
| @
@@
@
`````````:' @
..' @
..'' @
.:,,,,,,,,, @
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
.'. @
.''```. @
.' `. @
.' `. @
@@
____ @
| ~. @
|____.'_ @
| ~. @
|_______.' @
@@
______ @
.~ ~. @
| @
| @
`.______.' @
@@
@
|``````. @
| | @
| | @
|......' @
@@
____ @
| @
|______ @
| @
|___________ @
@@
___________ @
| @
|______ @
| @
| @
@@
_____ @
.-~ ~. @
: @
: _____ @
`-._____.'| @
@@
@
| | @
|_________| @
| | @
| | @
@@
@
| @
| @
| @
| @
@@
@
| @
| @
. | @
`..____..' @
@@
@
| ..'' @
|..'' @
|``.. @
| ``.. @
@@
@
| @
| @
| @
|_______ @
@@
@
.'. .`. @
.' ` `. @
.' `. @
.' `. @
@@
@
|.. | @
| ``.. | @
| ``.. | @
| ``| @
@@
______ @
.~ ~. @
| | @
| | @
`.______.' @
@@
@
|`````````, @
|''''''''' @
| @
| @
@@
______ @
.~ ~. @
| | @
| ._ | @
`.______~-_ @
@@
@
|`````````, @
|'''|''''' @
| `. @
| `. @
@@
@
..'''' @
.'' @
..' @
....'' @
@@
@
`````|````` @
| @
| @
| @
@@
@
| | @
| | @
| | @
`._______.' @
@@
@
`. .' @
`. .' @
`. .' @
`.' @
@@
@
`. .' @
`. .' @
`. . .' @
`.' `.' @
@@
@
``.. ..'' @
``..'' @
..'`.. @
..'' ``.. @
@@
@
``.. ..'' @
``.'' @
| @
| @
@@
@
`````````:' @
..' @
..'' @
.:,,,,,,,,, @
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@

733
node_modules/figlet/fonts/AMC Thin.flf generated vendored Normal file
View File

@@ -0,0 +1,733 @@
flf2a$ 7 6 15 -1 18
Thin font by LESTER
======================
-> Conversion to FigLet font by MEPH. (Part of ASCII Editor Service Pack I)
(http://studenten.freepage.de/meph/ascii/ascii/editor/_index.htm)
-> Defined: ASCII code alphanumeric + most used symbols
-> Uppercase characters only.
.-~~-.
(_^..^_)
Lester||||AMC - Anthony Cucchiara
*Mythos Online : Internet Magazine of Lovecraftian Horror - Dead Alice*
http://www.fortunecity.com/victorian/redlion/157/deadal.htm
*Visit my web page ANSI/ASCII/Fonts*
http://members.aol.com/lester5374/
$@
$@
$@
$@
$@
$@
$@@
.-. @
| | @
| | @
`-' @
_ @
`-' @
@@
_ _ @
`|'|' @
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
_ _ @
`-' _`-' @
_`-' @
_`-' @
_`-' _ @
`-' `-' @
@@
@
@
@
@
@
@
@@
_ @
`/' @
@
@
@
@
@@
.---. @
.-.~~~ @
| | @
| | @
~.---. @
~~~ @
@@
.---. @
~~~.-. @
| | @
| | @
.---.~ @
~~~ @
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
_ @
`/' @
@@
@
@
@
@
@
@
@@
@
@
@
@
_ @
`-' @
@@
_ @
_`-' @
_`-' @
_`-' @
_`-' @
`-' @
@@
.-----. @
_~~~~~_ @
| |\ | | @
| | \ | | @
~___\_~ @
`-----' @
@@
.-..-. @
~ | | @
| | @
| | @
| | @
`-' @
@@
.-..-. @
~ | | @
_ | | @
| |`-' @
| | _ @
`-'`-' @
@@
.--..-. @
~~ | | @
_ | | @
`-'| | @
__ | | @
`--'`-' @
@@
.-. .-. @
| | _ | | @
`-'`-'| | @
| | @
| | @
`-' @
@@
.-..-. @
| | ~ @
| | _ @
`-'| | @
_ | | @
`-'`-' @
@@
.-..--. @
| | ~~ @
| | _ @
| |`-'_ @
| | _`-' @
`-'`-' @
@@
.-..-. @
~ | | @
|/ @
/| @
| | @
`-' @
@@
.---. @
.-.~~~.-. @
~.---.~ @
.-.~~~.-. @
~.---.~ @
~~~ @
@@
.-..-. @
.-.~ | | @
~.-.| | @
~ | | @
__ | | @
`--'`-' @
@@
_ @
`-' @
@
_ @
`-' @
@
@@
_ @
`-' @
@
_ @
`-/ @
@
@@
_ @
_`-' @
_`-' @
`-'_ @
`-'_ @
`-' @
@@
@
@
@
@
@
@
@@
_ @
`-'_ @
`-'_ @
_`-' @
_`-' @
`-' @
@@
.---. @
.-.~~~.-. @
~ .--.~ @
|_| @
_ @
`-' @
@@
@
@
@
@
@
@
@@
.-..-..-. @
| | ~ | | @
| |.-.| | @
| | ~ | | @
| | | | @
`-' `-' @
@@
.-..--. @
| | ~~.-. @
| |.--.~ @
| | ~~.-. @
| |.--.~ @
`-' ~~ @
@@
.-..--. @
| | ~~ @
| | @
| | @
| | __ @
`-'`--' @
@@
.-..-. @
| | ~.-. @
| | | | @
| | | | @
| | _`-' @
`-'`-' @
@@
.-..--. @
| | ~~ @
| | _ @
| |`-' @
| | __ @
`-'`--' @
@@
.-..--. @
| | ~~ @
| | _ @
| |`-' @
| | @
`-' @
@@
.-..--. @
| | ~~ @
| | __ @
| | `. | @
| | _| | @
`-'`---' @
@@
.-. .-. @
| | _ | | @
| |`-'| | @
| | | | @
| | | | @
`-' `-' @
@@
.-. @
| | @
| | @
| | @
| | @
`-' @
@@
.-. @
| | @
| | @
| | @
__ | | @
`--'`-' @
@@
.-. .-. @
| | _`-' @
| |`-'.-. @
| | | | @
| | | | @
`-' `-' @
@@
.-. @
| | @
| | @
| | @
| | __ @
`-'`--' @
@@
.-.-. .-.-. @
| |~.-.~| | @
| | ~ | | @
| | | | @
| | | | @
`-' `-' @
@@
.-..-. .-. @
| | ~.-.| | @
| | ~ | | @
| | | | @
| | | | @
`-' `-' @
@@
.-..-..-. @
| | ~ | | @
| | | | @
| | | | @
| | _ | | @
`-'`-'`-' @
@@
.-..--. @
| | ~~.-. @
| |.--.~ @
| | ~~ @
| | @
`-' @
@@
.-..-..-. @
| | ~ | | @
| | | | @
| | | | @
| | _\| | @
`-'`-'`-' @
@@
.-..-. @
| | ~.-. @
| |.-.~ @
| | ~.-. @
| | | | @
`-' `-' @
@@
.-..-. @
| | ~ @
\| @
|\ @
_ | | @
`-'`-' @
@@
.-..-..-. @
~ | | ~ @
| | @
| | @
| | @
`-' @
@@
.-. .-. @
| | | | @
| | | | @
| | | | @
| | _ | | @
`-'`-'`-' @
@@
.-. .-. @
| | | | @
| | | | @
| | | | @
`-' _ `-' @
`-' @
@@
.-. .-. .-. @
| | | | | | @
| | | | | | @
| | | | | | @
`-'_`-'_`-' @
`-' `-' @
@@
.-. .-. @
| | | | @
`-'..`-' @
.-.`'.-. @
| | | | @
`-' `-' @
@@
.-. .-. @
| | | | @
`-'.-.`-' @
| | @
| | @
`-' @
@@
.-..-. @
~ | | @
|/ @
/| @
| | _ @
`-'`-' @
@@
.-..-. @
| | ~ @
| | @
| | @
| | _ @
`-'`-' @
@@
_ @
`-'_ @
`-'_ @
`-'_ @
`-'_ @
`-' @
@@
.-..-. @
~ | | @
| | @
| | @
_ | | @
`-'`-' @
@@
_ @
_`-'_ @
`-' `-' @
@
@
@
@@
@
@
@
@
@
@
@@
_ @
`\' @
@
@
@
@
@@
.-..-..-. @
| | ~ | | @
| |.-.| | @
| | ~ | | @
| | | | @
`-' `-' @
@@
.-..--. @
| | ~~.-. @
| |.--.~ @
| | ~~.-. @
| |.--.~ @
`-' ~~ @
@@
.-..--. @
| | ~~ @
| | @
| | @
| | __ @
`-'`--' @
@@
.-..-. @
| | ~.-. @
| | | | @
| | | | @
| | _`-' @
`-'`-' @
@@
.-..--. @
| | ~~ @
| | _ @
| |`-' @
| | __ @
`-'`--' @
@@
.-..--. @
| | ~~ @
| | _ @
| |`-' @
| | @
`-' @
@@
.-..--. @
| | ~~ @
| | __ @
| | `. | @
| | _| | @
`-'`---' @
@@
.-. .-. @
| | _ | | @
| |`-'| | @
| | | | @
| | | | @
`-' `-' @
@@
.-. @
| | @
| | @
| | @
| | @
`-' @
@@
.-. @
| | @
| | @
| | @
__ | | @
`--'`-' @
@@
.-. .-. @
| | _`-' @
| |`-'.-. @
| | | | @
| | | | @
`-' `-' @
@@
.-. @
| | @
| | @
| | @
| | __ @
`-'`--' @
@@
.-.-. .-.-. @
| |~.-.~| | @
| | ~ | | @
| | | | @
| | | | @
`-' `-' @
@@
.-..-. .-. @
| | ~.-.| | @
| | ~ | | @
| | | | @
| | | | @
`-' `-' @
@@
.-..-..-. @
| | ~ | | @
| | | | @
| | | | @
| | _ | | @
`-'`-'`-' @
@@
.-..--. @
| | ~~.-. @
| |.--.~ @
| | ~~ @
| | @
`-' @
@@
.-..-..-. @
| | ~ | | @
| | | | @
| | | | @
| | _\| | @
`-'`-'`-' @
@@
.-..-. @
| | ~.-. @
| |.-.~ @
| | ~.-. @
| | | | @
`-' `-' @
@@
.-..-. @
| | ~ @
\| @
|\ @
_ | | @
`-'`-' @
@@
.-..-..-. @
~ | | ~ @
| | @
| | @
| | @
`-' @
@@
.-. .-. @
| | | | @
| | | | @
| | | | @
| | _ | | @
`-'`-'`-' @
@@
.-. .-. @
| | | | @
| | | | @
| | | | @
`-' _ `-' @
`-' @
@@
.-. .-. .-. @
| | | | | | @
| | | | | | @
| | | | | | @
`-'_`-'_`-' @
`-' `-' @
@@
.-. .-. @
| | | | @
`-'..`-' @
.-.`'.-. @
| | | | @
`-' `-' @
@@
.-. .-. @
| | | | @
`-'.-.`-' @
| | @
| | @
`-' @
@@
.-..-. @
~ | | @
|/ @
/| @
| | _ @
`-'`-' @
@@
@
@
@
@
@
@
@@
.-. @
| | @
`-' @
.-. @
| | @
`-' @
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@

835
node_modules/figlet/fonts/AMC Tubes.flf generated vendored Normal file
View File

@@ -0,0 +1,835 @@
flf2a$ 8 7 13 -1 18
AMCtubes font by LESTER
=============================
-> Conversion to FigLet font by MEPH. (Part of ASCII Editor Service Pack I)
(http://studenten.freepage.de/meph/ascii/ascii/editor/_index.htm)
-> Defined: ASCII code alphabet
-> Uppercase characters only.
.-~~-.
(_^..^_)
Lester||||AMC - Anthony Cucchiara
*Mythos Online : Internet Magazine of Lovecraftian Horror - Dead Alice*
http://www.fortunecity.com/victorian/redlion/157/deadal.htm
*Visit my web page ANSI/ASCII/Fonts*
http://members.aol.com/lester5374/
$@
$@
$@
$@
$@
$@
$@
$@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
.ss @
SSSz @
'ZZ' @
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
d s. @
S ~O @
S `b @
S sSSO @
S O @
S O @
P P @
@@
d ss. @
S b @
S P @
S sSS' @
S b @
S P @
P `SS @
@@
sSSs. @
S @
S @
S @
S @
S @
"sss' @
@@
d ss @
S ~o @
S b @
S S @
S P @
S S @
P ss" @
@@
d sss @
S @
S @
S sSSs @
S @
S @
P sSSss @
@@
d sss @
S @
S @
S sSSs @
S @
S @
P @
@@
sSSSs @
S S @
S @
S @
S ssSb @
S S @
"sss" @
@@
d d @
S S @
S S @
S sSSS @
S S @
S S @
P P @
@@
d @
S @
S @
S @
S @
S @
P @
@@
d @
S @
S @
S @
d P @
S S @
"sss" @
@@
d S @
S P @
Ssss' @
S s @
S b @
S b @
P P @
@@
d @
S @
S @
S @
S @
S @
P sSSs @
@@
d s sb @
S S S S @
S S S @
S S @
S S @
S S @
P P @
@@
d s b @
S S S @
S SS @
S S @
S S @
S S @
P P @
@@
sSSSs @
S S @
S S @
S S @
S S @
S S @
"sss" @
@@
d ss. @
S b @
S P @
S sS' @
S @
S @
P @
@@
sSSSs @
S S @
S S @
S S @
S S @
S s S @
"sss"ss @
@@
d ss. @
S b @
S P @
S sS' @
S S @
S S @
P P @
@@
sss. @
d @
Y @
ss. @
b @
P @
` ss' @
@@
sss sssss @
S @
S @
S @
S @
S @
P @
@@
d b @
S S @
S S @
S S @
S S @
S S @
"sss" @
@@
d b @
S S @
S S @
S S @
S S @
S S @
"ssS @
@@
d d b @
S S S @
S S S @
S S S @
S S S @
S S S @
"ss"S @
@@
Ss sS @
S S @
S @
S @
S @
S S @
s" "s @
@@
Ss sS @
S S @
S @
S @
S @
S @
P @
@@
sSSSSSs @
s @
s @
s @
s @
s @
sSSSSSs @
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
d s. @
S ~O @
S `b @
S sSSO @
S O @
S O @
P P @
@@
d ss. @
S b @
S P @
S sSS' @
S b @
S P @
P `SS @
@@
sSSs. @
S @
S @
S @
S @
S @
"sss' @
@@
d ss @
S ~o @
S b @
S S @
S P @
S S @
P ss" @
@@
d sss @
S @
S @
S sSSs @
S @
S @
P sSSss @
@@
d sss @
S @
S @
S sSSs @
S @
S @
P @
@@
sSSSs @
S S @
S @
S @
S ssSb @
S S @
"sss" @
@@
d d @
S S @
S S @
S sSSS @
S S @
S S @
P P @
@@
d @
S @
S @
S @
S @
S @
P @
@@
d @
S @
S @
S @
d P @
S S @
"sss" @
@@
d S @
S P @
Ssss' @
S s @
S b @
S b @
P P @
@@
d @
S @
S @
S @
S @
S @
P sSSs @
@@
d s sb @
S S S S @
S S S @
S S @
S S @
S S @
P P @
@@
d s b @
S S S @
S SS @
S S @
S S @
S S @
P P @
@@
sSSSs @
S S @
S S @
S S @
S S @
S S @
"sss" @
@@
d ss. @
S b @
S P @
S sS' @
S @
S @
P @
@@
sSSSs @
S S @
S S @
S S @
S S @
S s S @
"sss"ss @
@@
d ss. @
S b @
S P @
S sS' @
S S @
S S @
P P @
@@
sss. @
d @
Y @
ss. @
b @
P @
` ss' @
@@
sss sssss @
S @
S @
S @
S @
S @
P @
@@
d b @
S S @
S S @
S S @
S S @
S S @
"sss" @
@@
d b @
S S @
S S @
S S @
S S @
S S @
"ssS @
@@
d d b @
S S S @
S S S @
S S S @
S S S @
S S S @
"ss"S @
@@
Ss sS @
S S @
S @
S @
S @
S S @
s" "s @
@@
Ss sS @
S S @
S @
S @
S @
S @
P @
@@
sSSSSSs @
s @
s @
s @
s @
s @
sSSSSSs @
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@

835
node_modules/figlet/fonts/AMC Untitled.flf generated vendored Normal file
View File

@@ -0,0 +1,835 @@
flf2a$ 8 7 16 -1 18
AMC untitled font by LESTER
=============================
-> Conversion to FigLet font by MEPH. (Part of ASCII Editor Service Pack I)
(http://studenten.freepage.de/meph/ascii/ascii/editor/_index.htm)
-> Defined: ASCII code alphanumeric
.-~~-.
(_^..^_)
Lester||||AMC - Anthony Cucchiara
*Mythos Online : Internet Magazine of Lovecraftian Horror - Dead Alice*
http://www.fortunecity.com/victorian/redlion/157/deadal.htm
*Visit my web page ANSI/ASCII/Fonts*
http://members.aol.com/lester5374/
$@
$@
$@
$@
$@
$@
$@
$@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
,''. @
',,' @
@@
@
@
@
@
@
@
@
@@
,'',,'', @
; ,'', ; @
; ; ; ; @
; ;\ ; ; @
; ; \; ; @
; ',,' ; @
',,'',,' @
@@
,'''''', @
',,'; ; @
; ; @
; ; @
; ; @
; ; @
',,' @
@@
,'''''', @
',,'; ; @
,,'' @
',,' @
,'', @
; ;,'', @
',,,,,,' @
@@
,'''''', @
',,'; ; @
,'',; ; @
',,'; ; @
; ; @
,'',; ; @
',,,,,,' @
@@
,'',,'', @
; ;; ; @
; ;; ; @
',,'; ; @
; ; @
; ; @
',,' @
@@
,'''''', @
; ;',,' @
; ; @
',,','', @
; ; @
,'',; ; @
',,,,,,' @
@@
,'''''', @
; ;',,' @
; ; @
; ;,'', @
; ;', ; @
; ;,' ; @
',,'',,' @
@@
,'''''', @
',,'; ; @
,,'' @
',,' @
,'', @
; ; @
',,' @
@@
,'',,''', @
; ,'', ; @
; ',,' ; @
; ,'', ; @
; ; ; ; @
; ',,' ; @
',,'',,,' @
@@
,'',,'', @
; ,'; ; @
; ',; ; @
',,'; ; @
; ; @
,'',; ; @
',,,,,,' @
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
,'',,''', @
; ;', ; @
; ;,' ; @
; ;', ; @
; ; ; ; @
; ; ; ; @
',,' ',,' @
@@
,'',,''', @
; ;', ; @
; ;,' ; @
; ;', ; @
; ; ; ; @
; ;,' ; @
',,'',,,' @
@@
,'',,'', @
; ;',,' @
; ; @
; ; @
; ; @
; ;,'', @
',,'',,' @
@@
,'',,'', @
; ;; ; @
; ;; ; @
; ;; ; @
; ;; ; @
; ;; ; @
',,'',,' @
@@
,'',,'', @
; ;',,' @
; ;,'', @
; ;',,' @
; ; @
; ;,'', @
',,'',,' @
@@
,'',,'', @
; ;',,' @
; ;,'', @
; ;',,' @
; ; @
; ; @
',,' @
@@
,'',,'', @
; ;',,' @
; ; @
; ;,'', @
; ;', ; @
; ;,' ; @
',,'',,' @
@@
,'', ,'', @
; ; ; ; @
; ;,',; ; @
; ;','; ; @
; ; ; ; @
; ; ; ; @
',,' ',,' @
@@
,'', @
; ; @
; ; @
; ; @
; ; @
; ; @
',,' @
@@
,'', @
; ; @
; ; @
; ; @
; ; @
,'',; ; @
',,'',,' @
@@
,'', ,'', @
; ; ',,' @
; ;,'', @
; ;; ; @
; ; ; ; @
; ; ; ; @
',,' ',,' @
@@
,'', @
; ; @
; ; @
; ; @
; ; @
; ;,'', @
',,'',,' @
@@
,'',,'',,'', @
; ;', ;', ; @
; ; ; ; ; ; @
; ; ; ; ; ; @
; ; ; ; ; ; @
; ; ; ; ; ; @
',,' ',' ',' @
@@
,'',,'', @
; ;', ; @
; ; ; ; @
; ; ; ; @
; ; ; ; @
; ; ; ; @
',,' ',' @
@@
,'',,'', @
; ;; ; @
; ;; ; @
; ;; ; @
; ;; ; @
; ;; ; @
',,'',,' @
@@
,'',,'', @
; ;; ; @
; ;',,' @
; ; @
; ; @
; ; @
',,' @
@@
,'',,'', @
; ;; ; @
; ;; ; @
; ;; ; @
; ;', ; @
; ;,' ', @
',,'',,,,' @
@@
,'',,''', @
; ;', ; @
; ;,' ,' @
; ;', ', @
; ; ; ; @
; ; ; ; @
',,' ',,' @
@@
,'',,'', @
; ;',,' @
; ; @
',,','', @
; ; @
,'',; ; @
',,'',,' @
@@
,'',,'',,'', @
',,'; ;',,' @
; ; @
; ; @
; ; @
; ; @
',,' @
@@
,'', ,'', @
; ; ; ; @
; ; ; ; @
; ; ; ; @
; ; ; ; @
; ',,' ; @
',,,'',,,' @
@@
,'',,'', @
; ;; ; @
; ;; ; @
; ;; ; @
; ;; ; @
; ;; ; @
','',' @
@@
,'', ,', ,', @
; ; ; ; ; ; @
; ; ; ; ; ; @
; ; ; ; ; ; @
; ; ; ; ; ; @
; ;,' ;,' ; @
',,'',,'',,' @
@@
,'',,'', @
; ;; ; @
', ;; ,' @
; ;; ; @
,' ;; ', @
; ;; ; @
',,'',,' @
@@
,'',,'', @
; ;; ; @
',,'',,' @
,'', @
; ; @
; ; @
',,' @
@@
,'',,'', @
',,'; ; @
,,'' @
',,' @
,'', @
; ;,'', @
',,'',,' @
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
,'',,''', @
; ;', ; @
; ;,' ; @
; ;', ; @
',,' ',,' @
@@
@
@
,'',,''', @
; ;', ; @
; ;', ; @
; ;,' ; @
',,'',,,' @
@@
@
@
,'',,'', @
; ;',,' @
; ; @
; ;,'', @
',,'',,' @
@@
@
@
,'',,'', @
; ;; ; @
; ;; ; @
; ;; ; @
',,'',,' @
@@
@
@
,'',,'', @
; ;',,' @
; ;',,' @
; ; ,, @
',,'',,' @
@@
@
@
,'',,'', @
; ;',,' @
; ;',,' @
; ; @
',,' @
@@
@
@
,'',,'', @
; ; '' @
; ;,'', @
; ;,' ; @
',,'',,' @
@@
@
@
,'', ,'', @
; ;,; ; @
; ;'; ; @
; ; ; ; @
',,' ',,' @
@@
@
@
,'', @
; ; @
; ; @
; ; @
',,' @
@@
@
@
,'', @
; ; @
; ; @
,'',; ; @
',,'',,' @
@@
@
@
,'',,'', @
; ;',,' @
; ;; ; @
; ; ; ; @
',,' ',,' @
@@
@
@
,'', @
; ; @
; ; @
; ;,'', @
',,'',,' @
@@
@
@
,'',,'',,'', @
; ;', ;', ; @
; ; ; ; ; ; @
; ; ; ; ; ; @
',,' ',' ',' @
@@
@
@
,'',,'', @
; ;', ; @
; ; ; ; @
; ; ; ; @
',,' ',' @
@@
@
@
,'',,'', @
; ;; ; @
; ;; ; @
; ;; ; @
',,'',,' @
@@
@
@
,'',,'', @
; ;; ; @
; ;',,' @
; ; @
',,' @
@@
@
@
,'',,'', @
; ;; ; @
; ;', ; @
; ;,' ', @
',,'',,,,' @
@@
@
@
,'',,'', @
; ;', ; @
; ;,' ,' @
; ;', ', @
',,' ',,' @
@@
@
@
,'',,'', @
; ;',,' @
',,','', @
,'',; ; @
',,'',,' @
@@
@
@
,'',,'',,'', @
',,'; ;',,' @
; ; @
; ; @
',,' @
@@
@
@
,', ,', @
; ; ; ; @
; ; ; ; @
; ',,' ; @
',,'',,' @
@@
@
@
,'',,'', @
; ;; ; @
; ;; ; @
; ;; ; @
','',' @
@@
@
@
,'', ,', ,', @
; ; ; ; ; ; @
; ; ; ; ; ; @
; ;,' ;,' ; @
',,'',,'',,' @
@@
@
@
,'',,'', @
', ;; ,' @
,' ;; ', @
; ;; ; @
',,'',,' @
@@
@
@
,'',,'', @
',,'',,' @
,'', @
; ; @
',,' @
@@
@
@
,'',,'', @
'',;,,' @
',,' @
,'', ,, @
',,'',,' @
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@

722
node_modules/figlet/fonts/ANSI Regular.flf generated vendored Normal file
View File

@@ -0,0 +1,722 @@
flf2a$ 7 7 13 -1 7 0 0 0
Font Author: ?
More Info:
https://web.archive.org/web/20120819044459/http://www.roysac.com/thedrawfonts-tdf.asp
FIGFont created with: http://patorjk.com/figlet-editor
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
██ @
██ @
██ @
@
██ @
@
@@
@
@
@
@
@
@
@@
██ ██ @
████████ @
██ ██ @
████████ @
██ ██ @
@
@@
▄▄███▄▄·@
██ @
███████ @
██ @
███████ @
▀▀▀ @
@@
██ ██ @
██ @
██ @
██ @
██ ██ @
@
@@
██ @
██ @
████████ @
██ ██ @
██████ @
@
@@
@
@
@
@
@
@
@@
██ @
██ @
██ @
██ @
██ @
@
@@
██ @
██ @
██ @
██ @
██ @
@
@@
@
▄ ██ ▄@
████ @
▀ ██ ▀@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
▄█ @
@
@@
@
@
█████ @
@
@
@
@@
@
@
@
@
██ @
@
@@
██ @
██ @
██ @
██ @
██ @
@
@@
██████ @
██ ████ @
██ ██ ██ @
████ ██ @
██████ @
@
@@
██ @
███ @
██ @
██ @
██ @
@
@@
██████ @
██ @
█████ @
██ @
███████ @
@
@@
██████ @
██ @
█████ @
██ @
██████ @
@
@@
██ ██ @
██ ██ @
███████ @
██ @
██ @
@
@@
███████ @
██ @
███████ @
██ @
███████ @
@
@@
██████ @
██ @
███████ @
██ ██ @
██████ @
@
@@
███████ @
██ @
██ @
██ @
██ @
@
@@
█████ @
██ ██ @
█████ @
██ ██ @
█████ @
@
@@
█████ @
██ ██ @
██████ @
██ @
█████ @
@
@@
@
██ @
@
██ @
@
@
@@
@
██ @
@
▄█ @
▀ @
@
@@
██ @
██ @
██ @
██ @
██ @
@
@@
@
@
@
@
@
@
@@
██ @
██ @
██ @
██ @
██ @
@
@@
██████ @
██ @
▄███ @
▀▀ @
██ @
@
@@
██████ @
██ ██ @
██ ██ ██ @
██ ██ ██ @
█ ████ @
@
@@
█████ @
██ ██ @
███████ @
██ ██ @
██ ██ @
@
@@
██████ @
██ ██ @
██████ @
██ ██ @
██████ @
@
@@
██████ @
██ @
██ @
██ @
██████ @
@
@@
██████ @
██ ██ @
██ ██ @
██ ██ @
██████ @
@
@@
███████ @
██ @
█████ @
██ @
███████ @
@
@@
███████ @
██ @
█████ @
██ @
██ @
@
@@
██████ @
██ @
██ ███ @
██ ██ @
██████ @
@
@@
██ ██ @
██ ██ @
███████ @
██ ██ @
██ ██ @
@
@@
██ @
██ @
██ @
██ @
██ @
@
@@
██ @
██ @
██ @
██ ██ @
█████ @
@
@@
██ ██ @
██ ██ @
█████ @
██ ██ @
██ ██ @
@
@@
██ @
██ @
██ @
██ @
███████ @
@
@@
███ ███ @
████ ████ @
██ ████ ██ @
██ ██ ██ @
██ ██ @
@
@@
███ ██ @
████ ██ @
██ ██ ██ @
██ ██ ██ @
██ ████ @
@
@@
██████ @
██ ██ @
██ ██ @
██ ██ @
██████ @
@
@@
██████ @
██ ██ @
██████ @
██ @
██ @
@
@@
██████ @
██ ██ @
██ ██ @
██ ▄▄ ██ @
██████ @
▀▀ @
@@
██████ @
██ ██ @
██████ @
██ ██ @
██ ██ @
@
@@
███████ @
██ @
███████ @
██ @
███████ @
@
@@
████████ @
██ @
██ @
██ @
██ @
@
@@
██ ██ @
██ ██ @
██ ██ @
██ ██ @
██████ @
@
@@
██ ██ @
██ ██ @
██ ██ @
██ ██ @
████ @
@
@@
██ ██ @
██ ██ @
██ █ ██ @
██ ███ ██ @
███ ███ @
@
@@
██ ██ @
██ ██ @
███ @
██ ██ @
██ ██ @
@
@@
██ ██ @
██ ██ @
████ @
██ @
██ @
@
@@
███████ @
███ @
███ @
███ @
███████ @
@
@@
███ @
██ @
██ @
██ @
███ @
@
@@
@
@
@
@
@
@
@@
███ @
██ @
██ @
██ @
███ @
@
@@
███ @
██ ██ @
@
@
@
@
@@
@
@
@
@
███████ @
@
@@
@
@
@
@
@
@
@@
█████ @
██ ██ @
███████ @
██ ██ @
██ ██ @
@
@@
██████ @
██ ██ @
██████ @
██ ██ @
██████ @
@
@@
██████ @
██ @
██ @
██ @
██████ @
@
@@
██████ @
██ ██ @
██ ██ @
██ ██ @
██████ @
@
@@
███████ @
██ @
█████ @
██ @
███████ @
@
@@
███████ @
██ @
█████ @
██ @
██ @
@
@@
██████ @
██ @
██ ███ @
██ ██ @
██████ @
@
@@
██ ██ @
██ ██ @
███████ @
██ ██ @
██ ██ @
@
@@
██ @
██ @
██ @
██ @
██ @
@
@@
██ @
██ @
██ @
██ ██ @
█████ @
@
@@
██ ██ @
██ ██ @
█████ @
██ ██ @
██ ██ @
@
@@
██ @
██ @
██ @
██ @
███████ @
@
@@
███ ███ @
████ ████ @
██ ████ ██ @
██ ██ ██ @
██ ██ @
@
@@
███ ██ @
████ ██ @
██ ██ ██ @
██ ██ ██ @
██ ████ @
@
@@
██████ @
██ ██ @
██ ██ @
██ ██ @
██████ @
@
@@
██████ @
██ ██ @
██████ @
██ @
██ @
@
@@
██████ @
██ ██ @
██ ██ @
██ ▄▄ ██ @
██████ @
▀▀ @
@@
██████ @
██ ██ @
██████ @
██ ██ @
██ ██ @
@
@@
███████ @
██ @
███████ @
██ @
███████ @
@
@@
████████ @
██ @
██ @
██ @
██ @
@
@@
██ ██ @
██ ██ @
██ ██ @
██ ██ @
██████ @
@
@@
██ ██ @
██ ██ @
██ ██ @
██ ██ @
████ @
@
@@
██ ██ @
██ ██ @
██ █ ██ @
██ ███ ██ @
███ ███ @
@
@@
██ ██ @
██ ██ @
███ @
██ ██ @
██ ██ @
@
@@
██ ██ @
██ ██ @
████ @
██ @
██ @
@
@@
███████ @
███ @
███ @
███ @
███████ @
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@

722
node_modules/figlet/fonts/ANSI Shadow.flf generated vendored Normal file
View File

@@ -0,0 +1,722 @@
flf2a$ 7 7 13 0 7 0 64 0
Font Author: ?
More Info:
https://web.archive.org/web/20120819044459/http://www.roysac.com/thedrawfonts-tdf.asp
FIGFont created with: http://patorjk.com/figfont-editor
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
██╗@
██║@
██║@
╚═╝@
██╗@
╚═╝@
@@
@
@
@
@
@
@
@@
██╗ ██╗ @
████████╗@
╚██╔═██╔╝@
████████╗@
╚██╔═██╔╝@
╚═╝ ╚═╝ @
@@
▄▄███▄▄·@
██╔════╝@
███████╗@
╚════██║@
███████║@
╚═▀▀▀══╝@
@@
██╗ ██╗@
╚═╝██╔╝@
██╔╝ @
██╔╝ @
██╔╝██╗@
╚═╝ ╚═╝@
@@
██╗ @
██║ @
████████╗@
██╔═██╔═╝@
██████║ @
╚═════╝ @
@@
@
@
@
@
@
@
@@
██╗@
██╔╝@
██║ @
██║ @
╚██╗@
╚═╝@
@@
██╗ @
╚██╗@
██║@
██║@
██╔╝@
╚═╝ @
@@
@
▄ ██╗▄@
████╗@
▀╚██╔▀@
╚═╝ @
@
@@
@
@
@
@
@
@
@@
@
@
@
@
▄█╗@
╚═╝@
@@
@
@
█████╗@
╚════╝@
@
@
@@
@
@
@
@
██╗@
╚═╝@
@@
██╗@
██╔╝@
██╔╝ @
██╔╝ @
██╔╝ @
╚═╝ @
@@
██████╗ @
██╔═████╗@
██║██╔██║@
████╔╝██║@
╚██████╔╝@
╚═════╝ @
@@
██╗@
███║@
╚██║@
██║@
██║@
╚═╝@
@@
██████╗ @
╚════██╗@
█████╔╝@
██╔═══╝ @
███████╗@
╚══════╝@
@@
██████╗ @
╚════██╗@
█████╔╝@
╚═══██╗@
██████╔╝@
╚═════╝ @
@@
██╗ ██╗@
██║ ██║@
███████║@
╚════██║@
██║@
╚═╝@
@@
███████╗@
██╔════╝@
███████╗@
╚════██║@
███████║@
╚══════╝@
@@
██████╗ @
██╔════╝ @
███████╗ @
██╔═══██╗@
╚██████╔╝@
╚═════╝ @
@@
███████╗@
╚════██║@
██╔╝@
██╔╝ @
██║ @
╚═╝ @
@@
█████╗ @
██╔══██╗@
╚█████╔╝@
██╔══██╗@
╚█████╔╝@
╚════╝ @
@@
█████╗ @
██╔══██╗@
╚██████║@
╚═══██║@
█████╔╝@
╚════╝ @
@@
@
██╗@
╚═╝@
██╗@
╚═╝@
@
@@
@
██╗@
╚═╝@
▄█╗@
▀═╝@
@
@@
██╗@
██╔╝@
██╔╝ @
╚██╗ @
╚██╗@
╚═╝@
@@
@
@
@
@
@
@
@@
██╗ @
╚██╗ @
╚██╗@
██╔╝@
██╔╝ @
╚═╝ @
@@
██████╗ @
╚════██╗@
▄███╔╝@
▀▀══╝ @
██╗ @
╚═╝ @
@@
██████╗ @
██╔═══██╗@
██║██╗██║@
██║██║██║@
╚█║████╔╝@
╚╝╚═══╝ @
@@
█████╗ @
██╔══██╗@
███████║@
██╔══██║@
██║ ██║@
╚═╝ ╚═╝@
@@
██████╗ @
██╔══██╗@
██████╔╝@
██╔══██╗@
██████╔╝@
╚═════╝ @
@@
██████╗@
██╔════╝@
██║ @
██║ @
╚██████╗@
╚═════╝@
@@
██████╗ @
██╔══██╗@
██║ ██║@
██║ ██║@
██████╔╝@
╚═════╝ @
@@
███████╗@
██╔════╝@
█████╗ @
██╔══╝ @
███████╗@
╚══════╝@
@@
███████╗@
██╔════╝@
█████╗ @
██╔══╝ @
██║ @
╚═╝ @
@@
██████╗ @
██╔════╝ @
██║ ███╗@
██║ ██║@
╚██████╔╝@
╚═════╝ @
@@
██╗ ██╗@
██║ ██║@
███████║@
██╔══██║@
██║ ██║@
╚═╝ ╚═╝@
@@
██╗@
██║@
██║@
██║@
██║@
╚═╝@
@@
██╗@
██║@
██║@
██ ██║@
╚█████╔╝@
╚════╝ @
@@
██╗ ██╗@
██║ ██╔╝@
█████╔╝ @
██╔═██╗ @
██║ ██╗@
╚═╝ ╚═╝@
@@
██╗ @
██║ @
██║ @
██║ @
███████╗@
╚══════╝@
@@
███╗ ███╗@
████╗ ████║@
██╔████╔██║@
██║╚██╔╝██║@
██║ ╚═╝ ██║@
╚═╝ ╚═╝@
@@
███╗ ██╗@
████╗ ██║@
██╔██╗ ██║@
██║╚██╗██║@
██║ ╚████║@
╚═╝ ╚═══╝@
@@
██████╗ @
██╔═══██╗@
██║ ██║@
██║ ██║@
╚██████╔╝@
╚═════╝ @
@@
██████╗ @
██╔══██╗@
██████╔╝@
██╔═══╝ @
██║ @
╚═╝ @
@@
██████╗ @
██╔═══██╗@
██║ ██║@
██║▄▄ ██║@
╚██████╔╝@
╚══▀▀═╝ @
@@
██████╗ @
██╔══██╗@
██████╔╝@
██╔══██╗@
██║ ██║@
╚═╝ ╚═╝@
@@
███████╗@
██╔════╝@
███████╗@
╚════██║@
███████║@
╚══════╝@
@@
████████╗@
╚══██╔══╝@
██║ @
██║ @
██║ @
╚═╝ @
@@
██╗ ██╗@
██║ ██║@
██║ ██║@
██║ ██║@
╚██████╔╝@
╚═════╝ @
@@
██╗ ██╗@
██║ ██║@
██║ ██║@
╚██╗ ██╔╝@
╚████╔╝ @
╚═══╝ @
@@
██╗ ██╗@
██║ ██║@
██║ █╗ ██║@
██║███╗██║@
╚███╔███╔╝@
╚══╝╚══╝ @
@@
██╗ ██╗@
╚██╗██╔╝@
╚███╔╝ @
██╔██╗ @
██╔╝ ██╗@
╚═╝ ╚═╝@
@@
██╗ ██╗@
╚██╗ ██╔╝@
╚████╔╝ @
╚██╔╝ @
██║ @
╚═╝ @
@@
███████╗@
╚══███╔╝@
███╔╝ @
███╔╝ @
███████╗@
╚══════╝@
@@
███╗@
██╔╝@
██║ @
██║ @
███╗@
╚══╝@
@@
@
@
@
@
@
@
@@
███╗@
╚██║@
██║@
██║@
███║@
╚══╝@
@@
███╗ @
██╔██╗@
╚═╝╚═╝@
@
@
@
@@
@
@
@
@
███████╗@
╚══════╝@
@@
@
@
@
@
@
@
@@
█████╗ @
██╔══██╗@
███████║@
██╔══██║@
██║ ██║@
╚═╝ ╚═╝@
@@
██████╗ @
██╔══██╗@
██████╔╝@
██╔══██╗@
██████╔╝@
╚═════╝ @
@@
██████╗@
██╔════╝@
██║ @
██║ @
╚██████╗@
╚═════╝@
@@
██████╗ @
██╔══██╗@
██║ ██║@
██║ ██║@
██████╔╝@
╚═════╝ @
@@
███████╗@
██╔════╝@
█████╗ @
██╔══╝ @
███████╗@
╚══════╝@
@@
███████╗@
██╔════╝@
█████╗ @
██╔══╝ @
██║ @
╚═╝ @
@@
██████╗ @
██╔════╝ @
██║ ███╗@
██║ ██║@
╚██████╔╝@
╚═════╝ @
@@
██╗ ██╗@
██║ ██║@
███████║@
██╔══██║@
██║ ██║@
╚═╝ ╚═╝@
@@
██╗@
██║@
██║@
██║@
██║@
╚═╝@
@@
██╗@
██║@
██║@
██ ██║@
╚█████╔╝@
╚════╝ @
@@
██╗ ██╗@
██║ ██╔╝@
█████╔╝ @
██╔═██╗ @
██║ ██╗@
╚═╝ ╚═╝@
@@
██╗ @
██║ @
██║ @
██║ @
███████╗@
╚══════╝@
@@
███╗ ███╗@
████╗ ████║@
██╔████╔██║@
██║╚██╔╝██║@
██║ ╚═╝ ██║@
╚═╝ ╚═╝@
@@
███╗ ██╗@
████╗ ██║@
██╔██╗ ██║@
██║╚██╗██║@
██║ ╚████║@
╚═╝ ╚═══╝@
@@
██████╗ @
██╔═══██╗@
██║ ██║@
██║ ██║@
╚██████╔╝@
╚═════╝ @
@@
██████╗ @
██╔══██╗@
██████╔╝@
██╔═══╝ @
██║ @
╚═╝ @
@@
██████╗ @
██╔═══██╗@
██║ ██║@
██║▄▄ ██║@
╚██████╔╝@
╚══▀▀═╝ @
@@
██████╗ @
██╔══██╗@
██████╔╝@
██╔══██╗@
██║ ██║@
╚═╝ ╚═╝@
@@
███████╗@
██╔════╝@
███████╗@
╚════██║@
███████║@
╚══════╝@
@@
████████╗@
╚══██╔══╝@
██║ @
██║ @
██║ @
╚═╝ @
@@
██╗ ██╗@
██║ ██║@
██║ ██║@
██║ ██║@
╚██████╔╝@
╚═════╝ @
@@
██╗ ██╗@
██║ ██║@
██║ ██║@
╚██╗ ██╔╝@
╚████╔╝ @
╚═══╝ @
@@
██╗ ██╗@
██║ ██║@
██║ █╗ ██║@
██║███╗██║@
╚███╔███╔╝@
╚══╝╚══╝ @
@@
██╗ ██╗@
╚██╗██╔╝@
╚███╔╝ @
██╔██╗ @
██╔╝ ██╗@
╚═╝ ╚═╝@
@@
██╗ ██╗@
╚██╗ ██╔╝@
╚████╔╝ @
╚██╔╝ @
██║ @
╚═╝ @
@@
███████╗@
╚══███╔╝@
███╔╝ @
███╔╝ @
███████╗@
╚══════╝@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@

421
node_modules/figlet/fonts/ASCII New Roman.flf generated vendored Normal file
View File

@@ -0,0 +1,421 @@
flf2a$ 4 3 9 63 12 0 8127 0
Author : Marcin Glinsky and others
Date : 2003/09/02 20:09:19
Version: 1.0
-------------------------------------------------
Font ascii_new_roman, created by Marcin Glinski
and others from alt.ascii-art
-------------------------------------------------
This font has been created using JavE's FIGlet font export assistant.
Have a look at: http://www.jave.de
Permission is hereby given to modify this font, as long as the
modifier's name is placed on a comment line.
$ #
$ #
$ #
$ ##
__, #
(-V #
_o #
( ##
"#
#
#
##
##
#
#
##
_||_, #
(-(__ #
_||_) #
( ##
_, _,#
(-o ,' #
_,',o'#
( ##
&#
#
#
##
__, #
(-/ #
#
##
____, #
(-// #
_\\_ #
( ##
___, #
(-\\ #
_//_ #
( ##
*#
#
#
##
___, #
(-_|_. #
_| #
( ##
,#
#
#
##
#
____, #
( #
##
.#
#
#
##
___, #
(-// #
_//_ #
( ##
_____,#
(-/ /\ #
_\/_/ #
( ##
___, #
(-/| #
'_|, #
( ##
__, #
(- ) #
,'_, #
( ##
__, #
(-_) #
__) #
( ##
____, #
(-/_|_,#
_|, #
( ##
____, #
(-|_ #
__) #
( ##
___, #
(-/_ #
_(__) #
( ##
___, #
(- / #
_/, #
( ##
_____,#
(-(__) #
_(__) #
( ##
_____,#
(-(__) #
__/, #
( ##
__, #
(-o #
_o #
( ##
__, #
(-o #
_p #
( ##
<#
#
#
##
=#
#
#
##
>#
#
#
##
_____,#
(-( _)#
_(, #
( ##
___, #
(-/_\ #
_((_/_#
( ##
____,#
(-/_| #
_/ |,#
( ##
____ #
(-|__) #
_|__) #
( ##
____, #
(-/ #
_\__, #
( ##
____, #
(-| \ #
_|__/ #
( ##
____, #
(-|_, #
_|__, #
( ##
____, #
(-|_, #
_| #
( ##
____, #
(-/ _, #
_\__| #
( ##
__, _,#
(-|__| #
_| |,#
( ##
__, #
(-| #
_|_, #
( ##
_, #
(-| #
__|, #
( ##
__, , #
( |_/ #
_| \, #
( ##
__, #
(-| #
_|__, #
( ##
__, _,#
(-|\/| #
_| _|,#
( ##
_, _,#
(-|\ | #
_| \|,#
( ##
____, #
(-/ \ #
_\__/,#
( ##
____, #
(-|__) #
_| #
( ##
____, #
(-/ \ #
_\_\/,#
( ##
____, #
(-|__) #
_| \,#
( ##
____, #
(-(__ #
____) #
( ##
____, #
(-| #
_|, #
( ##
_, _, #
(-| \ #
_|__/ #
( ##
__ _,#
(-\ / #
_\/ #
( ##
_ _,#
(-| | #
_|/\|,#
( ##
_, _, #
(-\_/ #
_/ \, #
( ##
_ _, #
(-\_/ #
_|, #
( ##
___, #
(- / #
_/__, #
( ##
[#
#
#
##
_, #
(-\\ #
_\\, #
( ##
]#
#
#
##
___, #
(-/\ #
' ` #
##
_#
#
#
##
`#
#
#
##
____,#
(-/_| #
_/ |,#
( ##
____ #
(-|__) #
_|__) #
( ##
____, #
(-/ #
_\__, #
( ##
____, #
(-| \ #
_|__/ #
( ##
____, #
(-|_, #
_|__, #
( ##
____, #
(-|_, #
_| #
( ##
____, #
(-/ _, #
_\__| #
( ##
__, _,#
(-|__| #
_| |,#
( ##
__, #
(-| #
_|_, #
( ##
_, #
(-| #
__|, #
( ##
__, , #
( |_/ #
_| \, #
( ##
__, #
(-| #
_|__, #
( ##
__, _,#
(-|\/| #
_| _|,#
( ##
_, _,#
(-|\ | #
_| \|,#
( ##
____, #
(-/ \ #
_\__/,#
( ##
____, #
(-|__) #
_| #
( ##
____, #
(-/ \ #
_\_\/,#
( ##
____, #
(-|__) #
_| \,#
( ##
____, #
(-(__ #
____) #
( ##
____, #
(-| #
_|, #
( ##
_, _, #
(-| \ #
_|__/ #
( ##
__ _,#
(-\ / #
_\/ #
( ##
_ _,#
(-| | #
_|/\|,#
( ##
_, _, #
(-\_/ #
_/ \, #
( ##
_ _, #
(-\_/ #
_|, #
( ##
___, #
(- / #
_/__, #
( ##
{#
#
#
##
__, #
(-| #
| #
_|, ##
}#
#
#
##
~#
#
#
##
____,#
(-/_| #
_/ |,#
( ##
____, #
(-/ \ #
_\__/,#
( ##
_, _, #
(-| \ #
_|__/ #
( ##
____,#
(-/_| #
_/ |,#
( ##
____, #
(-/ \ #
_\__/,#
( ##
_, _, #
(-| \ #
_|__/ #
( ##
ß#
#
#
##

1240
node_modules/figlet/fonts/Acrobatic.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

718
node_modules/figlet/fonts/Alligator.flf generated vendored Normal file
View File

@@ -0,0 +1,718 @@
flf2a$ 7 7 26 32 3
Alligator by Simon Bradley <syb3@aber.ac.uk>
17th June, 1994
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
:::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
$ $ @
###$ @@
::: :::$@
:+: :+:$ @
$ $ @
$ $ @
$ $ @
$ $ @
$ $ @@
::: :::$ @
:+: :+:$ @
+:+:+:+:+:+:+:+$@
+#+ +:+$ @
+#+#+#+#+#+#+#+$ @
#+# #+#$ @
### ###$ @@
:::$ @
:+:+:+:+:$@
+:+ +:+$ @
+#++:++#+$ @
+#+ +#+$ @
#+#+#+#+#$ @
###$ @@
::: :::$ @
:+: :+:$ @
+:+$ @
+#+$ @
+#+$ @
#+# #+#$@
### ###$ @@
:::::::$ @
:+: :+:$ @
+:+ +:+$ @
+#++: ++#$@
+#+ +#+#+#$ @
#+# #+#+$ @
##########$ @@
:::$@
:+$ @
$$ @
$$ @
$$ @
$$ @
$$ @@
:::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$ @@
:::$@
:+:$@
+:+$@
+#+$ @
+#+$ @
#+#$ @
###$ @@
$ $ $ $@
:+: :+:$@
+:+ +:+$ @
+#++:++#++:++$ @
+#+ +#+$ @
#+# #+#$ @
$ $ $ $ @@
$ $ @
:+:$ @
+:+$ @
+#++:++#++:++$@
+#+$ @
#+#$ @
$ $ @@
$ $@
$ $ @
$ $ @
$ $ @
$ $ @
#+#$ @
##$ @@
$ $@
$ $ @
$ $ @
+#++:++#++:++$ @
$ $ @
$ $ @
$ $ @@
$ $@
$ $ @
$ $ @
$ $ @
$ $ @
#+#$ @
###$ @@
:::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$ @@
:::::::$@
:+: :+:$@
+:+ +:+$ @
+#+ +:+$ @
+#+ +#+$ @
#+# #+#$ @
#######$ @@
:::$@
:+:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
#######$ @@
::::::::$@
:+: :+:$@
$ +:+$ @
$ +#+$ @
$ +#+$ @
#+#$ @
##########$ @@
::::::::$@
:+: :+:$@
$ +:+$ @
$ +#++:$ @
$ +#+$ @
#+# #+#$ @
########$ @@
:::$@
:+:$ @
+:+ +:+$@
+#+ +:+$ @
+#+#+#+#+#+$@
#+#$ @
###$ @@
::::::::::$@
:+: :+:$ @
+:+ $ @
+#++:++#+$ @
$ +#+$ @
#+# #+#$ @
########$ @@
::::::::$@
:+: :+:$@
+:+ $ @
+#++:++#+$ @
+#+ +#+$ @
#+# #+#$ @
########$ @@
:::::::::::$@
:+: :+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$ @@
::::::::$@
:+: :+:$@
+:+ +:+$ @
+#++:++#$ @
+#+ +#+$ @
#+# #+#$ @
########$ @@
::::::::$@
:+: :+:$@
+:+ +:+$ @
+#++:++#+$ @
$ +#+$ @
#+# #+#$ @
########$ @@
$ $@
:+:$@
$ $ @
$ $ @
$ $ @
#+#$ @
$ $ @@
$ $@
:+:$@
$ $ @
$ $ @
$ $ @
#+#$ @
##$ @@
:::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$ @@
$ $@
$ $ @
+:+:+:+:+:+:+$ @
$ $ @
+#+#+#+#+#+#+$ @
$ $ @
$ $ @@
:::$@
:+:$@
+:+$@
+#+$@
+#+$ @
#+#$ @
###$ @@
:::::::::$@
:+: :+:$@
+:+$ @
+#+$ @
+#+$ @
$ $ @
###$ @@
:::::::::::$ @
:+: :+:+:+:+:+:$@
+:+ +:+ +:+ +:+$@
+#+ +:+ +#+ +:+$ @
+#+ +#+ +#+ +#+$ @
#+# #+#+#+#+#+$ @
#####$ @@
:::$ @
:+: :+:$@
+:+ +:+$@
+#++:++#++:$@
+#+ +#+$ @
#+# #+#$ @
### ###$ @@
:::::::::$@
:+: :+:$@
+:+ +:+$ @
+#++:++#+$ @
+#+ +#+$ @
#+# #+#$ @
#########$ @@
::::::::$@
:+: :+:$@
+:+ $ @
+#+ $ @
+#+ $ @
#+# #+#$ @
########$ @@
:::::::::$@
:+: :+:$@
+:+ +:+$ @
+#+ +:+$ @
+#+ +#+$ @
#+# #+#$ @
#########$ @@
::::::::::$@
:+:$ @
+:+$ @
+#++:++#$ @
+#+$ @
#+#$ @
##########$ @@
::::::::::$@
:+:$ @
+:+$ @
:#::+::#$ @
+#+$ @
#+#$ @
###$ @@
::::::::$@
:+: :+:$@
+:+ $ @
:#: $ @
+#+ +#+#$ @
#+# #+#$ @
########$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#++:++#++$ @
+#+ +#+$ @
#+# #+#$ @
### ###$ @@
:::::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###########$ @@
:::::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+# #+#$ @
#####$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#++:++$ @
+#+ +#+$ @
#+# #+#$ @
### ###$ @@
:::$ @
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
##########$@@
::: :::$@
:+:+: :+:+:$@
+:+ +:+:+ +:+$@
+#+ +:+ +#+$ @
+#+ +#+$ @
#+# #+#$ @
### ###$ @@
:::: :::$@
:+:+: :+:$ @
:+:+:+ +:+$ @
+#+ +:+ +#+$ @
+#+ +#+#+#$ @
#+# #+#+#$ @
### ####$ @@
::::::::$@
:+: :+:$@
+:+ +:+$ @
+#+ +:+$ @
+#+ +#+$ @
#+# #+#$ @
########$ @@
:::::::::$@
:+: :+:$@
+:+ +:+$ @
+#++:++#+$ @
+#+$ @
#+#$ @
###$ @@
::::::::$@
:+: :+:$@
+:+ +:+$ @
+#+ +:+$ @
+#+ +#+$ @
#+# #+#$ @
###########$ @@
:::::::::$@
:+: :+:$@
+:+ +:+$ @
+#++:++#:$ @
+#+ +#+$ @
#+# #+#$ @
### ###$ @@
::::::::$@
:+: :+:$@
+:+ $ @
+#++:++#++$ @
$ +#+$ @
#+# #+#$ @
########$ @@
:::::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#+ +:+$ @
+#+ +#+$ @
#+# #+#$ @
########$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#+ +:+$ @
+#+ +#+$ @
#+#+#+#$ @
###$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#+ +:+ +#+$ @
+#+ +#+#+ +#+$ @
#+#+# #+#+#$ @
### ###$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#++:+$ @
+#+ +#+$ @
#+# #+#$ @
### ###$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#++:$ @
+#+$ @
#+#$ @
###$ @@
:::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
#########$ @@
::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
######$ @@
:::$@
:+:$@
+:+$@
+#+$@
+#+$@
#+#$@
###$@@
::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
######$ @@
:::$ @
:+: :+:$ @
+:+ +:+$@
$ $ @
$ $ @
$ $ @
$ $ @@
$ $@
$ $ @
$ $ @
$ $ @
$ $ @
$ $ @
##########$ @@
:::$@
:+$ @
$$ @
$$ @
$$ @
$$ @
$$ @@
:::$ @
:+: :+:$@
+:+ +:+$@
+#++:++#++:$@
+#+ +#+$ @
#+# #+#$ @
### ###$ @@
:::::::::$@
:+: :+:$@
+:+ +:+$ @
+#++:++#+$ @
+#+ +#+$ @
#+# #+#$ @
#########$ @@
::::::::$@
:+: :+:$@
+:+ $ @
+#+ $ @
+#+ $ @
#+# #+#$ @
########$ @@
:::::::::$@
:+: :+:$@
+:+ +:+$ @
+#+ +:+$ @
+#+ +#+$ @
#+# #+#$ @
#########$ @@
::::::::::$@
:+:$ @
+:+$ @
+#++:++#$ @
+#+$ @
#+#$ @
##########$ @@
::::::::::$@
:+:$ @
+:+$ @
:#::+::#$ @
+#+$ @
#+#$ @
###$ @@
::::::::$@
:+: :+:$@
+:+ $ @
:#: $ @
+#+ +#+#$ @
#+# #+#$ @
########$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#++:++#++$ @
+#+ +#+$ @
#+# #+#$ @
### ###$ @@
:::::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###########$ @@
:::::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+# #+#$ @
#####$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#++:++$ @
+#+ +#+$ @
#+# #+#$ @
### ###$ @@
:::$ @
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
##########$@@
::: :::$@
:+:+: :+:+:$@
+:+ +:+:+ +:+$@
+#+ +:+ +#+$ @
+#+ +#+$ @
#+# #+#$ @
### ###$ @@
:::: :::$@
:+:+: :+:$ @
:+:+:+ +:+$ @
+#+ +:+ +#+$ @
+#+ +#+#+#$ @
#+# #+#+#$ @
### ####$ @@
::::::::$@
:+: :+:$@
+:+ +:+$ @
+#+ +:+$ @
+#+ +#+$ @
#+# #+#$ @
########$ @@
:::::::::$@
:+: :+:$@
+:+ +:+$ @
+#++:++#+$ @
+#+$ @
#+#$ @
###$ @@
::::::::$@
:+: :+:$@
+:+ +:+$ @
+#+ +:+$ @
+#+ +#+$ @
#+# #+#$ @
###########$ @@
:::::::::$@
:+: :+:$@
+:+ +:+$ @
+#++:++#:$ @
+#+ +#+$ @
#+# #+#$ @
### ###$ @@
::::::::$@
:+: :+:$@
+:+ $ @
+#++:++#++$ @
$ +#+$ @
#+# #+#$ @
########$ @@
:::::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#+ +:+$ @
+#+ +#+$ @
#+# #+#$ @
########$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#+ +:+$ @
+#+ +#+$ @
#+#+#+#$ @
###$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#+ +:+ +#+$ @
+#+ +#+#+ +#+$ @
#+#+# #+#+#$ @
### ###$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#++:+$ @
+#+ +#+$ @
#+# #+#$ @
### ###$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#++:$ @
+#+$ @
#+#$ @
###$ @@
:::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
#########$ @@
::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
####$ @@
:::$@
:+:$ @
+:+$ @
$ $ @
+#+$ @
#+#$ @
###$ @@
::::$@
:+:$@
+:+$ @
+#+$@
+#+$ @
#+#$ @
####$ @@
::::: :::$@
:+: :+:+:$ @
$ $ @
$ $ @
$ $ @
$ $ @
$ $ @@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@

719
node_modules/figlet/fonts/Alligator2.flf generated vendored Normal file
View File

@@ -0,0 +1,719 @@
flf2a$ 7 7 26 32 4
Alligator2 by Daniel Wiz. AKA Merlin Greywolf <merlin@brahms.udel.edu>
27th July, 1994
This is the STRAIGHT version of the revised Alligator font I edited.
It's EXACTLY like my other posted font except the tilt was taken out.
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
:::$@
:+:$@
+:+$@
+#+$@
+#+$@
$ $ @
###$@@
::: :::$@
:+: :+:$@
$ $ @
$ $ @
$ $ @
$ $ @
$ $ @@
::: :::$ @
:+: :+:$ @
+:+:+:+:+:+:+:+$@
+#+ +:+$ @
+#+#+#+#+#+#+#+$@
#+# #+#$ @
### ###$ @@
:::$ @
:+:+:+:+:$ @
+:+ +:+$ @
+#++:++#+$ @
+#+ +#+$@
#+#+#+#+#$ @
###$ @@
::: :::$ @
:+: :+:$ @
+:+$ @
+#+$ @
+#+$ @
#+# #+#$@
### ###$@@
:::::::$ @
:+: :+:$ @
+:+ +:+$ @
+#++: ++#$@
+#+ +#+#+#$ @
#+# #+#+$ @
##########$ @@
:::$@
:+$ @
$$ @
$$ @
$$ @
$$ @
$$ @@
:::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$@@
:::$ @
:+:$ @
+:+$@
+#+$@
+#+$@
#+#$ @
###$ @@
$ $ $ $ @
:+: :+:$ @
+:+ +:+$ @
+#++:++#++:++$@
+#+ +#+$ @
#+# #+#$ @
$ $ $ $ @@
$ $ @
:+:$ @
+:+$ @
+#++:++#++:++$@
+#+$ @
#+#$ @
$ $ @@
$ $ @
$ $ @
$ $ @
$ $ @
$ $ @
#+#$@
##$ @@
$ $ @
$ $ @
$ $ @
+#++:++#++:++$@
$ $ @
$ $ @
$ $ @@
$ $ @
$ $ @
$ $ @
$ $ @
$ $ @
#+#$@
###$@@
:::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$ @@
:::::::$ @
:+: :+:$@
+:+ :+:+$@
+#+ + +:+$@
+#+# +#+$@
#+# #+#$@
#######$ @@
:::$ @
:+:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
#######$@@
::::::::$ @
:+: :+:$@
$ +:+$ @
$ +#+$ @
$ +#+$ @
#+#$ @
##########$@@
::::::::$ @
:+: :+:$@
$ +:+$@
$ +#++:$ @
$ +#+$@
#+# #+#$@
########$ @@
:::$ @
:+:$ @
+:+ +:+$ @
+#+ +:+$ @
+#+#+#+#+#+$@
#+#$ @
###$ @@
::::::::::$@
:+: :+:$@
+:+ $ @
+#++:++#+$ @
$ +#+$@
#+# #+#$@
########$ @@
::::::::$ @
:+: :+:$@
+:+ $ @
+#++:++#+$ @
+#+ +#+$@
#+# #+#$@
########$ @@
:::::::::::$@
:+: :+:$@
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$ @@
::::::::$ @
:+: :+:$@
+:+ +:+$@
+#++:++#$ @
+#+ +#+$@
#+# #+#$@
########$ @@
::::::::$ @
:+: :+:$@
+:+ +:+$@
+#++:++#+$@
$ +#+$@
#+# #+#$@
########$ @@
$ $ @
:+:$@
$ $ @
$ $ @
$ $ @
#+#$@
$ $ @@
$ $ @
:+:$@
$ $ @
$ $ @
$ $ @
#+#$@
##$ @@
:::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$@@
$ $ @
$ $ @
+:+:+:+:+:+:+$@
$ $ @
+#+#+#+#+#+#+$@
$ $ @
$ $ @@
:::$ @
:+:$ @
+:+$ @
+#+$@
+#+$ @
#+#$ @
###$ @@
:::::::::$ @
:+: :+:$@
+:+$ @
+#+$ @
+#+$ @
$ $ @
###$ @@
:::::::::::$ @
:+: :+:+:+:+:+:$ @
+:+ +:+ +:+ +:+$@
+#+ +:+ +#+ +:+$@
+#+ +#+ +#+ +#+$@
#+# #+#+#+#+#+$ @
#####$ @@
:::$ @
:+: :+:$ @
+:+ +:+$ @
+#++:++#++:$@
+#+ +#+$@
#+# #+#$@
### ###$@@
:::::::::$ @
:+: :+:$@
+:+ +:+$@
+#++:++#+$ @
+#+ +#+$@
#+# #+#$@
#########$ @@
::::::::$ @
:+: :+:$@
+:+ $ @
+#+ $ @
+#+ $ @
#+# #+#$@
########$ @@
:::::::::$ @
:+: :+:$@
+:+ +:+$@
+#+ +:+$@
+#+ +#+$@
#+# #+#$@
#########$ @@
::::::::::$@
:+:$ @
+:+$ @
+#++:++#$ @
+#+$ @
#+#$ @
##########$@@
::::::::::$@
:+:$ @
+:+$ @
:#::+::#$ @
+#+$ @
#+#$ @
###$ @@
::::::::$ @
:+: :+:$@
+:+ $ @
:#: $ @
+#+ +#+#$@
#+# #+#$@
########$ @@
::: :::$@
:+: :+:$@
+:+ +:+$@
+#++:++#++$@
+#+ +#+$@
#+# #+#$@
### ###$@@
:::::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###########$@@
:::::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+# #+#$ @
#####$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#++:++$ @
+#+ +#+$ @
#+# #+#$ @
### ###$@@
:::$ @
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
##########$@@
:::: ::::$ @
+:+:+: :+:+:+$@
+:+ +:+:+ +:+$@
+#+ +:+ +#+$@
+#+ +#+$@
#+# #+#$@
### ###$@@
:::: :::$@
:+:+: :+:$@
:+:+:+ +:+$@
+#+ +:+ +#+$@
+#+ +#+#+#$@
#+# #+#+#$@
### ####$@@
::::::::$ @
:+: :+:$@
+:+ +:+$@
+#+ +:+$@
+#+ +#+$@
#+# #+#$@
########$ @@
:::::::::$ @
:+: :+:$@
+:+ +:+$@
+#++:++#+$ @
+#+$ @
#+#$ @
###$ @@
::::::::$ @
:+: :+:$ @
+:+ +:+$ @
+#+ +:+$ @
+#+ # +#+$ @
#+# +#+ $ @
###### ###$@@
:::::::::$ @
:+: :+:$@
+:+ +:+$@
+#++:++#:$ @
+#+ +#+$@
#+# #+#$@
### ###$@@
::::::::$ @
:+: :+:$@
+:+ $ @
+#++:++#++$@
$ +#+$@
#+# #+#$@
########$ @@
:::::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$ @@
::: :::$@
:+: :+:$@
+:+ +:+$@
+#+ +:+$@
+#+ +#+$@
#+# #+#$@
########$ @@
::: :::$@
:+: :+:$@
+:+ +:+$@
+#+ +:+$@
+#+ +#+$ @
#+#+#+#$ @
###$ @@
::: :::$@
:+: :+:$@
+:+ +:+$@
+#+ +:+ +#+$@
+#+ +#+#+ +#+$@
#+#+# #+#+#$ @
### ###$ @@
::: :::$@
:+: :+:$@
+:+ +:+$ @
+#++:+$ @
+#+ +#+$ @
#+# #+#$@
### ###$@@
::: :::$@
:+: :+:$@
+:+ +:+$ @
+#++:$ @
+#+$ @
#+#$ @
###$ @@
:::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
#########$@@
::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
######$@@
:::$ @
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$@@
::::::$@
:+:$@
+:+$@
+#+$@
+#+$@
#+#$@
######$@@
:::$ @
:+: :+:$ @
+:+ +:+$@
$ $ @
$ $ @
$ $ @
$ $ @@
$ $ @
$ $ @
$ $ @
$ $ @
$ $ @
$ $ @
##########$@@
:::$@
:+$@
$$ @
$$ @
$$ @
$$ @
$$ @@
:::$ @
:+: :+:$ @
+:+ +:+$ @
+#++:++#++:$@
+#+ +#+$@
#+# #+#$@
### ###$@@
:::::::::$ @
:+: :+:$@
+:+ +:+$@
+#++:++#+$ @
+#+ +#+$@
#+# #+#$@
#########$ @@
::::::::$ @
:+: :+:$@
+:+ $ @
+#+ $ @
+#+ $ @
#+# #+#$@
########$ @@
:::::::::$ @
:+: :+:$@
+:+ +:+$@
+#+ +:+$@
+#+ +#+$@
#+# #+#$@
#########$ @@
::::::::::$@
:+:$ @
+:+$ @
+#++:++#$ @
+#+$ @
#+#$ @
##########$@@
::::::::::$@
:+:$ @
+:+$ @
:#::+::#$ @
+#+$ @
#+#$ @
###$ @@
::::::::$ @
:+: :+:$@
+:+ $ @
:#: $ @
+#+ +#+#$@
#+# #+#$@
########$ @@
::: :::$@
:+: :+:$@
+:+ +:+$@
+#++:++#++$@
+#+ +#+$@
#+# #+#$@
### ###$@@
:::::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###########$@@
:::::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+# #+#$ @
#####$ @@
::: :::$@
:+: :+:$ @
+:+ +:+$ @
+#++:++$ @
+#+ +#+$ @
#+# #+#$ @
### ###$@@
:::$ @
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
##########$@@
:::: ::::$ @
+:+:+: :+:+:+$@
+:+ +:+:+ +:+$@
+#+ +:+ +#+$@
+#+ +#+$@
#+# #+#$@
### ###$@@
:::: :::$@
:+:+: :+:$@
:+:+:+ +:+$@
+#+ +:+ +#+$@
+#+ +#+#+#$@
#+# #+#+#$@
### ####$@@
::::::::$ @
:+: :+:$@
+:+ +:+$@
+#+ +:+$@
+#+ +#+$@
#+# #+#$@
########$ @@
:::::::::$ @
:+: :+:$@
+:+ +:+$@
+#++:++#+$ @
+#+$ @
#+#$ @
###$ @@
::::::::$ @
:+: :+:$ @
+:+ +:+$ @
+#+ +:+$ @
+#+ # +#+$ @
#+# +#+ $ @
###### ###$@@
:::::::::$ @
:+: :+:$@
+:+ +:+$@
+#++:++#:$ @
+#+ +#+$@
#+# #+#$@
### ###$@@
::::::::$ @
:+: :+:$@
+:+ $ @
+#++:++#++$@
$ +#+$@
#+# #+#$@
########$ @@
:::::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
###$ @@
::: :::$@
:+: :+:$@
+:+ +:+$@
+#+ +:+$@
+#+ +#+$@
#+# #+#$@
########$ @@
::: :::$@
:+: :+:$@
+:+ +:+$@
+#+ +:+$@
+#+ +#+$ @
#+#+#+#$ @
###$ @@
::: :::$@
:+: :+:$@
+:+ +:+$@
+#+ +:+ +#+$@
+#+ +#+#+ +#+$@
#+#+# #+#+#$ @
### ###$ @@
::: :::$@
:+: :+:$@
+:+ +:+$ @
+#++:+$ @
+#+ +#+$ @
#+# #+#$@
### ###$@@
::: :::$@
:+: :+:$@
+:+ +:+$ @
+#++:$ @
+#+$ @
#+#$ @
###$ @@
:::::::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
#########$@@
::::$@
:+:$ @
+:+$ @
+#+$ @
+#+$ @
#+#$ @
####$@@
:::$@
:+:$@
+:+$@
$ $ @
+#+$@
#+#$@
###$@@
::::$ @
:+:$ @
+:+$ @
+#+$@
+#+$ @
#+#$ @
####$ @@
::::: :::$@
:+: :+:+:$ @
$ $ @
$ $ @
$ $ @
$ $ @
$ $ @@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@

2272
node_modules/figlet/fonts/Alpha.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

732
node_modules/figlet/fonts/Alphabet.flf generated vendored Normal file
View File

@@ -0,0 +1,732 @@
flf2a 7 5 10 -1 17
Alphabet by Wendell Hicken 11/93 (whicken@parasoft.com)
Explanation of first line:
flf2 - "magic number" for file identification
a - should always be `a', for now
$ - the "hardblank" -- prints as a blank, but can't be smushed
6 - height of a character
5 - height of a character, not including descenders
20 - max line length (excluding comment lines) + a fudge factor
15 - default smushmode for this font (like "-m 15" on command line)
12 - number of comment lines
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
 @
 @
 @
 @
 @
 @
 @@
!!! @
!!! @
!!! @
@
!!! @
@
@@
'' '' @
'' '' @
@
@
@
@
@@
# # @
##### @
# # @
##### @
# # @
@
@@
$ $ @
$$$$$ @
$ $ $ @
$$$$$ @
$ $ $ @
$$$$$ @
$ $ @@
% %% @
%% @
%% @
%% @
%% % @
@
@@
&& @
& & @
&&& &@
& & & @
&&&& @
@
@@
'' @
'' @
@
@
@
@
@@
(( @
(( @
(( @
(( @
(( @
@
@@
)) @
)) @
)) @
)) @
)) @
@
@@
@
* * * @
*** @
***** @
*** @
* * * @
@@
@
+ @
+++ @
+ @
@
@
@@
@
@
@
@
,, @
, @
@@
@
@
--- @
@
@
@
@@
@
@
@
.. @
.. @
@
@@
//@
// @
// @
// @
// @
@
@@
000 @
0 00 @
0 0 0 @
00 0 @
000 @
@
@@
11 @
111 @
11 @
11 @
11l1 @
@
@@
22 @
2 2 @
2 @
2 @
2222 @
@
@@
333 @
3 @
33 @
3 @
333 @
@
@@
4 4 @
4 4 @
4444 @
4 @
4 @
@
@@
5555 @
5 @
555 @
5 @
555 @
@
@@
6 @
6 @
6666 @
6 6 @
666 @
@
@@
77777 @
7 @
7 @
7 @
7 @
@
@@
888 @
8 8 @
888 @
8 8 @
888 @
@
@@
9999 @
9 9 @
9999 @
9 @
9 @
@
@@
@
:: @
@
:: @
@
@
@@
@
;; @
@
;; @
; @
@
@@
<< @
<< @
<< @
<< @
<< @
@
@@
@
=== @
@
=== @
@
@
@@
>> @
>> @
>> @
>> @
>> @
@
@@
??? @
? ? @
? @
? @
? @
@
@@
@@@ @
@ @ @
@ @@ @
@ @
@@@ @
@
@@
AA @
A A @
AAAA @
A A @
A A @
@
@@
BBBB @
B B @
BBBB @
B B @
BBBB @
@
@@
CCC @
C @
C @
C @
CCC @
@
@@
DDD @
D D @
D D @
D D @
DDD @
@
@@
EEEE @
E @
EEE @
E @
EEEE @
@
@@
FFFF @
F @
FFF @
F @
F @
@
@@
GGG @
G @
G GG @
G G @
GGG @
@
@@
H H @
H H @
HHHH @
H H @
H H @
@
@@
III @
I @
I @
I @
III @
@
@@
J @
J @
J @
J J @
JJJ @
@
@@
K K @
K K @
KK @
K K @
K K @
@
@@
L @
L @
L @
L @
LLLL @
@
@@
M M @
MM MM @
M M M @
M M @
M M @
@
@@
N N @
NN N @
N N N @
N NN @
N N @
@
@@
OOO @
O O @
O O @
O O @
OOO @
@
@@
PPPP @
P P @
PPPP @
P @
P @
@
@@
QQQ @
Q Q @
Q Q @
Q QQ @
QQQQ @
Q @
@@
RRRR @
R R @
RRRR @
R R @
R RR @
@
@@
SSS @
S @
SSS @
S @
SSSS @
@
@@
TTTTTT @
TT @
TT @
TT @
TT @
@
@@
U U @
U U @
U U @
U U @
UUU @
@
@@
V V @
V V @
V V @
V V @
V @
@
@@
W W @
W W @
W W W @
W W W @
W W @
@
@@
X X @
X X @
X @
X X @
X X @
@
@@
Y Y @
Y Y @
Y @
Y @
Y @
@
@@
ZZZZZ @
Z @
Z @
Z @
ZZZZZ @
@
@@
[[[[ @
[[ @
[[ @
[[ @
[[[[ @
@
@@
\\ @
\\ @
\\ @
\\ @
\\@
@
@@
]]]] @
]] @
]] @
]] @
]]]] @
@
@@
^^ @
^ ^ @
@
@
@
@
@@
@
@
@
@
____@
____@
@@
`` @
@
@
@
@
@
@@
@
@
aa @
a a @
aaa @
@
@@
b @
b @
bbb @
b b @
bbb @
@
@@
@
@
ccc @
c @
ccc @
@
@@
d @
d @
ddd @
d d @
ddd @
@
@@
@
@
eee @
e e @
ee @
@
@@
ff @
f @
fff @
f @
f @
@
@@
@
@
ggg @
g g @
ggg @
g @
ggg @@
h @
h @
hhh @
h h @
h h @
@
@@
@
ii @
@
ii @
ii @
@
@@
@
j @
@
j @
j @
j j @
jj @@
k @
k k @
kk @
k k @
k k @
@
@@
l @
l @
l @
l @
l @
@
@@
@
@
mmmm @
m m m @
m m m @
@
@@
@
@
nnn @
n n @
n n @
@
@@
@
@
ooo @
o o @
ooo @
@
@@
@
@
ppp @
p p @
ppp @
p @
p @@
@
@
qqq @
q q @
qqq @
q @
qq @@
@
@
rrr @
r @
r @
@
@@
@
@
ss @
s @
ss @
@
@@
t @
t @
ttt @
t @
tt @
@
@@
@
@
u u @
u u @
uuu @
@
@@
@
@
v v @
v v @
v @
@
@@
@
@
w w @
w w w @
w w @
@
@@
@
@
x x @
x @
x x @
@
@@
@
@
y y @
y y @
yyy @
y @
yyy @@
@
@
zz @
z @
zz @
@
@@
{{ @
{{ @
{{ @
{{ @
{{ @
@
@@
||@
||@
||@
||@
||@
||@
@@
}} @
}} @
}} @
}} @
}} @
@
@@
@
~ ~ @
~ ~ @
@
@
@
@@
o o @
AA @
A A @
AAAA @
A A @
@
@@
o o @
OOO @
O O @
O O @
OOO @
@
@@
o o @
U U @
U U @
U U @
UUU @
@
@@
o o @
@
aa @
a a @
aaa @
@
@@
o o @
@
ooo @
o o @
ooo @
@
@@
o o @
@
u u @
u u @
uuu @
@
@@
BBBB @
B B @
BBBB @
B B @
BBBB @
B @
@@

825
node_modules/figlet/fonts/Arrows.flf generated vendored Normal file
View File

@@ -0,0 +1,825 @@
flf2a$ 8 7 20 -1 8
ARROWS by Ron Fritz 8/94
Figlet Release 2.0
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
>=>@
>=>@
>=>@
>>$@
>>$@
@
>=>@
@@
>> >>@
>> >>@
@
@
@
@
@
@@
@
>=> >=>$$$@
>=====>>===>$@
>=> >=>$$$@
>=> >=>$$$@
>=====>>===>$@
>=> >=>$$$@
@@
>=> $@
>=>>=>$@
>=> $@
>=> $@
>=> $@
>=>>==>$@
>=> $@
@@
@
>=> >=>$@
>=> $@
>=> $@
>=> $@
>=> $@
>=> >=>$@
@@
>> $@
>=>>=>$@
>=> $@
>==> $@
>=> $@
>=>>=>$@
>> $@
@@
>=>$@
>>$@
@
@
@
@
@
@@
>=>$@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
>=>$@
@@
>=> $@
>=> $@
>=>$@
>=>$@
>=>$@
>=> $@
>=> $@
@@
>=> $@
>> >=> >> $@
> >=> > $@
>===>>=>>===>$@
> >=> > $@
>> >=> >> $@
>=> $@
@@
@
>=> $@
>=> $@
>==> >====>$@
>=> $@
>=> $@
@
@@
@
@
@
@
@
@
>=>$@
>>$@@
@
@
@
>====>$@
@
@
@
@@
@
@
@
@
@
@
>=>$@
@@
>=>$@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
@@
@
>=> $@
>=> >=> $@
>=> >=> $@
>=> >=>$@
>=> >=> $@
>==> $@
@@
@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
>===>$@
@@
@
>=>>=> $@
>> >=>$@
>=> $@
>=> $@
>=> $@
>======>$@
@@
@
>=>>=> $@
>=> $@
>=> $@
>=> $@
>=>$@
>====> $@
@@
@
>=> $@
>>=> $@
> >=> $@
>=> >=> $@
>===>>=>>=>$@
>=> $@
$@@
@
>=>>==> $@
>=> $@
>==> $@
>=> $@
>=>$@
>==>>=> $@
@@
@
>=> $@
>=> $@
>=> $@
>=> >=> $@
>=> >=>$@
>=>>=> $@
@@
@
>====>>=>$@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
@@
@
>=> $@
>> >=>$@
>> >>$@
>=>>=> $@
>> >>$@
>====> $@
@@
@
>> >=> $@
>=> >=>$@
>> >=>$@
>=> >=> $@
>=> $@
>=> $@
@@
@
@
@
@
>=>$@
$@
>=>$@
@@
@
@
@
@
>=>$@
$@
>=>$@
>>$@@
>=>$@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
>=>$@
@@
$@
$@
>=====>$@
$@
>=====>$@
$@
$@
@@
>=> $@
>=> $@
>=> $@
>=>$@
>=> $@
>=> $@
>=> $@
@@
>==> $@
>=> $@
>=>$@
>=> $@
>=> $@
$@
>=> $@
@@
$@
>==> $@
>> >=> $@
>> >=> >=>$@
>=> >==> >=>$@
>=> ``` $@
>=> $@
@@
>> $@
>>=> $@
>> >=> $@
>=> >=> $@
>=====>>=> $@
>=> >=> $@
>=> >=>$@
@@
>=>>=> $@
>> >=> $@
>> >=>$@
>==>>=> $@
>> >=>$@
>> >>$@
>===>>=> $@
@@
>=> $@
>=> >=>$@
>=> $@
>=> $@
>=> $@
>=> >=>$@
>===> $@
@@
>====> $@
>=> >=> $@
>=> >=>$@
>=> >=>$@
>=> >=>$@
>=> >=> $@
>====> $@
@@
>=======>$@
>=> $@
>=> $@
>=====> $@
>=> $@
>=> $@
>=======>$@
@@
>=======>$@
>=> $@
>=> $@
>=====> $@
>=> $@
>=> $@
>=> $@
@@
>===> $@
>> >=> $@
>=> $@
>=> $@
>=> >===>$@
>=> >> $@
>====> $@
@@
>=> >=>$@
>=> >=>$@
>=> >=>$@
>=====>>=>$@
>=> >=>$@
>=> >=>$@
>=> >=>$@
@@
>=>$@
>=>$@
>=>$@
>=>$@
>=>$@
>=>$@
>=>$@
@@
>=>$@
>=>$@
>=>$@
>=>$@
>=>$@
>> >=>$@
>===> $@
@@
>=> >=> $@
>=> >=> $@
>=> >=> $@
>>=>> $@
>=> >=> $@
>=> >=> $@
>=> >=>$@
@@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
>=======>$@
@@
>=> >=>$@
>> >=> >>=>$@
>=> >=> > >=>$@
>=> >=> >=>$@
>=> >> >=>$@
>=> >=>$@
>=> >=>$@
@@
>==> >=>$@
>> >=> >=>$@
>=> >=> >=>$@
>=> >=>>=>$@
>=> > >=>$@
>=> >>=>$@
>=> >=>$@
@@
>===> $@
>=> >=> $@
>=> >=>$@
>=> >=>$@
>=> >=>$@
>=> >=> $@
>===> $@
@@
>======> $@
>=> >=>$@
>=> >=>$@
>======> $@
>=> $@
>=> $@
>=> $@
@@
>===> $@
>=> >=> $@
>=> >=>$@
>=> >=>$@
>=> >=>$@
>=> >> >=> $@
>= >>=> $@
>> @@
>======> $@
>=> >=> $@
>=> >=> $@
>> >==> $@
>=> >=> $@
>=> >=> $@
>=> >=>$@
@@
>=>>=> $@
>=> >=>$@
>=> $@
>=> $@
>=> $@
>=> >=>$@
>=>>=> $@
@@
>===>>=====>$@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
@@
>=> >=>$@
>=> >=>$@
>=> >=>$@
>=> >=>$@
>=> >=>$@
>=> >=>$@
>====> $@
@@
>=> >=>$@
>=> >=> $@
>=> >=> $@
>=> >=> $@
>=> >=> $@
>===> $@
>=> $@
@@
>=> >=>$@
>=> >=>$@
>=> >> >=>$@
>=> >=> >=>$@
>=> >> >=> >=>$@
>> >> >===>$@
>=> >=>$@
@@
>=> >=>$@
>=> >=> $@
>=> >=> $@
>=> $@
>=> >=> $@
>=> >=> $@
>=> >=>$@
@@
>=> >=>$@
>=> >=> $@
>=> >=> $@
>=> $@
>=> $@
>=> $@
>=> $@
@@
>=======>>=>$@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
>==========>$@
@@
>===>$@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
>===>$@
@@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
>=> $@
>=>$@
@@
>===>$@
>=>$@
>=>$@
>=>$@
>=>$@
>=>$@
>===>$@
@@
>=> $@
>=> >=> $@
>=> >=>$@
$@
$@
$@
$@
@@
$@
$@
$@
$@
$@
$@
$@
>====>$@@
>=>$@
>> $@
$@
$@
$@
$@
$@
@@
$@
$@
>=> >=> $@
>=> >=> $@
>=> >=> $@
>=> >=> $@
>==>>>==>$@
@@
>=> $@
>=> $@
>=> $@
>=>>==> $@
>=> >=>$@
>=> >=>$@
>=>>==> $@
@@
$@
$@
>==>$@
>=> $@
>=> $@
>=> $@
>==>$@
@@
>=>$@
>=>$@
>=>$@
>=>>=>$@
>> >=>$@
>> >=>$@
>=>>=>$@
@@
$@
$@
>==> $@
>> >=> $@
>>===>>=>$@
>> $@
>====> $@
@@
>=>$@
>> $@
>=>> >>$@
>=> $@
>=> $@
>=> $@
>=> $@
@@
$@
$@
>=> $@
>=> >=>$@
>=> >=>$@
>=> >=>$@
>=> $@
>=> $@@
$@
>=> $@
>=> $@
>=>>=> $@
>=> >=>$@
>> >=>$@
>=> >=>$@
@@
$@
>>$@
$@
>=>$@
>=>$@
>=>$@
>=>$@
@@
$@
>=>$@
$@
>=>$@
>=>$@
>=>$@
>=>$@
>==> $@@
>=> $@
>=> $@
>=> >=>$@
>=> >=> $@
>=>=> $@
>=> >=> $@
>=> >=>$@
@@
>=>$@
>=>$@
>=>$@
>=>$@
>=>$@
>=>$@
>==>$@
@@
$@
$@
>===>>=>>==> $@
>=> >> >=>$@
>=> >> >=>$@
>=> >> >=>$@
>==> >> >=>$@
@@
$@
$@
>==>>==> $@
>=> >=>$@
>=> >=>$@
>=> >=>$@
>==> >=>$@
@@
$@
$@
>=> $@
>=> >=> $@
>=> >=>$@
>=> >=> $@
>=> $@
@@
$@
$@
>=> >=> $@
>> >=>$@
>> >=>$@
>=> >=> $@
>=> $@
>=> $@@
$@
$@
>=> $@
>> >=> $@
>> >=> $@
>==>=> $@
>=> $@
>==>$@@
$@
$@
>> >==>$@
>=> $@
>=> $@
>=> $@
>==> $@
@@
$@
$@
>===> $@
>=> $@
>==> $@
>=>$@
>=> >=>$@
@@
>=> $@
>=> $@
>=>>==>$@
>=> $@
>=> $@
>=> $@
>=> $@
@@
$@
$@
>=> >=>$@
>=> >=>$@
>=> >=>$@
>=> >=>$@
>==>=>$@
@@
$@
$@
>=> >=>$@
>=> >=> $@
>=> >=> $@
>=>=> $@
>=> $@
@@
$@
$@
>=> >=>$@
>=> > >=>$@
>=> >> >=>$@
>=>> >=>=>$@
>==> >==>$@
@@
$@
$@
>=> >=>$@
>> >=> $@
>> $@
>> >=> $@
>=> >=>$@
@@
$@
$@
>=> >=>$@
>=> >=> $@
>==> $@
>=> $@
>=> $@
>=> $@@
$@
$@
>====>>=>$@
>=> $@
>=> $@
>=> $@
>=======>$@
@@
<=<$@
<=< $@
<=< $@
<=< $@
<=< $@
<=< $@
<=<$@
@@
>>$@
>>$@
>>$@
$@
>>$@
>>$@
>>$@
@@
>=> $@
>=> $@
>=> $@
>=>$@
>=> $@
>=> $@
>=> $@
@@
>=> >> $@
>> >=>$@
$@
$@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@

629
node_modules/figlet/fonts/Avatar.flf generated vendored Normal file
View File

@@ -0,0 +1,629 @@
flf2a$ 6 5 10 16 16
Avatar by Claude Martins 02/95
Figlet release 2.1 -- 12 Aug 1994
Permission is hereby given to modify this font, as long as the
modifier's name is placed on a comment line.
Explanation of first line:
flf2 - "magic number" for file identification
a - should always be `a', for now
$ - the "hardblank" -- prints as a blank, but can't be smushed
6 - height of a character
5 - height of a character, not including descenders
10 - max line length (excluding comment lines) + a fudge factor
16 - default smushmode for this font
16 - number of comment lines
$$@
$$@
$$@
$$@
$$@
$$@@
_ @
/ \@
| |@
\_/@
(_)@
@@
_ _@
\||/@
@
@
@
@@
@
_/|_|\_@
\ _ /@
/ _ \@
\| |/ @
@@
/| @
/ _\@
\ \ @
_\ \@
\ /@
|/ @@
_ @
\|/\ @
/ / @
/ /_ @
\/ \|@
@@
_ @
/.\ @
\ _\_@
/|/ /@
\__/\@
@@
_@
|/@
@
@
@
@@
___@
/ _/@
|/ @
|\_ @
\__\@
@@
___ @
\_ \@
\|@
_/|@
/__/@
@@
@
_/||\_@
\ /@
/ \@
\||/ @
@@
_ @
_| |_ @
|_ _|@
|_| @
@
@@
@
@
@
@
_@
|/@@
@
@
_____ @
\____\@
@
@@
@
@
@
__@
\/@
@@
@
/\@
/ /@
/ / @
\/ @
@@
____ @
/ _ \@
| / \|@
| \_/|@
\____/@
@@
_ @
/ \@
| |@
| |@
\_/@
@@
____ @
/_ \@
/ /@
/ /_@
\____/@
@@
_____ @
\__ \@
/ |@
_\ |@
/____/@
@@
_ @
/\ / |@
\_\| |@
| |@
\_|@
@@
____ @
/ ___\@
| \@
\___ |@
\____/@
@@
_ @
__/ \@
/__ |@
|\/ |@
\____/@
@@
____ @
/ _ \@
\/ | |@
| |@
\_/@
@@
____ @
/ ___\@
\ \ //@
/ /_\\@
\____/@
@@
____ @
/__ \@
|\/ |@
\__ |@
\_/@
@@
@
__@
\/@
__@
\/@
@@
@
@
__@
\/@
_@
|/@@
___@
/ _/@
/ / @
\ \_ @
\__\@
@@
@
_____ @
\____\@
_____ @
\____\@
@@
___ @
\_ \ @
\ \@
_/ /@
/__/ @
@@
____ @
/ _ \@
\/ \ |@
/ /@
\/ @
\/ @@
____ @
/ __\@
| /_//@
| \\/_@
\____/@
@@
____ @
/ _ \@
| / \|@
| |-||@
\_/ \|@
@@
____ @
/ __\@
| | //@
| |_\\@
\____/@
@@
____ @
/ _\@
| / @
| \__@
\____/@
@@
____ @
/ _ \@
| | \|@
| |_/|@
\____/@
@@
_____@
/ __/@
| \ @
| /_ @
\____\@
@@
_____@
/ /@
| __\@
| | @
\_/ @
@@
_____@
/ __/@
| | _@
| |_//@
\____\@
@@
_ @
/ \ /|@
| |_||@
| | ||@
\_/ \|@
@@
_ @
/ \@
| |@
| |@
\_/@
@@
_ @
/ |@
| |@
/\_| |@
\____/@
@@
_ __@
/ |/ /@
| / @
| \ @
\_|\_\@
@@
_ @
/ \ @
| | @
| |_/\@
\____/@
@@
_ @
/ \__/|@
| |\/||@
| | ||@
\_/ \|@
@@
_ @
/ \ /|@
| |\ ||@
| | \||@
\_/ \|@
@@
____ @
/ _ \@
| / \|@
| \_/|@
\____/@
@@
____ @
/ __\@
| \/|@
| __/@
\_/ @
@@
____ @
/ _ \@
| / \|@
| \_\|@
\____\@
@@
____ @
/ __\@
| \/|@
| /@
\_/\_\@
@@
____ @
/ ___\@
| \@
\___ |@
\____/@
@@
_____ @
/__ __\@
/ \ @
| | @
\_/ @
@@
_ @
/ \ /\@
| | ||@
| \_/|@
\____/@
@@
_ @
/ \ |\@
| | //@
| \// @
\__/ @
@@
_ @
/ \ /|@
| | ||@
| |/\||@
\_/ \|@
@@
___ _@
\ \//@
\ / @
/ \ @
/__/\\@
@@
___ _@
\ \//@
\ / @
/ / @
/_/ @
@@
____ @
/_ \@
/ /@
/ /_@
\____/@
@@
___@
/ _/@
|| @
||_ @
\__\@
@@
@
/\ @
\ \ @
\ \@
\/@
@@
___ @
\_ \@
||@
_||@
/__/@
@@
/\@
$$@
$$@
$$@
$$@
$$@@
@
@
@
@
_____ @
\____\@@
_ @
\|@
@
@
@
@@
____ @
/ _ \@
| / \|@
| |-||@
\_/ \|@
@@
____ @
/ _ \@
| | //@
| |_\\@
\____/@
@@
____ @
/ _\@
| / @
| \_ @
\____/@
@@
____ @
/ _ \@
| | \|@
| |_/|@
\____/@
@@
_____@
/ __/@
| \ @
| /_ @
\____\@
@@
_____@
/ /@
| __\@
| | @
\_/ @
@@
_____@
/ __/@
| | _@
| |_//@
\____\@
@@
_ @
/ \ /|@
| |_||@
| | ||@
\_/ \|@
@@
_ @
/ \@
| |@
| |@
\_/@
@@
_ @
/ |@
| |@
/\_| |@
\____/@
@@
_ __@
/ |/ /@
| / @
| \ @
\_|\_\@
@@
_ @
/ \ @
| | @
| |_/\@
\____/@
@@
_ @
/ \__/|@
| |\/||@
| | ||@
\_/ \|@
@@
_ @
/ \ /|@
| |\ ||@
| | \||@
\_/ \|@
@@
____ @
/ _ \@
| / \|@
| \_/|@
\____/@
@@
____ @
/ __\@
| \/|@
| __/@
\_/ @
@@
____ @
/ _ \@
| / \|@
| \_\|@
\____\@
@@
____ @
/ __\@
| \/|@
| /@
\_/\_\@
@@
____ @
/ ___\@
| \@
\___ |@
\____/@
@@
_____ @
/__ __\@
/ \ @
| | @
\_/ @
@@
_ @
/ \ /\@
| | ||@
| \_/|@
\____/@
@@
_ @
/ \ |\@
| | //@
| \// @
\__/ @
@@
_ @
/ \ /|@
| | ||@
| |/\||@
\_/ \|@
@@
___ _@
\ \//@
\ / @
/ \ @
/__/\\@
@@
___ _@
\ \//@
\ / @
/ / @
/_/ @
@@
____ @
/_ \@
/ /@
/ /_@
\____/@
@@
____@
\ _/@
// @
\\_ @
/__\@
@@
_ @
| |@
\_/@
_ @
/ \@
|_|@@
____@
\_ /@
\\@
_//@
/__\@
@@
/\//@
$\/$@
@
@
@
@@
\/\/ @
/ _ \@
| / \|@
| |-||@
\_/ \|@
@@
\/\/ @
/ _ \@
| / \|@
| \_/|@
\____/@
@@
\/\/ @
/ \ /\@
| | ||@
| \_/|@
\____/@
@@
\/\/ @
/ _ \@
| / \|@
| |-||@
\_/ \|@
@@
\/\/ @
/ _ \@
| / \|@
| \_/|@
\____/@
@@
\/\/ @
/ \ /\@
| | ||@
| \_/|@
\____/@
@@
____ @
/ _ \@
| | //@
| |_\\@
\_/\_/@
@@

375
node_modules/figlet/fonts/B1FF.flf generated vendored Normal file
View File

@@ -0,0 +1,375 @@
flf2a 1 1 10 -1 16
B1FF by Joe Rumsey 12/94 based on Terminal by Glenn Chappell
Includes characters 128-255
figlet release 2.1 -- 12 Aug 1994
Permission is hereby given to modify this font, as long as the
modifier's name is placed on a comment line.
Explanation of first line:
flf2 - "magic number" for file identification
a - should always be `a', for now
 - the "hardblank" -- prints as a blank, but can't be smushed
1 - height of a character
1 - height of a character, not including descenders
10 - max line length (excluding comment lines) + a fudge factor
-1 - default smushmode for this font
16 - number of comment lines
@
!@
"@
#@
$@
%@
&@
'@
(@
)@
*@
+@
,@
-@
.@
/@
0@
1@
2@
3@
4@
5@
6@
7@
8@
9@
:@
;@
<@
=@
>@
?@
@#
/-\@
|3@
(@
|)@
3@
F@
6@
H@
1@
_/@
/<@
|_@
/\/\@
/\/@
0@
P@
Q@
R@
5@
T@
|_|@
\/@
\/\/@
X@
Y@
Z@
[@
\@
]@
^@
_@
`@
/-\@
|3@
(@
|)@
3@
F@
6@
H@
1@
_/@
/<@
|_@
/\/\@
/\/@
0@
P@
Q@
R@
5@
T@
|_|@
\/@
\/\/@
X@
Y@
Z@
{@
|@
}@
~@
128
<EFBFBD>@
129
<EFBFBD>
130
<EFBFBD>
131
<EFBFBD>
132
<EFBFBD>
133
<EFBFBD>
134
<EFBFBD>
135
136
137
𪎩
138
𧶄
139
𣏴
140
141
𠮟
142
𣻗
143
144
145
𥜆
146
𡏆
147
148
149
𦅜
150
151
152
𦴦
153
154
155
𡨭
156
157
𨆉
158
𠺢
159
160
𨩚
161
 
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
駿
195
196
197
198
199
200
Л
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
徿
243
244
245
246
247
248
249
250
𠕇
251
𨦼
252
253
𣑯
254
255
<EFBFBD>@

2494
node_modules/figlet/fonts/Banner.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

820
node_modules/figlet/fonts/Banner3-D.flf generated vendored Normal file
View File

@@ -0,0 +1,820 @@
flf2a$ 8 8 20 -1 3
banner3-D by Merlin Greywolf merlin@brahms.udel.edu
August 9, 1994
:::@
:::@
:::@
:::@
:::@
:::@
:::@
:::@@
'####:@
####:@
####:@
: ##::@
:..:::@
'####:@
####:@
....::@@
'####'####:@
#### ####:@
. ##:. ##::@
:..:::..:::@
:::::::::::@
:::::::::::@
:::::::::::@
:::::::::::@@
::'##'##:::@
:: ## ##:::@
'#########:@
.. ## ##.::@
'#########:@
.. ## ##.::@
:: ## ##:::@
::..:..::::@@
:'########::@
'##. ##. ##:@
##: ##:..::@
. ########::@
:... ##. ##:@
'##: ##: ##:@
. ########::@
:........:::@@
'#####::'##:::@
## ##:'##::::@
#####'##:::::@
.....'##::::::@
::::'##'#####:@
:::'##: ## ##:@
::'##:: #####:@
::..:::.....::@@
::'####::::@
:'##. ##:::@
:. ####::::@
:'####:::::@
'##. ##'##:@
##:. ##:::@
. ####. ##:@
:....::..::@@
'####:@
####:@
. ##::@
'##:::@
..::::@
::::::@
::::::@
::::::@@
::'###:@
:'##:::@
'##::::@
##::::@
##::::@
. ##:::@
:. ###:@
::...::@@
'###:::@
.. ##::@
::: ##:@
::: ##:@
::: ##:@
:: ##::@
###:::@
...::::@@
:::::::::::@
:'##::'##::@
:. ##'##:::@
'#########:@
.. ## ##.::@
: ##:. ##::@
:..:::..:::@
:::::::::::@@
::::::::@
::'##:::@
:: ##:::@
'######:@
.. ##.::@
:: ##:::@
::..::::@
::::::::@@
::::::@
::::::@
::::::@
'####:@
####:@
. ##::@
'##:::@
..::::@@
:::::::::@
:::::::::@
:::::::::@
'#######:@
........:@
:::::::::@
:::::::::@
:::::::::@@
:::::@
:::::@
:::::@
:::::@
:::::@
'###:@
###:@
...::@@
::::::'##:@
:::::'##::@
::::'##:::@
:::'##::::@
::'##:::::@
:'##::::::@
'##:::::::@
..::::::::@@
::'#####:::@
:'##.. ##::@
'##:::: ##:@
##:::: ##:@
##:::: ##:@
. ##:: ##::@
:. #####:::@
::.....::::@@
:::'##:::@
:'####:::@
:.. ##:::@
::: ##:::@
::: ##:::@
::: ##:::@
:'######:@
:......::@@
:'#######::@
'##.... ##:@
..::::: ##:@
:'#######::@
'##::::::::@
##::::::::@
#########:@
.........::@@
:'#######::@
'##.... ##:@
..::::: ##:@
:'#######::@
:...... ##:@
'##:::: ##:@
. #######::@
:.......:::@@
'##::::::::@
##:::'##::@
##::: ##::@
##::: ##::@
#########:@
...... ##::@
:::::: ##::@
::::::..:::@@
'########:@
##.....::@
##:::::::@
#######::@
...... ##:@
'##::: ##:@
. ######::@
:......:::@@
:'#######::@
'##.... ##:@
##::::..::@
########::@
##.... ##:@
##:::: ##:@
. #######::@
:.......:::@@
'########:@
##.. ##:@
..:: ##:::@
::: ##::::@
:: ##:::::@
:: ##:::::@
:: ##:::::@
::..::::::@@
:'#######::@
'##.... ##:@
##:::: ##:@
: #######::@
'##.... ##:@
##:::: ##:@
. #######::@
:.......:::@@
:'#######::@
'##.... ##:@
##:::: ##:@
: ########:@
:...... ##:@
'##:::: ##:@
. #######::@
:.......:::@@
:'##::@
'####:@
. ##::@
:..:::@
:'##::@
'####:@
. ##::@
:..:::@@
'####:@
####:@
....::@
'####:@
####:@
. ##::@
##:::@
.:::::@@
:::'##:@
::'##::@
:'##:::@
'##::::@
. ##:::@
:. ##::@
::. ##:@
:::..::@@
:::::::@
:::::::@
'#####:@
.....::@
'#####:@
.....::@
:::::::@
:::::::@@
'##::::@
. ##:::@
:. ##::@
::. ##:@
:: ##::@
: ##:::@
##::::@
..:::::@@
:'#######::@
'##.... ##:@
..:::: ##::@
:::: ###:::@
::: ##.::::@
:::..::::::@
:::'##:::::@
:::..::::::@@
:'#######::@
'##.... ##:@
##'### ##:@
## ### ##:@
## #####::@
##.....:::@
. #######::@
:.......:::@@
:::'###::::@
::'## ##:::@
:'##:. ##::@
'##:::. ##:@
#########:@
##.... ##:@
##:::: ##:@
..:::::..::@@
'########::@
##.... ##:@
##:::: ##:@
########::@
##.... ##:@
##:::: ##:@
########::@
........:::@@
:'######::@
'##... ##:@
##:::..::@
##:::::::@
##:::::::@
##::: ##:@
. ######::@
:......:::@@
'########::@
##.... ##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
########::@
........:::@@
'########:@
##.....::@
##:::::::@
######:::@
##...::::@
##:::::::@
########:@
........::@@
'########:@
##.....::@
##:::::::@
######:::@
##...::::@
##:::::::@
##:::::::@
..::::::::@@
:'######:::@
'##... ##::@
##:::..:::@
##::'####:@
##::: ##::@
##::: ##::@
. ######:::@
:......::::@@
'##::::'##:@
##:::: ##:@
##:::: ##:@
#########:@
##.... ##:@
##:::: ##:@
##:::: ##:@
..:::::..::@@
'####:@
. ##::@
: ##::@
: ##::@
: ##::@
: ##::@
'####:@
....::@@
::::::'##:@
:::::: ##:@
:::::: ##:@
:::::: ##:@
'##::: ##:@
##::: ##:@
. ######::@
:......:::@@
'##:::'##:@
##::'##::@
##:'##:::@
#####::::@
##. ##:::@
##:. ##::@
##::. ##:@
..::::..::@@
'##:::::::@
##:::::::@
##:::::::@
##:::::::@
##:::::::@
##:::::::@
########:@
........::@@
'##::::'##:@
###::'###:@
####'####:@
## ### ##:@
##. #: ##:@
##:.:: ##:@
##:::: ##:@
..:::::..::@@
'##::: ##:@
###:: ##:@
####: ##:@
## ## ##:@
##. ####:@
##:. ###:@
##::. ##:@
..::::..::@@
:'#######::@
'##.... ##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
. #######::@
:.......:::@@
'########::@
##.... ##:@
##:::: ##:@
########::@
##.....:::@
##::::::::@
##::::::::@
..:::::::::@@
:'#######::@
'##.... ##:@
##:::: ##:@
##:::: ##:@
##:'## ##:@
##:.. ##::@
: ##### ##:@
:.....:..::@@
'########::@
##.... ##:@
##:::: ##:@
########::@
##.. ##:::@
##::. ##::@
##:::. ##:@
..:::::..::@@
:'######::@
'##... ##:@
##:::..::@
. ######::@
:..... ##:@
'##::: ##:@
. ######::@
:......:::@@
'########:@
... ##..::@
::: ##::::@
::: ##::::@
::: ##::::@
::: ##::::@
::: ##::::@
:::..:::::@@
'##::::'##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
. #######::@
:.......:::@@
'##::::'##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
. ##:: ##::@
:. ## ##:::@
::. ###::::@
:::...:::::@@
'##:::::'##:@
##:'##: ##:@
##: ##: ##:@
##: ##: ##:@
##: ##: ##:@
##: ##: ##:@
. ###. ###::@
:...::...:::@@
'##::::'##:@
. ##::'##::@
:. ##'##:::@
::. ###::::@
:: ## ##:::@
: ##:. ##::@
##:::. ##:@
..:::::..::@@
'##:::'##:@
. ##:'##::@
:. ####:::@
::. ##::::@
::: ##::::@
::: ##::::@
::: ##::::@
:::..:::::@@
'########:@
..... ##::@
:::: ##:::@
::: ##::::@
:: ##:::::@
: ##::::::@
########:@
........::@@
'######:@
##...::@
##:::::@
##:::::@
##:::::@
##:::::@
######:@
......::@@
'##:::::::@
. ##::::::@
:. ##:::::@
::. ##::::@
:::. ##:::@
::::. ##::@
:::::. ##:@
::::::..::@@
'######:@
.... ##:@
:::: ##:@
:::: ##:@
:::: ##:@
:::: ##:@
'######:@
......::@@
::'###:::@
:'## ##::@
'##:. ##:@
..:::..::@
:::::::::@
:::::::::@
:::::::::@
:::::::::@@
:::::::::@
:::::::::@
:::::::::@
:::::::::@
:::::::::@
:::::::::@
'#######:@
.......::@@
'####:@
####:@
. ##::@
:. ##:@
::..::@
::::::@
::::::@
::::::@@
:::'###::::@
::'## ##:::@
:'##:. ##::@
'##:::. ##:@
#########:@
##.... ##:@
##:::: ##:@
..:::::..::@@
'########::@
##.... ##:@
##:::: ##:@
########::@
##.... ##:@
##:::: ##:@
########::@
........:::@@
:'######::@
'##... ##:@
##:::..::@
##:::::::@
##:::::::@
##::: ##:@
. ######::@
:......:::@@
'########::@
##.... ##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
########::@
........:::@@
'########:@
##.....::@
##:::::::@
######:::@
##...::::@
##:::::::@
########:@
........::@@
'########:@
##.....::@
##:::::::@
######:::@
##...::::@
##:::::::@
##:::::::@
..::::::::@@
:'######:::@
'##... ##::@
##:::..:::@
##::'####:@
##::: ##::@
##::: ##::@
. ######:::@
:......::::@@
'##::::'##:@
##:::: ##:@
##:::: ##:@
#########:@
##.... ##:@
##:::: ##:@
##:::: ##:@
..:::::..::@@
'####:@
. ##::@
: ##::@
: ##::@
: ##::@
: ##::@
'####:@
....::@@
::::::'##:@
:::::: ##:@
:::::: ##:@
:::::: ##:@
'##::: ##:@
##::: ##:@
. ######::@
:......:::@@
'##:::'##:@
##::'##::@
##:'##:::@
#####::::@
##. ##:::@
##:. ##::@
##::. ##:@
..::::..::@@
'##:::::::@
##:::::::@
##:::::::@
##:::::::@
##:::::::@
##:::::::@
########:@
........::@@
'##::::'##:@
###::'###:@
####'####:@
## ### ##:@
##. #: ##:@
##:.:: ##:@
##:::: ##:@
..:::::..::@@
'##::: ##:@
###:: ##:@
####: ##:@
## ## ##:@
##. ####:@
##:. ###:@
##::. ##:@
..::::..::@@
:'#######::@
'##.... ##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
. #######::@
:.......:::@@
'########::@
##.... ##:@
##:::: ##:@
########::@
##.....:::@
##::::::::@
##::::::::@
..:::::::::@@
:'#######::@
'##.... ##:@
##:::: ##:@
##:::: ##:@
##:'## ##:@
##:.. ##::@
. ##### ##:@
:.....:..::@@
'########::@
##.... ##:@
##:::: ##:@
########::@
##.. ##:::@
##::. ##::@
##:::. ##:@
..:::::..::@@
:'######::@
'##... ##:@
##:::..::@
. ######::@
:..... ##:@
'##::: ##:@
. ######::@
:......:::@@
'########:@
... ##..::@
::: ##::::@
::: ##::::@
::: ##::::@
::: ##::::@
::: ##::::@
:::..:::::@@
'##::::'##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
. #######::@
:.......:::@@
'##::::'##:@
##:::: ##:@
##:::: ##:@
##:::: ##:@
. ##:: ##::@
:. ## ##:::@
::. ###::::@
:::...:::::@@
'##:::::'##:@
##:'##: ##:@
##: ##: ##:@
##: ##: ##:@
##: ##: ##:@
##: ##: ##:@
. ###. ###::@
:...::...:::@@
'##::::'##:@
. ##::'##::@
:. ##'##:::@
::. ###::::@
:: ## ##:::@
: ##:. ##::@
##:::. ##:@
..:::::..::@@
'##:::'##:@
. ##:'##::@
:. ####:::@
::. ##::::@
::: ##::::@
::: ##::::@
::: ##::::@
:::..:::::@@
'########:@
..... ##::@
:::: ##:::@
::: ##::::@
:: ##:::::@
: ##::::::@
########:@
........::@@
::'####:@
:'##..::@
: ##::::@
'###::::@
. ##::::@
: ##::::@
:. ####:@
:::...::@@
'##:@
##:@
##:@
..::@
'##:@
##:@
##:@
..::@@
'####:::@
... ##::@
::: ##::@
::: ###:@
::: ##::@
::: ##::@
'####:::@
....::::@@
:'####::::::@
'## ##:'##:@
..::. ####::@
:::::....:::@
::::::::::::@
::::::::::::@
::::::::::::@
::::::::::::@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@

718
node_modules/figlet/fonts/Banner3.flf generated vendored Normal file
View File

@@ -0,0 +1,718 @@
flf2a$ 7 7 20 -1 3
banner3 by Merlin Greywolf merlin@brahms.udel.edu
August 9, 1994
$$$@
$$$@
$$$@
$$$@
$$$@
$$$@
$$$@@
####$@
####$@
####$@
## $@
$@
####$@
####$@@
#### ####$@
#### ####$@
## ## $@
$ $@
$ $@
$@
$@@
## ## $@
## ## $@
#########$@
## ## $@
#########$@
## ## $@
## ## $@@
######## $@
## ## ##$@
## ## $@
######## $@
## ##$@
## ## ##$@
######## $@@
##### ## $@
## ## ## $@
##### ## $@
## $@
## #####$@
## ## ##$@
## #####$@@
#### $@
## ## $@
#### $@
#### $@
## ## ##$@
## ## $@
#### ##$@@
####$@
####$@
## $@
## $@
$@
$@
$@@
###$@
## $@
## $@
## $@
## $@
## $@
###$@@
### $@
## $@
##$@
##$@
##$@
## $@
### $@@
$@
## ## $@
## ## $@
#########$@
## ## $@
## ## $@
$@@
$@
## $@
## $@
######$@
## $@
## $@
$@@
$@
$@
$@
####$@
####$@
## $@
## $@@
$@
$@
$@
#######$@
$@
$@
$@@
$@
$@
$@
$@
$@
###$@
###$@@
##$@
## $@
## $@
## $@
## $@
## $@
## $@@
##### $@
## ## $@
## ##$@
## ##$@
## ##$@
## ## $@
##### $@@
## $@
#### $@
## $@
## $@
## $@
## $@
######$@@
####### $@
## ##$@
##$@
####### $@
## $@
## $@
#########$@@
####### $@
## ##$@
##$@
####### $@
##$@
## ##$@
####### $@@
## $@
## ## $@
## ## $@
## ## $@
#########$@
## $@
## $@@
########$@
## $@
## $@
####### $@
##$@
## ##$@
###### $@@
####### $@
## ##$@
## $@
######## $@
## ##$@
## ##$@
####### $@@
########$@
## ##$@
## $@
## $@
## $@
## $@
## $@@
####### $@
## ##$@
## ##$@
####### $@
## ##$@
## ##$@
####### $@@
####### $@
## ##$@
## ##$@
########$@
##$@
## ##$@
####### $@@
## $@
####$@
## $@
$@
## $@
####$@
## $@@
####$@
####$@
$@
####$@
####$@
## $@
## $@@
##$@
## $@
## $@
## $@
## $@
## $@
##$@@
$@
$@
#####$@
$@
#####$@
$@
$@@
## $@
## $@
## $@
##$@
## $@
## $@
## $@@
####### $@
## ##$@
## $@
### $@
## $@
$@
## $@@
####### $@
## ##$@
## ### ##$@
## ### ##$@
## ##### $@
## $@
####### $@@
### $@
## ## $@
## ## $@
## ##$@
#########$@
## ##$@
## ##$@@
######## $@
## ##$@
## ##$@
######## $@
## ##$@
## ##$@
######## $@@
###### $@
## ##$@
## $@
## $@
## $@
## ##$@
###### $@@
######## $@
## ##$@
## ##$@
## ##$@
## ##$@
## ##$@
######## $@@
########$@
## $@
## $@
###### $@
## $@
## $@
########$@@
########$@
## $@
## $@
###### $@
## $@
## $@
## $@@
###### $@
## ## $@
## $@
## ####$@
## ## $@
## ## $@
###### $@@
## ##$@
## ##$@
## ##$@
#########$@
## ##$@
## ##$@
## ##$@@
####$@
## $@
## $@
## $@
## $@
## $@
####$@@
##$@
##$@
##$@
##$@
## ##$@
## ##$@
###### $@@
## ##$@
## ## $@
## ## $@
##### $@
## ## $@
## ## $@
## ##$@@
## $@
## $@
## $@
## $@
## $@
## $@
########$@@
## ##$@
### ###$@
#### ####$@
## ### ##$@
## ##$@
## ##$@
## ##$@@
## ##$@
### ##$@
#### ##$@
## ## ##$@
## ####$@
## ###$@
## ##$@@
####### $@
## ##$@
## ##$@
## ##$@
## ##$@
## ##$@
####### $@@
######## $@
## ##$@
## ##$@
######## $@
## $@
## $@
## $@@
####### $@
## ##$@
## ##$@
## ##$@
## ## ##$@
## ## $@
##### ##$@@
######## $@
## ##$@
## ##$@
######## $@
## ## $@
## ## $@
## ##$@@
###### $@
## ##$@
## $@
###### $@
##$@
## ##$@
###### $@@
########$@
## $@
## $@
## $@
## $@
## $@
## $@@
## ##$@
## ##$@
## ##$@
## ##$@
## ##$@
## ##$@
####### $@@
## ##$@
## ##$@
## ##$@
## ##$@
## ## $@
## ## $@
### $@@
## ##$@
## ## ##$@
## ## ##$@
## ## ##$@
## ## ##$@
## ## ##$@
### ### $@@
## ##$@
## ## $@
## ## $@
### $@
## ## $@
## ## $@
## ##$@@
## ##$@
## ## $@
#### $@
## $@
## $@
## $@
## $@@
########$@
## $@
## $@
## $@
## $@
## $@
########$@@
######$@
## $@
## $@
## $@
## $@
## $@
######$@@
## $@
## $@
## $@
## $@
## $@
## $@
##$@@
######$@
##$@
##$@
##$@
##$@
##$@
######$@@
### $@
## ## $@
## ##$@
$@
$@
$@
$@@
$@
$@
$@
$@
$@
$@
#######$@@
####$@
####$@
## $@
##$@
$@
$@
$@@
### $@
## ## $@
## ## $@
## ##$@
#########$@
## ##$@
## ##$@@
######## $@
## ##$@
## ##$@
######## $@
## ##$@
## ##$@
######## $@@
###### $@
## ##$@
## $@
## $@
## $@
## ##$@
###### $@@
######## $@
## ##$@
## ##$@
## ##$@
## ##$@
## ##$@
######## $@@
########$@
## $@
## $@
###### $@
## $@
## $@
########$@@
########$@
## $@
## $@
###### $@
## $@
## $@
## $@@
###### $@
## ## $@
## $@
## ####$@
## ## $@
## ## $@
###### $@@
## ##$@
## ##$@
## ##$@
#########$@
## ##$@
## ##$@
## ##$@@
####$@
## $@
## $@
## $@
## $@
## $@
####$@@
##$@
##$@
##$@
##$@
## ##$@
## ##$@
###### $@@
## ##$@
## ## $@
## ## $@
##### $@
## ## $@
## ## $@
## ##$@@
## $@
## $@
## $@
## $@
## $@
## $@
########$@@
## ##$@
### ###$@
#### ####$@
## ### ##$@
## ##$@
## ##$@
## ##$@@
## ##$@
### ##$@
#### ##$@
## ## ##$@
## ####$@
## ###$@
## ##$@@
####### $@
## ##$@
## ##$@
## ##$@
## ##$@
## ##$@
####### $@@
######## $@
## ##$@
## ##$@
######## $@
## $@
## $@
## $@@
####### $@
## ##$@
## ##$@
## ##$@
## ## ##$@
## ## $@
##### ##$@@
######## $@
## ##$@
## ##$@
######## $@
## ## $@
## ## $@
## ##$@@
###### $@
## ##$@
## $@
###### $@
##$@
## ##$@
###### $@@
########$@
## $@
## $@
## $@
## $@
## $@
## $@@
## ##$@
## ##$@
## ##$@
## ##$@
## ##$@
## ##$@
####### $@@
## ##$@
## ##$@
## ##$@
## ##$@
## ## $@
## ## $@
### $@@
## ##$@
## ## ##$@
## ## ##$@
## ## ##$@
## ## ##$@
## ## ##$@
### ### $@@
## ##$@
## ## $@
## ## $@
### $@
## ## $@
## ## $@
## ##$@@
## ##$@
## ## $@
#### $@
## $@
## $@
## $@
## $@@
########$@
## $@
## $@
## $@
## $@
## $@
########$@@
####$@
## $@
## $@
### $@
## $@
## $@
####$@@
##$@
##$@
##$@
$@
##$@
##$@
##$@@
#### $@
## $@
## $@
###$@
## $@
## $@
#### $@@
#### $@
## ## ##$@
#### $@
$@
$@
$@
$@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@

718
node_modules/figlet/fonts/Banner4.flf generated vendored Normal file
View File

@@ -0,0 +1,718 @@
flf2a$ 7 7 20 -1 3
banner4 by Merlin Greywolf merlin@brahms.udel.edu
August 9, 1994
...@
...@
...@
...@
...@
...@
...@@
.####@
.####@
.####@
..##.@
.....@
.####@
.####@@
.####.####@
.####.####@
..##...##.@
..........@
..........@
..........@
..........@@
...##.##..@
...##.##..@
.#########@
...##.##..@
.#########@
...##.##..@
...##.##..@@
..########.@
.##..##..##@
.##..##....@
..########.@
.....##..##@
.##..##..##@
..########.@@
.#####...##..@
.##.##..##...@
.#####.##....@
......##.....@
.....##.#####@
....##..##.##@
...##...#####@@
...####...@
..##..##..@
...####...@
..####....@
.##..##.##@
.##...##..@
..####..##@@
.####@
.####@
..##.@
.##..@
.....@
.....@
.....@@
...###@
..##..@
.##...@
.##...@
.##...@
..##..@
...###@@
.###..@
...##.@
....##@
....##@
....##@
...##.@
.###..@@
..........@
..##...##.@
...##.##..@
.#########@
...##.##..@
..##...##.@
..........@@
.......@
...##..@
...##..@
.######@
...##..@
...##..@
.......@@
.....@
.....@
.....@
.####@
.####@
..##.@
.##..@@
........@
........@
........@
.#######@
........@
........@
........@@
....@
....@
....@
....@
....@
.###@
.###@@
.......##@
......##.@
.....##..@
....##...@
...##....@
..##.....@
.##......@@
...#####..@
..##...##.@
.##.....##@
.##.....##@
.##.....##@
..##...##.@
...#####..@@
....##..@
..####..@
....##..@
....##..@
....##..@
....##..@
..######@@
..#######.@
.##.....##@
........##@
..#######.@
.##.......@
.##.......@
.#########@@
..#######.@
.##.....##@
........##@
..#######.@
........##@
.##.....##@
..#######.@@
.##.......@
.##....##.@
.##....##.@
.##....##.@
.#########@
.......##.@
.......##.@@
.########@
.##......@
.##......@
.#######.@
.......##@
.##....##@
..######.@@
..#######.@
.##.....##@
.##.......@
.########.@
.##.....##@
.##.....##@
..#######.@@
.########@
.##....##@
.....##..@
....##...@
...##....@
...##....@
...##....@@
..#######.@
.##.....##@
.##.....##@
..#######.@
.##.....##@
.##.....##@
..#######.@@
..#######.@
.##.....##@
.##.....##@
..########@
........##@
.##.....##@
..#######.@@
..##.@
.####@
..##.@
.....@
..##.@
.####@
..##.@@
.####@
.####@
.....@
.####@
.####@
..##.@
.##..@@
....##@
...##.@
..##..@
.##...@
..##..@
...##.@
....##@@
......@
......@
.#####@
......@
.#####@
......@
......@@
.##...@
..##..@
...##.@
....##@
...##.@
..##..@
.##...@@
..#######.@
.##.....##@
.......##.@
.....###..@
....##....@
..........@
....##....@@
..#######.@
.##.....##@
.##.###.##@
.##.###.##@
.##.#####.@
.##.......@
..#######.@@
....###...@
...##.##..@
..##...##.@
.##.....##@
.#########@
.##.....##@
.##.....##@@
.########.@
.##.....##@
.##.....##@
.########.@
.##.....##@
.##.....##@
.########.@@
..######.@
.##....##@
.##......@
.##......@
.##......@
.##....##@
..######.@@
.########.@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
.########.@@
.########@
.##......@
.##......@
.######..@
.##......@
.##......@
.########@@
.########@
.##......@
.##......@
.######..@
.##......@
.##......@
.##......@@
..######..@
.##....##.@
.##.......@
.##...####@
.##....##.@
.##....##.@
..######..@@
.##.....##@
.##.....##@
.##.....##@
.#########@
.##.....##@
.##.....##@
.##.....##@@
.####@
..##.@
..##.@
..##.@
..##.@
..##.@
.####@@
.......##@
.......##@
.......##@
.......##@
.##....##@
.##....##@
..######.@@
.##....##@
.##...##.@
.##..##..@
.#####...@
.##..##..@
.##...##.@
.##....##@@
.##......@
.##......@
.##......@
.##......@
.##......@
.##......@
.########@@
.##.....##@
.###...###@
.####.####@
.##.###.##@
.##.....##@
.##.....##@
.##.....##@@
.##....##@
.###...##@
.####..##@
.##.##.##@
.##..####@
.##...###@
.##....##@@
..#######.@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
..#######.@@
.########.@
.##.....##@
.##.....##@
.########.@
.##.......@
.##.......@
.##.......@@
..#######.@
.##.....##@
.##.....##@
.##.....##@
.##..##.##@
.##....##.@
..#####.##@@
.########.@
.##.....##@
.##.....##@
.########.@
.##...##..@
.##....##.@
.##.....##@@
..######.@
.##....##@
.##......@
..######.@
.......##@
.##....##@
..######.@@
.########@
....##...@
....##...@
....##...@
....##...@
....##...@
....##...@@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
..#######.@@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
..##...##.@
...##.##..@
....###...@@
.##......##@
.##..##..##@
.##..##..##@
.##..##..##@
.##..##..##@
.##..##..##@
..###..###.@@
.##.....##@
..##...##.@
...##.##..@
....###...@
...##.##..@
..##...##.@
.##.....##@@
.##....##@
..##..##.@
...####..@
....##...@
....##...@
....##...@
....##...@@
.########@
......##.@
.....##..@
....##...@
...##....@
..##.....@
.########@@
.######@
.##....@
.##....@
.##....@
.##....@
.##....@
.######@@
.##......@
..##.....@
...##....@
....##...@
.....##..@
......##.@
.......##@@
.######@
.....##@
.....##@
.....##@
.....##@
.....##@
.######@@
...###..@
..##.##.@
.##...##@
........@
........@
........@
........@@
........@
........@
........@
........@
........@
........@
.#######@@
.####@
.####@
..##.@
...##@
.....@
.....@
.....@@
....###...@
...##.##..@
..##...##.@
.##.....##@
.#########@
.##.....##@
.##.....##@@
.########.@
.##.....##@
.##.....##@
.########.@
.##.....##@
.##.....##@
.########.@@
..######.@
.##....##@
.##......@
.##......@
.##......@
.##....##@
..######.@@
.########.@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
.########.@@
.########@
.##......@
.##......@
.######..@
.##......@
.##......@
.########@@
.########@
.##......@
.##......@
.######..@
.##......@
.##......@
.##......@@
..######..@
.##....##.@
.##.......@
.##...####@
.##....##.@
.##....##.@
..######..@@
.##.....##@
.##.....##@
.##.....##@
.#########@
.##.....##@
.##.....##@
.##.....##@@
.####@
..##.@
..##.@
..##.@
..##.@
..##.@
.####@@
.......##@
.......##@
.......##@
.......##@
.##....##@
.##....##@
..######.@@
.##....##@
.##...##.@
.##..##..@
.#####...@
.##..##..@
.##...##.@
.##....##@@
.##......@
.##......@
.##......@
.##......@
.##......@
.##......@
.########@@
.##.....##@
.###...###@
.####.####@
.##.###.##@
.##.....##@
.##.....##@
.##.....##@@
.##....##@
.###...##@
.####..##@
.##.##.##@
.##..####@
.##...###@
.##....##@@
..#######.@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
..#######.@@
.########.@
.##.....##@
.##.....##@
.########.@
.##.......@
.##.......@
.##.......@@
..#######.@
.##.....##@
.##.....##@
.##.....##@
.##..##.##@
.##....##.@
..#####.##@@
.########.@
.##.....##@
.##.....##@
.########.@
.##...##..@
.##....##.@
.##.....##@@
..######.@
.##....##@
.##......@
..######.@
.......##@
.##....##@
..######.@@
.########@
....##...@
....##...@
....##...@
....##...@
....##...@
....##...@@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
..#######.@@
.##.....##@
.##.....##@
.##.....##@
.##.....##@
..##...##.@
...##.##..@
....###...@@
.##......##@
.##..##..##@
.##..##..##@
.##..##..##@
.##..##..##@
.##..##..##@
..###..###.@@
.##.....##@
..##...##.@
...##.##..@
....###...@
...##.##..@
..##...##.@
.##.....##@@
.##....##@
..##..##.@
...####..@
....##...@
....##...@
....##...@
....##...@@
.########@
......##.@
.....##..@
....##...@
...##....@
..##.....@
.########@@
...####@
..##...@
..##...@
.###...@
..##...@
..##...@
...####@@
.##@
.##@
.##@
...@
.##@
.##@
.##@@
.####..@
....##.@
....##.@
....###@
....##.@
....##.@
.####..@@
..####.....@
.##..##..##@
......####.@
...........@
...........@
...........@
...........@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@@

825
node_modules/figlet/fonts/Barbwire.flf generated vendored Normal file
View File

@@ -0,0 +1,825 @@
flf2a$ 8 7 20 -1 8
BARBWIRE by Ron Fritz 8/94
Figlet Release 2.0
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
><<@
><<@
><<@
>< @
>< @
@
><<@
@@
>< ><@
>< ><@
@
@
@
@
@
@@
@
><< ><< @
><<<<<< ><<<<@
><< ><< @
><< ><< @
><<<<<< ><<<<@
><< ><< @
@@
><< @
>< ><< @
><< @
><< @
><<@
><< ><< @
><< @
@@
@
><< ><< @
><< @
><< @
><< @
><< @
><< ><< @
@@
>< @
><< ><<@
><< @
><<< @
><< @
><< ><<@
>< @
@@
><<@
><@
@
@
@
@
@
@@
><<@
><< @
><< @
><< @
><< @
><< @
><<@
@@
><< @
><< @
><<@
><<@
><<@
><< @
><< @
@@
><< @
><< ><< ><<@
>< >< ><< @
><<<< ><<<<<<<@
>< >< ><< @
><< ><< ><<@
><< @
@@
@
><< @
><< @
><<< ><<<<<@
><< @
><< @
@
@@
@
@
@
@
@
@
><<@
><@@
@
@
@
><<<<<@
@
@
@
@@
@
@
@
@
@
@
><<@
@@
><<@
><< @
><< @
><< @
><< @
><< @
><< @
@@
@
><< @
><< ><< @
><< ><< @
><< ><<@
><< ><< @
><<< @
@@
@
><< @
><< @
><< @
><< @
><< @
><<<<@
@@
@
><< >< @
>< ><<@
><< @
><< @
><< @
><<<<<<<< @
@@
@
><< ><< @
><< @
><< @
><< @
><<@
><<<<< @
@@
@
><< @
> ><< @
>< ><< @
><< ><< @
><<<< >< ><<@
><< @
@@
@
><< ><<< @
><< @
><<< @
><< @
><<@
><<< ><< @
@@
@
><< @
><< @
><< @
>< ><< @
><< ><<@
><< ><< @
@@
@
><<<<< ><<@
><< @
><< @
><< @
><< @
><< @
@@
@
>< @
><< ><< @
><< >< @
><< >< @
><< ><<@
><<<< @
@@
@
>< ><< @
><< ><<@
>< ><< @
>< ><< @
><< @
><< @
@@
@
@
@
@
><<@
@
><<@
@@
@
@
@
@
><<@
@
><<@
><@@
><<@
><< @
><< @
><< @
><< @
><< @
><<@
@@
@
@
><<<<<<@
@
><<<<<<@
@
@
@@
><< @
><< @
><< @
><<@
><< @
><< @
><< @
@@
><<< @
><< @
><<@
><< @
><< @
@
><< @
@@
@
><<< @
>< ><< @
>< ><< ><<@
><< ><<> ><<@
><< ``` @
><< @
@@
>< @
>< << @
>< ><< @
><< ><< @
><<<<<< ><< @
><< ><< @
><< ><<@
@@
><< ><< @
>< ><< @
>< ><<@
><<< >< @
>< ><<@
>< ><@
><<<< ><< @
@@
><< @
><< ><<@
><< @
><< @
><< @
><< ><<@
><<<< @
@@
><<<<< @
><< ><< @
><< ><<@
><< ><<@
><< ><<@
><< ><< @
><<<<< @
@@
><<<<<<<<@
><< @
><< @
><<<<<< @
><< @
><< @
><<<<<<<<@
@@
><<<<<<<<@
><< @
><< @
><<<<<< @
><< @
><< @
><< @
@@
><<<< @
>< ><< @
><< @
><< @
><< ><<<<@
><< >< @
><<<<< @
@@
><< ><<@
><< ><<@
><< ><<@
><<<<<< ><<@
><< ><<@
><< ><<@
><< ><<@
@@
><<@
><<@
><<@
><<@
><<@
><<@
><<@
@@
><<@
><<@
><<@
><<@
><<@
>< ><<@
><<<< @
@@
><< ><< @
><< ><< @
><< ><< @
>< >< @
><< ><< @
><< ><< @
><< ><<@
@@
><< @
><< @
><< @
><< @
><< @
><< @
><<<<<<<<@
@@
><< ><<@
>< ><< ><<<@
><< ><< > ><<@
><< ><< ><<@
><< >< ><<@
><< ><<@
><< ><<@
@@
><<< ><<@
>< ><< ><<@
><< ><< ><<@
><< ><< ><<@
><< >< ><<@
><< >< <<@
><< ><<@
@@
><<<< @
><< ><< @
><< ><<@
><< ><<@
><< ><<@
><< ><< @
><<<< @
@@
><<<<<<< @
><< ><<@
><< ><<@
><<<<<<< @
><< @
><< @
><< @
@@
><<<< @
><< ><< @
><< ><<@
><< ><<@
><< ><<@
><< >< ><< @
><< << @
>< @@
><<<<<<< @
><< ><< @
><< ><< @
>< ><< @
><< ><< @
><< ><< @
><< ><<@
@@
><< << @
><< ><<@
><< @
><< @
><< @
><< ><<@
><< << @
@@
><<< ><<<<<<@
><< @
><< @
><< @
><< @
><< @
><< @
@@
><< ><<@
><< ><<@
><< ><<@
><< ><<@
><< ><<@
><< ><<@
><<<<< @
@@
><< ><<@
><< ><< @
><< ><< @
><< ><< @
><< ><< @
><<<< @
><< @
@@
><< ><<@
><< ><<@
><< >< ><<@
><< ><< ><<@
><< >< ><< ><<@
>< >< ><<<<@
><< ><<@
@@
><< ><<@
><< ><< @
><< ><< @
><< @
><< ><< @
><< ><< @
><< ><<@
@@
><< ><<@
><< ><< @
><< ><< @
><< @
><< @
><< @
><< @
@@
><<<<<<< ><<@
><< @
><< @
><< @
><< @
><< @
><<<<<<<<<<<@
@@
><<<<@
><< @
><< @
><< @
><< @
><< @
><<<<@
@@
><< @
><< @
><< @
><< @
><< @
><< @
><<@
@@
><<<<@
><<@
><<@
><<@
><<@
><<@
><<<<@
@@
><< @
><< ><< @
><< ><<@
@
@
@
@
@@
@
@
@
@
@
@
@
><<<<<@@
><<@
>< @
@
@
@
@
@
@@
@
@
><< @
><< ><< @
><< ><< @
><< ><< @
><< ><<<@
@@
><< @
><< @
><< @
><< ><< @
><< ><<@
><< ><<@
><< ><< @
@@
@
@
><<<@
><< @
><< @
><< @
><<<@
@@
><<@
><<@
><<@
><< ><<@
>< ><<@
>< ><<@
><< ><<@
@@
@
@
><< @
>< ><< @
><<<<< ><<@
>< @
><<<< @
@@
><<@
>< @
><>< ><@
><< @
><< @
><< @
><< @
@@
@
@
><< @
><< ><<@
><< ><<@
><< ><<@
><< @
><< @@
@
><< @
><< @
>< >< @
><< ><<@
>< ><<@
><< ><<@
@@
@
><@
@
><<@
><<@
><<@
><<@
@@
@
><<@
@
><<@
><<@
><<@
><<@
><<< @@
><< @
><< @
><< ><<@
><< ><< @
><><< @
><< ><< @
><< ><<@
@@
><<@
><<@
><<@
><<@
><<@
><<@
><<<@
@@
@
@
><<< ><< ><< @
><< >< ><<@
><< >< ><<@
><< >< ><<@
><<< >< ><<@
@@
@
@
><< ><< @
><< ><<@
><< ><<@
><< ><<@
><<< ><<@
@@
@
@
><< @
><< ><< @
><< ><<@
><< ><< @
><< @
@@
@
@
>< ><< @
>< ><< @
>< ><<@
><< ><< @
><< @
><< @@
@
@
><< @
>< ><< @
>< ><< @
><<><< @
><< @
><<<@@
@
@
>< ><<<@
><< @
><< @
><< @
><<< @
@@
@
@
><<<< @
><< @
><<< @
><<@
><< ><<@
@@
><< @
><< @
><>< ><@
><< @
><< @
><< @
><< @
@@
@
@
><< ><<@
><< ><<@
><< ><<@
><< ><<@
><<><<@
@@
@
@
><< ><<@
><< ><< @
><< ><< @
><><< @
><< @
@@
@
@
><< ><<<@
><< < ><<@
><< >< ><<@
>< >< ><><<@
><<< ><<<@
@@
@
@
><< ><<@
>< ><< @
>< @
>< ><< @
><< ><<@
@@
@
@
><< ><<@
><< ><< @
><<< @
><< @
><< @
><< @@
@
@
><<<< ><<@
><< @
><< @
><< @
><<<<<<<<@
@@
><<@
><< @
><< @
<<< @
><< @
><< @
><<@
@@
><@
><@
><@
@
><@
><@
><@
@@
><< @
><< @
><< @
>>>@
><< @
><< @
><< @
@@
><< >< @
>< ><<@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@

825
node_modules/figlet/fonts/Basic.flf generated vendored Normal file
View File

@@ -0,0 +1,825 @@
flf2a$ 8 8 17 -1 8
basic.flf by Craig O'Flaherty <cofl@it.ntu.edu.au>
August 17, 1994
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
db$@
88$@
YP$@
$@
db$@
YP$@
$@
$@@
.o. .o.$@
`8' `8'$@
$@
$@
$@
$@
$@
$@@
$@
db db $@
C88888D$@
88 88 $@
C88888D$@
YP YP $@
$@
$@@
A $@
.d8888.$@
88'8 YP$@
`8b8. $@
`V8b.$@
db 8 8D$@
`8888Y'$@
V $@@
db dD$@
YP d8'$@
d8' $@
d8' $@
d8' db$@
d8' YP$@
$@
$@@
.d888b. $@
8P 8D $@
`Vb d8' $@
d88C dD$@
C8' d8D $@
`888P Yb$@
$@
$@@
Cb$@
`D$@
'$@
$@
$@
$@
$@
$@@
dD$@
d8' $@
d8 $@
C88 $@
V8 $@
V8. $@
VD$@
$@@
Cb $@
`8b $@
8b $@
88D$@
8P $@
.8P $@
CP $@
$@@
$@
8. A .8$@
`8.8.8'$@
888 $@
.d'8`b.$@
8' V `8$@
$@
$@@
$@
db $@
88 $@
C8888D$@
88 $@
VP $@
$@
$@@
$@
$@
$@
$@
db$@
V8$@
P$@
$@@
$@
$@
$@
C8888D$@
$@
$@
$@
$@@
$@
$@
$@
$@
db$@
VP$@
$@
$@@
dD$@
d8'$@
d8' $@
d8' $@
d8' $@
C8' $@
$@
$@@
.d88b. $@
.8P 88.$@
88 d'88$@
88 d' 88$@
`88 d8'$@
`Y88P' $@
$@
$@@
db$@
o88$@
88$@
88$@
88$@
VP$@
$@
$@@
.d888b.$@
VP `8D$@
odD'$@
.88' $@
j88. $@
888888D$@
$@
$@@
d8888b.$@
VP `8D$@
oooY'$@
~~~b.$@
db 8D$@
Y8888P'$@
$@
$@@
j88D $@
j8~88 $@
j8' 88 $@
V88888D$@
88 $@
VP $@
$@
$@@
ooooo$@
8P~~~~$@
dP $@
V8888b.$@
`8D$@
88oobY'$@
$@
$@@
dD $@
d8' $@
d8' $@
d8888b.$@
88' `8D$@
`8888P $@
$@
$@@
d88888D$@
VP d8'$@
d8' $@
d8' $@
d8' $@
d8' $@
$@
$@@
.d888b.$@
88 8D$@
`VoooY'$@
.d~~~b.$@
88 8D$@
`Y888P'$@
$@
$@@
.d888b.$@
88' `8D$@
`V8o88'$@
d8' $@
d8' $@
d8' $@
$@
$@@
$@
db$@
VP$@
$@
db$@
VP$@
$@
$@@
$@
db$@
VP$@
$@
db$@
V8$@
P$@
$@@
$@
.dP$@
.d8 $@
,P $@
`b $@
`Vb $@
`Vb$@
$@@
$@
C8888D$@
$@
C8888D$@
$@
$@
$@
$@@
$@
Vb $@
`Vb $@
`V.$@
.d'$@
.dP $@
dP $@
$@@
.d888b.$@
VP `8D$@
odD'$@
8P' $@
oo $@
VP $@
$@
$@@
.o888b.$@
d8' Y8$@
8P db dP$@
8b V8o8P$@
Y8. d$@
`Y888P'$@
$@
$@@
.d8b. $@
d8' `8b$@
88ooo88$@
88~~~88$@
88 88$@
YP YP$@
$@
$@@
d8888b.$@
88 `8D$@
88oooY'$@
88~~~b.$@
88 8D$@
Y8888P'$@
$@
$@@
.o88b.$@
d8P Y8$@
8P $@
8b $@
Y8b d8$@
`Y88P'$@
$@
$@@
d8888b.$@
88 `8D$@
88 88$@
88 88$@
88 .8D$@
Y8888D'$@
$@
$@@
d88888b$@
88' $@
88ooooo$@
88~~~~~$@
88. $@
Y88888P$@
$@
$@@
d88888b$@
88' $@
88ooo $@
88~~~ $@
88 $@
YP $@
$@
$@@
d888b $@
88' Y8b$@
88 $@
88 ooo$@
88. ~8~$@
Y888P $@
$@
$@@
db db$@
88 88$@
88ooo88$@
88~~~88$@
88 88$@
YP YP$@
$@
$@@
d888888b$@
`88' $@
88 $@
88 $@
.88. $@
Y888888P$@
$@
$@@
d88b$@
`8P'$@
88 $@
88 $@
db. 88 $@
Y8888P $@
$@
$@@
db dD$@
88 ,8P'$@
88,8P $@
88`8b $@
88 `88.$@
YP YD$@
$@
$@@
db $@
88 $@
88 $@
88 $@
88booo.$@
Y88888P$@
$@
$@@
.88b d88.$@
88'YbdP`88$@
88 88 88$@
88 88 88$@
88 88 88$@
YP YP YP$@
$@
$@@
d8b db$@
888o 88$@
88V8o 88$@
88 V8o88$@
88 V888$@
VP V8P$@
$@
$@@
.d88b. $@
.8P Y8.$@
88 88$@
88 88$@
`8b d8'$@
`Y88P' $@
$@
$@@
d8888b.$@
88 `8D$@
88oodD'$@
88~~~ $@
88 $@
88 $@
$@
$@@
.d88b. $@
.8P Y8.$@
88 88$@
88 88$@
`8P d8'$@
`Y88'Y8$@
$@
$@@
d8888b.$@
88 `8D$@
88oobY'$@
88`8b $@
88 `88.$@
88 YD$@
$@
$@@
.d8888.$@
88' YP$@
`8bo. $@
`Y8b.$@
db 8D$@
`8888Y'$@
$@
$@@
d888888b$@
`~~88~~'$@
88 $@
88 $@
88 $@
YP $@
$@
$@@
db db$@
88 88$@
88 88$@
88 88$@
88b d88$@
~Y8888P'$@
$@
$@@
db db$@
88 88$@
Y8 8P$@
`8b d8'$@
`8bd8' $@
YP $@
$@
$@@
db d8b db$@
88 I8I 88$@
88 I8I 88$@
Y8 I8I 88$@
`8b d8'8b d8'$@
`8b8' `8d8' $@
$@
$@@
db db$@
`8b d8'$@
`8bd8' $@
.dPYb. $@
.8P Y8.$@
YP YP$@
$@
$@@
db db$@
`8b d8'$@
`8bd8' $@
88 $@
88 $@
YP $@
$@
$@@
d88888D$@
YP d8'$@
d8' $@
d8' $@
d8' db$@
d88888P$@
$@
$@@
d88D$@
88 $@
88 $@
88 $@
88 $@
L88D$@
$@
$@@
Cb $@
`8b $@
`8b $@
`8b $@
`8b $@
`8D$@
$@
$@@
C88D$@
88$@
88$@
88$@
88$@
C888$@
$@
$@@
db $@
.dPVb. $@
dP' `Vb$@
$@
$@
$@
$@
$@@
$@
$@
$@
$@
$@
C88888D$@
$@
$@@
dD$@
C'$@
`$@
$@
$@
$@
$@
$@@
.d8b. $@
d8' `8b$@
88ooo88$@
88~~~88$@
88 88$@
YP YP$@
$@
$@@
d8888b.$@
88 `8D$@
88oooY'$@
88~~~b.$@
88 8D$@
Y8888P'$@
$@
$@@
.o88b.$@
d8P Y8$@
8P $@
8b $@
Y8b d8$@
`Y88P'$@
$@
$@@
d8888b.$@
88 `8D$@
88 88$@
88 88$@
88 .8D$@
Y8888D'$@
$@
$@@
d88888b$@
88' $@
88ooooo$@
88~~~~~$@
88. $@
Y88888P$@
$@
$@@
d88888b$@
88' $@
88ooo $@
88~~~ $@
88 $@
YP $@
$@
$@@
d888b $@
88' Y8b$@
88 $@
88 ooo$@
88. ~8~$@
Y888P $@
$@
$@@
db db$@
88 88$@
88ooo88$@
88~~~88$@
88 88$@
YP YP$@
$@
$@@
d888888b$@
`88' $@
88 $@
88 $@
.88. $@
Y888888P$@
$@
$@@
d88b$@
`8P'$@
88 $@
88 $@
db. 88 $@
Y8888P $@
$@
$@@
db dD$@
88 ,8P'$@
88,8P $@
88`8b $@
88 `88.$@
YP YD$@
$@
$@@
db $@
88 $@
88 $@
88 $@
88booo.$@
Y88888P$@
$@
$@@
.88b d88.$@
88'YbdP`88$@
88 88 88$@
88 88 88$@
88 88 88$@
YP YP YP$@
$@
$@@
d8b db$@
888o 88$@
88V8o 88$@
88 V8o88$@
88 V888$@
VP V8P$@
$@
$@@
.d88b. $@
.8P Y8.$@
88 88$@
88 88$@
`8b d8'$@
`Y88P' $@
$@
$@@
d8888b.$@
88 `8D$@
88oodD'$@
88~~~ $@
88 $@
88 $@
$@
$@@
.d88b. $@
.8P Y8.$@
88 88$@
88 88$@
`8P d8'$@
`Y88'Y8$@
$@
$@@
d8888b.$@
88 `8D$@
88oobY'$@
88`8b $@
88 `88.$@
88 YD$@
$@
$@@
.d8888.$@
88' YP$@
`8bo. $@
`Y8b.$@
db 8D$@
`8888Y'$@
$@
$@@
d888888b$@
`~~88~~'$@
88 $@
88 $@
88 $@
YP $@
$@
$@@
db db$@
88 88$@
88 88$@
88 88$@
88b d88$@
~Y8888P'$@
$@
$@@
db db$@
88 88$@
Y8 8P$@
`8b d8'$@
`8bd8' $@
YP $@
$@
$@@
db d8b db$@
88 I8I 88$@
88 I8I 88$@
Y8 I8I 88$@
`8b d8'8b d8'$@
`8b8' `8d8' $@
$@
$@@
db db$@
`8b d8'$@
`8bd8' $@
.dPYb. $@
.8P Y8.$@
YP YP$@
$@
$@@
db db$@
`8b d8'$@
`8bd8' $@
88 $@
88 $@
YP $@
$@
$@@
d88888D$@
YP d8'$@
d8' $@
d8' $@
d8' db$@
d88888P$@
$@
$@@
.8P$@
8' $@
.dP $@
C88 $@
`Yb $@
8. $@
`8b$@
$@@
8$@
8$@
8$@
$@
8$@
8$@
8$@
$@@
V8. $@
`8 $@
Vb. $@
88D$@
dP' $@
.8 $@
C8' $@
$@@
.oo. .$@
P' `VP'$@
$@
$@
$@
$@
$@
$@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@

930
node_modules/figlet/fonts/Bear.flf generated vendored Normal file
View File

@@ -0,0 +1,930 @@
flf2a$ 9 9 15 0 11 0 16448 0
Author : myflix
Date : 2007/6/1 16:06:57
Version: 1.0
-------------------------------------------------
-------------------------------------------------
This font has been created using JavE's FIGlet font export assistant.
Have a look at: http://www.jave.de
Permission is hereby given to modify this font, as long as the
modifier's name is placed on a comment line.
$ #
$ #
$ #
$ #
$ #
$ #
$ #
$ #
$ ##
!#
#
#
#
#
#
#
#
##
"#
#
#
#
#
#
#
#
##
##
#
#
#
#
#
#
#
##
$#
#
#
#
#
#
#
#
##
%#
#
#
#
#
#
#
#
##
&#
#
#
#
#
#
#
#
##
'#
#
#
#
#
#
#
#
##
(#
#
#
#
#
#
#
#
##
)#
#
#
#
#
#
#
#
##
*#
#
#
#
#
#
#
#
##
+#
#
#
#
#
#
#
#
##
,#
#
#
#
#
#
#
#
##
-#
#
#
#
#
#
#
#
##
.#
#
#
#
#
#
#
#
##
/#
#
#
#
#
#
#
#
##
0#
#
#
#
#
#
#
#
##
1#
#
#
#
#
#
#
#
##
2#
#
#
#
#
#
#
#
##
3#
#
#
#
#
#
#
#
##
4#
#
#
#
#
#
#
#
##
5#
#
#
#
#
#
#
#
##
6#
#
#
#
#
#
#
#
##
7#
#
#
#
#
#
#
#
##
8#
#
#
#
#
#
#
#
##
9#
#
#
#
#
#
#
#
##
:#
#
#
#
#
#
#
#
##
;#
#
#
#
#
#
#
#
##
<#
#
#
#
#
#
#
#
##
=#
#
#
#
#
#
#
#
##
> >#
#
#
#
#
#
#
#
##
?#
#
#
#
#
#
#
#
##
@#
#
#
#
#
#
#
#
##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| A || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| B || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| C || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| D || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| E || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| F || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| G || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| H || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| I || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| J || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| K || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| L || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| M || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| N || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| O || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| P || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| Q || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| R || #
_.' `-' '._ #
(.-./`-`\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| S || #
_.' `-' '._ #
(.-./`-`\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| T || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| U || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| V || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| W || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| X || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| Y || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| Z || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
[#
#
#
#
#
#
#
#
##
\#
#
#
#
#
#
#
#
##
]#
#
#
#
#
#
#
#
##
^#
#
#
#
#
#
#
#
##
_#
#
#
#
#
#
#
#
##
`#
#
#
#
#
#
#
#
##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| A || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| B || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| C || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| D || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| E || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| F || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| G || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| H || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| I || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| J || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| K || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| L || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| M || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| N || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| O || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| P || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| Q || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| R || #
_.' `-' '._ #
(.-./`-`\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| S || #
_.' `-' '._ #
(.-./`-`\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| T || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| U || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| V || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| W || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| X || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| Y || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| Z || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
{#
#
#
#
#
#
#
#
##
|#
#
#
#
#
#
#
#
##
}#
#
#
#
#
#
#
#
##
~#
#
#
#
#
#
#
#
##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| A || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| O || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| U || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| A || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| O || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
_ _ #
(c).-.(c) #
/ ._. \ #
__\( Y )/__ #
(_.-/'-'\-._)#
|| U || #
_.' `-' '._ #
(.-./`-'\.-.)#
`-' `-' ##
ß#
#
#
#
#
#
#
#
##

636
node_modules/figlet/fonts/Bell.flf generated vendored Normal file
View File

@@ -0,0 +1,636 @@
flf2a$ 6 5 15 -1 23
bell.flf
Lower case letters, punctuation, and miscellaneous changes by Kent Nassen,
kentn@cyberspace.org
Last change: 10/11/94
Upper case letters originally by Joshua Bell:
Newsgroups: alt.ascii-art
From: jsbell@acs.ucalgary.ca (Joshua Bell)
Subject: Yet Another Non-Figlet Font
Message-ID: <Mar13.073432.23373@acs.ucalgary.ca>
Date: Sun, 13 Mar 1994 07:34:32 GMT
Organization: The University of Calgary
Lines: 30
Status: RO
I've had this kicking around for a while. If anyone wants to add
in other characters and Figlet-ize it, go right ahead.
Joshua
--
| "Has it been a bad year, or what?" - Meriadoc Brandybuck, |
| upon returning to the Shire after the War of the Ring. |
| jsbell@acs.ucalgary.ca Academic Computing Services, University of Calgary |
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
$/@
$|@
$|@
$|@
$`@
$'@@
$,,@
$//@
$ $@
$ $@
$ $@
$ $@@
$ . . $@
$ -|--|--@
$ | | $@
$--|--|-$@
$ ' ' $@
$ $@@
@
@
@
@
@
@@
$ _ ,$@
$/ \ / $@
$\_// _$@
$ / / \@
$ / \_/@
$' $@@
@
@
@
@
@
@@
,@
/@
$@
$@
$@
$@@
$ ,@
$/ @
$| @
$| @
$. @
$ `@@
$. @
$ \@
$ |@
$ |@
$ ,@
$' @@
$ . @
$`. | /@
$ \-' @
$ ,|\ @
$/ | \ @
$ $@@
$ , $@
$ | $@
$.----'@
$ | $@
$ ` $@
$ $@@
$$@
$$@
$$@
$$@
$,@
$/@@
$ $@
$ $@
$.---'@
$ $@
$ $@
$ $@@
$$@
$$@
$$@
$$@
$/@
$$@@
$ $@
$ /@
$ /$@
$ ,'$@
$, $@
$ $@@
$ ___/@
$.' /\@
$| / |@
$|,' |@
$/`---'@
$ $@@
$ .$@
$/|$@
$ |$@
$ |$@
$_|_@
$ $@@
$ ___$@
$/ \@
$ _-'@
$ / @
$/___,@
$ @@
$ ___$@
$/ \@
$ _-'@
$ \ @
$\___)@
$ @@
$ $@
$| |$@
$`.__|$@
$ |$@
$ |$@
$ $@@
$ ____@
$| @
$`---.@
$ |@
$\__.'@
$ $@@
$ __$@
$.' @
$|---.@
$| |@
$`._.'@
$ $@@
$ ___$@
$' \@
$ __/@
$ /`@
$ / $@
$ $@@
$ ___ @
$/ \@
$>---<@
$' `@
$`---'@
$ $@@
$ ___ @
$/ \@
$`---|@
$ |@
$`---'@
$ $@@
$$@
$$@
$/@
$$@
$/@
$$@@
$$@
$$@
$/@
$$@
$,@
$/@@
@
@
@
@
@
@@
$ $@
$ $@
$,-----'@
$ $@
$,-----'@
$ $@@
@
@
@
@
@
@@
$ __ $@
$/ `.@
$` '@
$ /$@
$ , $@
$ ' $@@
_____ @
/ __. \@
| / | |@
| \__| |@
| `-'@
`----- @@
. @
/| @
/ \ @
/---'\ @
,' \@
@@
$____ $@
$/ \ @
$|,_-< @
$| `@
$`----'@
$ $@@
$ ___ @
$.' \@
$| @
$| @
$ `.__,@
$ @@
$.___ $@
$/ ` @
$| |@
$| |@
$/---/ @
$ $@@
$.____$@
$/ $@
$|__. $@
$| $@
$/----/@
$ @@
$.____@
$/ @
$|__. @
$| @
$/ @
$ @@
$ ___ $@
$.' \$@
$| $@
$| _$@
$ `.___|@
$ @@
$__ __@
$| | @
$|___| @
$| | @
$/ / @
$ $@@
$_@
$|@
$|@
$|@
$/@
$$@@
$ _______@
$' / @
$ | @
$ | @
$ `--/ @
$ $@@
$. @
$/ /@
$|_-' @
$| \ @
$/ \@
$ @@
$. @
$/ @
$| @
$| @
$/---/@
$ @@
$__ __@
$| | @
$|\ /| @
$| \/ | @
$/ / @
$ @@
$__ _@
$|\ | @
$| \ | @
$| \ | @
$| \| @
$ @@
$ ___ @
$.' `.@
$| |@
$| |@
$ `.__.'@
$ @@
$.___ @
$/ \@
$|,_-'@
$| @
$/ @
$ @@
$ ___ @
$.' `. @
$| | @
$| ,_ | @
$ `._.`-.@
$ @@
$.___ @
$/ \@
$|__-'@
$| \ @
$/ \@
$ @@
$ _____@
$ ( @
$ `--. @
$ | @
$\___.' @
$ @@
$ _______@
$' / @
$ | @
$ | @
$ / @
$ @@
$. .@
$/ /@
$| |@
$| |@
$ `._.' @
$ @@
$__ __@
$| | @
$ \ / @
$ \ / @
$ \/ @
$ @@
$. __@
$/ | @
$| | @
$| /\ / @
$|,' \,' @
$ @@
$_ _@
$`. / @
$ \,' @
$ ,'\ @
$/ \ @
$ @@
$_ _@
$ `. / @
$ `./ @
$ ,' @
$_-' @
$ @@
$ _______ @
$' / @
$ .--' @
$ / @
$,'______/@
$ @@
$__@
$| @
$| @
$| @
$| @
$--@@
$ @
$\ @
$ \ @
$ `. @
$ `.@
$ @@
$__@
$ |@
$ |@
$ |@
$ |@
$--@@
@
@
@
@
@
@@
$ $@
$ $@
$ $@
$ $@
$______,@
$' $@@
$,@
$\@
$$@
$$@
$$@
$$@@
$ $@
$ ___$@
$ / `@
$| |@
$`.__/|@
$ $@@
$_ $@
$\ ___ @
$|/ \@
$| `@
$`___,'@
$ $@@
$ $@
$ ___ @
$.' `@
$| @
$ `._.'@
$ $@@
$ _@
$ ___/@
$ / |@
$,' |@
$`___,'@
$ `@@
$ $@
$ ___$@
$.' `@
$|----'@
$`.___,@
$ $@@
$,__$@
$/ `@
$|__$@
$| $@
$| $@
$/ $@@
$ @
$ ___.@
$.' `@
$| |@
$ `---|@
$ \___/@@
$_ $@
$/ @
$|,---.@
$|' `@
$/ |@
$ $@@
$ @
$`@
$|@
$|@
$/@
$$@@
$ $@
$ .$@
$ \$@
$ |$@
$/` |$@
$\___/`@@
$\ $@
$| ,@
$| / @
$|-< @
$/ \_@
$ $@@
$ . @
$ | @
$ | @
$ | @
$/\__@
$ @@
$ $@
$, _ , _ $@
$|' `|' `.@
$| | |@
$/ ' /@
$ $@@
$ $@
$, __ $@
$|' `.@
$| |@
$/ |@
$ $@@
$ $@
$ __. @
$.' \@
$| |@
$ `._.'@
$ $@@
$ $@
$\,___,@
$| \@
$| |@
$|`---'@
$\ $@@
$ $@
$ ___.$@
$.' `$@
$| |$@
$ `---|.@
$ |/@@
$ $@
$.___$@
$/ \@
$| '@
$/ $@
$ $@@
$ $@
$ ____@
$ ( @
$ `--.$@
$\___.'@
$ $@@
$ . $@
$_/_ @
$ | @
$ | @
$ \__/@
$ $@@
$ $@
$, .@
$| |@
$| |@
$`._/|@
$ $@@
$ $@
$_ __@
$| / @
$` / $@
$ \/ $@
$ $@@
$ @
$, _ /@
$| | |@
$` ^ '@
$ \/ \/$@
$ $@@
$ $@
$_ .-@
$ \,'$@
$ /\ $@
$/ \$@
$ $@@
$ $@
$, .$@
$| `$@
$| |$@
$ `---|.@
$ \___/$@@
$ $@
$____$@
$ /$@
$ ,/ $@
$/__.'@
$` $@@
$ _@
$/ @
_| @
$| @
$\_@
$ $@@
$.@
$|@
$|@
$|@
$|@
$`@@
_ $@
\$@
|_@
|$@
_/$@
$ $@@
@
@
@
@
@
~@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@
@
@
@
@
@
@@

143
node_modules/figlet/fonts/Benjamin.flf generated vendored Normal file
View File

@@ -0,0 +1,143 @@
flf2a$ 1 1 9 0 40 0 8256 0
#
# benjamin.flf // Version 02 // 2001-06-04
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# This font is based on article <5m7lhtg5vj1esom25btrdugng0mseqisqv@4ax.com>
# from the newsgroup de.alt.rec.ascii-art and its follow-ups.
#
# The most current version of this font should be available here:
# http://www.cgarbs.de/stuff/benjamin.flf.gz
#
#-[WhoIsWho]------------------------------------------------------------------
#
# Font creators:
# >> Benjamin Weiland <benjamin.weiland@uloc.de>
# >> Markus Gebhard <ukgh@rz.uni-karlsruhe.de>
# >> Christian Garbs <mitch@cgarbs.de>
#
# .flf file maintainer:
# Christian Garbs <mitch@cgarbs.de>
#
#-[History]-------------------------------------------------------------------
#
# 2001-06-04::Version 02
# * added the comments you're reading now
# * changed download location to www.cgarbs.de
# * added 0-9, &, German umlauts + ess-zed
# * changed X
#
# 2001-06-03::Version 01
# * available characters: A-Z, a-z, @, *
#
#-[Commercial]----------------------------------------------------------------
#
# _ __,"\\ _. _ de.alt.rec.ascii-art
# /\\ /\\ _.--/ `. ,' ( "_//" __| |__ _ _ _ __ _ ___ __ _
# ,''\," ,""\,"=='( \.'\\_,( _`-'=-' / _` / _` | '_/ _` |___/ _` |
# ' u-u `=' u-u |l''|l `" |m' |m -bf- \__,_\__,_|_| \__,_| \__,_|
#
#-[TheEnd]--------------------------------------------------------------------
#
$@@
!@@
"@@
#@@
S@@
%@@
&@@
'@@
(@@
)@@
x@@
+@@
,@@
-@@
.@@
/@@
(\)@@
'|@@
^/_@@
-}@@
+|@@
;"@@
(o@@
"/@@
{}@@
")@@
:@@
;@@
<@@
=@@
>@@
?@@
(a)@@
/-\@@
|3@@
(@@
|)@@
[-@@
|=@@
[,@@
|-|@@
|@@
.]@@
|<@@
|_@@
|\/|@@
|\|@@
()@@
|'@@
()_@@
|2@@
_\"@@
"|"@@
|_|@@
\/@@
\/\/@@
><@@
`/@@
"/_@@
[@@
\@@
]@@
^@@
_@@
`@@
/-\@@
|3@@
(@@
|)@@
[-@@
|=@@
[,@@
|-|@@
|@@
.]@@
|<@@
|_@@
|\/|@@
|\|@@
()@@
|'@@
()_@@
|2@@
_\"@@
"|"@@
|_|@@
\/@@
\/\/@@
`/.@@
`/@@
"/_@@
{@@
|@@
}@@
~@@
'/-\'@@
'()'@@
'|_|'@@
'/-\'@@
'()'@@
i_i@@
/3@@

819
node_modules/figlet/fonts/Big Chief.flf generated vendored Normal file
View File

@@ -0,0 +1,819 @@
flf2a$ 8 6 20 15 2
bigchf.flf 10/94 pk6811s@acad.drake.edu, update 1/95 syb3@ABER.AC.UK
Mrs. Penderson is SO proud of me!
____@
@
$$$$@
----@
$$$$@
____@
@
@@
_______@
/ @
/ @
---/---@
/ @
_o_____@
@
@@
____@
@
// @
----@
@
____@
@
@@
_________@
-/--/- @
-/--/- @
---------@
@
_________@
@
@@
___________@
__/_ @
( / ) @
-----\-----@
(__/_) @
___/_______@
@
@@
_____@
@
()/ @
--/--@
/() @
_____@
@
@@
________@
__ @
( ) @
---\/---@
/ \ @
_(__ \__@
) @
@@
___@
@
/ @
---@
@
___@
@
@@
_________@
.- @
/ @
----/----@
/ @
__/______@
/ @
- @@
________@
-. @
/ @
-----/--@
/ @
___/____@
/ @
- @@
______@
@
@
-_\/_-@
/\ @
______@
@
@@
_____@
@
@
-_|_-@
| @
_____@
@
@@
____@
@
@
----@
@
__/_@
/ @
@@
_____@
@
@
-----@
$=== @
_____@
@
@@
___@
$ @
$ @
---@
$$ @
_o_@
$ @
$ @@
_______$@
$@
/ @
---/----@
/ @
_/______@
@
@@
__________@
__ @
/ )@
---/----/-@
/ / @
_(____/___@
@
@@
__________@
_ @
// @
-----/----@
/ @
___/______@
@
@@
__________@
__ @
/ ) @
----___/--@
/ @
_/____/___@
@
@@
__________@
__ @
/ ) @
---- _ /--@
) @
_(____/___@
@
@@
__________@
@
/ / @
--/____/--@
/ @
_____/____@
@
@@
__________@
____ @
/ @
---/___---@
) @
_(____/___@
@
@@
__________@
___ @
/ @
---/___---@
/ ) @
_(____/___@
@
@@
__________@
____ @
/ / @
-------/--@
/ @
_____/____@
@
@@
__________@
__ @
/ )@
----___ --@
/ / @
_(____/___@
@
@@
__________@
__ @
/ )@
---(___ /-@
/ @
_(____/___@
@
@@
___@
@
@
---@
$o$@
_o_@
@
@@
___@
@
@
---@
@
___@
/ @
@@
____@
@
/ @
-<--@
\ @
____@
@
@@
____@
@
__ @
-__-@
@
____@
@
@@
____@
@
\ @
-->-@
/ @
____@
@
@@
________@
___ @
( ) @
----/---@
/ @
__o_____@
@
@@
________@
_ @
/ ) @
-/--O---@
\__ / @
________@
@
@@
________@
__ @
/ | @
---/__|-@
/ | @
_/____|_@
@
@@
__________@
____ @
/ ) @
---/__ /--@
/ ) @
_/____/___@
@
@@
__________@
__ @
/ )@
---/------@
/ @
_(____/___@
@
@@
__________@
_____ @
/ )@
---/----/-@
/ / @
_/____/___@
@
@@
__________@
_____ @
/ '@
---/__----@
/ @
_/____$___@
@
@@
__________@
_____ @
/ '@
---/__----@
/ @
_/________@
@
@@
__________@
__ @
/ )@
---/------@
/ --, @
_(____/___@
@
@@
___________@
_ _@
/ / @
---/___ /--@
/ / @
_/____/____@
@
@@
_______@
__@
/ @
----/--@
/ @
$_/_$__@
@
@@
__________@
__@
/ @
-------/--@
/ @
_(___/____@
@
@@
__________@
_ _@
/ ,' @
---/_.'---@
/ \ @
_/____\___@
@
@@
________@
_ @
/ @
---/----@
/ @
_/____/_@
@
@@
__________@
_ _ @
/ /| @
---/| /-|-@
/ |/ | @
_/__/___|_@
@
@@
___________@
_ _@
/| / @
---/-| -/--@
/ | / @
_/___|/____@
@
@@
__________@
__ @
/ )@
---/----/-@
/ / @
_(____/___@
@
@@
__________@
____ @
/ )@
---/____/-@
/ @
_/________@
@
@@
__________@
__ @
/ )@
---/----/-@
/ \ / @
_(____X___@
\ @
@@
__________@
____ @
/ )@
---/___ /-@
/ | @
_/_____|__@
@
@@
__________@
__ @
/ )@
----\-----@
\ @
_(____/___@
@
@@
________@
______@
/ @
---/----@
/ @
_/______@
@
@@
___________@
_ _@
/ / @
---/----/--@
/ / @
_(____/____@
@
@@
________@
_ _@
| / @
--|--/--@
| / @
__|/____@
@
@@
__________@
_ _@
| | / @
--|-/|-/--@
|/ |/ @
__/__|____@
@
@@
_______@
_ _@
| / @
---|---@
/| @
_/_|___@
@
@@
___________@
_ _@
| / @
----|---/--@
| / @
____|_/____@
/ @
(_ / @@
__________@
___ @
/ @
-------/--@
/ @
____(_____@
/ @
(_ / @@
________@
__@
/ @
----/---@
/ @
__/_____@
/__ @
@@
______@
@
\ @
--\---@
\ @
____\_@
@
@@
________@
__@
/@
------/-@
/ @
____/___@
__/ @
@@
____@
@
| @
-/|-@
@
____@
@
@@
______@
@
@
------@
@
______@
------@
@@
___@
@
\ @
---@
@
___@
@
@@
_______@
@
@
----__-@
/ )@
_(___(_@
@
@@
_______@
@
/ @
---/__-@
/ )@
_(___/_@
@
@@
_______@
@
@
----__-@
/ '@
_(___$_@
@
@@
_________@
@
/@
----__-/-@
/ / @
_(___/___@
@
@@
_______@
@
@
----__-@
/___)@
_(___$_@
@
@@
________@
_ @
/ `@
--_/__--@
/ @
_/______@
@
@@
_______@
@
@
----__-@
/ )@
_(___/_@
/ @
(_ / @@
_______@
@
/ @
---/__-@
/ )@
_/___/_@
@
@@
_____@
@
,@
-----@
/ @
_/___@
@
@@
_________@
@
,@
---------@
/ @
_____/___@
/ @
(_ / @@
________@
@
/ @
---/-__-@
/( @
_/___\__@
@
@@
_____@
@
/@
---/-@
/ @
_/___@
@
@@
________@
@
@
---_--_-@
/ / )@
_/_/__/_@
@
@@
_______@
@
@
----__-@
/ )@
_/___/_@
@
@@
_______@
@
@
----__-@
/ )@
_(___/_@
@
@@
_________@
@
@
------__-@
/ )@
___/___/_@
/ @
/ @@
_______@
@
@
----__-@
/ )@
_(___/_@
/ @
(_ @@
_______@
@
@
---)__-@
/ )@
_/_____@
@
@@
______@
@
@
---__-@
(_ `@
_(__)_@
@
@@
______@
@
@
--_/_-@
/ @
_(_$__@
@
@@
________@
@
@
--------@
/ / @
_(___(__@
@
@@
______@
@
@
------@
| / @
__|/__@
@
@@
________@
@
@
--------@
| /| / @
_|/_|/__@
@
@@
_____@
@
@
---|/@
| @
__/|_@
/ @
@@
_______@
@
@
-------@
/ /@
_(___/_@
/ @
(_ / @@
_______@
@
@
----__-@
/@
____(__@
/ @
(_ / @@
________@
_@
/ @
----/---@
< @
__/_____@
(__ @
@@
_@
|@
|@
|@
|@
|@
$@
$@@
________@
_ @
)@
------/-@
> @
____/___@
_ / @
@@
_______@
_ _@
/ \_/ @
-------@
@
_______@
@
@@
________@
, , @
__ @
---/__|-@
/ | @
_/____|_@
@
@@
_________@
, ,@
__ @
---/----)@
/ / @
_(____/__@
@
@@
________@
, ,@
@
---/---/@
/ / @
_(___(__@
@
@@
_______@
@
, ,@
----_--@
/ )@
_(___(_@
@
@@
_______@
@
, ,@
----_--@
/ )@
_(___/_@
@
@@
_______@
@
, ,@
-------@
/ /@
_(___(_@
@
@@
___________@
_____ @
// )@
---//__ ,/-@
// ) @
_//____/___@
/ @
@@

1148
node_modules/figlet/fonts/Big Money-ne.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

1148
node_modules/figlet/fonts/Big Money-nw.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

1250
node_modules/figlet/fonts/Big Money-se.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

1250
node_modules/figlet/fonts/Big Money-sw.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

2204
node_modules/figlet/fonts/Big.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

334
node_modules/figlet/fonts/Bigfig.flf generated vendored Normal file
View File

@@ -0,0 +1,334 @@
flf2a$ 3 3 5 -1 23
Expansion font for bigfig program by Glenn Chappell 4/93 -- based on Mini
26 Apr 1995
Permission is hereby given to modify this font, as long as the
modifier's name is placed on a comment line.
This font is intended to be used with the "bigfig" program. It can
be used as an ordinary figlet font, but it won't look very nice.
"bigfig" is available by anonymous ftp from "ftp.nicoh.com". Look in
the directory "pub/figlet/util".
Or, if you'd rather not use the bigfig program, just type
figlet -w27 -f myfavoritefont | figlet -f bigfig
Explanation of first line:
flf2 - "magic number" for file identification
a - should always be `a', for now
$ - the "hardblank" -- prints as a blank, but can't be smushed
3 - height of a character
3 - height of a character, not including descenders
5 - max line length (excluding comment lines) + a fudge factor
-1 - default smushmode for this font
23 - number of comment lines
$ @
$ @
$ @@
| @
| @
o @@
| |@
$ @
$ @@
| |@
===@
| |@@
_@
(| @
_|)@@
O /@
/ @
/ O@@
() @
/\/@
\/\@@
/ @
$ @
$ @@
/@
( @
\@@
\ @
) @
/ @@
\|/@
-*-@
/|\@@
| @
-+-@
| @@
@
@
/ @@
@
---@
$ @@
@
@
o @@
/@
/ @
/ @@
_ @
/ \@
\_/@@
@
/| @
| @@
__ @
_)@
/__@@
__ @
__)@
__)@@
@
|_|@
|@@
__@
|_ @
__)@@
_ @
|_ @
|_)@@
__@
/@
/ @@
_ @
(_)@
(_)@@
_ @
(_|@
_|@@
o @
$ @
o @@
o @
$ @
/ @@
/@
< @
\@@
___@
___@
$ @@
\ @
> @
/ @@
_ @
)@
o @@
_ @
/a)@
\__@@
_ @
|_|@
| |@@
_ @
|_)@
|_)@@
__@
/ @
\__@@
_ @
| \@
|_/@@
__@
|_ @
|__@@
__@
|_ @
| @@
__@
/__@
\_|@@
@
|_|@
| |@@
___@
| @
_|_@@
@
|@
\_|@@
@
|/ @
|\ @@
@
| @
|__@@
@
|V|@
| |@@
@
|\|@
| |@@
_ @
/ \@
\_/@@
_ @
|_)@
| @@
_ @
/ \@
\_X@@
_ @
|_)@
| \@@
__@
(_ @
__)@@
___@
| @
| @@
@
| |@
|_|@@
\ /@
V @
@@
@
| |@
|^|@@
\ /@
X @
/ \@@
\ /@
Y @
| @@
___@
_/@
/__@@
+--@
| @
|__@@
\ @
\ @
\@@
--+@
|@
__|@@
_ @
/ \@
$ @@
$ @
$ @
___@@
\ @
$ @
$ @@
@
_ @
(_|@@
@
|_ @
|_)@@
@
_ @
(_ @@
@
_|@
(_|@@
@
_ @
(/_@@
_@
_|_@
| @@
_ @
(_|@
__|@@
@
|_ @
| |@@
@
o @
| @@
o @
| @
_| @@
@
| @
|<@@
@
| @
| @@
@
__ @
|||@@
@
__ @
| |@@
@
_ @
(_)@@
_ @
|_)@
| @@
_ @
(_|@
|@@
@
__@
| @@
@
_ @
_> @@
@
_|_@
|_@@
@
@
|_|@@
@
@
\_/@@
@
@
\^/@@
@
@
>< @@
@
\/@
/ @@
@
_ @
/_@@
/@
-( @
\@@
| @
| @
| @@
\ @
)-@
/ @@
/\/@
$ @
$ @@
o_o@
|_|@
| |@@
o_o@
/ \@
\_/@@
o o@
| |@
|_|@@
@
o_o@
(_|@@
@
o_o@
(_)@@
@
o o@
|_|@@
_ @
| )@
| )@@
0
XXX@
XXX@
XXX@@

372
node_modules/figlet/fonts/Binary.flf generated vendored Normal file
View File

@@ -0,0 +1,372 @@
flf2a$ 1 1 11 -1 11 0
binary.flf (C) 1994 by Victor Parada (vparada@inf.utfsm.cl) 94/12/05
figlet 2.1 font, includes ISO Latin-1, excludes "-D" option chars.
Spaces are not shown as binary. If this is required, change "$@" below
to "00100000 @". Change to "@" to remove the hardspace between words.
Note that figlet always removes spaces when it moves words to a new line.
Try option "-m 0" to remove the space between letters (octets).
$@
00100001 @
00100010 @
00100011 @
00100100 @
00100101 @
00100110 @
00100111 @
00101000 @
00101001 @
00101010 @
00101011 @
00101100 @
00101101 @
00101110 @
00101111 @
00110000 @
00110001 @
00110010 @
00110011 @
00110100 @
00110101 @
00110110 @
00110111 @
00111000 @
00111001 @
00111010 @
00111011 @
00111100 @
00111101 @
00111110 @
00111111 @
01000000 @
01000001 @
01000010 @
01000011 @
01000100 @
01000101 @
01000110 @
01000111 @
01001000 @
01001001 @
01001010 @
01001011 @
01001100 @
01001101 @
01001110 @
01001111 @
01010000 @
01010001 @
01010010 @
01010011 @
01010100 @
01010101 @
01010110 @
01010111 @
01011000 @
01011001 @
01011010 @
01011011 @
01011100 @
01011101 @
01011110 @
01011111 @
01100000 @
01100001 @
01100010 @
01100011 @
01100100 @
01100101 @
01100110 @
01100111 @
01101000 @
01101001 @
01101010 @
01101011 @
01101100 @
01101101 @
01101110 @
01101111 @
01110000 @
01110001 @
01110010 @
01110011 @
01110100 @
01110101 @
01110110 @
01110111 @
01111000 @
01111001 @
01111010 @
01111011 @
01111100 @
01111101 @
01111110 @
@
@
@
@
@
@
@
127
01111111 @
128
10000000 @
129
10000001 @
130
10000010 @
131
10000011 @
132
10000100 @
133
10000101 @
134
10000110 @
135
10000111 @
136
10001000 @
137
10001001 @
138
10001010 @
139
10001011 @
140
10001100 @
141
10001101 @
142
10001110 @
143
10001111 @
144
10010000 @
145
10010001 @
146
10010010 @
147
10010011 @
148
10010100 @
149
10010101 @
150
10010110 @
151
10010111 @
152
10011000 @
153
10011001 @
154
10011010 @
155
10011011 @
156
10011100 @
157
10011101 @
158
10011110 @
159
10011111 @
160
10100000 @
161
10100001 @
162
10100010 @
163
10100011 @
164
10100100 @
165
10100101 @
166
10100110 @
167
10100111 @
168
10101000 @
169
10101001 @
170
10101010 @
171
10101011 @
172
10101100 @
173
10101101 @
174
10101110 @
175
10101111 @
176
10110000 @
177
10110001 @
178
10110010 @
179
10110011 @
180
10110100 @
181
10110101 @
182
10110110 @
183
10110111 @
184
10111000 @
185
10111001 @
186
10111010 @
187
10111011 @
188
10111100 @
189
10111101 @
190
10111110 @
191
10111111 @
192
11000000 @
193
11000001 @
194
11000010 @
195
11000011 @
196
11000100 @
197
11000101 @
198
11000110 @
199
11000111 @
200
11001000 @
201
11001001 @
202
11001010 @
203
11001011 @
204
11001100 @
205
11001101 @
206
11001110 @
207
11001111 @
208
11010000 @
209
11010001 @
210
11010010 @
211
11010011 @
212
11010100 @
213
11010101 @
214
11010110 @
215
11010111 @
216
11011000 @
217
11011001 @
218
11011010 @
219
11011011 @
220
11011100 @
221
11011101 @
222
11011110 @
223
11011111 @
224
11100000 @
225
11100001 @
226
11100010 @
227
11100011 @
228
11100100 @
229
11100101 @
230
11100110 @
231
11100111 @
232
11101000 @
233
11101001 @
234
11101010 @
235
11101011 @
236
11101100 @
237
11101101 @
238
11101110 @
239
11101111 @
240
11110000 @
241
11110001 @
242
11110010 @
243
11110011 @
244
11110100 @
245
11110101 @
246
11110110 @
247
11110111 @
248
11111000 @
249
11111001 @
250
11111010 @
251
11111011 @
252
11111100 @
253
11111101 @
254
11111110 @
255
11111111 @

1691
node_modules/figlet/fonts/Block.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

1134
node_modules/figlet/fonts/Blocks.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

1024
node_modules/figlet/fonts/Bloody.flf generated vendored Executable file

File diff suppressed because it is too large Load Diff

922
node_modules/figlet/fonts/BlurVision ASCII.flf generated vendored Normal file
View File

@@ -0,0 +1,922 @@
flf2a$ 9 9 23 0 3 0 128 0
Font Author: Aiden Neuding
FIGFont created with: http://patorjk.com/figfont-editor
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
░▒▓█▓▒░ @
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
░▒▓██▓▒░ @
░▒▓██▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
░▒▓██▓▒░ @
░▒▓██▓▒░ @
@
@@
@
@
@
@
@
@
@
@
@@
░▒▓████████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓████████▓▒░ @
@
@@
░▒▓█▓▒░ @
░▒▓████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓████████▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓███████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓███████▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓████████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓████████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓███████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓███████▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
░▒▓████████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
@
░▒▓██▓▒░ @
░▒▓██▓▒░ @
@
░▒▓██▓▒░ @
░▒▓██▓▒░ @
@
@
@@
@
░▒▓██▓▒░ @
░▒▓██▓▒░ @
@
░▒▓██▓▒░ @
░▒▓██▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓████▓▒░ @
@
@
░▒▓█▓▒░ @
@
@@
@
@
@
@
@
@
@
@
@@
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓████████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
@
@@
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
@
@@
░▒▓████████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓████████▓▒░ @
@
@@
░▒▓████████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒▒▓███▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓████████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓████████▓▒░ @
@
@@
░▒▓██████████████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░ @
░▒▓██▓▒░ @@
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓███████▓▒░ @
@
@@
░▒▓████████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒▒▓█▓▒░ @
░▒▓█▓▒▒▓█▓▒░ @
░▒▓█▓▓█▓▒░ @
░▒▓█▓▓█▓▒░ @
░▒▓██▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█████████████▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓████████▓▒░ @
░▒▓█▓▒░ @
░▒▓██▓▒░ @
░▒▓██▓▒░ @
░▒▓██▓▒░ @
░▒▓█▓▒░ @
░▒▓████████▓▒░ @
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓████████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
@
@@
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
@
@@
░▒▓████████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓████████▓▒░ @
@
@@
░▒▓████████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒▒▓███▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓████████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓████████▓▒░ @
@
@@
░▒▓██████████████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░ @
░▒▓██▓▒░ @@
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓███████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓███████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓███████▓▒░ @
@
@@
░▒▓████████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒▒▓█▓▒░ @
░▒▓█▓▒▒▓█▓▒░ @
░▒▓█▓▓█▓▒░ @
░▒▓█▓▓█▓▒░ @
░▒▓██▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█████████████▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
@
@@
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓█▓▒░░▒▓█▓▒░ @
░▒▓██████▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
░▒▓█▓▒░ @
@
@@
░▒▓████████▓▒░ @
░▒▓█▓▒░ @
░▒▓██▓▒░ @
░▒▓██▓▒░ @
░▒▓██▓▒░ @
░▒▓█▓▒░ @
░▒▓████████▓▒░ @
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@
@@

722
node_modules/figlet/fonts/Bolger.flf generated vendored Normal file
View File

@@ -0,0 +1,722 @@
flf2a$ 7 6 20 -1 7
fatty.flf by Mike Rosulek. 1/12/95
Based on Bravo TrueType Font.
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $#
$ $#
$ $#
$ $#
$ $#
$ $#
$ $##
d8b $#
!Y88!$#
Y8Y $#
8 $#
e $#
"8" $#
$##
8 8$#
Y P$#
$#
$#
$#
$#
$##
dP dP$#
____dP__dP_$#
dP dP $#
__dP__dP___$#
dP dP $#
dP dP $#
$##
,d88~/\$#
8888/ $#
`Y88b $#
`Y88b,$#
/8888$#
\/_88P'$#
$##
,8~\ /$#
"8_// $#
/ $#
/ $#
/,8~\$#
/ "8_/$#
$##
,d8P\ $#
888b | $#
`Y88X $#
/Y88b/ $#
| `Y88b $#
\_/Y88b$#
$##
d88b$#
Y88P$#
__/ $#
$#
$#
$#
$##
,8P~$#
88 $#
88 $#
88 $#
88 $#
88 $#
"8b_$##
~Y8,$#
88$#
88$#
88$#
88$#
88$#
_d8"$##
, 8 ,$#
"8" $#
e" "e$#
$#
$#
$#
$##
$#
888 $#
__888__$#
888 $#
888 $#
$#
$##
$#
$#
$#
$#
d88b$#
Y88P$#
__/ $##
$#
$#
____$#
$#
$#
$#
$##
$#
$#
$#
$#
d88b$#
Y88P$#
$##
/$#
/ $#
/ $#
/ $#
/ $#
/ $#
/ $##
,88~~\ $#
d888 \ $#
88888 |$#
88888 |$#
Y888 / $#
`88__/ $#
$##
,d$#
,d888$#
888$#
888$#
888$#
888$#
$##
/~~88b$#
| 888$#
` d88P$#
d88P $#
d88P $#
d88P___$#
$##
_-~88e $#
888b$#
__888"$#
888e$#
888P$#
~-_88" $#
$##
d8 $#
d88 $#
d888 $#
/ 888 $#
/__888__$#
888 $#
$##
/~~~~~~$#
/ $#
`-~~88e $#
/ 888b$#
| 888P$#
\__88" $#
$##
e88~-_ $#
d888 $#
8888~~\ $#
8888 |$#
Y888 |$#
"88__/ $#
$##
[~~~~d88P$#
d88P $#
d88P $#
d88P $#
d88P $#
d88P $#
$##
d8~~\ $#
C88b |$#
Y88b/ $#
/Y88b $#
| Y88D$#
\__8P $#
$##
/~~88e $#
| 888b$#
| 8888$#
\__8888$#
888P$#
~-_88" $#
$##
$#
d88b$#
Y88P$#
$#
d88b$#
Y88P$#
$##
$#
d88b$#
Y88P$#
$#
d88b$#
Y88P$#
__/ $##
_-$#
_-~ $#
< $#
~-_ $#
~-$#
$#
$##
$#
______$#
$#
______$#
$#
$#
$##
-_ $#
~-_ $#
>$#
_-~ $#
-~ $#
$#
$##
_-~88e$#
/ 88"$#
` 8P $#
` $#
d88b $#
Y88P $#
$##
__---__ $#
/ \ $#
| dP~dP |$#
| dP_d8b_/ $#
\______ $#
$#
$##
e $#
d8b $#
/Y88b $#
/ Y88b $#
/____Y88b $#
/ Y88b$#
$##
888~~\ $#
888 |$#
888 _/ $#
888 \ $#
888 |$#
888__/ $#
$##
e88~-_ $#
d888 \$#
8888 $#
8888 $#
Y888 /$#
"88_-~ $#
$##
888~-_ $#
888 \ $#
888 |$#
888 |$#
888 / $#
888_-~ $#
$##
888~~ $#
888___$#
888 $#
888 $#
888 $#
888___$#
$##
888~~ $#
888___$#
888 $#
888 $#
888 $#
888 $#
$##
e88~~\ $#
d888 $#
8888 __ $#
8888 |$#
Y888 |$#
"88__/ $#
$##
888 |$#
888___|$#
888 |$#
888 |$#
888 |$#
888 |$#
$##
888$#
888$#
888$#
888$#
888$#
888$#
$##
888$#
888$#
888$#
888$#
| 88P$#
\__8" $#
$##
888 / $#
888 / $#
888/\ $#
888 \ $#
888 \ $#
888 \$#
$##
888 $#
888 $#
888 $#
888 $#
888 $#
888____$#
$##
e e $#
d8b d8b $#
d888bdY88b $#
/ Y88Y Y888b $#
/ YY Y888b $#
/ Y888b$#
$##
888b |$#
|Y88b |$#
| Y88b |$#
| Y88b |$#
| Y88b|$#
| Y888$#
$##
,88~-_ $#
d888 \ $#
88888 |$#
88888 |$#
Y888 / $#
`88_-~ $#
$##
888~-_ $#
888 \ $#
888 |$#
888 / $#
888_-~ $#
888 $#
$##
,88~-_ $#
d888 \ $#
88888 |$#
88888 |$#
Y888 \ / $#
`88__X $#
\ $##
888~-_ $#
888 \ $#
888 |$#
888 / $#
888_-~ $#
888 ~-_ $#
$##
,d88~~\$#
8888 $#
`Y88b $#
`Y88b,$#
8888$#
\__88P'$#
$##
~~~888~~~$#
888 $#
888 $#
888 $#
888 $#
888 $#
$##
888 |$#
888 |$#
888 |$#
888 |$#
Y88 |$#
"8__/ $#
$##
Y88b /$#
Y88b / $#
Y88b / $#
Y888/ $#
Y8/ $#
Y $#
$##
Y88b /$#
Y88b / $#
Y88b e / $#
Y88bd8b/ $#
Y88Y8Y $#
Y Y $#
$##
Y88b /$#
Y88b / $#
Y88b/ $#
/Y88b $#
/ Y88b $#
/ Y88b$#
$##
Y88b /$#
Y88b / $#
Y88b/ $#
Y8Y $#
Y $#
/ $#
$##
~~~~d88P$#
d88P $#
d88P $#
d88P $#
d88P $#
d88P____ $#
$##
88~~$#
88 $#
88 $#
88 $#
88 $#
88 $#
88__$##
\ $#
\ $#
\ $#
\ $#
\ $#
\$#
$##
~~88$#
88$#
88$#
88$#
88$#
88$#
__88$##
/\ $#
/ \$#
$#
$#
$#
$#
$##
$#
$#
$#
$#
$#
$#
----$##
Y8b $#
Y8b$#
$#
$#
$#
$#
$##
$#
/~~~8e $#
88b$#
e88~-888$#
C888 888$#
"88_-888$#
$##
888 $#
888-~88e $#
888 888b$#
888 8888$#
888 888P$#
888-_88" $#
$##
$#
e88~~\$#
d888 $#
8888 $#
Y888 $#
"88__/$#
$##
888$#
e88~\888$#
d888 888$#
8888 888$#
Y888 888$#
"88_/888$#
$##
$#
e88~~8e $#
d888 88b$#
8888__888$#
Y888 ,$#
"88___/ $#
$##
88~\$#
_888__$#
888 $#
888 $#
888 $#
888 $#
$##
/$#
e88~88e$#
888 888$#
"88_88"$#
/ $#
Cb $#
Y8""8D$##
888 $#
888-~88e$#
888 888$#
888 888$#
888 888$#
888 888$#
$##
,e,$#
" $#
888$#
888$#
888$#
888$#
$##
,e,$#
" $#
888$#
888$#
888$#
88P$#
\_8" $##
888 _ $#
888 e~ ~ $#
888d8b $#
888Y88b $#
888 Y88b $#
888 Y88b$#
$##
888$#
888$#
888$#
888$#
888$#
888$#
$##
$#
888-~88e-~88e$#
888 888 888$#
888 888 888$#
888 888 888$#
888 888 888$#
$##
$#
888-~88e$#
888 888$#
888 888$#
888 888$#
888 888$#
$##
$#
e88~-_ $#
d888 i$#
8888 |$#
Y888 '$#
"88_-~ $#
$##
$#
888-~88e $#
888 888b$#
888 8888$#
888 888P$#
888-_88" $#
888 $##
$#
e88~-888$#
d888 888$#
8888 888$#
Y888 888$#
"88_-888$#
888$##
$#
888-~\$#
888 $#
888 $#
888 $#
888 $#
$##
$#
d88~\$#
C888 $#
Y88b $#
888D$#
\_88P $#
$##
d8 $#
_d88__$#
888 $#
888 $#
888 $#
"88_/$#
$##
$#
888 888$#
888 888$#
888 888$#
888 888$#
"88_-888$#
$##
$#
Y88b /$#
Y88b / $#
Y88b/ $#
Y8/ $#
Y $#
$##
$#
Y88b e /$#
Y88b d8b / $#
Y888/Y88b/ $#
Y8/ Y8/ $#
Y Y $#
$##
$#
Y88b / $#
Y88b/ $#
Y88b $#
/Y88b $#
/ Y88b$#
$##
$#
Y88b /$#
Y888/ $#
Y8/ $#
Y $#
/ $#
_/ $##
$#
~~~d88P$#
d88P $#
d88P $#
d88P $#
d88P___ $#
$##
e8~~$#
88 $#
8P $#
<K $#
8b $#
88 $#
"8__$##
|$#
|$#
|$#
|$#
|$#
|$#
|$##
~~8e $#
88 $#
Y8 $#
D>$#
d8 $#
88 $#
__8" $##
$#
$#
$#
/~\_/$#
$#
$#
$##
e e e $#
"8" d8b "8"$#
/Y88b $#
/ Y88b $#
/____Y88b $#
/ Y88b$#
$##
e ,88~-_ e $#
"8"d888 \"8"$#
88888 | $#
88888 | $#
Y888 / $#
`88_-~ $#
$##
e 888 | e $#
"8"888 |"8"$#
888 | $#
888 | $#
Y88 | $#
"8__/ $#
$##
e e $#
"8"/~~~8e"8"$#
88b $#
e88~-888 $#
C888 888 $#
"88_-888 $#
$##
e e $#
"8"e88~-_"8"$#
d888 i $#
8888 | $#
Y888 ' $#
"88_-~ $#
$##
e e $#
"8"888 888"8"$#
888 888 $#
888 888 $#
888 888 $#
"88_-888 $#
$##
#
#
#
#
#
#
##

527
node_modules/figlet/fonts/Braced.flf generated vendored Normal file
View File

@@ -0,0 +1,527 @@
flf2a$ 5 4 11 0 16 0 8256 0
Author : LG Beard
Date : 2004/4/9 13:04:21
Version: 1.0
-------------------------------------------------
-------------------------------------------------
This font has been created using JavE's FIGlet font export assistant.
Have a look at: http://www.jave.de
Permission is hereby given to modify this font, as long as the
modifier's name is placed on a comment line.
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $#
$ $#
$ $#
$ $#
$ $##
.-. #
| | #
{ } #
`-' #
##
.-..-. #
{ }{ } #
`-'`-' #
#
##
_ .-..-.#
{_/ // /}#
{/ // /_}#
`-'`-' #
##
.--//. #
{ {//-` #
.-//} } #
`//--' #
##
_ .-. #
{_}/ / _ #
\ }{_}#
`-' #
##
&#
#
#
#
##
.-. #
{ } #
`-' #
#
##
.'} #
/.' #
{ `. #
`-.} #
##
{`. #
`.\ #
.' } #
{.-' #
##
*#
#
#
#
##
_ #
_{ }_ #
{_ _} #
{_} #
##
#
#
_ #
/_} #
##
#
___ #
{___} #
#
##
#
#
_ #
{_} #
##
.-. #
/ / #
/ / #
`-' #
##
.---. #
. .-. . #
' `-' ' #
`---' #
##
.-. #
{ | #
| } #
`-' #
##
.---. #
`-`} } #
{ {.-. #
`---' #
##
.---. #
`-`} } #
.-.} } #
`----` #
##
.-. .-. #
\ \| | #
`-\ } #
`-' #
##
.---. #
{ {`-' #
.-.} } #
`---' #
##
.-. #
/ /. #
{ {} } #
`--' #
##
.---. #
`-`} } #
/ / #
`-' #
##
.--. #
{ {} } #
{ {} } #
`--' #
##
.--. #
{ {} } #
`/ / #
`-' #
##
_ #
{_} #
_ #
{_} #
##
_ #
{_} #
_ #
/_} #
##
.-. #
/ { #
\ { #
`-` #
##
___ #
{___} #
___ #
{___} #
##
.-. #
} \ #
} / #
'-' #
##
.---. #
`-`} } #
{ } #
`-' #
##
.----. #
/ .--. \#
|/ {} \|#
\`-'`-'/#
`----' ##
.--. #
/ {} \ #
/ /\ \ #
`-' `-' #
##
.----. #
| {_} } #
| {_} } #
`----' #
##
.----. #
| }`-' #
| },-. #
`----' #
##
.----. #
} {-. \ #
} '-} / #
`----' #
##
.----. #
} |__} #
} '__} #
`----' #
##
.----. #
} |__} #
} '_} #
`--' #
##
.----. #
| |--' #
| }-`} #
`----' #
##
.-. .-. #
{ {_} | #
| { } } #
`-' `-' #
##
.-. #
{ | #
| } #
`-' #
##
.-. #
| | #
{`-' } #
`---' #
##
.-..-. #
| ' / #
| . \ #
`-'`-` #
##
.-. #
} | #
} '--. #
`----' #
##
.-. .-. #
} \/ { #
| { } | #
`-' `-' #
##
.-. .-. #
| \{ | #
| }\ { #
`-' `-' #
##
.---. #
/ {-. \ #
\ '-} / #
`---' #
##
.-.-. #
| } }} #
| |-' #
`-' #
##
.---. #
/ {-. \ #
\ '-} { #
`--`-' #
##
.---. #
} }}_} #
| } \ #
`-'-' #
##
.----. #
{ {__-` #
.-._} } #
`----' #
##
.-----. #
`-' '-' #
} { #
`-' #
##
.-. .-. #
| } { | #
\ `-' / #
`---' #
##
.-. .-.#
\ \_/ / #
\ / #
`-' #
##
.-. .-. #
| { } | #
{ /\ } #
`-' `-' #
##
.-..-. #
\ {} / #
/ {} \ #
`-'`-' #
##
.-. .-. #
\ \/ / #
`-\ } #
`-' #
##
.---. #
`-`} } #
{ /.-. #
`---' #
##
.---, #
{ .-' #
{ `-. #
`---` #
##
.-. #
\ \ #
\ \ #
`-' #
##
.---. #
`-. } #
.-' } #
`---` #
##
.--. #
/ {} \ #
`-' `-' #
#
##
#
$ $ #
$ $ #
_______ #
{_______}##
.-. #
\ \ #
`-' #
$$ #
##
.--. #
/ {} \ #
/ /\ \ #
`-' `-' #
##
.----. #
| {_} } #
| {_} } #
`----' #
##
.----. #
| }`-' #
| },-. #
`----' #
##
.----. #
} {-. \ #
} '-} / #
`----' #
##
.----. #
} |__} #
} '__} #
`----' #
##
.----. #
} |__} #
} '_} #
`--' #
##
.----. #
| |--' #
| }-`} #
`----' #
##
.-. .-. #
{ {_} | #
| { } } #
`-' `-' #
##
.-. #
{ | #
| } #
`-' #
##
.-. #
| | #
{`-' } #
`---' #
##
.-..-. #
| ' / #
| . \ #
`-'`-` #
##
.-. #
} | #
} '--. #
`----' #
##
.-. .-. #
} \/ { #
| { } | #
`-' `-' #
##
.-. .-. #
| \{ | #
| }\ { #
`-' `-' #
##
.---. #
/ {-. \ #
\ '-} / #
`---' #
##
.-.-. #
| } }} #
| |-' #
`-' #
##
.---. #
/ {-. \ #
\ '-} { #
`--`-' #
##
.---. #
} }}_} #
| } \ #
`-'-' #
##
.----. #
{ {__-` #
.-._} } #
`----' #
##
.-----. #
`-' '-' #
} { #
`-' #
##
.-. .-. #
| } { | #
\ `-' / #
`---' #
##
.-. .-.#
\ \_/ / #
\ / #
`-' #
##
.-. .-. #
| { } | #
{ /\ } #
`-' `-' #
##
.-..-. #
\ {} / #
/ {} \ #
`-'`-' #
##
.-. .-. #
\ \/ / #
`-\ } #
`-' #
##
.---. #
`-`} } #
{ /.-. #
`---' #
##
.'} #
.'.' #
{ `. #
`-._} #
##
.-. #
{ } #
{ } #
`-' #
##
{`. #
`.`. #
.' } #
{_.-' #
##
#
{`-._ #
`-._} #
#
##
{}--{} #
/ {} \ #
/ /\ \ #
`-' `-' #
##
{_}-{_} #
/ {-. \ #
\ '-} / #
`---' #
##
{_} {_} #
| } { | #
\ `-' / #
`---' #
##
{}--{} #
/ {} \ #
/ /\ \ #
`-' `-' #
##
{_}-{_} #
/ {-. \ #
\ '-} / #
`---' #
##
{_} {_} #
| } { | #
\ `-' / #
`---' #
##
.----. #
| {_} } #
| {_} } #
| |--' #
`-' ##

616
node_modules/figlet/fonts/Bright.flf generated vendored Normal file
View File

@@ -0,0 +1,616 @@
flf2a$ 6 5 20 -1 3
Bright Font by Dennis Monk 7/94
Identical to contrast.flf, but with different characters, making it
brighter.
........@
........@
........@
........@
........@
........@@
...##...@
...##...@
...##...@
........@
...##...@
........@@
.##..##.@
.##..##.@
..#..#..@
........@
........@
........@@
..#..#..@
.######.@
..#..#..@
.######.@
..#..#..@
........@@
..#####.@
.##.#...@
..####..@
...#.##.@
.#####..@
........@@
.##..##.@
.#..##..@
...##...@
..##..#.@
.##..##.@
........@@
..#####..@
.##...##.@
..##.##..@
.##.##.#.@
..#####..@
.........@@
...##...@
...##...@
....#...@
........@
........@
........@@
....###.@
..##....@
.#......@
..##....@
....###.@
........@@
.###....@
....##..@
......#.@
....##..@
.###....@
........@@
.#..#..#.@
..#.#.#..@
.#######.@
..#.#.#..@
.#..#..#.@
.........@@
...##...@
...##...@
.######.@
...##...@
...##...@
........@@
........@
........@
...##...@
...##...@
....#...@
........@@
........@
........@
.######.@
........@
........@
........@@
........@
........@
........@
...##...@
...##...@
........@@
.....##.@
....##..@
...##...@
..##....@
.##.....@
........@@
..####..@
.##..##.@
.######.@
.##..##.@
..####..@
........@@
...##...@
..###...@
...##...@
...##...@
.######.@
........@@
..####..@
.....##.@
..####..@
.##.....@
.######.@
........@@
.######.@
....##..@
...###..@
.....##.@
.#####..@
........@@
.....##.@
.##..##.@
.######.@
.....##.@
.....##.@
........@@
.######.@
.##.....@
..####..@
.....##.@
.#####..@
........@@
...##...@
..##....@
.#####..@
.##..##.@
..####..@
........@@
.######.@
....##..@
...##...@
..##....@
.##.....@
........@@
..####..@
.##..##.@
..####..@
.##..##.@
..####..@
........@@
..####..@
.##..##.@
..####..@
...##...@
..##....@
........@@
........@
...##...@
........@
...##...@
........@
........@@
........@
...##...@
........@
...##...@
....#...@
........@@
.....##.@
...##...@
.##.....@
...##...@
.....##.@
........@@
........@
.######.@
........@
.######.@
........@
........@@
.##.....@
...##...@
.....##.@
...##...@
.##.....@
........@@
..####..@
.##..##.@
....##..@
...##...@
...##...@
........@@
..####..@
.#.##.#.@
.#.##.#.@
.#..#.#.@
..####..@
........@@
..####..@
.##..##.@
.######.@
.##..##.@
.##..##.@
........@@
.#####..@
.##..##.@
.#####..@
.##..##.@
.#####..@
........@@
..####..@
.##..##.@
.##.....@
.##..##.@
..####..@
........@@
.#####..@
.##..##.@
.##..##.@
.##..##.@
.#####..@
........@@
.######.@
.##.....@
.####...@
.##.....@
.######.@
........@@
.######.@
.##.....@
.####...@
.##.....@
.##.....@
........@@
..####..@
.##.....@
.##.###.@
.##..##.@
..####..@
........@@
.##..##.@
.##..##.@
.######.@
.##..##.@
.##..##.@
........@@
.######.@
...##...@
...##...@
...##...@
.######.@
........@@
.######.@
.....##.@
.....##.@
.##..##.@
..####..@
........@@
.##..##.@
.##.##..@
.####...@
.##.##..@
.##..##.@
........@@
.##.....@
.##.....@
.##.....@
.##.....@
.######.@
........@@
.##...##.@
.###.###.@
.##.#.##.@
.##...##.@
.##...##.@
.........@@
.##..##.@
.###.##.@
.##.###.@
.##..##.@
.##..##.@
........@@
..####..@
.##..##.@
.##..##.@
.##..##.@
..####..@
........@@
.#####..@
.##..##.@
.#####..@
.##.....@
.##.....@
........@@
..####..@
.##..##.@
.##.###.@
.##..##.@
..#####.@
........@@
.#####..@
.##..##.@
.#####..@
.##..##.@
.##..##.@
........@@
..####..@
.##.....@
..####..@
.....##.@
..####..@
........@@
.######.@
...##...@
...##...@
...##...@
...##...@
........@@
.##..##.@
.##..##.@
.##..##.@
.##..##.@
..####..@
........@@
.##..##.@
.##..##.@
.##..##.@
..####..@
...##...@
........@@
.##...##.@
.##...##.@
.##.#.##.@
.#######.@
..##.##..@
.........@@
.##..##.@
..####..@
...##...@
..####..@
.##..##.@
........@@
.##..##.@
..####..@
...##...@
...##...@
...##...@
........@@
.######.@
....##..@
...##...@
..##....@
.######.@
........@@
.######.@
.##.....@
.##.....@
.##.....@
.######.@
........@@
.##.....@
..##....@
...##...@
....##..@
.....##.@
........@@
.######.@
.....##.@
.....##.@
.....##.@
.######.@
........@@
...##...@
..####..@
.##..##.@
........@
........@
........@@
........@
........@
........@
........@
.######.@
........@@
...##...@
...##...@
...#....@
........@
........@
........@@
..####..@
.##..##.@
.######.@
.##..##.@
.##..##.@
........@@
.#####..@
.##..##.@
.#####..@
.##..##.@
.#####..@
........@@
..####..@
.##..##.@
.##.....@
.##..##.@
..####..@
........@@
.#####..@
.##..##.@
.##..##.@
.##..##.@
.#####..@
........@@
.######.@
.##.....@
.####...@
.##.....@
.######.@
........@@
.######.@
.##.....@
.####...@
.##.....@
.##.....@
........@@
..####..@
.##.....@
.##.###.@
.##..##.@
..####..@
........@@
.##..##.@
.##..##.@
.######.@
.##..##.@
.##..##.@
........@@
.######.@
...##...@
...##...@
...##...@
.######.@
........@@
.######.@
.....##.@
.....##.@
.##..##.@
..####..@
........@@
.##..##.@
.##.##..@
.####...@
.##.##..@
.##..##.@
........@@
.##.....@
.##.....@
.##.....@
.##.....@
.######.@
........@@
.##...##.@
.###.###.@
.##.#.##.@
.##...##.@
.##...##.@
.........@@
.##..##.@
.###.##.@
.##.###.@
.##..##.@
.##..##.@
........@@
..####..@
.##..##.@
.##..##.@
.##..##.@
..####..@
........@@
.#####..@
.##..##.@
.#####..@
.##.....@
.##.....@
........@@
..####..@
.##..##.@
.##.###.@
.##..##.@
..#####.@
........@@
.#####..@
.##..##.@
.#####..@
.##..##.@
.##..##.@
........@@
..####..@
.##.....@
..####..@
.....##.@
..####..@
........@@
.######.@
...##...@
...##...@
...##...@
...##...@
........@@
.##..##.@
.##..##.@
.##..##.@
.##..##.@
..####..@
........@@
.##..##.@
.##..##.@
.##..##.@
..####..@
...##...@
........@@
.##...##.@
.##...##.@
.##.#.##.@
.#######.@
..##.##..@
.........@@
.##..##.@
..####..@
...##...@
..####..@
.##..##.@
........@@
.##..##.@
..####..@
...##...@
...##...@
...##...@
........@@
.######.@
....##..@
...##...@
..##....@
.######.@
........@@
...####.@
...##...@
.###....@
...##...@
...####.@
........@@
...##...@
...##...@
...##...@
...##...@
...##...@
...##...@@
.####...@
...##...@
....###.@
...##...@
.####...@
........@@
..###.#.@
.#.###..@
........@
........@
........@
........@@
.##..##.@
........@
..#####.@
.##..##.@
..#####.@
........@@
.##..##.@
........@
..####..@
.##..##.@
..####..@
........@@
.##..##.@
........@
.##..##.@
.##..##.@
..####..@
........@@
.##..##.@
........@
..#####.@
.##..##.@
..#####.@
........@@
.##..##.@
........@
..####..@
.##..##.@
..####..@
........@@
.##..##.@
........@
.##..##.@
.##..##.@
..####..@
........@@
..#####..@
.##...##.@
.##.###..@
.##...##.@
.##.###..@
.##......@@

324
node_modules/figlet/fonts/Broadway KB.flf generated vendored Normal file
View File

@@ -0,0 +1,324 @@
flf2a$ 3 3 10 -1 16 0 0 0
Author :myflix
Date : 2006/4/6 7:38:43
Version: 1.0
-------------------------------------------------
-------------------------------------------------
This font has been created using JavE's FIGlet font export assistant.
Have a look at: http://www.jave.de
Permission is hereby given to modify this font, as long as the
modifier's name is placed on a comment line.
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $#
$ $#
$ $##
__ #
|_/ #
(_) ##
____ #
|_|__| #
##
____ #
|_|__| #
|_|__| ##
___ #
(|_|` #
_|_|) ##
_ _ #
()_/ /_ #
/_/_()##
_ #
_|_) #
(|__7 ##
__ #
|_|| #
##
__ #
| | #
\_\ ##
__ #
| | #
/_/ ##
*#
#
##
+#
#
##
#
__ #
/_/) ##
___ #
|___| #
##
#
__ #
(_() ##
__ #
/ / #
/_/ ##
___ #
/ / \ #
\_\_/ ##
_ #
/ | #
|_| ##
___ #
) ) #
/_/_ ##
___ #
) ) #
_)_) ##
_ #
/_| | #
|_| ##
___ #
| | #
_)_) ##
__ #
/ / #
(_)_) ##
____ #
/ / #
/_/ ##
___ #
( (_) #
(_(_) ##
___ #
( ( ) #
/_/ ##
__ #
(_() #
(_() ##
__ #
(_() #
/_/) ##
__ #
/ / #
\_\ ##
___ #
|___| #
|___| ##
__ #
\ \ #
/_/ ##
___ #
'_)_) #
(_) ##
@#
#
##
__ #
/ /\ #
/_/--\ ##
___ #
| |_) #
|_|_) ##
__ #
/ /` #
\_\_, ##
___ #
| | \ #
|_|_/ ##
____ #
| |_ #
|_|__ ##
____ #
| |_ #
|_| ##
__ #
/ /`_ #
\_\_/ ##
_ #
| |_| #
|_| | ##
_ #
| | #
|_| ##
_ #
| | #
\_|_| ##
_ #
| |_/ #
|_| \ ##
_ #
| | #
|_|__ ##
_ #
| |\/| #
|_| | ##
_ #
| |\ | #
|_| \| ##
___ #
/ / \ #
\_\_/ ##
___ #
| |_) #
|_| ##
___ #
/ / \ #
\_\_\\ ##
___ #
| |_) #
|_| \ ##
__ #
( (` #
_)_) ##
_____ #
| | #
|_| ##
_ #
| | | #
\_\_/ ##
_ #
\ \ / #
\_\/ ##
_ #
\ \ /#
\_\/\/ ##
_ #
\ \_/ #
/_/ \ ##
_ #
\ \_/ #
|_| ##
____ #
/ / #
/_/_ ##
___ #
| | #
|_|_ ##
__ #
\ \ #
\_\ ##
___ #
| | #
_|_| ##
___ #
/_/ \ #
##
#
___ #
|___| ##
___ #
\_\\ #
##
__ #
/ /\ #
/_/--\ ##
___ #
| |_) #
|_|_) ##
__ #
/ /` #
\_\_, ##
___ #
| | \ #
|_|_/ ##
____ #
| |_ #
|_|__ ##
____ #
| |_ #
|_| ##
__ #
/ /`_ #
\_\_/ ##
_ #
| |_| #
|_| | ##
_ #
| | #
|_| ##
_ #
| | #
\_|_| ##
_ #
| |_/ #
|_| \ ##
_ #
| | #
|_|__ ##
_ #
| |\/| #
|_| | ##
_ #
| |\ | #
|_| \| ##
___ #
/ / \ #
\_\_/ ##
___ #
| |_) #
|_| ##
___ #
/ / \ #
\_\_\\ ##
___ #
| |_) #
|_| \ ##
__ #
( (` #
_)_) ##
_____ #
| | #
|_| ##
_ #
| | | #
\_\_/ ##
_ #
\ \ / #
\_\/ ##
_ #
\ \ /#
\_\/\/ ##
_ #
\ \_/ #
/_/ \ ##
_ #
\ \_/ #
|_| ##
____ #
/ / #
/_/_ ##
__ #
< < #
\_\ ##
__ #
| | #
|_| ##
__ #
> > #
/_/ ##
~#
#
##
__ #
/ /\ #
/_/--\ ##
___ #
/ / \ #
\_\_/ ##
_ #
| | | #
\_\_/ ##
__ #
/ /\ #
/_/--\ ##
___ #
/ / \ #
\_\_/ ##
_ #
| | | #
\_\_/ ##
ß#
#
##

1152
node_modules/figlet/fonts/Broadway.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

1630
node_modules/figlet/fonts/Bubble.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

434
node_modules/figlet/fonts/Bulbhead.flf generated vendored Normal file
View File

@@ -0,0 +1,434 @@
flf2a$ 4 4 99 0 20
Bulbhead by Jef Poskanzer, 23jun94
Figlet release 2.0 -- August 5, 1993
____ __ __ __ ____ _ _ ____ __ ____
( _ \( )( )( ) ( _ \( )_( )( ___) /__\ ( _ \
) _ < )(__)( )(__ ) _ < ) _ ( )___) /(__)\ )(_) )
(____/(______)(____)(____/(_) (_)(____)(__)(__)(____/
Update February 12, 2002 by Markus Gebhard markus@jave.de
Added german umlauts
Explanation of first line:
flf2 - "magic number" for file identification
a - should always be `a', for now
$ - the "hardblank" -- prints as a blank, but can't be smushed
4 - height of a character
4 - height of a character, not including descenders
99 - max line length (excluding comment lines) + a fudge factor
0 - default smushmode for this font (like "-m 0" on command line)
13 - number of comment lines
$$@
$$@
$$@
$$@@
/\@
)(@
\/@
()@@
||@
@
@
@@
| | @
-|-|-@
-|-|-@
| | @@
_|_ @
/ |_)@
\_| \@
(_|_/@@
_ _ @
(_)/ ) @
/ /_ @
(_/(_)@@
_ @
( ) @
/_\/@
(__/\@@
/@
@
@
@@
_ @
/ )@
( ( @
\_)@@
_ @
( \ @
) )@
(_/ @@
@
\|/@
/|\@
@@
_ @
_| |_ @
(_ _)@
|_| @@
@
@
()@
/ @@
@
___ @
(___)@
@@
@
@
@
()@@
_ @
/ )@
/ / @
(_/ @@
___ @
/ _ \ @
( (_) )@
\___/ @@
__ @
/ )@
)( @
(__)@@
___ @
(__ \ @
/ _/ @
(____)@@
___ @
(__ )@
(_ \@
(___/@@
__ @
/. | @
(_ _)@
(_) @@
___ @
| __)@
|__ \@
(___/@@
_ @
/ ) @
/ _ \@
\___/@@
___ @
(__ )@
/ / @
(_/ @@
___ @
( _ )@
/ _ \@
\___/@@
___ @
/ _ \@
\_ /@
(_/ @@
@
()@
@
()@@
()@
@
()@
/ @@
__@
/ /@
< < @
\_\@@
___ @
(___)@
___ @
(___)@@
__ @
\ \ @
> >@
/_/ @@
___ @
(__ )@
(_/ @
(_) @@
__ @
/ \@
| ()/@
\__ @@
__ @
/__\ @
/(__)\ @
(__)(__)@@
____ @
( _ \@
) _ <@
(____/@@
___ @
/ __)@
( (__ @
\___)@@
____ @
( _ \ @
)(_) )@
(____/ @@
____ @
( ___)@
)__) @
(____)@@
____ @
( ___)@
)__) @
(__) @@
___ @
/ __)@
( (_-.@
\___/@@
_ _ @
( )_( )@
) _ ( @
(_) (_)@@
____ @
(_ _)@
_)(_ @
(____)@@
____ @
(_ _)@
.-_)( @
\____) @@
_ _ @
( )/ )@
) ( @
(_)\_)@@
__ @
( ) @
)(__ @
(____)@@
__ __ @
( \/ )@
) ( @
(_/\/\_)@@
_ _ @
( \( )@
) ( @
(_)\_)@@
_____ @
( _ )@
)(_)( @
(_____)@@
____ @
( _ \@
)___/@
(__) @@
_____ @
( _ )@
)(_)( @
(___/\\@@
____ @
( _ \@
) /@
(_)\_)@@
___ @
/ __)@
\__ \@
(___/@@
____ @
(_ _)@
)( @
(__) @@
__ __ @
( )( )@
)(__)( @
(______)@@
_ _ @
( \/ )@
\ / @
\/ @@
_ _ @
( \/\/ )@
) ( @
(__/\__)@@
_ _ @
( \/ )@
) ( @
(_/\_)@@
_ _ @
( \/ )@
\ / @
(__) @@
____ @
(_ )@
/ /_ @
(____)@@
__@
| @
| @
|__@@
_ @
( \ @
\ \ @
\_)@@
__ @
|@
|@
__|@@
/ \ @
(_^_)@
@
@@
@
@
___ @
(___)@@
\@
@
@
@@
__ @
/__\ @
/(__)\ @
(__)(__)@@
____ @
( _ \@
) _ <@
(____/@@
___ @
/ __)@
( (__ @
\___)@@
____ @
( _ \ @
)(_) )@
(____/ @@
____ @
( ___)@
)__) @
(____)@@
____ @
( ___)@
)__) @
(__) @@
___ @
/ __)@
( (_-.@
\___/@@
_ _ @
( )_( )@
) _ ( @
(_) (_)@@
____ @
(_ _)@
_)(_ @
(____)@@
____ @
(_ _)@
.-_)( @
\____) @@
_ _ @
( )/ )@
) ( @
(_)\_)@@
__ @
( ) @
)(__ @
(____)@@
__ __ @
( \/ )@
) ( @
(_/\/\_)@@
_ _ @
( \( )@
) ( @
(_)\_)@@
_____ @
( _ )@
)(_)( @
(_____)@@
____ @
( _ \@
)___/@
(__) @@
_____ @
( _ )@
)(_)( @
(___/\\@@
____ @
( _ \@
) /@
(_)\_)@@
___ @
/ __)@
\__ \@
(___/@@
____ @
(_ _)@
)( @
(__) @@
__ __ @
( )( )@
)(__)( @
(______)@@
_ _ @
( \/ )@
\ / @
\/ @@
_ _ @
( \/\/ )@
) ( @
(__/\__)@@
_ _ @
( \/ )@
) ( @
(_/\_)@@
_ _ @
( \/ )@
\ / @
(__) @@
____ @
(_ )@
/ /_ @
(____)@@
,-@
_| @
| @
`-@@
/\@
||@
||@
\/@@
-. @
|_@
| @
-' @@
@
/\/@
@
@@
(_)(_) @
/__\ @
/(__)\ @
(__)(__)@@
(_)_(_)@
( _ )@
)(_)( @
(_____)@@
(_)(_) @
( )( )@
)(__)( @
(______)@@
(_)(_) @
/__\ @
/(__)\ @
(__)(__)@@
(_)_(_)@
( _ )@
)(_)( @
(_____)@@
(_)(_) @
( )( )@
)(__)( @
(______)@@
___ @
/ _ )@
| _ \@
| __/@@
160 NO-BREAK SPACE
$@
$@
$@
$@@

2157
node_modules/figlet/fonts/Caligraphy.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

2113
node_modules/figlet/fonts/Caligraphy2.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

314
node_modules/figlet/fonts/Calvin S.flf generated vendored Normal file
View File

@@ -0,0 +1,314 @@
flf2a$ 3 3 7 0 7 0 64 0
Font Author: ?
More info on font here:
https://web.archive.org/web/20120819044459/http://www.roysac.com/thedrawfonts-tdf.asp
FIGFont created with: http://patorjk.com/figfont-editor
$$@
$$@
$$@@
┬@
│@
o@@
@
@
@@
─┼─┼─@
─┼─┼─@
@@
┌┼┐@
└┼┐@
└┼┘@@
O┬@
┌┘@
┴O@@
┬ @
┌┼─@
└┘ @@
@
@
@@
@
@
@@
@
@
@@
\│/@
─ ─@
/│\@@
@
@
@@
@
@
┘@@
@
───@
@@
@
@
o@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
┌─┐@
┌┘@
o @@
┌─┐@
│└┘@
└──@@
╔═╗@
╠═╣@
╩ ╩@@
╔╗ @
╠╩╗@
╚═╝@@
╔═╗@
║ @
╚═╝@@
╔╦╗@
║║@
═╩╝@@
╔═╗@
║╣ @
╚═╝@@
╔═╗@
╠╣ @
╚ @@
╔═╗@
║ ╦@
╚═╝@@
╦ ╦@
╠═╣@
╩ ╩@@
╦@
║@
╩@@
╦@
║@
╚╝@@
╦╔═@
╠╩╗@
╩ ╩@@
╦ @
║ @
╩═╝@@
╔╦╗@
║║║@
╩ ╩@@
╔╗╔@
║║║@
╝╚╝@@
╔═╗@
║ ║@
╚═╝@@
╔═╗@
╠═╝@
╩ @@
╔═╗ @
║═╬╗@
╚═╝╚@@
╦═╗@
╠╦╝@
╩╚═@@
╔═╗@
╚═╗@
╚═╝@@
╔╦╗@
║ @
╩ @@
╦ ╦@
║ ║@
╚═╝@@
╦ ╦@
╚╗╔╝@
╚╝ @@
╦ ╦@
║║║@
╚╩╝@@
═╗ ╦@
╔╩╦╝@
╩ ╚═@@
╦ ╦@
╚╦╝@
╩ @@
╔═╗@
╔═╝@
╚═╝@@
┌─@
│ @
└─@@
@
@
@@
─┐@
│@
─┘@@
/\@
@
@@
@
@
────@@
@
@
@@
┌─┐@
├─┤@
┴ ┴@@
┌┐ @
├┴┐@
└─┘@@
┌─┐@
│ @
└─┘@@
┌┬┐@
││@
─┴┘@@
┌─┐@
├┤ @
└─┘@@
┌─┐@
├┤ @
└ @@
┌─┐@
│ ┬@
└─┘@@
┬ ┬@
├─┤@
┴ ┴@@
┬@
│@
┴@@
┬@
│@
└┘@@
┬┌─@
├┴┐@
┴ ┴@@
┬ @
│ @
┴─┘@@
┌┬┐@
│││@
┴ ┴@@
┌┐┌@
│││@
┘└┘@@
┌─┐@
│ │@
└─┘@@
┌─┐@
├─┘@
┴ @@
┌─┐ @
│─┼┐@
└─┘└@@
┬─┐@
├┬┘@
┴└─@@
┌─┐@
└─┐@
└─┘@@
┌┬┐@
│ @
┴ @@
┬ ┬@
│ │@
└─┘@@
┬ ┬@
└┐┌┘@
└┘ @@
┬ ┬@
│││@
└┴┘@@
─┐ ┬@
┌┴┬┘@
┴ └─@@
┬ ┬@
└┬┘@
┴ @@
┌─┐@
┌─┘@
└─┘@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@
@
@
@@

627
node_modules/figlet/fonts/Cards.flf generated vendored Normal file
View File

@@ -0,0 +1,627 @@
flf2a 6 6 10 63 14 0 8127 0
Author : myflix
Date : 2003/11/11 20:05:19
Version: 1.0
-------------------------------------------------
-------------------------------------------------
This font has been created using JavE's FIGlet font export assistant.
Have a look at: http://www.jave.de
Permission is hereby given to modify this font, as long as the
modifier's name is placed on a comment line.
Font Edited: Aug. 5, 2007 by PAT or JK
Update: Changed hardblank character and added "<" and ">" cards

.-. 
((5)) 
'-.-. 
((1)) 
'-' 
.------.
|!.--. |
| (\/) |
| :\/: |
| '--'!|
`------'
.------.
|".--. |
| :(): |
| ()() |
| '--'"|
`------'
.------.
|#.--. |
| :/\: |
| :\/: |
| '--'#|
`------'
.------.
|$.--. |
| :/\: |
| (__) |
| '--'$|
`------'
.------.
|%.--. |
| (\/) |
| :\/: |
| '--'%|
`------'
.------.
|&.--. |
| :(): |
| ()() |
| '--'&|
`------'
.------.
|'.--. |
| :/\: |
| :\/: |
| '--''|
`------'
.------.
|(.--. |
| :/\: |
| (__) |
| '--'(|
`------'
.------.
|).--. |
| (\/) |
| :\/: |
| '--')|
`------'
.------.
|*.--. |
| :(): |
| ()() |
| '--'*|
`------'
.------.
|+.--. |
| :/\: |
| :\/: |
| '--'+|
`------'
.------.
|,.--. |
| :/\: |
| (__) |
| '--',|
`------'
.------.
|-.--. |
| (\/) |
| :\/: |
| '--'-|
`------'
.------.
|..--. |
| :(): |
| ()() |
| '--'.|
`------'
/





.------.
|0.--. |
| :/\: |
| :\/: |
| '--'0|
`------'
.------.
|1.--. |
| :/\: |
| (__) |
| '--'1|
`------'
.------.
|2.--. |
| (\/) |
| :\/: |
| '--'2|
`------'
.------.
|3.--. |
| :(): |
| ()() |
| '--'3|
`------'
.------.
|4.--. |
| :/\: |
| :\/: |
| '--'4|
`------'
.------.
|5.--. |
| :/\: |
| (__) |
| '--'5|
`------'
.------.
|6.--. |
| (\/) |
| :\/: |
| '--'6|
`------'
.------.
|7.--. |
| :(): |
| ()() |
| '--'7|
`------'
.------.
|8.--. |
| :/\: |
| :\/: |
| '--'8|
`------'
.------.
|9.--. |
| :/\: |
| (__) |
| '--'9|
`------'
.------.
|:.--. |
| :/\: |
| :\/: |
| '--':|
`------'
.------.
|;.--. |
| :/\: |
| (__) |
| '--';|
`------'
.------.
|<.--. |
| (\/) |
| :\/: |
| '--'<|
`------'
.------.
|=.--. |
| (\/) |
| :\/: |
| '--'=|
`------'
.------.
|>.--. |
| (\/) |
| :\/: |
| '--'>|
`------'
.------.
|?.--. |
| :(): |
| ()() |
| '--'?|
`------'
.------.
|@.--. |
| :/\: |
| :\/: |
| '--'@|
`------'
.------.
|A.--. |
| (\/) |
| :\/: |
| '--'A|
`------'
.------.
|B.--. |
| :(): |
| ()() |
| '--'B|
`------'
.------.
|C.--. |
| :/\: |
| :\/: |
| '--'C|
`------'
.------.
|D.--. |
| :/\: |
| (__) |
| '--'D|
`------'
.------.
|E.--. |
| (\/) |
| :\/: |
| '--'E|
`------'
.------.
|F.--. |
| :(): |
| ()() |
| '--'F|
`------'
.------.
|G.--. |
| :/\: |
| :\/: |
| '--'G|
`------'
.------.
|H.--. |
| :/\: |
| (__) |
| '--'H|
`------'
.------.
|I.--. |
| (\/) |
| :\/: |
| '--'I|
`------'
.------.
|J.--. |
| :(): |
| ()() |
| '--'J|
`------'
.------.
|K.--. |
| :/\: |
| :\/: |
| '--'K|
`------'
.------.
|L.--. |
| :/\: |
| (__) |
| '--'L|
`------'
.------.
|M.--. |
| (\/) |
| :\/: |
| '--'M|
`------'
.------.
|N.--. |
| :(): |
| ()() |
| '--'N|
`------'
.------.
|O.--. |
| :/\: |
| :\/: |
| '--'O|
`------'
.------.
|P.--. |
| :/\: |
| (__) |
| '--'P|
`------'
.------.
|Q.--. |
| (\/) |
| :\/: |
| '--'Q|
`------'
.------.
|R.--. |
| :(): |
| ()() |
| '--'R|
`------'
.------.
|S.--. |
| :/\: |
| :\/: |
| '--'S|
`------'
.------.
|T.--. |
| :/\: |
| (__) |
| '--'T|
`------'
.------.
|U.--. |
| (\/) |
| :\/: |
| '--'U|
`------'
.------.
|V.--. |
| :(): |
| ()() |
| '--'V|
`------'
.------.
|W.--. |
| :/\: |
| :\/: |
| '--'W|
`------'
.------.
|X.--. |
| :/\: |
| (__) |
| '--'X|
`------'
.------.
|Y.--. |
| (\/) |
| :\/: |
| '--'Y|
`------'
.------.
|Z.--. |
| :(): |
| ()() |
| '--'Z|
`------'
.------.
|[.--. |
| :/\: |
| (__) |
| '--'[|
`------'
\





.------.
|].--. |
| (\/) |
| :\/: |
| '--']|
`------'
.------.
|^.--. |
| :(): |
| ()() |
| '--'^|
`------'
.------.
|_.--. |
| :/\: |
| :\/: |
| '--'_|
`------'
.------.
|`.--. |
| :/\: |
| (__) |
| '--'`|
`------'
.------.
|A.--. |
| (\/) |
| :\/: |
| '--'A|
`------'
.------.
|B.--. |
| :(): |
| ()() |
| '--'B|
`------'
.------.
|C.--. |
| :/\: |
| :\/: |
| '--'C|
`------'
.------.
|D.--. |
| :/\: |
| (__) |
| '--'D|
`------'
.------.
|E.--. |
| (\/) |
| :\/: |
| '--'E|
`------'
.------.
|F.--. |
| :(): |
| ()() |
| '--'F|
`------'
.------.
|G.--. |
| :/\: |
| :\/: |
| '--'G|
`------'
.------.
|H.--. |
| :/\: |
| (__) |
| '--'H|
`------'
.------.
|I.--. |
| (\/) |
| :\/: |
| '--'I|
`------'
.------.
|J.--. |
| :(): |
| ()() |
| '--'J|
`------'
.------.
|K.--. |
| :/\: |
| :\/: |
| '--'K|
`------'
.------.
|L.--. |
| :/\: |
| (__) |
| '--'L|
`------'
.------.
|M.--. |
| (\/) |
| :\/: |
| '--'M|
`------'
.------.
|N.--. |
| :(): |
| ()() |
| '--'N|
`------'
.------.
|O.--. |
| :/\: |
| :\/: |
| '--'O|
`------'
.------.
|P.--. |
| :/\: |
| (__) |
| '--'P|
`------'
.------.
|Q.--. |
| (\/) |
| :\/: |
| '--'Q|
`------'
.------.
|R.--. |
| :(): |
| ()() |
| '--'R|
`------'
.------.
|S.--. |
| :/\: |
| :\/: |
| '--'S|
`------'
.------.
|T.--. |
| :/\: |
| (__) |
| '--'T|
`------'
.------.
|U.--. |
| (\/) |
| :\/: |
| '--'U|
`------'
.------.
|V.--. |
| :(): |
| ()() |
| '--'V|
`------'
.------.
|W.--. |
| :/\: |
| :\/: |
| '--'W|
`------'
.------.
|X.--. |
| :/\: |
| (__) |
| '--'X|
`------'
.------.
|Y.--. |
| (\/) |
| :\/: |
| '--'Y|
`------'
.------.
|Z.--. |
| :(): |
| ()() |
| '--'Z|
`------'
.------.
|{.--. |
| (\/) |
| :\/: |
| '--'{|
`------'
|





.------.
|}.--. |
| :(): |
| ()() |
| '--'}|
`------'
.------.
|~.--. |
| :/\: |
| :\/: |
| '--'~|
`------'
.------.
|A.--. |
| (\/) |
| :\/: |
| '--'A|
`------'
.------.
|O.--. |
| :/\: |
| :\/: |
| '--'O|
`------'
.------.
|U.--. |
| (\/) |
| :\/: |
| '--'U|
`------'
.------.
|A.--. |
| (\/) |
| :\/: |
| '--'A|
`------'
.------.
|O.--. |
| :/\: |
| :\/: |
| '--'O|
`------'
.------.
|U.--. |
| (\/) |
| :\/: |
| '--'U|
`------'

.-. 
((5)) 
'-.-. 
((1)) 
'-' 

824
node_modules/figlet/fonts/Catwalk.flf generated vendored Normal file
View File

@@ -0,0 +1,824 @@
flf2a$ 8 7 20 -1 7
CATWALK by Ron Fritz 8/94
Figlet Release 2/0
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
_//@
_//@
_//@
_/ @
_/ @
@
_//@
@@
_/ _/@
_/ _/@
@
@
@
@
@
@@
@
_// _// @
_////// _////@
_// _// @
_// _// @
_////// _////@
_// _// @
@@
_// @
_// _//@
_// @
_// @
_//@
_// _// @
_// @
@@
@
_// _// @
_// @
_// @
_// @
_// @
_// _// @
@@
_/ @
_// _//@
_// @
_/// @
_// @
_// _//@
_/ @
@@
_//@
_/@
@
@
@
@
@
@@
_//@
_// @
_// @
_// @
_// @
_// @
_//@
@@
_// @
_// @
_//@
_//@
_//@
_// @
_// @
@@
_// @
_// _// _//@
_/ _/ _// @
_//// _///////@
_/ _/ _// @
_// _// _//@
_// @
@@
@
_// @
_// @
_/// _/////@
_// @
_// @
@
@@
@
@
@
@
@
@
_//@
_/@@
@
@
@
_/////@
@
@
@
@@
@
@
@
@
@
@
_//@
@@
_//@
_// @
_// @
_// @
_// @
_// @
_// @
@@
@
_// @
_// _// @
_// _// @
_// _//@
_// _// @
_/// @
@@
@
_// @
_// @
_// @
_// @
_// @
_/////@
@@
@
_// _/ @
_/ _//@
_// @
_// @
_// @
_//////// @
@@
@
_// _// @
_// @
_// @
_// @
_//@
_///// @
@@
@
_// @
_ _// @
_/ _// @
_// _// @
_//// _/ _//@
_// @
@@
@
_// _/// @
_// @
_/// @
_// @
_//@
_/// _// @
@@
@
_// @
_// @
_// @
_/ _// @
_// _//@
_// _// @
@@
@
_///// _//@
_// @
_// @
_// @
_// @
_// @
@@
@
_/ @
_// _// @
_// _/ @
_// _/ @
_// _//@
_//// @
@@
@
_/ _// @
_// _//@
_/ _// @
_/ _// @
_// @
_// @
@@
@
@
@
@
_//@
@
_//@
@@
@
@
@
@
_//@
@
_//@
_/@@
_//@
_// @
_// @
_// @
_// @
_// @
_//@
@@
@
@
_//////@
@
_//////@
@
@
@@
_// @
_// @
_// @
_//@
_// @
_// @
_// @
@@
_/// @
_// @
_//@
_// @
_// @
@
_// @
@@
@
_/// @
_/ _// @
_/ _// _//@
_// _//_ _//@
_// ``` @
_// @
@@
_/ @
_/ // @
_/ _// @
_// _// @
_////// _// @
_// _// @
_// _//@
@@
_// _// @
_/ _// @
_/ _//@
_/// _/ @
_/ _//@
_/ _/@
_//// _// @
@@
_// @
_// _//@
_// @
_// @
_// @
_// _//@
_//// @
@@
_///// @
_// _// @
_// _//@
_// _//@
_// _//@
_// _// @
_///// @
@@
_////////@
_// @
_// @
_////// @
_// @
_// @
_////////@
@@
_////////@
_// @
_// @
_////// @
_// @
_// @
_// @
@@
_//// @
_/ _// @
_// @
_// @
_// _////@
_// _/ @
_///// @
@@
_// _//@
_// _//@
_// _//@
_////// _//@
_// _//@
_// _//@
_// _//@
@@
_//@
_//@
_//@
_//@
_//@
_//@
_//@
@@
_//@
_//@
_//@
_//@
_//@
_/ _//@
_//// @
@@
_// _// @
_// _// @
_// _// @
_/ _/ @
_// _// @
_// _// @
_// _//@
@@
_// @
_// @
_// @
_// @
_// @
_// @
_////////@
@@
_// _//@
_/ _// _///@
_// _// _ _//@
_// _// _//@
_// _/ _//@
_// _//@
_// _//@
@@
_/// _//@
_/ _// _//@
_// _// _//@
_// _// _//@
_// _/ _//@
_// _/ //@
_// _//@
@@
_//// @
_// _// @
_// _//@
_// _//@
_// _//@
_// _// @
_//// @
@@
_/////// @
_// _//@
_// _//@
_/////// @
_// @
_// @
_// @
@@
_//// @
_// _// @
_// _//@
_// _//@
_// _//@
_// _/ _// @
_// // @
_/ @@
_/////// @
_// _// @
_// _// @
_/ _// @
_// _// @
_// _// @
_// _//@
@@
_// // @
_// _//@
_// @
_// @
_// @
_// _//@
_// // @
@@
_/// _//////@
_// @
_// @
_// @
_// @
_// @
_// @
@@
_// _//@
_// _//@
_// _//@
_// _//@
_// _//@
_// _//@
_///// @
@@
_// _//@
_// _// @
_// _// @
_// _// @
_// _// @
_//// @
_// @
@@
_// _//@
_// _//@
_// _/ _//@
_// _// _//@
_// _/ _// _//@
_/ _/ _////@
_// _//@
@@
_// _//@
_// _// @
_// _// @
_// @
_// _// @
_// _// @
_// _//@
@@
_// _//@
_// _// @
_// _// @
_// @
_// @
_// @
_// @
@@
_/////// _//@
_// @
_// @
_// @
_// @
_// @
_///////////@
@@
_////@
_// @
_// @
_// @
_// @
_// @
_////@
@@
_// @
_// @
_// @
_// @
_// @
_// @
_//@
@@
_////@
_//@
_//@
_//@
_//@
_//@
_////@
@@
_// @
_// _// @
_// _//@
@
@
@
@
@@
@
@
@
@
@
@
@
_/////@@
_//@
_/ @
@
@
@
@
@
@@
@
@
_// @
_// _// @
_// _// @
_// _// @
_// _///@
@@
_// @
_// @
_// @
_// _// @
_// _//@
_// _//@
_// _// @
@@
@
@
_///@
_// @
_// @
_// @
_///@
@@
_//@
_//@
_//@
_// _//@
_/ _//@
_/ _//@
_// _//@
@@
@
@
_// @
_/ _// @
_///// _//@
_/ @
_//// @
@@
_//@
_/ @
_/_/ _/@
_// @
_// @
_// @
_// @
@@
@
@
_// @
_// _//@
_// _//@
_// _//@
_// @
_// @@
@
_// @
_// @
_/ _/ @
_// _//@
_/ _//@
_// _//@
@@
@
_/@
@
_//@
_//@
_//@
_//@
@@
@
_//@
@
_//@
_//@
_//@
_//@
_/// @@
_// @
_// @
_// _//@
_// _// @
_/_// @
_// _// @
_// _//@
@@
_//@
_//@
_//@
_//@
_//@
_//@
_///@
@@
@
@
_/// _// _// @
_// _/ _//@
_// _/ _//@
_// _/ _//@
_/// _/ _//@
@@
@
@
_// _// @
_// _//@
_// _//@
_// _//@
_/// _//@
@@
@
@
_// @
_// _// @
_// _//@
_// _// @
_// @
@@
@
@
_/ _// @
_/ _// @
_/ _//@
_// _// @
_// @
_// @@
@
@
_// @
_/ _// @
_/ _// @
_//_// @
_// @
_///@@
@
@
_/ _///@
_// @
_// @
_// @
_/// @
@@
@
@
_//// @
_// @
_/// @
_//@
_// _//@
@@
_// @
_// @
_/_/ _/@
_// @
_// @
_// @
_// @
@@
@
@
_// _//@
_// _//@
_// _//@
_// _//@
_//_//@
@@
@
@
_// _//@
_// _// @
_// _// @
_/_// @
_// @
@@
@
@
_// _///@
_// / _//@
_// _/ _//@
_/ _/ _/_//@
_/// _///@
@@
@
@
_// _//@
_/ _// @
_/ @
_/ _// @
_// _//@
@@
@
@
_// _//@
_// _// @
_/// @
_// @
_// @
_// @@
@
@
_//// _//@
_// @
_// @
_// @
_////////@
@@
_//@
_// @
_// @
_/// @
_// @
_// @
_//@
@@
_/@
_/@
_/@
@
_/@
_/@
_/@
@@
_// @
_// @
_// @
_///@
_// @
_// @
_// @
@@
_// _/ @
_/ _//@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@

935
node_modules/figlet/fonts/Chiseled.flf generated vendored Normal file
View File

@@ -0,0 +1,935 @@
flf2a$ 9 8 22 63 16 0 24511 0
Author : LG Beard
Date : 2004/3/27 20:45:15
Version: 1.0
-------------------------------------------------
-------------------------------------------------
This font has been created using JavE's FIGlet font export assistant.
Have a look at: http://www.jave.de
Permission is hereby given to modify this font, as long as the
modifier's name is placed on a comment line.
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $#
$ $#
$ $#
$ $#
$ $#
$ $#
$ $#
$ $#
$ $##
.=-.-. #
/==/_ / #
|==|, | #
|==| | #
/==/. / #
`--`-` #
.=. #
:=; : #
`=` ##
,--.- ,--.-, #
/==/, /==/ -/ #
|==|_ |==|_ | #
|==| |==| | #
/==/, /==/, / #
`--`-'`--`-' #
#
#
##
,--, ,--, #
__ /-\==\/-\==\_ #
/\_ \'/==/ '/==/_\#
\/================/#
/\__ \/==/ /==/_\/ #
\/===============/ #
/ `/==/ `/==/ #
`--`-` -`-` #
##
$#
#
#
#
#
#
#
#
##
.=. ,--, #
:=; :/-\==\ #
`=`/ '/==/ #
/ /==/ #
/ -/==/ #
/ `/==/ #
/ -/==/.=. #
/ `/==/:=; : #
`--`-` `=` ##
,---.--. #
/ -_ \==\ #
|` / \/==/ #
\ \ /==/ #
/ \==/ #
/. / \==\ #
| _ \_/\==\ #
\ . - /\==\ #
'----`-`--` ##
.--.-. #
/==/ / #
\==\ -\ #
\==\- \ #
`--`-' #
#
#
#
##
.-.--. #
\ \==\ #
/- /==/ #
/' /==/ #
|,|==| #
\ \==\ #
\ ,\==\ #
/ -/==/ #
`-'--' ##
.--.-. #
/==/ / #
\==\ -\ #
\==\ `\ #
|==|,| #
/==/ / #
/==/, / #
\==\- \ #
`--`-' ##
*#
#
#
#
#
#
#
#
##
.--.-. #
/==/ / #
\==\ -\ #
,--,--`--`--`--. #
\==\ ========== \ #
`--`-,--,--,---` #
/==/, / #
\==\- \ #
`--`-' ##
#
#
#
#
,--, #
/-\==\ #
/ '/==/ #
/ /==/ #
`--`--` ##
#
#
,--.--------. #
/==/, - , -\ #
\==\.-. - ,-./ #
`--`--------` #
#
#
##
#
#
#
#
#
#
.=. #
:=; : #
`=` ##
,--, #
/-\==\ #
/ '/==/ #
/ /==/ #
/ -/==/ #
/ `/==/ #
/ -/==/ #
/ `/==/ #
`--`-` ##
_.---.,_ #
.' - , `.-, #
/ - , ,_\==\ #
| .=. |==| #
| - :=; : _|==| #
| `=` , |==| #
\ _, - /==/ #
`. - .`=.` #
``--'--' ##
,-----.--. #
/` ` - /==/ #
`-'-. -|==| #
| `|==| #
| -|==| #
| `|==| #
.-','|==| #
/ \==\ #
`-----`---` ##
,-----,--, #
| '- -\==\ #
\,--, '/==/ #
/ /==/ #
/ -/==/ #
/ -/==/ #
/ `\==\_,--, #
/` - ,/==/ #
`------`--` ##
.----, #
/ ``--`.-, #
'-._ -|==| #
.-.' |==| #
\ , _\==\ #
`-. |==| #
_.-', _|==| #
\ , \==\ #
``-----'--' ##
.--, .-.--, #
| |=| -\==\ #
| `-' _|==| #
\ , |==| #
`--. -|==| #
\_ |==| #
| \==\ #
\ /==/ #
`--` ##
,-.--. #
/ - \==\ #
/ /\/==/ #
| \==\ #
/ `-.`-. #
`--. \==\ #
.-/ /==/ #
/ /==/ #
`-----`-` ##
.,-. #
/ \==\ #
/ -/==/ #
/- /==/ #
/ /==/ #
/. / \==\ #
| _ \_/\==\ #
\ . - /==/ #
'----`--` ##
,-----,--, #
| '- -\==\ #
\,--, '/==/ #
/ /==/ #
/ -/==/ #
/ `/==/ #
/ -/==/ #
/ `/==/ #
`--`-` ##
,---.--. #
/ -_ \==\ #
|` / \/==/ #
\ \ /==/ #
/ \==/ #
/. / \==\ #
| _ \_/\==\ #
\ . - /==/ #
'----`--` ##
,--,----. #
/==/ .=. \ #
\==\ '='\ \ #
`--`--'/ `/ #
/==/ -/ #
/==/ -/ #
/==/- / #
\==\ / #
`-'` ##
#
.=. #
:=; : #
`=` #
.=. #
:=; : #
`=` #
#
##
#
.=. #
:=; : #
`=` #
.=. #
:=; : #
`.` #
#
##
.--. #
/ \==\ #
/- /==/ #
/' /==/ #
| ,|==| #
\ \==\ #
\ ,\==\ #
\- \==\ #
`./==/ ##
,--.--------. #
/==/, - , -\ #
\==\.-. - ,-./ #
`--`--------` #
,--.--------. #
/==/, - , -\ #
\==\.-. - ,-./ #
`--`--------` #
##
.--. #
/==/ \ #
\==\ -\ #
\==\ `\ #
|==|, | #
/==/ / #
/==/, / #
/==/ -/ #
\==\.' ##
,--,---. #
/==/ - ` \ #
\==\/\ - | #
`--`/ `/ #
|==| | #
`--`--` #
.=. #
:=; : #
`=` ##
_,----. #
,-.--` , \ #
/==/- _.-`\ #
/==/ `.-. \ #
\==\_ , / / #
\==\ .-' / #
`._`.___.' #
#
##
,---. #
.--.' \ #
\==\-/\ \ #
/==/-|_\ | #
\==\, - \ #
/==/ - ,| #
/==/- /\ - \ #
\==\ _.\=\.-' #
`--` ##
#
_..---. #
.' .'.-. \ #
/==/- '=' / #
|==|-, ' #
|==| .=. \ #
/==/- '=' ,| #
|==| - / #
`-._`.___,' ##
_,.----. #
.' .' - \ #
/==/ , ,-' #
|==|- | . #
|==|_ `-' \ #
|==| _ , | #
\==\. / #
`-.`.___.-' #
##
#
_,..---._ #
/==/, - \ #
|==| _ _\ #
|==| .=. | #
|==|,| | -| #
|==| '=' / #
|==|-, _`/ #
`-.`.____.' ##
,----. #
,-.--` , \ #
|==|- _.-` #
|==| `.-. #
/==/_ , / #
|==| .-' #
|==|_ ,`-._ #
/==/ , / #
`--`-----`` ##
_,---. #
.-`.' , \ #
/==/_ _.-' #
/==/- '..-. #
|==|_ , / #
|==| .--' #
|==|- | #
/==/ \ #
`--`---' ##
_,---. #
_.='.'-, \ #
/==.'- / #
/==/ - .-' #
|==|_ /_,-. #
|==| , \_.' ) #
\==\- , ( #
/==/ _ , / #
`--`------' ##
,--.-,,-,--, #
/==/ /|=| | #
|==|_ ||=|, | #
|==| ,|/=| _| #
|==|- `-' _ | #
|==| _ | #
|==| .-. ,\ #
/==/, //=/ | #
`--`-' `-`--` ##
.=-.-. #
/==/_ / #
|==|, | #
|==| | #
|==|- | #
|==| ,| #
|==|- | #
/==/. / #
`--`-` ##
,--.-, #
|==' -| #
|==|- | #
__|==|, | #
,--.-'\=|- | #
|==|- |=/ ,| #
|==|. /=| -| #
\==\, `-' / #
`--`----' ##
,--.-.,-. #
/==/- |\ \ #
|==|_ `/_ / #
|==| , / #
|==|- .| #
|==| _ , \ #
/==/ '\ | #
\==\ /\=\.' #
`--` ##
#
_.-. #
.-,.'| #
|==|, | #
|==|- | #
|==|, | #
|==|- `-._ #
/==/ - , ,/ #
`--`-----' ##
___ #
.-._ .'=.'\ #
/==/ \|==| | #
|==|,| / - | #
|==| \/ , | #
|==|- , _ | #
|==| _ /\ | #
/==/ / / , / #
`--`./ `--` ##
.-._ #
/==/ \ .-._ #
|==|, \/ /, / #
|==|- \| | #
|==| , | -| #
|==| - _ | #
|==| /\ , | #
/==/, | |- | #
`--`./ `--` ##
_,.---._ #
,-.' , - `. #
/==/_, , - \ #
|==| .=. | #
|==|_ : ;=: - | #
|==| , '=' | #
\==\ - ,_ / #
'.='. - .' #
`--`--'' ##
_ __ #
.-`.' ,`. #
/==/, - \ #
|==| _ .=. | #
|==| , '=',| #
|==|- '..' #
|==|, | #
/==/ - | #
`--`---' ##
_,.---._ #
,-.' - , `. #
/==/ , - \ #
|==| - .=. , | #
|==| : ;=: - | #
|==|, '=' , | #
\==\ _ - ; #
'.='. , ; -\ #
`--`--'' `--` ##
#
.-.,.---. #
/==/ ` \ #
|==|-, .=., | #
|==| '=' / #
|==|- , .' #
|==|_ . ,'. #
/==/ /\ , ) #
`--`-`--`--' ##
,-,--. #
,-.'- _\ #
/==/_ ,_.' #
\==\ \ #
\==\ -\ #
_\==\ ,\ #
/==/\/ _ | #
\==\ - , / #
`--`---' ##
,--.--------. #
/==/, - , -\ #
\==\.-. - ,-./ #
`--`\==\- \ #
\==\_ \ #
|==|- | #
|==|, | #
/==/ -/ #
`--`--` ##
#
.--.-. .-.-. #
/==/ -|/=/ | #
|==| ,||=| -| #
|==|- | =/ | #
|==|, \/ - | #
|==|- , / #
/==/ , _ .' #
`--`..---' ##
,-.-. #
,--.-./=/ ,/ #
/==/, ||=| -| #
\==\, \ / ,| #
\==\ - ' - / #
\==\ , | #
|==| - ,/ #
\==\ _ / #
`--`--' ##
,-.-. #
,-..-.-./ \==\ #
|, \=/\=|- |==| #
|- |/ |/ , /==/ #
\, , _|==| #
| - - , |==| #
\ , - /==/ #
|- /\ /==/ #
`--` `--` ##
,-.--, #
.--.-. /=/, .' #
\==\ -\/=/- / #
\==\ `-' ,/ #
|==|, - | #
/==/ , \ #
/==/, .--, - \ #
\==\- \/=/ , / #
`--`-' `--` ##
#
,--.-. .-,--. #
/==/- / /=/_ / #
\==\, \/=/. / #
\==\ \/ -/ #
|==| ,_/ #
\==\-, / #
/==/._/ #
`--`-` ##
#
,--,----. #
/==/` - ./ #
`--`=/. / #
/==/- / #
/==/- /-. #
/==/, `--`\ #
\==\- -, | #
`--`.-.--` ##
,--.---, #
\==\ - '\ #
|==|- .-' #
|==|' | #
|==|- | #
|==|' | #
|==|`,`-. #
/==/ / #
`--`---' ##
,--, #
/==/-\ #
\==\` \ #
\==\ \ #
\==\- \ #
\==\' \ #
\==\- \ #
\==\' \ #
'-'--' ##
,---.--. #
/` - /==/ #
`-. -|==| #
| `|==| #
| -|==| #
| `|==| #
.-','|==| #
\ \==\ #
`---`---` ##
,--.--. #
/==/ _- \ #
/==/ -/\. \ #
/==/, /==\ ,\ #
\==\-/ \==\ .` #
`--` `--` #
#
#
##
#
#
#
#
#
,--.--------. #
/==/, - , -\ #
\==\.-. - ,-./ #
`--`--------` ##
,--, #
/==/-\ #
\==\` \ #
\==\-.' #
`--` #
#
#
#
##
,---. #
.--.' \ #
\==\-/\ \ #
/==/-|_\ | #
\==\, - \ #
/==/ - ,| #
/==/- /\ - \ #
\==\ _.\=\.-' #
`--` ##
#
_..---. #
.' .'.-. \ #
/==/- '=' / #
|==|-, ' #
|==| .=. \ #
/==/- '=' ,| #
|==| - / #
`-._`.___,' ##
_,.----. #
.' .' - \ #
/==/ , ,-' #
|==|- | . #
|==|_ `-' \ #
|==| _ , | #
\==\. / #
`-.`.___.-' #
##
#
_,..---._ #
/==/, - \ #
|==| _ _\ #
|==| .=. | #
|==|,| | -| #
|==| '=' / #
|==|-, _`/ #
`-.`.____.' ##
,----. #
,-.--` , \ #
|==|- _.-` #
|==| `.-. #
/==/_ , / #
|==| .-' #
|==|_ ,`-._ #
/==/ , / #
`--`-----`` ##
_,---. #
.-`.' , \ #
/==/_ _.-' #
/==/- '..-. #
|==|_ , / #
|==| .--' #
|==|- | #
/==/ \ #
`--`---' ##
_,---. #
_.='.'-, \ #
/==.'- / #
/==/ - .-' #
|==|_ /_,-. #
|==| , \_.' ) #
\==\- , ( #
/==/ _ , / #
`--`------' ##
,--.-,,-,--, #
/==/ /|=| | #
|==|_ ||=|, | #
|==| ,|/=| _| #
|==|- `-' _ | #
|==| _ | #
|==| .-. ,\ #
/==/, //=/ | #
`--`-' `-`--` ##
.=-.-. #
/==/_ / #
|==|, | #
|==| | #
|==|- | #
|==| ,| #
|==|- | #
/==/. / #
`--`-` ##
,--.-, #
|==' -| #
|==|- | #
__|==|, | #
,--.-'\=|- | #
|==|- |=/ ,| #
|==|. /=| -| #
\==\, `-' / #
`--`----' ##
,--.-.,-. #
/==/- |\ \ #
|==|_ `/_ / #
|==| , / #
|==|- .| #
|==| _ , \ #
/==/ '\ | #
\==\ /\=\.' #
`--` ##
#
_.-. #
.-,.'| #
|==|, | #
|==|- | #
|==|, | #
|==|- `-._ #
/==/ - , ,/ #
`--`-----' ##
___ #
.-._ .'=.'\ #
/==/ \|==| | #
|==|,| / - | #
|==| \/ , | #
|==|- , _ | #
|==| _ /\ | #
/==/ / / , / #
`--`./ `--` ##
.-._ #
/==/ \ .-._ #
|==|, \/ /, / #
|==|- \| | #
|==| , | -| #
|==| - _ | #
|==| /\ , | #
/==/, | |- | #
`--`./ `--` ##
_,.---._ #
,-.' , - `. #
/==/_, , - \ #
|==| .=. | #
|==|_ : ;=: - | #
|==| , '=' | #
\==\ - ,_ / #
'.='. - .' #
`--`--'' ##
_ __ #
.-`.' ,`. #
/==/, - \ #
|==| _ .=. | #
|==| , '=',| #
|==|- '..' #
|==|, | #
/==/ - | #
`--`---' ##
_,.---._ #
,-.' - , `. #
/==/ , - \ #
|==| - .=. , | #
|==| : ;=: - | #
|==|, '=' , | #
\==\ _ - ; #
'.='. , ; -\ #
`--`--'' `--` ##
#
.-.,.---. #
/==/ ` \ #
|==|-, .=., | #
|==| '=' / #
|==|- , .' #
|==|_ . ,'. #
/==/ /\ , ) #
`--`-`--`--' ##
,-,--. #
,-.'- _\ #
/==/_ ,_.' #
\==\ \ #
\==\ -\ #
_\==\ ,\ #
/==/\/ _ | #
\==\ - , / #
`--`---' ##
,--.--------. #
/==/, - , -\ #
\==\.-. - ,-./ #
`--`\==\- \ #
\==\_ \ #
|==|- | #
|==|, | #
/==/ -/ #
`--`--` ##
#
.--.-. .-.-. #
/==/ -|/=/ | #
|==| ,||=| -| #
|==|- | =/ | #
|==|, \/ - | #
|==|- , / #
/==/ , _ .' #
`--`..---' ##
,-.-. #
,--.-./=/ ,/ #
/==/, ||=| -| #
\==\, \ / ,| #
\==\ - ' - / #
\==\ , | #
|==| - ,/ #
\==\ _ / #
`--`--' ##
,-.-. #
,-..-.-./ \==\ #
|, \=/\=|- |==| #
|- |/ |/ , /==/ #
\, , _|==| #
| - - , |==| #
\ , - /==/ #
|- /\ /==/ #
`--` `--` ##
,-.--, #
.--.-. /=/, .' #
\==\ -\/=/- / #
\==\ `-' ,/ #
|==|, - | #
/==/ , \ #
/==/, .--, - \ #
\==\- \/=/ , / #
`--`-' `--` ##
#
,--.-. .-,--. #
/==/- / /=/_ / #
\==\, \/=/. / #
\==\ \/ -/ #
|==| ,_/ #
\==\-, / #
/==/._/ #
`--`-` ##
#
,--,----. #
/==/` - ./ #
`--`=/. / #
/==/- / #
/==/- /-. #
/==/, `--`\ #
\==\- -, | #
`--`.-.--` ##
.-.--. #
\ \==\ #
/- /==/ #
/' /==/ #
|,|==| #
\ \==\ #
\ ,\==\ #
/ -/==/ #
`-'--' ##
,--.-, #
/==/ / #
|==|_ | #
|==| ,| #
|==|- | #
|==| | #
|==| | #
/==/, / #
`--`-' ##
.--.-. #
/==/ / #
\==\ -\ #
\==\ `\ #
|==|,| #
/==/ / #
/==/, / #
\==\- \ #
`--`-' ##
~#
#
#
#
#
#
#
#
##
,---. #
.--.' \ #
\==\-/\ \ #
/==/-|_\ | #
\==\, - \ #
/==/ - ,| #
/==/- /\ - \ #
\==\ _.\=\.-' #
`--` ##
_,.---._ #
,-.' , - `. #
/==/_, , - \ #
|==| .=. | #
|==|_ : ;=: - | #
|==| , '=' | #
\==\ - ,_ / #
'.='. - .' #
`--`--'' ##
#
.--.-. .-.-. #
/==/ -|/=/ | #
|==| ,||=| -| #
|==|- | =/ | #
|==|, \/ - | #
|==|- , / #
/==/ , _ .' #
`--`..---' ##
,---. #
.--.' \ #
\==\-/\ \ #
/==/-|_\ | #
\==\, - \ #
/==/ - ,| #
/==/- /\ - \ #
\==\ _.\=\.-' #
`--` ##
_,.---._ #
,-.' , - `. #
/==/_, , - \ #
|==| .=. | #
|==|_ : ;=: - | #
|==| , '=' | #
\==\ - ,_ / #
'.='. - .' #
`--`--'' ##
#
.--.-. .-.-. #
/==/ -|/=/ | #
|==| ,||=| -| #
|==|- | =/ | #
|==|, \/ - | #
|==|- , / #
/==/ , _ .' #
`--`..---' ##
ß#
#
#
#
#
#
#
#
##

517
node_modules/figlet/fonts/Chunky.flf generated vendored Normal file
View File

@@ -0,0 +1,517 @@
flf2a$ 5 4 20 15 6
Square by Chris Gill, 30-JUN-94 -- based on .sig of Jeb Hagan.
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $@
$ $@
$ $@
$ $@
$ $@@
__ @
| |@
|__|@
|__|@
@@
____ @
| | |@
|_|_|@
@
@@
_____ @
_| | |_ @
|_ _|@
|_ _|@
|__|__| @@
__,-,__ @
| ' '__|@
|__ |@
|_______|@
|_| @@
__ ___ @
|__| |@
| __|@
|___|__|@
@@
__,-,__ @
| ' '__|@
| __|@
|_______|@
|_| @@
__ @
| |@
|_|@
@
@@
___ @
,' _|@
| | @
| |_ @
`.___|@@
___ @
|_ `.@
| |@
_| |@
|___,'@@
__ _ __ @
| | | |@
> < @
|__|_|__|@
@@
__ @
_| |_ @
|_ _|@
|__| @
@@
@
@
__ @
| |@
|_|@@
@
______ @
|______|@
@
@@
@
@
__ @
|__|@
@@
___@
/ /@
,' ,' @
/__/ @
@@
______ @
| |@
| -- |@
|______|@
@@
____ @
|_ | @
_| |_ @
|______|@
@@
______ @
|__ |@
| __|@
|______|@
@@
______ @
|__ |@
|__ |@
|______|@
@@
_____ @
| | | @
|__ |@
|__| @
@@
______ @
| __|@
|__ |@
|______|@
@@
______ @
| __|@
| __ |@
|______|@
@@
______ @
| |@
|_ |@
|____|@
@@
______ @
| __ |@
| __ |@
|______|@
@@
______ @
| __ |@
|__ |@
|______|@
@@
__ @
|__|@
__ @
|__|@
@@
__ @
|__|@
__ @
| |@
|_|@@
__ @
,' _|@
/ / @
\ \_ @
`.__|@@
@
______ @
|______|@
|______|@
@@
__ @
|_ `. @
\ \@
_/ /@
|__,' @@
_____ @
|__ |@
', ,-'@
|--| @
'--' @@
_________ @
| ___ |@
| | _ |@
| |______|@
|_________|@@
_______ @
| _ |@
| |@
|___|___|@
@@
______ @
| __ \@
| __ <@
|______/@
@@
______ @
| |@
| ---|@
|______|@
@@
_____ @
| \ @
| -- |@
|_____/ @
@@
_______ @
| ___|@
| ___|@
|_______|@
@@
_______ @
| ___|@
| ___|@
|___| @
@@
_______ @
| __|@
| | |@
|_______|@
@@
_______ @
| | |@
| |@
|___|___|@
@@
_______ @
|_ _|@
_| |_ @
|_______|@
@@
_____ @
_| |@
| |@
|_______|@
@@
__ __ @
| |/ |@
| < @
|__|\__|@
@@
_____ @
| |_ @
| |@
|_______|@
@@
_______ @
| | |@
| |@
|__|_|__|@
@@
_______ @
| | |@
| |@
|__|____|@
@@
_______ @
| |@
| - |@
|_______|@
@@
______ @
| __ \@
| __/@
|___| @
@@
_______ @
| |@
| - _|@
|_______|@
@@
______ @
| __ \@
| <@
|___|__|@
@@
_______ @
| __|@
|__ |@
|_______|@
@@
_______ @
|_ _|@
| | @
|___| @
@@
_______ @
| | |@
| | |@
|_______|@
@@
___ ___ @
| | |@
| | |@
\_____/ @
@@
________ @
| | | |@
| | | |@
|________|@
@@
___ ___ @
| | |@
|- -|@
|___|___|@
@@
___ ___ @
| | |@
\ / @
|___| @
@@
_______ @
|__ |@
| __|@
|_______|@
@@
____ @
| _|@
| | @
| |_ @
|____|@@
___ @
\ \ @
`. `. @
\__\@
@@
____ @
|_ |@
| |@
_| |@
|____|@@
____ @
| |@
|_/\_|@
@
@@
@
@
@
______ @
|______|@@
__ @
| |@
|_| @
@
@@
@
.---.-.@
| _ |@
|___._|@
@@
__ @
| |--.@
| _ |@
|_____|@
@@
@
.----.@
| __|@
|____|@
@@
__ @
.--| |@
| _ |@
|_____|@
@@
@
.-----.@
| -__|@
|_____|@
@@
___ @
.' _|@
| _|@
|__| @
@@
@
.-----.@
| _ |@
|___ |@
|_____|@@
__ @
| |--.@
| |@
|__|__|@
@@
__ @
|__|@
| |@
|__|@
@@
__ @
|__|@
| |@
| |@
|___|@@
__ @
| |--.@
| < @
|__|__|@
@@
__ @
| |@
| |@
|__|@
@@
@
.--------.@
| |@
|__|__|__|@
@@
@
.-----.@
| |@
|__|__|@
@@
@
.-----.@
| _ |@
|_____|@
@@
@
.-----.@
| _ |@
| __|@
|__| @@
@
.-----.@
| _ |@
|__ |@
|__|@@
@
.----.@
| _|@
|__| @
@@
@
.-----.@
|__ --|@
|_____|@
@@
__ @
| |_ @
| _|@
|____|@
@@
@
.--.--.@
| | |@
|_____|@
@@
@
.--.--.@
| | |@
\___/ @
@@
@
.--.--.--.@
| | | |@
|________|@
@@
@
.--.--.@
|_ _|@
|__.__|@
@@
@
.--.--.@
| | |@
|___ |@
|_____|@@
@
.-----.@
|-- __|@
|_____|@
@@
___ @
| _|@
/ / @
\ \_ @
|___|@@
__ @
| |@
| |@
| |@
|__|@@
___ @
|_ | @
\ \@
_/ /@
|___| @@
___ @
| ' |@
|_,_| @
@
@@
.--.--.@
|-----|@
| - |@
|__|__|@
@@
.--.--.@
|-----|@
| _ |@
|_____|@
@@
.--.--.@
|--|--|@
| | |@
|_____|@
@@
.--.--.@
|---.-|@
| _ |@
|___._|@
@@
.--.--.@
|-----|@
| _ |@
|_____|@
@@
.--.--.@
|--|--|@
| | |@
|_____|@
@@
_______ @
| __ \@
| __ <@
| |____/@
|__| @@

824
node_modules/figlet/fonts/Coinstak.flf generated vendored Normal file
View File

@@ -0,0 +1,824 @@
flf2a$ 8 7 20 -1 7
COINSTAK by Ron Fritz 8/94
Figlet Release 2/0
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
O))@
O))@
O))@
O) @
O) @
@
O))@
@@
O) O)@
O) O)@
@
@
@
@
@
@@
@
O)) O)) @
O)))))) O))))@
O)) O)) @
O)) O)) @
O)))))) O))))@
O)) O)) @
@@
O)) @
O) O))@
O)) @
O)) @
O)) @
O)) O))@
O)) @
@@
@
O)) O)) @
O)) @
O)) @
O)) @
O)) @
O)) O)) @
@@
O) @
O)) O))@
O)) @
O))) @
O)) @
O)) O))@
O) @
@@
O))@
O)@
@
@
@
@
@
@@
O))@
O)) @
O)) @
O)) @
O)) @
O)) @
O))@
@@
O)) @
O)) @
O))@
O))@
O))@
O)) @
O)) @
@@
O)) @
O)) O)) O))@
O) O) O)) @
O)))) O)))))))@
O) O) O)) @
O)) O)) O))@
O)) @
@@
@
O)) @
O)) @
O))) O)))))@
O)) @
O)) @
@
@@
@
@
@
@
@
@
O))@
O)@@
@
@
@
O)))))@
@
@
@
@@
@
@
@
@
@
@
O))@
@@
O))@
O)) @
O)) @
O)) @
O)) @
O)) @
O)) @
@@
@
O)) @
O)) O)) @
O)) O)) @
O)) O))@
O)) O)) @
O))) @
@@
@
O)) @
O)) @
O)) @
O)) @
O)) @
O))))@
@@
@
O) O)) @
O) O))@
O)) @
O)) @
O)) @
O))))))))@
@@
@
O)) O)) @
O)) @
O)) @
O)) @
O))@
O))))) @
@@
@
O)) @
O O)) @
O) O)) @
O)) O)) @
O)))) O) O))@
O)) @
@@
@
O)) O))) @
O)) @
O))) @
O)) @
O))@
O))) O)) @
@@
@
O)) @
O)) @
O)) @
O) O)) @
O)) O))@
O)) O)) @
@@
@
O))))) O))@
O)) @
O)) @
O)) @
O)) @
O)) @
@@
@
O) @
O)) O)) @
O)) O)@
O)) O) @
O)) O)@
O)))) @
@@
@
O) O)) @
O)) O))@
O) O))@
O)) O)) @
O)) @
O)) @
@@
@
@
@
@
O))@
@
O))@
@@
@
@
@
@
O))@
@
O))@
O)@@
O))@
O)) @
O)) @
O)) @
O)) @
O)) @
O))@
@@
@
@
O))))))@
@
O))))))@
@
@
@@
O)) @
O)) @
O)) @
O))@
O)) @
O)) @
O)) @
@@
O))) @
O)) @
O))@
O)) @
O)) @
@
O)) @
@@
@
O))) @
O) O)) @
O) O)) O))@
O)) O))O O))@
O)) ``` @
O)) @
@@
O) @
O) )) @
O) O)) @
O)) O)) @
O)))))) O)) @
O)) O)) @
O)) O))@
@@
O)) O)) @
O) O)) @
O) O))@
O))) O) @
O) O))@
O) O)@
O)))) O)) @
@@
O)) @
O)) O))@
O)) @
O)) @
O)) @
O)) O))@
O)))) @
@@
O))))) @
O)) O)) @
O)) O))@
O)) O))@
O)) O))@
O)) O)) @
O))))) @
@@
O))))))))@
O)) @
O)) @
O)))))) @
O)) @
O)) @
O))))))))@
@@
O))))))))@
O)) @
O)) @
O)))))) @
O)) @
O)) @
O)) @
@@
O)))) @
O) O)) @
O)) @
O)) @
O)) O))))@
O)) O) @
O))))) @
@@
O)) O))@
O)) O))@
O)) O))@
O)))))) O))@
O)) O))@
O)) O))@
O)) O))@
@@
O))@
O))@
O))@
O))@
O))@
O))@
O))@
@@
O))@
O))@
O))@
O))@
O))@
O) O))@
O)))) @
@@
O)) O)) @
O)) O)) @
O)) O)) @
O) O) @
O)) O)) @
O)) O)) @
O)) O))@
@@
O)) @
O)) @
O)) @
O)) @
O)) @
O)) @
O))))))))@
@@
O)) O))@
O) O)) O)))@
O)) O)) O O))@
O)) O)) O))@
O)) O) O))@
O)) O))@
O)) O))@
@@
O))) O))@
O) O)) O))@
O)) O)) O))@
O)) O)) O))@
O)) O) O))@
O)) O) ))@
O)) O))@
@@
O)))) @
O)) O)) @
O)) O))@
O)) O))@
O)) O))@
O)) O)) @
O)))) @
@@
O))))))) @
O)) O))@
O)) O))@
O))))))) @
O)) @
O)) @
O)) @
@@
O)))) @
O)) O)) @
O)) O))@
O)) O))@
O)) O))@
O)) O) O)) @
O)) )) @
O) @@
O))))))) @
O)) O)) @
O)) O)) @
O) O)) @
O)) O)) @
O)) O)) @
O)) O))@
@@
O)) O) @
O)) O))@
O)) @
O)) @
O)) @
O)) O))@
O)) O) @
@@
O))) O))))))@
O)) @
O)) @
O)) @
O)) @
O)) @
O)) @
@@
O)) O))@
O)) O))@
O)) O))@
O)) O))@
O)) O))@
O)) O))@
O))))) @
@@
O)) O))@
O)) O)) @
O)) O)) @
O)) O)) @
O)) O)) @
O)))) @
O)) @
@@
O)) O))@
O)) O))@
O)) O) O))@
O)) O)) O))@
O)) O) O)) O))@
O) O) O))))@
O)) O))@
@@
O)) O))@
O)) O)) @
O)) O)) @
O)) @
O)) O)) @
O)) O)) @
O)) O))@
@@
O)) O))@
O)) O)) @
O)) O)) @
O)) @
O)) @
O)) @
O)) @
@@
O))))))) O))@
O)) @
O)) @
O)) @
O)) @
O)) @
O)))))))))))@
@@
O))))@
O)) @
O)) @
O)) @
O)) @
O)) @
O))))@
@@
O)) @
O)) @
O)) @
O)) @
O)) @
O)) @
O))@
@@
O))))@
O))@
O))@
O))@
O))@
O))@
O))))@
@@
O)) @
O)) O)) @
O)) O))@
@
@
@
@
@@
@
@
@
@
@
@
@
O)))))@@
O))@
O) @
@
@
@
@
@
@@
@
@
O)) @
O)) O)) @
O)) O)) @
O)) O)) @
O)) O)))@
@@
O)) @
O)) @
O)) @
O)) O)) @
O)) O))@
O)) O))@
O)) O)) @
@@
@
@
O)))@
O)) @
O)) @
O)) @
O)))@
@@
O))@
O))@
O))@
O)) O))@
O) O))@
O) O))@
O)) O))@
@@
@
@
O)) @
O) O)) @
O))))) O))@
O) @
O)))) @
@@
O))@
O) @
O)O) O)@
O)) @
O)) @
O)) @
O)) @
@@
@
@
O)) @
O)) O))@
O)) O))@
O)) O))@
O)) @
O)) @@
@
O)) @
O)) @
O) O) @
O)) O))@
O) O))@
O)) O))@
@@
@
O)@
@
O))@
O))@
O))@
O))@
@@
@
O))@
@
O))@
O))@
O))@
O))@
O))) @@
O)) @
O)) @
O)) O))@
O)) O)) @
O)O)) @
O)) O)) @
O)) O))@
@@
O))@
O))@
O))@
O))@
O))@
O))@
O)))@
@@
@
@
O))) O)) O)) @
O)) O) O))@
O)) O) O))@
O)) O) O))@
O))) O) O))@
@@
@
@
O)) O)) @
O)) O))@
O)) O))@
O)) O))@
O))) O))@
@@
@
@
O)) @
O)) O)) @
O)) O))@
O)) O)) @
O)) @
@@
@
@
O) O)) @
O) O)) @
O) O))@
O)) O)) @
O)) @
O)) @@
@
@
O)) @
O) O)) @
O) O)) @
O))O)) @
O)) @
O)))@@
@
@
O) O)))@
O)) @
O)) @
O)) @
O))) @
@@
@
@
O)))) @
O)) @
O))) @
O))@
O)) O))@
@@
O)) @
O)) @
O)O) O)@
O)) @
O)) @
O)) @
O)) @
@@
@
@
O)) O))@
O)) O))@
O)) O))@
O)) O))@
O))O))@
@@
@
@
O)) O))@
O)) O)) @
O)) O)) @
O)O)) @
O)) @
@@
@
@
O)) O)))@
O)) ) O))@
O)) O) O))@
O) O) O)O))@
O))) O)))@
@@
@
@
O)) O))@
O) O)) @
O) @
O) O)) @
O)) O))@
@@
@
@
O)) O))@
O)) O)) @
O))) @
O)) @
O)) @
O)) @@
@
@
O)))) O))@
O)) @
O)) @
O)) @
O))))))))@
@@
O))@
O)) @
O)) @
O)) @
O)) @
O)) @
O))@
@@
O)@
O)@
O)@
@
O)@
O)@
O)@
@@
O)) @
O)) @
O)) @
O))@
O)) @
O)) @
O)) @
@@
O)) O) @
O) O))@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@

624
node_modules/figlet/fonts/Cola.flf generated vendored Normal file
View File

@@ -0,0 +1,624 @@
flf2a$ 6 5 16 0 11 0 8036 0
Author : MikeChat
Date : 2006/6/7 14:32:11
Version: 1.0
-------------------------------------------------
-------------------------------------------------
This font has been created using JavE's FIGlet font export assistant.
Have a look at: http://www.jave.de
Permission is hereby given to modify this font, as long as the
modifier's name is placed on a comment line.
$ #
$ #
$ #
$ #
$ #
$ ##
.;. #
;;;' #
.;' #
.-. #
`-' #
##
"#
#
#
#
#
##
##
#
#
#
#
##
$#
#
#
#
#
##
%#
#
#
#
#
##
&#
#
#
#
#
##
__ #
|/ #
' #
#
#
##
(#
#
#
#
#
##
)#
#
#
#
#
##
*#
#
#
#
#
##
+#
#
#
#
#
##
#
#
#
.-. #
`-; #
' ##
#
#
#
`;;;. #
#
##
#
#
#
.-. #
`-' #
##
/#
#
#
#
#
##
#
.--. #
; .'; #
;.' ; #
`;;' #
##
#
.; #
.;' #
.;' #
-;;;- #
##
#
.;^^;. #
` .' #
.' #
.;;;;;' #
##
#
.;^^; #
` .' #
'. #
';;;;' #
##
#
.; ;' #
.;..;' #
.;' #
.;' #
##
#
.::::. #
:..-. #
; #
`;;;' #
##
#
,:"' #
,:-. #
; : #
`':` #
##
#
.;;;;. #
.;' #
.;' #
.;' #
##
#
.-. #
;.-.; #
; ; #
`;;;' #
##
#
,:., #
: ; #
`-:' #
:' #
##
#
.-. #
`-' #
.-. #
`-' #
##
;#
#
#
#
#
##
<#
#
#
#
#
##
=#
#
#
#
#
##
> >#
#
#
#
#
##
.;^^;. #
` .;' #
;' #
.-. #
`-' #
##
@#
#
#
#
#
##
/\ #
_ / | #
( / | .#
`/.__|_.'#
.:' / | #
(__.' `-' ##
.-. #
(_) )-. #
.: __) #
.:' `. #
:' ) #
(_/ `----' ##
.-._ .-._.#
.: (_)`-' #
:: #
:: _ #
`: .; ) #
`--' ##
.-. #
(_) )-. #
.: \ #
.:' \ #
.-:. ) #
(_/ `----' ##
.- #
.;;;.`-' #
;; (_) #
.;;; .-. #
;; .; ; #
`;.___.' ##
.-._.;;;' #
(_).; #
.:--. #
.:' #
.-: #
(_/ ##
.-.#
.;;.`-' #
;; (_; #
;; #
;; `;;' #
`;.___.' ##
`; .' #
_ `; ; ( #
( ;' ; ) #
`.;__;.' #
. .:' `:. #
(_.' `: ##
.;;;;. #
' .;' `#
.;' #
.;' #
.;' #
.;;;;;;;;;' ##
.;;; #
.;' #
.;' #
.-. .;' #
`. .; #
`;;;;;;' ##
.-. #
(_).) .' #
.: ; #
-:'..' #
. :' `: #
(_.' `.' ##
.-. #
;' (_) #
.:' #
.:' #
.-:. .-. #
(_/ `;._. ##
.-. #
.;|/: #
.; : #
.; : #
.:'.; : #
(__.' `. ##
.-. #
; : #
.;: : #
.;' \ : #
.:'.; \: #
(__.' `. ##
#
.;;. .- #
;; `;`-' #
;; :. #
;; ;' #
`;.__.' ##
.-. #
(_) )-. #
.: \ #
.:' ) #
.-:. `--' #
(_/ ##
#
.;;. #
;; `; #
;; : #
;; `. ; #
`;.__.:._. ##
.-. #
(_) )-. #
.: \ #
.::. ) #
.-:. `:-' #
(_/ `:._. ##
.-.#
.;;;.`-' #
;; (_) #
`;;;. #
_ `: #
(_.;;;' ##
.-.;;;;;;' #
(_) .; #
: #
.:' #
.-:._ #
(_/ `- ##
#
.;. .-. #
;; ; #
;; : #
;; ; #
`;.__.: ##
#
.;. .-. #
`; .' #
;; .' #
;; ; #
`;.' ##
#
.;. .-. #
`; ;' #
;; ; #
;; ; ;; #
`;.' `.;' ##
#
.-. .-. #
( `. .' #
`-' ;; #
;; .- #
.-._;`._; ##
. #
.:. .-. #
;; : #
; ; #
.:' `._.: #
(__.-.;' ##
-. #
`-.;;;. #
;; #
.;;;' #
:' .-. #
`;;;.-._) ##
[#
#
#
#
#
##
\#
#
#
#
#
##
]#
#
#
#
#
##
.:. #
' ` #
#
#
#
##
#
#
#
#
._____. #
`---' ##
_ #
\| #
` #
#
#
##
#
#
.-. #
; : #
`:::'-' #
##
. #
.' #
;-. #
; ; #
.'`::'`- #
##
#
#
.-. #
; #
`;;;;' #
##
#
.' #
.-..' #
: ; #
`:::'`. #
##
#
#
.-. #
.;.-' #
`:::' #
##
.-. #
; -' #
-;-- #
. #
`.' #
##
#
#
,:.,' #
: ; #
`-:' #
-._:' ##
#
.; #
;;-. #
;; ; #
.;` ` #
##
#
.-. #
`-' #
;' #
_.;:._. #
##
.-. #
`-' #
;' #
.; #
: :: #
`:::' ##
.: #
:: #
;;.-. #
;; .' #
_.'` `. #
##
.; #
.;' #
.; #
:: #
_;;_.- #
##
#
#
. ,';.,';. #
;; ;; ;; #
'; ;; '; #
_; `-' ##
#
#
. ,';. #
;; ;; #
'; ;; #
; `. ##
#
#
.-. #
; ;' #
`;;' #
##
#
#
`..:. #
;; : #
;;_.` #
.;' ##
#
#
,:. #
: ; #
'-; #
`.; ##
#
#
.;.::. #
.; #
.;' #
##
#
#
. #
.'; #
.' .' #
' ##
. #
...;... #
.' #
.; #
.; #
##
#
#
, : #
; ; #
.'`..:;._ #
##
#
.-. #
_.; : #
; ; #
`._.' #
##
#
#
`; .- #
; ; ; #
`.' `.' #
##
#
.;. _ #
`.,' ' #
,'`. #
-' `._. #
##
#
#
. .-. #
`: ; #
`.' #
-.;' ##
#
#
.-. #
;. #
( ; #
`-' ##
{#
#
#
#
#
##
|#
#
#
#
#
##
}#
#
#
#
#
##
#
.;;. #
.;;' ` #
#
#
##
/\ #
_ / | #
( / | .#
`/.__|_.'#
.:' / | #
(__.' `-' ##
#
.;;. .- #
;; `;`-' #
;; :. #
;; ;' #
`;.__.' ##
#
.;. .-. #
;; ; #
;; : #
;; ; #
`;.__.: ##
#
#
.-. #
; : #
`:::'-' #
##
#
#
.-. #
; ;' #
`;;' #
##
#
#
, : #
; ; #
.'`..:;._ #
##
ß#
#
#
#
#
##

1140
node_modules/figlet/fonts/Colossal.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

717
node_modules/figlet/fonts/Computer.flf generated vendored Normal file
View File

@@ -0,0 +1,717 @@
flf2a$ 7 6 20 0 2
computer.flf by Mike Rosulek <mjr@netins.net>, 7/12/95. Check out my
homepage at: http://www.netins.net/showcase/mikewrld/
$ $#
$ $#
$ $#
$ $#
$ $#
$ $#
$ $##
8$ #
88$#
88$#
88$#
$ #
88$#
$##
8 8$#
" "$#
$ #
$ #
$ #
$ #
$ ##
dP dP$ #
888888888$#
dP dP$ #
888888888$ #
dP dP$ #
$ #
$ ##
ee8ee$#
8 8$#
8eeee$#
88$#
e 88$#
8ee88$#
8$ ##
8"8 dP$#
8e8 dP$ #
dP$ #
dP$ #
dP 8"8$#
dP 8e8$#
$ ##
888888$#
8 ,$ #
88eee8e$#
88 8$ #
88 8$ #
88eee8$ #
$ ##
88$#
8$#
$ #
$ #
$ #
$ #
$ ##
8"$#
8$ #
8$ #
8$ #
8$ #
8e$#
$ ##
"8$#
8$#
8$#
8$#
8$#
e8$#
$ ##
\|/$#
/|\$#
$ #
$ #
$ #
$ #
$ ##
$ #
$ #
8$ #
ee8ee$#
8$ #
$ #
$ ##
$ #
$ #
$ #
$ #
$ #
88$#
8$##
$ #
$ #
$ #
eeee$#
$ #
$ #
$ ##
$ #
$ #
$ #
$ #
$ #
88$#
$ ##
/$#
/$ #
/$ #
/$ #
/$ #
/$ #
$ ##
eeeeee$#
8 8$#
8 8$#
8 8$#
8 8$#
8eeee8$#
$ ##
88$ #
8$ #
8$ #
8$ #
8888$#
8888$#
$ ##
eeee$#
8$#
8$#
eee8$#
8$ #
8eee$#
$ ##
eeee$ #
8$ #
8$ #
eee8$ #
88$#
eee88$#
$ ##
88$ #
88$ #
88 88$#
88ee88$#
88$#
88$#
$ ##
eeeee$#
8$ #
8eeee$#
8$#
8$#
eeee8$#
$ ##
eeee$ #
8 8$ #
8$ #
8eeee$#
8 8$#
8eee8$#
$ ##
eeeee$#
8 8$#
e'$#
e'$ #
8$ #
8$ #
$ ##
eeeee$ #
8 8$ #
8eee8$ #
88 88$#
88 88$#
88eee88$#
$ ##
eeeee$#
8 8$#
8eee8$#
88$#
88$#
88$#
$ ##
$ #
$ #
$ #
88$#
$ #
88$#
$ ##
$ #
$ #
$ #
88$#
$ #
88$#
8$##
e8"$#
e8"$ #
e8"$ #
"8e$ #
"8e$ #
"8e$#
$ ##
$ #
$ #
$ #
eeeee$#
eeeee$#
$ #
$ ##
"8e$ #
"8e$ #
"8e$#
e8"$#
e8"$ #
e8"$ #
$ ##
8""""8$#
8$#
eeeee8$#
88$ #
""$ #
88$ #
$ ##
__$ #
.' `.$ #
/ eeee \$ #
| 8ee8 |$#
\ 88 8 /$ #
`.__.'$ #
$ ##
8""""8$#
8 8$#
8eeee8$#
88 8$#
88 8$#
88 8$#
$ ##
8""""8$ #
8 8$ #
8eeee8ee$#
88 8$#
88 8$#
88eeeee8$#
$ ##
8""""8$#
8 "$#
8e$ #
88$ #
88 e$#
88eee8$#
$ ##
8""""8$#
8 8$#
8e 8$#
88 8$#
88 8$#
88eee8$#
$ ##
8""""$#
8$ #
8eeee$#
88$ #
88$ #
88eee$#
$ ##
8""""$#
8$ #
8eeee$#
88$ #
88$ #
88$ #
$ ##
8""""8$#
8 "$#
8e$ #
88 ee$#
88 8$#
88eee8$#
$ ##
8 8$#
8 8$#
8eee8$#
88 8$#
88 8$#
88 8$#
$ ##
8$ #
8$ #
8e$#
88$#
88$#
88$#
$ ##
8$ #
8$ #
8e$#
88$#
e 88$#
8eee88$#
$ ##
8 8$ #
8 8$ #
8eee8e$#
88 8$#
88 8$#
88 8$#
$ ##
8$ #
8$ #
8e$ #
88$ #
88$ #
88eee$#
$ ##
8""8""8$#
8 8 8$#
8e 8 8$#
88 8 8$#
88 8 8$#
88 8 8$#
$ ##
8"""8$#
8 8$#
8e 8$#
88 8$#
88 8$#
88 8$#
$ ##
8"""88$#
8 8$#
8 8$#
8 8$#
8 8$#
8eeee8$#
$ ##
8""""8$#
8 8$#
8eeee8$#
88$ #
88$ #
88$ #
$ ##
8""""8$#
8 8$#
8 8$#
8 8$#
8 ___8$#
8e8888$#
$ ##
8"""8$ #
8 8$ #
8eee8e$#
88 8$#
88 8$#
88 8$#
$ ##
8""""8$#
8 $#
8eeeee$#
88$#
e 88$#
8eee88$#
$ ##
""8""$#
8$ #
8e$ #
88$ #
88$ #
88$ #
$ ##
8 8$#
8 8$#
8e 8$#
88 8$#
88 8$#
88ee8$#
$ ##
88 8$#
88 8$#
88 e8$#
"8 8$ #
8 8$ #
8ee8$ #
$ ##
8 8 8$#
8 8 8$#
8e 8 8$#
88 8 8$#
88 8 8$#
88ee8ee8$#
$ ##
8 8$#
8 8$#
eeeeee$#
88 8$#
88 8$#
88 8$#
$ ##
8 8$#
8 8$#
8eeee8$#
88$ #
88$ #
88$ #
$ ##
8""""8$#
8$#
eeeee8$#
88$ #
88$ #
88eee8$#
$ ##
8"$#
8 $#
8 $#
8 $#
8 $#
8e$#
$ ##
\$ #
\$ #
\$ #
\$ #
\$ #
\$#
$ ##
"8$#
8$#
8$#
8$#
8$#
e8$#
$ ##
/\$#
$ #
$ #
$ #
$ #
$ #
$ ##
$ #
$ #
$ #
$ #
$ #
$ #
eeeee$##
\$ #
\$#
$ #
$ #
$ #
$ #
$ ##
$ #
eeeee$#
8 8$#
8eee8$#
88 8$#
88 8$#
$ ##
$ #
eeeee$ #
8 8$ #
8eee8e$#
88 8$#
88eee8$#
$ ##
$ #
eeee$#
8 8$#
8e$ #
88$ #
88e8$#
$ ##
$ #
eeeee$#
8 8$#
8e 8$#
88 8$#
88ee8$#
$ ##
$ #
eeee$#
8$ #
8eee$#
88$ #
88ee$#
$ ##
$ #
eeee$#
8$ #
8eee$#
88$ #
88$ #
$ ##
$ #
eeeee$#
8 8$#
8e$ #
88 "8$#
88ee8$#
$ ##
$ #
e e$#
8 8$#
8eee8$#
88 8$#
88 8$#
$ ##
$ #
e$ #
8$ #
8e$#
88$#
88$#
$ ##
$ #
e$ #
8$ #
8e$#
e 88$#
8ee88$#
$ ##
$ #
e e$ #
8 8$ #
8eee8e$#
88 8$#
88 8$#
$ ##
$ #
e$ #
8$ #
8e$ #
88$ #
88eee$#
$ ##
$ #
eeeeeee$#
8 8 8$#
8e 8 8$#
88 8 8$#
88 8 8$#
$ ##
$ #
eeeee$#
8 8$#
8e 8$#
88 8$#
88 8$#
$ ##
$ #
eeeee$#
8 88$#
8 8$#
8 8$#
8eee8$#
$ ##
$ #
eeeee$#
8 8$#
8eee8$#
88$ #
88$ #
$ ##
$ #
eeeee$#
8 8$#
8 8$#
8 __8$#
8e888$#
$ ##
$ #
eeeee$ #
8 8$ #
8eee8e$#
88 8$#
88 8$#
$ ##
$ #
eeeee$#
8 "$#
8eeee$#
88$#
8ee88$#
$ ##
$ #
eeeee$#
8$ #
8e$ #
88$ #
88$ #
$ ##
$ #
e e$#
8 8$#
8e 8$#
88 8$#
88ee8$#
$ ##
$ #
ee e$#
88 8$#
88 e8$#
8 8$ #
8ee8$ #
$ ##
$ #
e e e$#
8 8 8$#
8e 8 8$#
88 8 8$#
88ee8ee8$#
$ ##
$ #
e e$#
8 8$#
eeeeee$#
88 8$#
88 8$#
$ ##
$ #
e e$#
8 8$#
8eeee8$#
88$ #
88$ #
$ ##
$ #
eeeee$#
" 8$#
eeee8$#
88$ #
88ee8$#
$ ##
/"$#
|$ #
|$ #
<$ #
|$ #
|$ #
\_$##
8$#
8$#
8$#
8$#
8$#
8$#
$ ##
"\$ #
|$ #
|$ #
>$#
|$ #
|$ #
_/$ ##
/\/$#
$ #
$ #
$ #
$ #
$ #
$ ##
"" ""$#
eeeee$#
8 8$#
8eee8$#
88 8$#
88 8$#
$ ##
"" ""$#
eeeee$#
8 88$#
8 8$#
8 8$#
8eee8$#
$ ##
"" ""$#
e e$#
8 8$#
8e 8$#
88 8$#
88ee8$#
$ ##
"" ""$#
eeeee$#
8 8$#
8eee8$#
88 8$#
88 8$#
$ ##
"" ""$#
eeeee$#
8 88$#
8 8$#
8 8$#
8eee8$#
$ ##
"" ""$#
e e$#
8 8$#
8e 8$#
88 8$#
88ee8$#
$ ##
$#
$#
$#
$#
$#
$#
$##

411
node_modules/figlet/fonts/Contessa.flf generated vendored Normal file
View File

@@ -0,0 +1,411 @@
flf2a$ 4 3 20 -1 2
Contessa by Christopher Joseph Pirillo (pirillc2770@cobra.uni.edu)
$$@
$$@
$$@
$$@@
| @
| @
* @
@@
* * @
` ` @
@
@@
_|_|_ @
_|_|_ @
| | @
@@
_;_. @
(_|_ @
._|_) @
` @@
* / @
/ @
/ * @
@@
_;_@
(_|_@
(_|_@
` @@
*@
'@
@
@@
/ @
( @
\ @
@@
\ @
)@
/ @
@@
.|, @
-*- @
'|` @
@@
, @
-+- @
' @
@@
@
@
* @
' @@
@
___ @
@
@@
@
@
* @
@@
/ @
/ @
/ @
@@
_, @
|.| @
|_| @
@@
, @
/| @
.|. @
@@
_, @
'_) @
/_. @
@@
_, @
'_) @
._) @
@@
. , @
|_| @
| @
@@
._, @
|_ @
._) @
@@
._, @
(_ @
(_) @
@@
__, @
/ @
/ @
@@
_, @
(_) @
(_) @
@@
_, @
(_) @
| @
@@
@
* @
* @
@@
@
* @
* @
' @@
/ @
< @
\ @
@@
@
=== @
=== @
@@
\ @
>@
/ @
@@
_ @
' )@
; @
@@
__ @
/(]| @
\__/ @
@@
.__.@
[__]@
| |@
@@
.__ @
[__)@
[__)@
@@
__ @
/ `@
\__.@
@@
.__ @
| \@
|__/@
@@
.___@
[__ @
[___@
@@
.___@
[__ @
| @
@@
.__ @
[ __@
[_./@
@@
. .@
|__|@
| |@
@@
._.@
| @
_|_@
@@
.@
|@
\__|@
@@
. .@
|_/ @
| \@
@@
. @
| @
|___@
@@
. .@
|\/|@
| |@
@@
. .@
|\ |@
| \|@
@@
.__.@
| |@
|__|@
@@
.__ @
[__)@
| @
@@
.__.@
| |@
|__\@
@@
.__ @
[__)@
| \@
@@
__.@
(__ @
.__)@
@@
.___.@
| @
| @
@@
. .@
| |@
|__|@
@@
. .@
\ /@
\/ @
@@
. .@
| |@
|/\|@
@@
\ /@
>< @
/ \@
@@
. ,@
\./ @
| @
@@
.___.@
_/ @
./__.@
@@
[~ @
[ @
[_ @
@@
\ @
\ @
\ @
@@
~]@
]@
_]@
@@
/\ @
@
@
@@
@
@
____@
@@
* @
` @
@
@@
@
_.@
(_]@
@@
. @
|_ @
[_)@
@@
@
_.@
(_.@
@@
.@
_|@
(_]@
@@
@
_ @
(/,@
@@
._@
|,@
| @
@@
@
_ @
(_]@
._|@@
. @
|_ @
[ )@
@@
@
*@
|@
@@
@
*@
|@
._|@@
. @
;_/@
| \@
@@
.@
|@
|@
@@
@
._ _ @
[ | )@
@@
@
._ @
[ )@
@@
@
_ @
(_)@
@@
@
._ @
[_)@
| @@
@
_.@
(_]@
|@@
@
._.@
[ @
@@
@
__@
_) @
@@
, @
-+-@
| @
@@
@
. .@
(_|@
@@
@
. ,@
\/ @
@@
@
. ,@
\/\/ @
@@
@
\./@
/'\@
@@
@
.@
\_|@
._|@@
@
__.@
/_@
@@
/ @
> @
\ @
@@
| @
| @
| @
@@
\ @
< @
/ @
@@
/\ @
\/ @
@
@@
oo @
|__|@
| |@
@@
oo @
/``\@
\__/@
@@
oo @
: ;@
|__|@
@@
@
oo @
(_|,@
@@
oo @
__ @
(__)@
@@
oo @
. ,@
|__|@
@@
__ @
| )@
| >@
@@

615
node_modules/figlet/fonts/Contrast.flf generated vendored Normal file
View File

@@ -0,0 +1,615 @@
flf2a$ 6 5 20 -1 2
Contrast Font by Dennis Monk 7/94
Original font, I think. Maybe inspired by one of Scarecrow's .sigs.
........@
........@
........@
........@
........@
........@@
...%%...@
...%%...@
...%%...@
........@
...%%...@
........@@
.%%..%%.@
.%%..%%.@
..%..%..@
........@
........@
........@@
..%..%..@
.%%%%%%.@
..%..%..@
.%%%%%%.@
..%..%..@
........@@
..%%%%%.@
.%%.%...@
..%%%%..@
...%.%%.@
.%%%%%..@
........@@
.%%..%%.@
.%..%%..@
...%%...@
..%%..%.@
.%%..%%.@
........@@
..%%%%%..@
.%%...%%.@
..%%.%%..@
.%%.%%.%.@
..%%%%%..@
.........@@
...%%...@
...%%...@
....%...@
........@
........@
........@@
....%%%.@
..%%....@
.%......@
..%%....@
....%%%.@
........@@
.%%%....@
....%%..@
......%.@
....%%..@
.%%%....@
........@@
.%..%..%.@
..%.%.%..@
.%%%%%%%.@
..%.%.%..@
.%..%..%.@
.........@@
...%%...@
...%%...@
.%%%%%%.@
...%%...@
...%%...@
........@@
........@
........@
...%%...@
...%%...@
....%...@
........@@
........@
........@
.%%%%%%.@
........@
........@
........@@
........@
........@
........@
...%%...@
...%%...@
........@@
.....%%.@
....%%..@
...%%...@
..%%....@
.%%.....@
........@@
..%%%%..@
.%%..%%.@
.%%%%%%.@
.%%..%%.@
..%%%%..@
........@@
...%%...@
..%%%...@
...%%...@
...%%...@
.%%%%%%.@
........@@
..%%%%..@
.....%%.@
..%%%%..@
.%%.....@
.%%%%%%.@
........@@
.%%%%%%.@
....%%..@
...%%%..@
.....%%.@
.%%%%%..@
........@@
.....%%.@
.%%..%%.@
.%%%%%%.@
.....%%.@
.....%%.@
........@@
.%%%%%%.@
.%%.....@
..%%%%..@
.....%%.@
.%%%%%..@
........@@
...%%...@
..%%....@
.%%%%%..@
.%%..%%.@
..%%%%..@
........@@
.%%%%%%.@
....%%..@
...%%...@
..%%....@
.%%.....@
........@@
..%%%%..@
.%%..%%.@
..%%%%..@
.%%..%%.@
..%%%%..@
........@@
..%%%%..@
.%%..%%.@
..%%%%..@
...%%...@
..%%....@
........@@
........@
...%%...@
........@
...%%...@
........@
........@@
........@
...%%...@
........@
...%%...@
....%...@
........@@
.....%%.@
...%%...@
.%%.....@
...%%...@
.....%%.@
........@@
........@
.%%%%%%.@
........@
.%%%%%%.@
........@
........@@
.%%.....@
...%%...@
.....%%.@
...%%...@
.%%.....@
........@@
..%%%%..@
.%%..%%.@
....%%..@
...%%...@
...%%...@
........@@
..%%%%..@
.%.%%.%.@
.%.%%.%.@
.%..%.%.@
..%%%%..@
........@@
..%%%%..@
.%%..%%.@
.%%%%%%.@
.%%..%%.@
.%%..%%.@
........@@
.%%%%%..@
.%%..%%.@
.%%%%%..@
.%%..%%.@
.%%%%%..@
........@@
..%%%%..@
.%%..%%.@
.%%.....@
.%%..%%.@
..%%%%..@
........@@
.%%%%%..@
.%%..%%.@
.%%..%%.@
.%%..%%.@
.%%%%%..@
........@@
.%%%%%%.@
.%%.....@
.%%%%...@
.%%.....@
.%%%%%%.@
........@@
.%%%%%%.@
.%%.....@
.%%%%...@
.%%.....@
.%%.....@
........@@
..%%%%..@
.%%.....@
.%%.%%%.@
.%%..%%.@
..%%%%..@
........@@
.%%..%%.@
.%%..%%.@
.%%%%%%.@
.%%..%%.@
.%%..%%.@
........@@
.%%%%%%.@
...%%...@
...%%...@
...%%...@
.%%%%%%.@
........@@
.%%%%%%.@
.....%%.@
.....%%.@
.%%..%%.@
..%%%%..@
........@@
.%%..%%.@
.%%.%%..@
.%%%%...@
.%%.%%..@
.%%..%%.@
........@@
.%%.....@
.%%.....@
.%%.....@
.%%.....@
.%%%%%%.@
........@@
.%%...%%.@
.%%%.%%%.@
.%%.%.%%.@
.%%...%%.@
.%%...%%.@
.........@@
.%%..%%.@
.%%%.%%.@
.%%.%%%.@
.%%..%%.@
.%%..%%.@
........@@
..%%%%..@
.%%..%%.@
.%%..%%.@
.%%..%%.@
..%%%%..@
........@@
.%%%%%..@
.%%..%%.@
.%%%%%..@
.%%.....@
.%%.....@
........@@
..%%%%..@
.%%..%%.@
.%%.%%%.@
.%%..%%.@
..%%%%%.@
........@@
.%%%%%..@
.%%..%%.@
.%%%%%..@
.%%..%%.@
.%%..%%.@
........@@
..%%%%..@
.%%.....@
..%%%%..@
.....%%.@
..%%%%..@
........@@
.%%%%%%.@
...%%...@
...%%...@
...%%...@
...%%...@
........@@
.%%..%%.@
.%%..%%.@
.%%..%%.@
.%%..%%.@
..%%%%..@
........@@
.%%..%%.@
.%%..%%.@
.%%..%%.@
..%%%%..@
...%%...@
........@@
.%%...%%.@
.%%...%%.@
.%%.%.%%.@
.%%%%%%%.@
..%%.%%..@
.........@@
.%%..%%.@
..%%%%..@
...%%...@
..%%%%..@
.%%..%%.@
........@@
.%%..%%.@
..%%%%..@
...%%...@
...%%...@
...%%...@
........@@
.%%%%%%.@
....%%..@
...%%...@
..%%....@
.%%%%%%.@
........@@
.%%%%%%.@
.%%.....@
.%%.....@
.%%.....@
.%%%%%%.@
........@@
.%%.....@
..%%....@
...%%...@
....%%..@
.....%%.@
........@@
.%%%%%%.@
.....%%.@
.....%%.@
.....%%.@
.%%%%%%.@
........@@
...%%...@
..%%%%..@
.%%..%%.@
........@
........@
........@@
........@
........@
........@
........@
.%%%%%%.@
........@@
...%%...@
...%%...@
...%....@
........@
........@
........@@
..%%%%..@
.%%..%%.@
.%%%%%%.@
.%%..%%.@
.%%..%%.@
........@@
.%%%%%..@
.%%..%%.@
.%%%%%..@
.%%..%%.@
.%%%%%..@
........@@
..%%%%..@
.%%..%%.@
.%%.....@
.%%..%%.@
..%%%%..@
........@@
.%%%%%..@
.%%..%%.@
.%%..%%.@
.%%..%%.@
.%%%%%..@
........@@
.%%%%%%.@
.%%.....@
.%%%%...@
.%%.....@
.%%%%%%.@
........@@
.%%%%%%.@
.%%.....@
.%%%%...@
.%%.....@
.%%.....@
........@@
..%%%%..@
.%%.....@
.%%.%%%.@
.%%..%%.@
..%%%%..@
........@@
.%%..%%.@
.%%..%%.@
.%%%%%%.@
.%%..%%.@
.%%..%%.@
........@@
.%%%%%%.@
...%%...@
...%%...@
...%%...@
.%%%%%%.@
........@@
.%%%%%%.@
.....%%.@
.....%%.@
.%%..%%.@
..%%%%..@
........@@
.%%..%%.@
.%%.%%..@
.%%%%...@
.%%.%%..@
.%%..%%.@
........@@
.%%.....@
.%%.....@
.%%.....@
.%%.....@
.%%%%%%.@
........@@
.%%...%%.@
.%%%.%%%.@
.%%.%.%%.@
.%%...%%.@
.%%...%%.@
.........@@
.%%..%%.@
.%%%.%%.@
.%%.%%%.@
.%%..%%.@
.%%..%%.@
........@@
..%%%%..@
.%%..%%.@
.%%..%%.@
.%%..%%.@
..%%%%..@
........@@
.%%%%%..@
.%%..%%.@
.%%%%%..@
.%%.....@
.%%.....@
........@@
..%%%%..@
.%%..%%.@
.%%.%%%.@
.%%..%%.@
..%%%%%.@
........@@
.%%%%%..@
.%%..%%.@
.%%%%%..@
.%%..%%.@
.%%..%%.@
........@@
..%%%%..@
.%%.....@
..%%%%..@
.....%%.@
..%%%%..@
........@@
.%%%%%%.@
...%%...@
...%%...@
...%%...@
...%%...@
........@@
.%%..%%.@
.%%..%%.@
.%%..%%.@
.%%..%%.@
..%%%%..@
........@@
.%%..%%.@
.%%..%%.@
.%%..%%.@
..%%%%..@
...%%...@
........@@
.%%...%%.@
.%%...%%.@
.%%.%.%%.@
.%%%%%%%.@
..%%.%%..@
.........@@
.%%..%%.@
..%%%%..@
...%%...@
..%%%%..@
.%%..%%.@
........@@
.%%..%%.@
..%%%%..@
...%%...@
...%%...@
...%%...@
........@@
.%%%%%%.@
....%%..@
...%%...@
..%%....@
.%%%%%%.@
........@@
...%%%%.@
...%%...@
.%%%....@
...%%...@
...%%%%.@
........@@
...%%...@
...%%...@
...%%...@
...%%...@
...%%...@
...%%...@@
.%%%%...@
...%%...@
....%%%.@
...%%...@
.%%%%...@
........@@
..%%%.%.@
.%.%%%..@
........@
........@
........@
........@@
.%%..%%.@
........@
..%%%%%.@
.%%..%%.@
..%%%%%.@
........@@
.%%..%%.@
........@
..%%%%..@
.%%..%%.@
..%%%%..@
........@@
.%%..%%.@
........@
.%%..%%.@
.%%..%%.@
..%%%%..@
........@@
.%%..%%.@
........@
..%%%%%.@
.%%..%%.@
..%%%%%.@
........@@
.%%..%%.@
........@
..%%%%..@
.%%..%%.@
..%%%%..@
........@@
.%%..%%.@
........@
.%%..%%.@
.%%..%%.@
..%%%%..@
........@@
..%%%%%..@
.%%...%%.@
.%%.%%%..@
.%%...%%.@
.%%.%%%..@
.%%......@@

616
node_modules/figlet/fonts/Cosmike.flf generated vendored Normal file
View File

@@ -0,0 +1,616 @@
flf2a% 6 6 21 0 3
cosmic.flf by Mike Rosulek <mjr@netins.net>, 7/11/95. Check out my
homepage at: http://www.netins.net/showcase/mikewrld/
---- Modified and corrected by Michel Eftimakis (Michel.Eftimakis@vlsi.com) ----
%%%%#
%%%%#
%%%%#
%%%%#
%%%%#
%%%%##
.:#
;;;#
'[[#
$$#
""#
MM##
%:: ::%#
%"; ;"%#
#
#
#
##
:: :: #
__,;'_,;'_#
''[[''[[''#
,$" ,$" #
o88oo88oo #
,M" ,M" ##
.: #
,;;;. #
[[,,_` #
`"""Yo#
Yo_,d"#
'M' ##
.. .:`#
; ; ,;` #
^^ ,[` #
cP ,, #
,8" 8 8#
,dP "" ##
:\ #
.;;' #
([__ #
c$"" #
"Yo,oP#
"M,##
::#
,'#
#
#
#
##
.:#
,;' #
n[ #
Y$ #
8o,#
"M##
:. #
';,#
[n#
$Y#
,o8 #
M" ##
#
\|/ #
/|\ #
#
#
##
#
#
[ #
%$$$$$%#
8 #
##
#
#
#
#
d8b#
,M"##
#
#
#
%cccc%#
#
##
#
#
#
#
d8b#
YMP##
/:`#
/;` #
n[' #
c$" #
o8" #
mM" ##
#
,;;, #
,[' [n #
$$ $$#
Y8, ,8"#
"YmmP ##
:.#
;;#
[[#
$$#
88#
MM##
.:::. #
,;'``;. #
'' ,[['#
.c$$P' #
d88 _,oo,#
MMMUP*"^^##
.::. #
;'`';;, #
.n[[ #
``"$$$.#
,,o888"#
YMMP" ##
.:: #
,;';; #
,[' [[ #
$P__$$c#
`"""88"#
MM ##
::::::::#
`;;``'';#
[[,_ #
`""*Ycc#
__,od8"#
MMP" ##
.:. #
,;' #
,[[.od8b #
$$$" "$$#
Y8b,,d8P#
"YMP" ##
...:::::#
'''``;;'#
.[' #
,$$' #
888 #
MMM ##
.::::. #
`;. ,;'#
[nn[, #
$" $c#
Yb,_,8P#
"YMP" ##
.,,. #
,;;'`';,#
[[, _,[[#
Y$$P"$$#
,,_,d8"#
"MP" ##
#
,;,#
'['#
#
d8b#
YMP##
#
,;,#
'['#
#
d8b#
,M"##
#
,,#
,[['#
c$ #
"8bo,#
"MP##
#
#
%,,,,,%#
% """"%#
%oooo%#
%""""%##
#
,, #
'[[, #
$c#
,od8"#
YM" ##
.-::::-.#
;;'```;;;#
,n[[' #
d$P" #
"" #
MM ##
.:::''''''':::. #
;;' ,;;;;;;,.; `;.#
:[[ [. .['[[ [[#
$$, 'Y$$$P'Y$$P' #
'Y8o,_ __,oo #
`"YUMMMMMMUY" ##
:::. #
;;`;; #
,[[ '[[, #
c$$$cc$$$c #
888 888,#
YMM ""` ##
:::::::. #
;;;'';;' #
[[[__[[\.#
$$""""Y$$#
_88o,,od8P#
""YUMMMP" ##
.,-::::: #
,;;;'````' #
[[[ #
$$$ #
`88bo,__,o, #
"YUMMMMMP"##
:::::::-. #
;;, `';,#
`[[ [[#
$$, $$#
888_,o8P'#
MMMMP"` ##
.,:::::: #
;;;;'''' #
[[cccc #
$$"""" #
888oo,__ #
""""YUMMM##
.-:::::'#
;;;'''' #
[[[,,== #
`$$$"`` #
888 #
"MM, ##
.,-:::::/ #
,;;-'````' #
[[[ [[[[[[/#
"$$c. "$$ #
`Y8bo,,,o88o#
`'YMUP"YMM##
:: .: #
,;; ;;, #
,[[[,,,[[[ #
"$$$"""$$$ #
888 "88o#
MMM YMM##
:::#
;;;#
[[[#
$$$#
888#
MMM##
....::::::#
;;;;;;;;;````#
''` `[[. #
,,, `$$ #
888boood88 #
"MMMMMMMM" ##
::: . #
;;; .;;,.#
[[[[[/' #
_$$$$, #
"888"88o, #
MMM "MMP"##
::: #
;;; #
[[[ #
$$' #
o88oo,.__#
""""YUMMM##
. : #
;;,. ;;; #
[[[[, ,[[[[, #
$$$$$$$$"$$$ #
888 Y88" 888o#
MMM M' "MMM##
:::. :::.#
`;;;;, `;;;#
[[[[[. '[[#
$$$ "Y$c$$#
888 Y88#
MMM YM##
... #
.;;;;;;;. #
,[[ \[[,#
$$$, $$$#
"888,_ _,88P#
"YMMMMMP" ##
::::::::::. #
`;;;```.;;;#
`]]nnn]]' #
$$$"" #
888o #
YMMMb ##
.::::::. #
,;;'```';;, #
[[[ [[[\#
"$$c cc$$$"#
"*8bo,Y88b,#
"*YP" "M"##
:::::::.. #
;;;;``;;;; #
[[[,/[[[' #
$$$$$$c #
888b "88bo,#
MMMM "W" ##
.::::::. #
;;;` ` #
'[==/[[[[,#
''' $#
88b dP#
"YMmMY" ##
::::::::::::#
;;;;;;;;''''#
[[ #
$$ #
88, #
MMM ##
... :::#
;; ;;;#
[[' [[[#
$$ $$$#
88 .d888#
"YmmMMMM""##
::: .::.#
';;, ,;;;' #
\[[ .[[/ #
Y$c.$$" #
Y88P #
MP ##
.:: . .:::#
';;, ;; ;;;' #
'[[, [[, [[' #
Y$c$$$c$P #
"88"888 #
"M "M" ##
.,:: .:#
`;;;, .,;; #
'[[,,[[' #
Y$$$P #
oP"``"Yo, #
,m" "Mm,##
.-:. ::-.#
';;. ;;;;'#
'[[,[[[' #
c$$" #
,8P"` #
mM" ##
:::::::::#
'`````;;;#
.n[['#
,$$P" #
,888bo,_ #
`""*UMM ##
::::#
;;' #
[[ #
$$ #
88, #
"YMM##
`:\ #
`;\ #
'[n #
"$c #
"8o #
"Mm##
::::#
';;#
[[#
$$#
,88#
MMP"##
.:. #
;' `;#
#
#
#
##
#
#
#
#
#
mmmmmmm##
`:. #
`;,#
#
#
#
##
:::. #
;;`;; #
,[[ '[[, #
c$$$cc$$$c #
888 888,#
YMM ""` ##
:::::::. #
;;;'';;' #
[[[__[[\.#
$$""""Y$$#
_88o,,od8P#
""YUMMMP" ##
.,-::::: #
,;;;'````' #
[[[ #
$$$ #
`88bo,__,o, #
"YUMMMMMP"##
:::::::-. #
;;, `';,#
`[[ [[#
$$, $$#
888_,o8P'#
MMMMP"` ##
.,:::::: #
;;;;'''' #
[[cccc #
$$"""" #
888oo,__ #
""""YUMMM##
.-:::::'#
;;;'''' #
[[[,,== #
`$$$"`` #
888 #
"MM, ##
.,-:::::/ #
,;;-'````' #
[[[ [[[[[[/#
"$$c. "$$ #
`Y8bo,,,o88o#
`'YMUP"YMM##
:: .: #
,;; ;;, #
,[[[,,,[[[ #
"$$$"""$$$ #
888 "88o#
MMM YMM##
:::#
;;;#
[[[#
$$$#
888#
MMM##
....::::::#
;;;;;;;;;````#
''` `[[. #
,,, `$$ #
888boood88 #
"MMMMMMMM" ##
::: . #
;;; .;;,.#
[[[[[/' #
_$$$$, #
"888"88o, #
MMM "MMP"##
::: #
;;; #
[[[ #
$$' #
o88oo,.__#
""""YUMMM##
. : #
;;,. ;;; #
[[[[, ,[[[[, #
$$$$$$$$"$$$ #
888 Y88" 888o#
MMM M' "MMM##
:::. :::.#
`;;;;, `;;;#
[[[[[. '[[#
$$$ "Y$c$$#
888 Y88#
MMM YM##
... #
.;;;;;;;. #
,[[ \[[,#
$$$, $$$#
"888,_ _,88P#
"YMMMMMP" ##
::::::::::. #
`;;;```.;;;#
`]]nnn]]' #
$$$"" #
888o #
YMMMb ##
.::::::. #
,;;'```';;, #
[[[ [[[\#
"$$c cc$$$"#
"*8bo,Y88b,#
"*YP" "M"##
:::::::.. #
;;;;``;;;; #
[[[,/[[[' #
$$$$$$c #
888b "88bo,#
MMMM "W" ##
.::::::. #
;;;` ` #
'[==/[[[[,#
''' $#
88b dP#
"YMmMY" ##
::::::::::::#
;;;;;;;;''''#
[[ #
$$ #
88, #
MMM ##
... :::#
;; ;;;#
[[' [[[#
$$ $$$#
88 .d888#
"YmmMMMM""##
::: .::.#
';;, ,;;;' #
\[[ .[[/ #
Y$c.$$" #
Y88P #
MP ##
.:: . .:::#
';;, ;; ;;;' #
'[[, [[, [[' #
Y$c$$$c$P #
"88"888 #
"M "M" ##
.,:: .:#
`;;;, .,;; #
'[[,,[[' #
Y$$$P #
oP"``"Yo, #
,m" "Mm,##
.-:. ::-.#
';;. ;;;;'#
'[[,[[[' #
c$$" #
,8P"` #
mM" ##
:::::::::#
'`````;;;#
.n[['#
,$$P" #
,888bo,_ #
`""*UMM ##
.:#
;'#
[#
$"#
8 #
"M##
`:#
,;#
[[#
$$#
88#
MM##
:.#
';#
[ #
"$#
8#
M"##
':.:':.#
`;' `;#
#
#
#
##
:: ::. :: #
;;`;; #
,[[ '[[, #
c$$$cc$$$c #
888 888,#
YMM ""` ##
:: ... :: #
.;;;;;;;. #
,[[ \[[,#
$$$, $$$#
"888,_ _,88P#
"YMMMMMP" ##
..:: :: ::#
;; ;;;#
[[' [[[#
$$ $$$#
88 .d888#
"YmmMMMM""##
:: ::. :: #
;;`;; #
,[[ '[[, #
c$$$cc$$$c #
888 888,#
YMM ""` ##
:: ... :: #
.;;;;;;;. #
,[[ \[[,#
$$$, $$$#
"888,_ _,88P#
"YMMMMMP" ##
..:: :: ::#
;; ;;;#
[[' [[[#
$$ $$$#
88 .d888#
"YmmMMMM""##
:::::::. #
;;;'';;' #
[[[__[[\.#
$$""""Y$$#
88o,,od8P#
MM`YMMP" ##

922
node_modules/figlet/fonts/Cosmike2.flf generated vendored Normal file
View File

@@ -0,0 +1,922 @@
flf2aQ 9 6 21 0 3 0 64 0
Font Author: half Cosmike, half Darth ObiKy
FIGFont created with: http://patorjk.com/figfont-editor
QQQ@
QQQ@
QQQ@
QQQ@
QQQ@
QQQ@
QQQ@
QQQ@
QQQ@@
.:@
;;;@
'[[@
$$@
""@
MM@
@
@
@@
Q:: ::Q@
Q"; ;"Q@
@
@
@
@
@
@
@@
@
:: :: @
__,;'_,;'_@
''[[''[[''@
,$" ,$" @
o88oo88oo @
,M" ,M" @
@
@@
@
.: @
,;;;. @
[[,,_` @
`"""Yo@
Yo_,d"@
'M' @
@
@@
@
.. .:`@
; ; ,;` @
^^ ,[` @
cP ,, @
,8" 8 8@
,dP "" @
@
@@
@
:\ @
.;;' @
([__ @
c$"" @
"Yo,oP@
"M,@
@
@@
::@
,'@
@
@
@
@
@
@
@@
.:@
,;' @
n[ @
Y$ @
8o,@
"M@
@
@
@@
:. @
';,@
[n@
$Y@
,o8 @
M" @
@
@
@@
@
\|/@
/|\@
@
@
@
@
@
@@
@
@
[ @
Q$$$$$Q@
8 @
@
@
@
@@
@
@
@
@
@
d8b@
,M"@
@
@@
@
@
@
QccccQ@
@
@
@
@
@@
@
@
@
@
d8b@
YMP@
@
@
@@
/:`@
/;` @
n[' @
c$" @
o8" @
mM" @
@
@
@@
@
,;;, @
,[' [n @
$$ $$@
Y8, ,8"@
"YmmP @
@
@
@@
:. @
.;; @
[[ @
$$ @
88 @
MMMM@
@
@
@@
.:::. @
,;'``;. @
'' ,[['@
.c$$P' @
d88 _,oo,@
MMMUP*"^^@
@
@
@@
.::. @
;'`';;, @
.n[[ @
``"$$$.@
,,o888"@
YMMP" @
@
@
@@
.:: @
,;';; @
,[' [[ @
$P__$$c@
`"""88"@
MM @
@
@
@@
::::::::@
`;;``'';@
[[,_ @
`""*Ycc@
__,od8"@
MMP" @
@
@
@@
.:. @
,;' @
,[[.od8b @
$$$" "$$@
Y8b,,d8P@
"YMP" @
@
@
@@
...:::::@
'''``;;'@
.[' @
,$$' @
888 @
MMM @
@
@
@@
.::::. @
`;. ,;'@
[nn[, @
$" $c@
Yb,_,8P@
"YMP" @
@
@
@@
.,,. @
,;;'`';,@
[[, _,[[@
Y$$P"$$@
,,_,d8"@
"MP" @
@
@
@@
@
,;,@
'['@
@
d8b@
YMP@
@
@
@@
@
,;,@
'['@
@
d8b@
,M"@
@
@
@@
@
,,@
,[['@
c$ @
"8bo,@
"MP@
@
@
@@
@
Q,,,,,Q@
Q""""Q@
QooooQ@
Q""""Q@
@
@
@
@@
@
,, @
'[[, @
$c@
,od8"@
YM" @
@
@
@@
.-::::-.@
;;'```;;;@
,n[[' @
d$P" @
"" @
MM @
@
@
@@
.:::''''''':::. @
;;' ,;;;;;;,.; `;.@
:[[ [. .['[[ [[@
$$, 'Y$$$P'Y$$P' @
'Y8o,_ __,oo @
`"YUMMMMMMUY" @
@
@
@@
:::. @
;;`;; @
,[[ '[[, @
c$$$cc$$$c @
888 888 @
YMM \"\"`@
@
@
@@
:::::::. @
;;;'';;' @
[[[__[[\.@
$$""""Y$$@
_88o,,od8P@
""YUMMMP" @
@
@
@@
.,~::::: @
,;;;'````' @
[[[ @
$$$ @
`88bo,__,o, @
"YUMMMMMP"@
@
@
@@
:::::::-. @
;;, `';,@
`[[ [[@
$$, $$@
888_,o8P'@
MMMMP"` @
@
@
@@
.,:::::: @
;;;;'''' @
[[cccc @
$$"""" @
888oo,__ @
""""YUMMM@
@
@
@@
.-:::::'@
;;;'''' @
[[[,,== @
`$$$"`` @
888 @
"MM, @
@
@
@@
.,-:::::/ @
,;;-'````' @
[[[ [[[[[[/@
"$$c. "$$ @
`Y8bo,,,o88o@
`'YMUP"YMM@
@
@
@@
:: .: @
,;; ;;, @
,[[[,,,[[[ @
"$$$"""$$$ @
888 "88o@
MMM YMM@
@
@
@@
:::@
;;;@
[[[@
$$$@
888@
MMM@
@
@
@@
....::::::@
;;;;;;;;;````@
''` `[[. @
,,, `$$ @
888boood88 @
"MMMMMMMM" @
@
@
@@
::: . @
;;; .;;,.@
[[[[[/' @
_$$$$, @
"888"88o, @
MMM "MMP"@
@
@
@@
::: @
;;; @
[[[ @
$$' @
o88oo,.__@
""""YUMMM@
@
@
@@
. : @
;;,. ;;; @
[[[[, ,[[[[, @
$$$$$$$$"$$$ @
888 Y88" 888o@
MMM M' "MMM@
@
@
@@
:::. :::.@
`;;;;, `;;;@
[[[[[. '[[@
$$$ "Y$c$$@
888 Y88@
MMM YM@
@
@
@@
... @
.;;;;;;;. @
,[[ \[[,@
$$$, $$$@
"888,_ _,88P@
"YMMMMMP" @
@
@
@@
::::::::::. @
`;;;```.;;;@
`]]nnn]]' @
$$$"" @
888o @
YMMMb @
@
@
@@
.::::::. @
,;;'```';;, @
[[[ [[[\@
"$$c cc$$$"@
"*8bo,Y88b,@
"*YP" "M"@
@
@
@@
:::::::.. @
;;;;``;;;; @
[[[,/[[[' @
$$$$$$c @
888b "88bo,@
MMMM "W" @
@
@
@@
.::::::. @
;;;` ` @
'[==/[[[[,@
''' $@
88b dP@
"YMmMY" @
@
@
@@
::::::::::::@
;;;;;;;;''''@
[[ @
$$ @
88, @
MMM @
@
@
@@
... :::@
;; ;;;@
[[' [[[@
$$ $$$@
88 .d888@
"YmmMMMM""@
@
@
@@
::: .::.@
';;, ,;;;' @
\[[ .[[/ @
Y$c.$$" @
Y88P @
MP @
@
@
@@
.:: . .:::@
';;, ;; ;;;' @
'[[, [[, [[' @
Y$c$$$c$P @
"88"888 @
"M "M" @
@
@
@@
.,:: .:@
`;;;, .,;; @
'[[,,[[' @
Y$$$P @
oP"``"Yo, @
,m" "Mm,@
@
@
@@
.-:. ::-.@
';;. ;;;;'@
'[[,[[[' @
c$$" @
,8P"` @
mM" @
@
@
@@
:::::::::@
'`````;;;@
.n[['@
,$$P" @
,888bo,_ @
`""*UMM @
@
@
@@
::::@
;;' @
[[ @
$$ @
88, @
"YMM@
@
@
@@
`:\ @
`;\ @
'[n @
"$c @
"8o @
"Mm@
@
@
@@
::::@
';;@
[[@
$$@
,88@
MMP"@
@
@
@@
.:. @
;' `;@
@
@
@
@
@
@
@@
@
@
@
@
@
@
mmmmmmm@
@
@@
`:. @
`;,@
@
@
@
@
@
@
@@
@
@
,ccc, @
$$$cc$$$ @
888 888@
"YUM" MP@
@
@
@@
:: @
;;; @
[[[[ccc, @
$$""""Y$$@
88o,,od8P@
"YUMMMP" @
@
@
@@
@
@
,cc[[[cc. @
$$$ @
88b ,o,@
"YUMMMMP"@
@
@
@@
:: @
;;;@
,c[[[cc,@
$$""""Y$$@
88o,,od8P@
"YUMMMP" @
@
@
@@
@
@
,cc[[[cc. @
$$$___--' @
88b ,o,@
"YUMMMMP"@
@
@
@@
.::::.@
;; `'@
=[[,,==@
`$$$"``@
888 @
"MM, @
@
@
@@
@
@
,ccc, @
$$$cc$$$ @
888 888@
"YUM" MP@
MMM@
,c. ###@
\M###MMU @@
:: @
;;; @
[[[[cc,,. @
$$$"""$$$ @
888 "88o@
MMM YMM@
@
@
@@
@
;;,@
@
$$$@
888@
MMM@
@
@
@@
@
;;,@
@
`[.@
`[[@
`$$@
,,, /88@
888boood88@
"MMMMMMMM"@@
::: @
;;; .;;, @
[[[[[/' @
_$$$$, @
"888"88o, @
MMM "MMP"@
@
@
@@
`::. @
;;; @
[[[ @
$$' @
\8o @
MM;@
@
@
@@
@
@
[ccc, ,cccc, @
$$$$$$$$"$$$ @
888 Y88" 888o@
MMM M' "MMM@
@
@
@@
@
@
[ccccc, @
$$$$"$$$ @
888 Y88o@
MMM "MMM@
@
@
@@
@
@
,ccc, @
$$$"c$$$@
888 88@
"YUMMP @
@
@
@@
@
@
@
,$$$$$. @
88""""88@
MMoooMM'@
MMMP @
### @
"##b @@
@
@
,ccc, @
$$$cc$$$ @
888 888 @
"YUM" MP @
MMM @
### ,c.@
\M###MMP @@
@
@
=,,[[==@
`$$$"``@
888 @
"MM, @
@
@
@@
@
@
,cc[[[cc. @
$$$____ @
. 88,@
"YUMMMMP"@
@
@
@@
`:: @
;; @
=[[[[[[.@
$$ @
88, @
MMM @
@
@
@@
@
@
,c , @
$$' $$$ @
888 888@
"YUM" MP@
@
@
@@
@
@
\[[ .[[/@
Y$c $$" @
Y88P @
MP @
@
@
@@
@
@
'[[, [[, [['@
Y$ $$$ $P @
"88"888 @
"M "M" @
@
@
@@
@
@
'[[ ,c' @
Y$$$P @
oP``Yo, @
,m" "Mm,@
@
@
@@
@
@
@
`$$$ $P@
88b 88 @
'MooMM @
MM @
##" @
m##" @@
@
@
.nnnnn[['@
,$$P" @
,888bo,_ @
`""*UMM @
@
@
@@
.:@
;'@
[@
$"@
8 @
"M@
@
@
@@
`:@
,;@
[[@
$$@
88@
MM@
##@
@
@@
:.@
';@
[ @
"$@
8@
M"@
@
@
@@
@
@
':.:':.@
`;' `;@
@
@
@
@
@@
:: ::. :: @
;;`;; @
,[[ '[[, @
c$$$cc$$$c @
888 888,@
YMM ""` @
@
@
@@
:: ... :: @
.;;;;;;;. @
,[[ \[[,@
$$$, $$$@
"888,_ _,88P@
"YMMMMMP" @
@
@
@@
..:: :: ::@
;; ;;;@
[[' [[[@
$$ $$$@
88 .d888@
"YmmMMMM""@
@
@
@@
@
;; ;; @
,ccc, @
$$$cc$$$ @
888 888@
"YUM" MP@
@
@
@@
@
;; ;; @
,ccc, @
$$$"c$$$@
888 88@
"YUMMP @
@
@
@@
@
;; ;; @
,c , @
$$' $$$ @
888 888@
"YUM" MP@
@
@
@@
:::::::. @
;;;'';;' @
[[[__[[\.@
$$""""Y$$@
88o,,od8P@
MM`YMMP" @
@
@
@@

842
node_modules/figlet/fonts/Crawford.flf generated vendored Normal file
View File

@@ -0,0 +1,842 @@
flf2a$ 8 7 18 4 25
crawford.flf (FIGlet font)
Figlet conversion by Kent Nassen, knassen@umich.edu, 1/2/95
From: s1171180@giaeb.cc.monash.edu.au (Rowan Crawford)
Newsgroups: alt.ascii-art
Subject: Font - Style No 2....
Date: 14 Jan 1994 14:37:30 GMT
Organization: Monash University
Lines: 41
Message-ID: <2h6ana$db6@harbinger.cc.monash.edu.au>
NNTP-Posting-Host: giaeb.cc.monash.edu.au
X-Newsreader: NN version 6.5.0 #4 (NOV)
Status: RO
Had some spare time today, so I have done another font. Different
form to the last one though:
[...]
And there you are. "S" looks slightly odd and so does "J", but
otherwise fairly neat I guess.
Row.
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
__ @
| T@
| |@
|__j@
__ @
| T@
l__j@
@@
$__ __ @
T |T |@
l_ |l_ |@
$ \l \l@
$ @
$ @
$ @
$ @@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
__ @
T |@
l_ |@
\l@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
__ @
T |@
l_ |@
\l@@
@
@
_____ @
| |@
l_____j@
@
@
@@
@
@
@
@
__ @
| T@
l__j@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
__ @
| T@
l__j@
__ @
| T@
l__j@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
_____ @
/ T@
| Y |@
l__| |@
l__j@
__ @
l__j@
@@
____ @
/ \@
Y _ j@
| T |@
| \__|@
| |@
\__,_j@
@@
____ @
/ T@
Y o |@
| |@
| _ |@
| | |@
l__j__j@
@@
____ @
| \ @
| o )@
| T@
| O |@
| |@
l_____j@
@@
__ @
/ ]@
/ / @
/ / @
/ \_ @
\ |@
\____j@
@@
___ @
| \ @
| \ @
| D Y@
| |@
| |@
l_____j@
@@
___ @
/ _]@
/ [_ @
Y _]@
| [_ @
| T@
l_____j@
@@
_____ @
| |@
| __j@
| l_ @
| _] @
| T @
l__j @
@@
____ @
/ T@
Y __j@
| T |@
| l_ |@
| |@
l___,_j@
@@
__ __ @
| T T@
| l |@
| _ |@
| | |@
| | |@
l__j__j@
@@
____ @
l j@
| T @
| | @
| | @
j l @
|____j@
@@
____ @
| |@
l__ |@
__j |@
/ | |@
\ ` |@
\____j@
@@
__ _ @
| l/ ]@
| ' / @
| \ @
| Y@
| . |@
l__j\_j@
@@
_ @
| T @
| | @
| l___ @
| T@
| |@
l_____j@
@@
___ ___ @
| T T@
| _ _ |@
| \_/ |@
| | |@
| | |@
l___j___j@
@@
____ @
| \ @
| _ Y@
| | |@
| | |@
| | |@
l__j__j@
@@
___ @
/ \ @
Y Y@
| O |@
| |@
l !@
\___/ @
@@
____ @
| \ @
| o )@
| _/ @
| | @
| | @
l__j @
@@
___ @
/ \ @
Y Y@
| Q |@
| |@
l |@
\__,_j@
@@
____ @
| \ @
| D )@
| / @
| \ @
| . Y@
l__j\_j@
@@
_____@
/ ___/@
( \_ @
\__ T@
/ \ |@
\ |@
\___j@
@@
______ @
| T@
| |@
l_j l_j@
| | @
| | @
l__j @
@@
__ __ @
| T T@
| | |@
| | |@
| : |@
l |@
\__,_j@
@@
__ __ @
| T |@
| | |@
| | |@
l : !@
\ / @
\_/ @
@@
__ __ @
| T__T T@
| | | |@
| | | |@
l ` ' !@
\ / @
\_/\_/ @
@@
__ __ @
| T T@
| | |@
l_ _j@
| |@
| | |@
|__j__|@
@@
__ __ @
| T T@
| | |@
| ~ |@
l___, |@
| !@
l____/ @
@@
_____ @
| T@
l__/ |@
| __j@
| / |@
| |@
l_____j@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
__ @
| T@
| _j@
|/ @
@
@
@
@@
____ @
/ T@
Y o |@
| |@
| _ |@
| | |@
l__j__j@
@@
____ @
| \ @
| o )@
| T@
| O |@
| |@
l_____j@
@@
__ @
/ ]@
/ / @
/ / @
/ \_ @
\ |@
\____j@
@@
___ @
| \ @
| \ @
| D Y@
| |@
| |@
l_____j@
@@
___ @
/ _]@
/ [_ @
Y _]@
| [_ @
| T@
l_____j@
@@
_____ @
| |@
| __j@
| l_ @
| _] @
| T @
l__j @
@@
____ @
/ T@
Y __j@
| T |@
| l_ |@
| |@
l___,_j@
@@
__ __ @
| T T@
| l |@
| _ |@
| | |@
| | |@
l__j__j@
@@
____ @
l j@
| T @
| | @
| | @
j l @
|____j@
@@
____ @
| |@
l__ |@
__j |@
/ | |@
\ ` |@
\____j@
@@
__ _ @
| l/ ]@
| ' / @
| \ @
| Y@
| . |@
l__j\_j@
@@
_ @
| T @
| | @
| l___ @
| T@
| |@
l_____j@
@@
___ ___ @
| T T@
| _ _ |@
| \_/ |@
| | |@
| | |@
l___j___j@
@@
____ @
| \ @
| _ Y@
| | |@
| | |@
| | |@
l__j__j@
@@
___ @
/ \ @
Y Y@
| O |@
| |@
l !@
\___/ @
@@
____ @
| \ @
| o )@
| _/ @
| | @
| | @
l__j @
@@
___ @
/ \ @
Y Y@
| Q |@
| |@
l |@
\__,_j@
@@
____ @
| \ @
| D )@
| / @
| \ @
| . Y@
l__j\_j@
@@
_____@
/ ___/@
( \_ @
\__ T@
/ \ |@
\ |@
\___j@
@@
______ @
| T@
| |@
l_j l_j@
| | @
| | @
l__j @
@@
__ __ @
| T T@
| | |@
| | |@
| : |@
l |@
\__,_j@
@@
__ __ @
| T |@
| | |@
| | |@
l : !@
\ / @
\_/ @
@@
__ __ @
| T__T T@
| | | |@
| | | |@
l ` ' !@
\ / @
\_/\_/ @
@@
__ __ @
| T T@
| | |@
l_ _j@
| |@
| | |@
|__j__|@
@@
__ __ @
| T T@
| | |@
| ~ |@
l___, |@
| !@
l____/ @
@@
_____ @
| T@
l__/ |@
| __j@
| / |@
| |@
l_____j@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@

842
node_modules/figlet/fonts/Crawford2.flf generated vendored Normal file
View File

@@ -0,0 +1,842 @@
flf2a$ 8 7 18 4 25
crawford2.flf (FIGlet font)
Font created from original Crawford, update by PAT or JK, Jan 2008
Figlet conversion by Kent Nassen, knassen@umich.edu, 1/2/95
From: s1171180@giaeb.cc.monash.edu.au (Rowan Crawford)
Newsgroups: alt.ascii-art
Subject: Font - Style No 2....
Date: 14 Jan 1994 14:37:30 GMT
Organization: Monash University
Lines: 41
Message-ID: <2h6ana$db6@harbinger.cc.monash.edu.au>
NNTP-Posting-Host: giaeb.cc.monash.edu.au
X-Newsreader: NN version 6.5.0 #4 (NOV)
Status: RO
Had some spare time today, so I have done another font. Different
form to the last one though:
[...]
And there you are. "S" looks slightly odd and so does "J", but
otherwise fairly neat I guess.
Row.
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
__ @
| |@
| |@
|__|@
__ @
| |@
|__|@
@@
$__ __ @
| || |@
|_ ||_ |@
$ \| \|@
$ @
$ @
$ @
$ @@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
__ @
| |@
|_ |@
\|@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
__ @
| |@
|_ |@
\|@@
@
@
_____ @
| |@
|_____|@
@
@
@@
@
@
@
@
__ @
| |@
|__|@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
__ @
| |@
|__|@
__ @
| |@
|__|@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
_____ @
/ |@
| Y |@
|__| |@
|__|@
__ @
|__|@
@@
____ @
/ \@
| _ |@
| / |@
| \__|@
| |@
\__,_|@
@@
____ @
/ |@
| o |@
| |@
| _ |@
| | |@
|__|__|@
@@
____ @
| \ @
| o )@
| |@
| O |@
| |@
|_____|@
@@
__ @
/ ]@
/ / @
/ / @
/ \_ @
\ |@
\____|@
@@
___ @
| \ @
| \ @
| D |@
| |@
| |@
|_____|@
@@
___ @
/ _]@
/ [_ @
| _]@
| [_ @
| |@
|_____|@
@@
_____ @
| |@
| __|@
| |_ @
| _] @
| | @
|__| @
@@
____ @
/ |@
| __|@
| | |@
| |_ |@
| |@
|___,_|@
@@
__ __ @
| | |@
| | |@
| _ |@
| | |@
| | |@
|__|__|@
@@
____ @
| |@
| | @
| | @
| | @
| | @
|____|@
@@
____ @
| |@
|__ |@
__| |@
/ | |@
\ ` |@
\____j@
@@
__ _ @
| |/ ]@
| ' / @
| \ @
| |@
| . |@
|__|\_|@
@@
_ @
| | @
| | @
| |___ @
| |@
| |@
|_____|@
@@
___ ___ @
| | |@
| _ _ |@
| \_/ |@
| | |@
| | |@
|___|___|@
@@
____ @
| \ @
| _ |@
| | |@
| | |@
| | |@
|__|__|@
@@
___ @
/ \ @
| |@
| O |@
| |@
| |@
\___/ @
@@
____ @
| \ @
| o )@
| _/ @
| | @
| | @
|__| @
@@
___ @
/ \ @
| |@
| Q |@
| |@
| |@
\__,_|@
@@
____ @
| \ @
| D )@
| / @
| \ @
| . \@
|__|\_|@
@@
_____@
/ ___/@
( \_ @
\__ |@
/ \ |@
\ |@
\___|@
@@
______ @
| |@
| |@
|_| |_|@
| | @
| | @
|__| @
@@
__ __ @
| | |@
| | |@
| | |@
| : |@
| |@
\__,_|@
@@
__ __ @
| | |@
| | |@
| | |@
| : |@
\ / @
\_/ @
@@
__ __ @
| |__| |@
| | | |@
| | | |@
| ` ' |@
\ / @
\_/\_/ @
@@
__ __ @
| | |@
| | |@
|_ _|@
| |@
| | |@
|__|__|@
@@
__ __ @
| | |@
| | |@
| ~ |@
|___, |@
| |@
|____/ @
@@
_____ @
| |@
|__/ |@
| __|@
| / |@
| |@
|_____|@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
__ @
| |@
| _|@
|/ @
@
@
@
@@
____ @
/ |@
| o |@
| |@
| _ |@
| | |@
|__|__|@
@@
____ @
| \ @
| o )@
| |@
| O |@
| |@
|_____|@
@@
__ @
/ ]@
/ / @
/ / @
/ \_ @
\ |@
\____|@
@@
___ @
| \ @
| \ @
| D |@
| |@
| |@
|_____|@
@@
___ @
/ _]@
/ [_ @
| _]@
| [_ @
| |@
|_____|@
@@
_____ @
| |@
| __|@
| |_ @
| _] @
| | @
|__| @
@@
____ @
/ |@
| __|@
| | |@
| |_ |@
| |@
|___,_|@
@@
__ __ @
| | |@
| | |@
| _ |@
| | |@
| | |@
|__|__|@
@@
____ @
| |@
| | @
| | @
| | @
| | @
|____|@
@@
____ @
| |@
|__ |@
__| |@
/ | |@
\ ` |@
\____|@
@@
__ _ @
| |/ ]@
| ' / @
| \ @
| \@
| . |@
|__|\_|@
@@
_ @
| | @
| | @
| |___ @
| |@
| |@
|_____|@
@@
___ ___ @
| | |@
| _ _ |@
| \_/ |@
| | |@
| | |@
|___|___|@
@@
____ @
| \ @
| _ |@
| | |@
| | |@
| | |@
|__|__|@
@@
___ @
/ \ @
| |@
| O |@
| |@
| |@
\___/ @
@@
____ @
| \ @
| o )@
| _/ @
| | @
| | @
|__| @
@@
___ @
/ \ @
| |@
| Q |@
| |@
| |@
\__,_|@
@@
____ @
| \ @
| D )@
| / @
| \ @
| . \@
|__|\_|@
@@
_____@
/ ___/@
( \_ @
\__ |@
/ \ |@
\ |@
\___|@
@@
______ @
| |@
| |@
|_| |_|@
| | @
| | @
|__| @
@@
__ __ @
| | |@
| | |@
| | |@
| : |@
| |@
\__,_|@
@@
__ __ @
| | |@
| | |@
| | |@
| : |@
\ / @
\_/ @
@@
__ __ @
| |__| |@
| | | |@
| | | |@
| ` ' |@
\ / @
\_/\_/ @
@@
__ __ @
| | |@
| | |@
|_ _|@
| |@
| | |@
|__|__|@
@@
__ __ @
| | |@
| | |@
| ~ |@
|___, |@
| |@
|____/ @
@@
_____ @
| |@
|__/ |@
| __|@
| / |@
| |@
|_____|@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@
@
@
@
@
@
@
@
@@

1343
node_modules/figlet/fonts/Crazy.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

842
node_modules/figlet/fonts/Cricket.flf generated vendored Normal file
View File

@@ -0,0 +1,842 @@
flf2a$ 8 4 14 0 25 0 16256
Cricket by Leslie Bates Jan. 1, 1996
cricket9@aros.net http://www.aros.net/~cricket9
I wish to thank Wade Fincher for the SIG that was used as a base for Cricket as
well as Chris Gill who designed the Square font, some of which was used in
Cricket. And finally I wish to thank Paul Burton, who if it was not for his
desire to create FIGWin, I may never have had the motivation to create a
FIGfont.
FIGWin is the Windows clone of FIGlet with a full featured FIGfont editor!
Forget about doing the math to figure out the smushmode number. Just check a
few boxes for each smushing rule. Forget about endmarks -- let the computer
figure out how tall and how wide your font is. Just draw FIGfonts with the
mouse and wipe the smudgemarks off your screen from all that counting!
FIGWin is full of features, but it's designed for use by a complete idiot. If
you qualify, visit the FIGWin website. Screen shots are shown, and of course
you can download it. (FREE!)
http://home.earthlink.net/~solution
Also see the FIGlet website: http://st-www.cs.uiuc.edu/users/chai/figlet.html
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@
$ $@@
__ @
| |@
|__|@
|__|@
@
@
@
@@
____ @
| | |@
|_|_|@
@
@
@
@
@@
_____ @
_| | |_ @
|_ _|@
|_ _|@
|__|__| @
@
@
@@
__,-,__ @
| ' '__|@
|__ |@
|_______|@
|_| @
@
@
@@
__ ___ @
|__| |@
| __|@
|___|__|@
@
@
@
@@
__,-,__ @
| ' '__|@
| __|@
|_______|@
|_| @
@
@
@@
__ @
| |@
|_|@
@
@
@
@
@@
___ @
,' _|@
| | @
| |_ @
`.___|@
@
@
@@
___ @
|_ `.@
| |@
_| |@
|___,'@
@
@
@@
__ _ __ @
| | | |@
> < @
|__|_|__|@
@
@
@
@@
__ @
_| |_ @
|_ _|@
|__| @
@
@
@
@@
@
@
__ @
| |@
|_|@
@
@
@@
@
______ @
|______|@
@
@
@
@
@@
@
@
__ @
|__|@
@
@
@
@@
___@
/ /@
,' ,' @
/__/ @
@
@
@
@@
_______ @
| _ |@
|. | |@
|. | |@
|: 1 |@
|::.. . |@
`-------'@
@@
_____ @
| _ |@
|.| |@
`-|. |@
|: |@
|::.|@
`---'@
@@
_______ @
| |@
|___| |@
/ ___/ @
|: 1 \ @
|::.. . |@
`-------'@
@@
_______ @
| _ |@
|___| |@
_(__ |@
|: 1 |@
|::.. . |@
`-------'@
@@
___ ___ @
| Y |@
| | |@
|____ |@
|: |@
|::.|@
`---'@
@@
_______ @
| _ |@
| 1___|@
|____ |@
|: 1 |@
|::.. . |@
`-------'@
@@
_______ @
| _ |@
| 1___|@
|. \ @
|: 1 |@
|::.. . |@
`-------'@
@@
_______ @
| _ |@
|___| |@
/ / @
| | @
| | @
`---' @
@@
_______ @
| _ |@
|. | |@
|. _ |@
|: 1 |@
|::.. . |@
`-------'@
@@
_______ @
| _ |@
| | |@
\___ |@
|: 1 |@
|::.. . |@
`-------'@
@@
__ @
|__|@
__ @
|__|@
@
@
@
@@
__ @
|__|@
__ @
| |@
|_|@
@
@
@@
__ @
,' _|@
/ / @
\ \_ @
`.__|@
@
@
@@
@
______ @
|______|@
|______|@
@
@
@
@@
__ @
|_ `. @
\ \@
_/ /@
|__,' @
@
@
@@
_____ @
|__ |@
', ,- @
|--| @
'-- @
@
@
@@
_________ @
| ___ |@
| | _ |@
| |______|@
|_________|@
@
@
@@
_______ @
| _ |@
|. 1 |@
|. _ |@
|: | |@
|::.|:. |@
`--- ---'@
@@
_______ @
| _ \ @
|. 1 / @
|. _ \ @
|: 1 \@
|::.. . /@
`-------' @
@@
_______ @
| _ |@
|. 1___|@
|. |___ @
|: 1 |@
|::.. . |@
`-------'@
@@
______ @
| _ \ @
|. | \ @
|. | \@
|: 1 /@
|::.. . / @
`------' @
@@
_______ @
| _ |@
|. 1___|@
|. __)_ @
|: 1 |@
|::.. . |@
`-------'@
@@
_______ @
| _ |@
|. 1___|@
|. __) @
|: | @
|::.| @
`---' @
@@
_______ @
| _ |@
|. |___|@
|. | |@
|: 1 |@
|::.. . |@
`-------'@
@@
___ ___ @
| Y |@
|. 1 |@
|. _ |@
|: | |@
|::.|:. |@
`--- ---'@
@@
___ @
| |@
|. |@
|. |@
|: |@
|::.|@
`---'@
@@
_______ @
| _ |@
|___| |@
|. | |@
|: 1 |@
|::.. . |@
`-------'@
@@
___ ___ @
| Y ) @
|. 1 / @
|. _ \ @
|: | \ @
|::.| . )@
`--- ---' @
@@
___ @
| | @
|. | @
|. |___ @
|: 1 |@
|::.. . |@
`-------'@
@@
___ ___ @
| Y |@
|. |@
|. \_/ |@
|: | |@
|::.|:. |@
`--- ---'@
@@
______ @
| _ \ @
|. | |@
|. | |@
|: | |@
|::.| |@
`--- ---'@
@@
_______ @
| _ |@
|. | |@
|. | |@
|: 1 |@
|::.. . |@
`-------'@
@@
_______ @
| _ |@
|. 1 |@
|. ____|@
|: | @
|::.| @
`---' @
@@
_______ @
| _ |@
|. | |@
|. | |@
|: 1 |@
|::.. |@
`----|:.|@
`--'@@
_______ @
| _ \@
|. l /@
|. _ 1@
|: | |@
|::.|:. |@
`--- ---'@
@@
_______ @
| _ |@
| 1___|@
|____ |@
|: 1 |@
|::.. . |@
`-------'@
@@
_______ @
| |@
|.| | |@
`-|. |-'@
|: | @
|::.| @
`---' @
@@
___ ___ @
| Y |@
|. | |@
|. | |@
|: 1 |@
|::.. . |@
`-------'@
@@
___ ___ @
| Y |@
|. | |@
|. | |@
|: 1 |@
\:.. ./ @
`---' @
@@
___ ___ @
| Y |@
|. | |@
|. / \ |@
|: |@
|::.|:. |@
`--- ---'@
@@
___ ___ @
( Y ) @
\ 1 / @
/ _ \ @
/: | \ @
(::. |:. )@
`--- ---' @
@@
___ ___ @
| Y |@
| 1 |@
\_ _/ @
|: | @
|::.| @
`---' @
@@
_______ @
| _ |@
|___| |@
/ ___/ @
|: 1 \ @
|::.. . |@
`-------'@
@@
____ @
| _|@
| | @
| |_ @
|____|@
@
@
@@
___ @
\ \ @
`. `. @
\__\@
@
@
@
@@
____ @
|_ |@
| |@
_| |@
|____|@
@
@
@@
____ @
| |@
|_/\_|@
@
@
@
@
@@
@
@
@
______ @
|______|@
@
@
@@
__ @
| |@
|_| @
@
@
@
@
@@
@
.---.-.@
| _ |@
|___._|@
@
@
@
@@
__ @
| |--.@
| _ |@
|_____|@
@
@
@
@@
@
.----.@
| __|@
|____|@
@
@
@
@@
__ @
.--| |@
| _ |@
|_____|@
@
@
@
@@
@
.-----.@
| -__|@
|_____|@
@
@
@
@@
___ @
.' _|@
| _|@
|__| @
@
@
@
@@
@
.-----.@
| _ |@
|___ |@
|_____|@
@
@
@@
__ @
| |--.@
| |@
|__|__|@
@
@
@
@@
__ @
|__|@
| |@
|__|@
@
@
@
@@
__ @
|__|@
| |@
| |@
|___|@
@
@
@@
__ @
| |--.@
| < @
|__|__|@
@
@
@
@@
__ @
| |@
| |@
|__|@
@
@
@
@@
@
.--------.@
| |@
|__|__|__|@
@
@
@
@@
@
.-----.@
| |@
|__|__|@
@
@
@
@@
@
.-----.@
| _ |@
|_____|@
@
@
@
@@
@
.-----.@
| _ |@
| __|@
|__| @
@
@
@@
@
.-----.@
| _ |@
|__ |@
|__|@
@
@
@@
@
.----.@
| _|@
|__| @
@
@
@
@@
@
.-----.@
|__ --|@
|_____|@
@
@
@
@@
__ @
| |_ @
| _|@
|____|@
@
@
@
@@
@
.--.--.@
| | |@
|_____|@
@
@
@
@@
@
.--.--.@
| | |@
\___/ @
@
@
@
@@
@
.--.--.--.@
| | | |@
|________|@
@
@
@
@@
@
.--.--.@
|_ _|@
|__.__|@
@
@
@
@@
@
.--.--.@
| | |@
|___ |@
|_____|@
@
@
@@
@
.-----.@
|-- __|@
|_____|@
@
@
@
@@
___ @
| _|@
/ / @
\ \_ @
|___|@
@
@
@@
__ @
| |@
| |@
| |@
|__|@
@
@
@@
___ @
|_ | @
\ \@
_/ /@
|___| @
@
@
@@
___ @
| ' |@
|_,_| @
@
@
@
@
@@
.--.--.@
|-----|@
| - |@
|__|__|@
@
@
@
@@
.--.--.@
|-----|@
| _ |@
|_____|@
@
@
@
@@
.--.--.@
|--|--|@
| | |@
|_____|@
@
@
@
@@
.--.--.@
|---.-|@
| _ |@
|___._|@
@
@
@
@@
.--.--.@
|-----|@
| _ |@
|_____|@
@
@
@
@@
.--.--.@
|--|--|@
| | |@
|_____|@
@
@
@
@@
_______ @
| __ \@
| __ <@
| |____/@
|__| @
@
@
@@

624
node_modules/figlet/fonts/Cursive.flf generated vendored Normal file
View File

@@ -0,0 +1,624 @@
flf2a$ 6 4 20 0 11
Based on cursive(6) by Jan Wolter <janc@crim.eecs.umich.edu> on 24 Jul 1985
Figlet-ized and by Wendell Hicken <whicken@parasoft.com> on 5 Mar 1994
Added missing punctuation and numbers
Ammended by Jerrad Pierce <jpierce@cpan.org> on 8 Aug 2002
Underscore and dash have been updated to more closely match cursive(6)
The '_' character is treated in a special way. It may be
inserted in the text anywhere you wish to lengthen a con-
necting line between two letters.
$$@
$$@
$$@
$$@
$$@
$$@@
@
/@
/ @
' @
o @
@@
@
o o@
' '@
@
@
@@
/ /@
-/-/-@
-/-/- @
/ / @
@
@@
,-/-@
(_/ @
/ ) @
-/-' @
@
@@
() /@
/ @
/ @
/ ()@
@
@@
() @
/\ @
( X @
\/ \@
@
@@
@
o@
'@
@
@
@@
_/@
/ @
/ @
/ @
@
@@
/@
/@
_/ @
/ @
@
@@
@
\ / @
--X--@
/ \ @
@
@@
@
/ @
--/--@
/ @
@
@@
@
@
@
o@
'@
@@
$$$@
$$$@
---@
$$$@
$$$@
$$@@
@
@
@
o@
@
@@
/@
/ @
/ @
/ @
@
@@
__ @
/ )@
/ / @
(__/ @
@
@@
_@
/@
/ @
/ @
@
@@
__ @
)@
.--' @
(__ @
@
@@
__ @
)@
-/ @
___/ @
@
@@
@
/ /@
'--/ @
/ @
@
@@
___@
/ @
'--. @
___) @
@
@@
@
/ @
/_ @
(__)@
@
@@
___@
/@
-/-@
/ @
@
@@
__ @
( )@
./' @
(__) @
@
@@
__ @
(__)@
/ @
/ @
@
@@
@
@
o@
@
o @
@@
@
@
o@
@
o @
' @@
/@
/ @
\ @
\@
@
@@
@
@
---@
---@
@
@@
\ @
\@
/@
/ @
@
@@
__ @
__)@
/ @
o @
@
@@
@
_ @
/o\ @
(____@
@
@@
__ @
/ )@
/--/ @
/ (_ @
@
@@
__ @
/ )@
/--< @
/___/_@
@
@@
__ @
/ )@
/ @
(__/ @
@
@@
__ @
/ )@
/ / @
/__/_ @
@
@@
__ @
/ `@
/-- @
(___, @
@
@@
_____@
/ '@
,-/-, @
(_/ @
@
@@
() ,@
/`-'|@
/ / @
/__-<_ @
@
@@
_ ,@
' ) / @
/--/ @
/ (_ @
@
@@
_ @
| )@
,---|/ @
\_/ \_@
@
@@
___ @
( >@
__/_@
/ / @
<_/ @
@@
_ ,@
' ) / @
/-< @
/ ) @
@
@@
_@
_//@
/ @
/___@
@
@@
_ _ _ @
' ) ) )@
/ / / @
/ ' (_ @
@
@@
_ __ @
' ) )@
/ / @
/ (_ @
@
@@
__ @
/ ')@
/ / @
(__/ @
@
@@
_ __ @
' ) )@
/--' @
/ @
@
@@
__ @
/ )@
/ / @
(_\/ @
` @
@@
_ __ @
' ) )@
/--' @
/ \_ @
@
@@
() @
/\ @
/ ) @
/__/__@
@
@@
______@
/ @
--/ @
(_/ @
@
@@
_ __@
' ) / @
/ / @
(__/ @
@
@@
_ _@
' ) / @
( / @
\/ @
@
@@
_ _@
' ) / @
/ / / @
(_(_/ @
@
@@
_ ,@
' \ / @
X @
/ \_@
@
@@
_ ,@
' ) / @
/ / @
(__/_ @
// @
(/ @@
___@
/@
/ @
/__@
@
@@
_@
/ @
/ @
/_ @
@
@@
\ @
\ @
\ @
\@
@
@@
_@
/@
/ @
_/ @
@
@@
/\@
@
@
@
@
@@
@
@
@
_@
@
@@
@
o@
`@
@
@
@@
@
@
__. @
(_/|_@
@
@@
@
/ @
/__@
/_) @
@
@@
@
@
_.@
(__@
@
@@
@
/@
__/ @
(_/_ @
@
@@
@
@
_ @
</_@
@
@@
@
/)@
// @
//_ @
/> @
</ @@
@
@
_, @
(_)_@
/| @
|/ @@
@
/ @
/_ @
/ /_@
@
@@
@
@
o@
<_@
@
@@
@
@
o@
/_@
/ @
-' @@
@
/ @
/_ @
/ <_@
@
@@
_@
//@
// @
</_ @
@
@@
@
@
______ @
/ / / <_@
@
@@
@
@
____ @
/ / <_@
@
@@
@
@
__@
(_)@
@
@@
@
@
_ @
/_)_@
/ @
' @@
@
@
_, @
(_)_@
/> @
|/ @@
@
@
__ @
/ (_@
@
@@
@
@
_ @
/_)_@
@
@@
@
_/_@
/ @
<__ @
@
@@
@
@
. .@
(_/_@
@
@@
@
@
, _@
\/ @
@
@@
@
@
, , ,@
(_(_/_@
@
@@
@
@
_., @
/ /\_@
@
@@
@
@
__ ,@
/ (_/_@
/ @
' @@
@
@
__. @
/ |_@
(| @
@@
_/@
_/ @
/ @
/ @
@
@@
/@
/ @
/ @
/ @
@
@@
/ @
/_@
_/ @
/ @
@
@@
_ @
/ \_/@
@
@
@
@@
o__o@
/ )@
/--/ @
/ (_ @
@
@@
o__o@
/ ')@
/ / @
(__/ @
@
@@
_o o__@
' ) / @
/ / @
(__/ @
@
@@
@
o o @
__. @
(_/|_@
@
@@
@
o o@
__@
(_)@
@
@@
@
o o@
. .@
(_/_@
@
@@
__ @
/ )@
/--< @
_/___/_@
/ @
@@

429
node_modules/figlet/fonts/Cyberlarge.flf generated vendored Normal file
View File

@@ -0,0 +1,429 @@
flf2a$ 4 3 10 -1 20
Cyberfont - large
Figlet conversion by Kent Nassen, kentn@cyberspace.org, 8-10-94
From: stock@fwi.uva.nl (Lennert Stock)
Date: 15 Jul 1994 00:04:25 GMT
Here are some fonts. Non-figlet I'm afraid, if you wanna convert them, be
my guest. I posted the isometric fonts before.
------------------------------------------------------------------------------
.x%%%%%%x. .x%%%%%%x.
,%%%%%%%%%%. .%%%%%%%%%%.
,%%%' )' \) :( `( `%%%.
,%x%)________) --------- L e n n e r t S t o c k ( _ __ (%x%.
(%%%~^88P~88P| |~=> .=-~ %%%)
(%%::. .:,\ .' `. /,:. .::%%)
`;%:`\. `-' | | `-' ./':%:'
``x`. -===.' stock@fwi.uva.nl -------- `.===- .'x''
/ `:`.__.; :.__.':' \
.d8b. ..`. .'.. .d8b.
$ $@
$ $@
$ $@
$ $@@
/@
/ @
. @
$@@
..@
''@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
.@
'@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
$@
$@
.@
'@@
$$$@
___@
$$$@
$$$@@
$@
$@
.@
$@@
/@
/ @
/ @
/ @@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
$@
.@
.@
$@@
$@
.@
.@
'@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
____ @
___|@
\ @
` @@
@
@
@
@@
_______@
|_____|@
| |@
@@
______ @
|_____]@
|_____]@
@@
_______@
| $@
|_____$@
@@
______$@
| \@
|_____/@
@@
_______@
|______@
|______@
@@
_______@
|______@
| $@
@@
______@
| ____@
|_____|@
@@
_ _@
|_____|@
| |@
@@
_____@
| $@
__|__@
@@
_____@
| $@
__| $@
@@
_ _@
|____/$@
| \_@
@@
$ $@
| $@
|_____@
@@
_______@
| | |@
| | |@
@@
__ _@
| \ |@
| \_|@
@@
_____ @
| |@
|_____|@
@@
_____ @
|_____]@
| $@
@@
_____ @
| __|@
|____\|@
@@
______@
|_____/@
| \_@
@@
_______@
|______@
______|@
@@
_______@
| $@
| $@
@@
_ _@
| |@
|_____|@
@@
_ _@
\ /$@
\/ $@
@@
_ _ _@
| | |@
|__|__|@
@@
_ _@
\___/$@
_/ \_@
@@
__ __@
\_/ $@
| $@
@@
______@
____/@
/_____@
@@
@
@
@
@@
\ @
\ @
\ @
\@@
@
@
@
@@
@
@
@
@@
@
@
_____@
@@
.@
`@
@
@@
_______@
|_____|@
| |@
@@
______ @
|_____]@
|_____]@
@@
_______@
| $@
|_____$@
@@
______$@
| \@
|_____/@
@@
_______@
|______@
|______@
@@
_______@
|______@
| $@
@@
______@
| ____@
|_____|@
@@
_ _@
|_____|@
| |@
@@
_____@
| $@
__|__@
@@
_____@
| $@
__| $@
@@
_ _@
|____/$@
| \_@
@@
$ $@
| $@
|_____@
@@
_______@
| | |@
| | |@
@@
__ _@
| \ |@
| \_|@
@@
_____ @
| |@
|_____|@
@@
_____ @
|_____]@
| $@
@@
_____ @
| __|@
|____\|@
@@
______@
|_____/@
| \_@
@@
_______@
|______@
______|@
@@
_______@
| $@
| $@
@@
_ _@
| |@
|_____|@
@@
_ _@
\ /$@
\/ $@
@@
_ _ _@
| | |@
|__|__|@
@@
_ _@
\___/$@
_/ \_@
@@
__ __@
\_/ $@
| $@
@@
______@
____/@
/_____@
@@
@
@
@
@@
|@
|@
|@
|@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@

429
node_modules/figlet/fonts/Cybermedium.flf generated vendored Normal file
View File

@@ -0,0 +1,429 @@
flf2a$ 4 3 8 -1 20
Cyberfont - medium
Figlet conversion by Kent Nassen, kentn@cyberspace.org, 8-11-94
From: stock@fwi.uva.nl (Lennert Stock)
Date: 15 Jul 1994 00:04:25 GMT
Here are some fonts. Non-figlet I'm afraid, if you wanna convert them, be
my guest. I posted the isometric fonts before.
------------------------------------------------------------------------------
.x%%%%%%x. .x%%%%%%x.
,%%%%%%%%%%. .%%%%%%%%%%.
,%%%' )' \) :( `( `%%%.
,%x%)________) --------- L e n n e r t S t o c k ( _ __ (%x%.
(%%%~^88P~88P| |~=> .=-~ %%%)
(%%::. .:,\ .' `. /,:. .::%%)
`;%:`\. `-' | | `-' ./':%:'
``x`. -===.' stock@fwi.uva.nl -------- `.===- .'x''
/ `:`.__.; :.__.':' \
.d8b. ..`. .'.. .d8b.
$ $@
$ $@
$ $@
$ $@@
/@
/ @
. @
@@
..@
''@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
. @
' @
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
. @
' @@
@
__ @
@
@@
@
@
.@
@@
/ @
/ @
/ @
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
$@
.@
.@
@@
$@
.@
,@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
__.@
_]@
. @
@@
@
@
@
@@
____ @
|__| @
| | @
@@
___ @
|__] @
|__] @
@@
____ @
| @
|___ @
@@
___ @
| \ @
|__/ @
@@
____ @
|___ @
|___ @
@@
____ @
|___ @
| @
@@
____ @
| __ @
|__] @
@@
_ _ @
|__| @
| | @
@@
_ @
| @
| @
@@
_ @
| @
_| @
@@
_ _ @
|_/ @
| \_ @
@@
_ @
| @
|___ @
@@
_ _ @
|\/| @
| | @
@@
_ _ @
|\ | @
| \| @
@@
____ @
| | @
|__| @
@@
___ @
|__] @
| @
@@
____ @
| | @
|_\| @
@@
____ @
|__/ @
| \ @
@@
____ @
[__ @
___] @
@@
___ @
| @
| @
@@
_ _ @
| | @
|__| @
@@
_ _ @
| | @
\/ @
@@
_ _ _ @
| | | @
|_|_| @
@@
_ _ @
\/ @
_/\_ @
@@
_ _ @
\_/ @
| @
@@
___ @
/ @
/__ @
@@
@
@
@
@@
\ @
\ @
\ @
@@
@
@
@
@@
@
@
@
@@
@
@
___ @
@@
. @
` @
@
@@
____ @
|__| @
| | @
@@
___ @
|__] @
|__] @
@@
____ @
| @
|___ @
@@
___ @
| \ @
|__/ @
@@
____ @
|___ @
|___ @
@@
____ @
|___ @
| @
@@
____ @
| __ @
|__] @
@@
_ _ @
|__| @
| | @
@@
_ @
| @
| @
@@
_ @
| @
_| @
@@
_ _ @
|_/ @
| \_ @
@@
_ @
| @
|___ @
@@
_ _ @
|\/| @
| | @
@@
_ _ @
|\ | @
| \| @
@@
____ @
| | @
|__| @
@@
___ @
|__] @
| @
@@
____ @
| | @
|_\| @
@@
____ @
|__/ @
| \ @
@@
____ @
[__ @
___] @
@@
___ @
| @
| @
@@
_ _ @
| | @
|__| @
@@
_ _ @
| | @
\/ @
@@
_ _ _ @
| | | @
|_|_| @
@@
_ _ @
\/ @
_/\_ @
@@
_ _ @
\_/ @
| @
@@
___ @
/ @
/__ @
@@
@
@
@
@@
| @
| @
| @
| @@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@

225
node_modules/figlet/fonts/Cybersmall.flf generated vendored Normal file
View File

@@ -0,0 +1,225 @@
flf2a$ 2 2 8 -1 20
Cyberfont - small
Figlet conversion by Kent Nassen, kentn@cyberspace.org, 8-11-94
From: stock@fwi.uva.nl (Lennert Stock)
Date: 15 Jul 1994 00:04:25 GMT
Here are some fonts. Non-figlet I'm afraid, if you wanna convert them, be
my guest. I posted the isometric fonts before.
------------------------------------------------------------------------------
.x%%%%%%x. .x%%%%%%x.
,%%%%%%%%%%. .%%%%%%%%%%.
,%%%' )' \) :( `( `%%%.
,%x%)________) --------- L e n n e r t S t o c k ( _ __ (%x%.
(%%%~^88P~88P| |~=> .=-~ %%%)
(%%::. .:,\ .' `. /,:. .::%%)
`;%:`\. `-' | | `-' ./':%:'
``x`. -===.' stock@fwi.uva.nl -------- `.===- .'x''
/ `:`.__.; :.__.':' \
.d8b. ..`. .'.. .d8b.
$@
$@@
/@
. @@
''@
@@
@
@@
@
@@
@
@@
@
@@
'@
@@
@
@@
@
@@
@
@@
@
@@
$ @
,@@
@
--@@
$@
.@@
/@
/ @@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
.@
.@@
.@
,@@
@
@@
@
@@
@
@@
-,@
. @@
@
@@
____@
|--|@@
___ @
|==]@@
____@
|___@@
___ @
|__>@@
____@
|===@@
____@
|---@@
____@
|__,@@
_ _@
|--|@@
_@
|@@
_@
___|@@
_ _@
|-:_@@
_ @
|___@@
_ _@
|\/|@@
__ _@
| \|@@
____@
[__]@@
___ @
|--'@@
__ @
[_,]@@
____@
|--<@@
____@
====@@
___@
| @@
_ _@
|__|@@
_ _@
\/ @@
_ _@
|/\|@@
_ _@
_X_@@
_ _@
Y @@
___ @
/__@@
@
@@
\ @
\@@
@
@@
@
@@
@
___@@
`@
@@
____@
|--|@@
___ @
|==]@@
____@
|___@@
___ @
|__>@@
____@
|===@@
____@
|---@@
____@
|__,@@
_ _@
|--|@@
_@
|@@
_@
___|@@
_ _@
|-:_@@
_ @
|___@@
_ _@
|\/|@@
__ _@
| \|@@
____@
[__]@@
___ @
|--'@@
__ @
[_,]@@
____@
|--<@@
____@
====@@
___@
| @@
_ _@
|__|@@
_ _@
\/ @@
_ _@
|/\|@@
_ _@
_X_@@
_ _@
Y @@
___ @
/__@@
@
@@
|@
|@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@
@
@@

558
node_modules/figlet/fonts/Cygnet.flf generated vendored Normal file
View File

@@ -0,0 +1,558 @@
flf2a$ 5 4 15 0 11 0 8063 200
Author : Christian 'CeeJay' Jensen
Date : 2006/5/19
Version: 0.10 beta
-------------------------------------------------
"Cygnet" - A figfont by CeeJay
A cygnet is a baby swan.
The font is named so because it's based on
the Swan font, only smaller.
-------------------------------------------------
$$ #
$$ #
$$ #
$$ #
$$ ##
.#
|#
'#
o#
##
. .#
| |#
$ $#
$ $#
$ $##
#
_|_|_#
_|_|_#
| | #
##
.. #
.|-.#
`-|.#
`|-'#
##
#
o /#
,' #
/ o#
##
( ) #
.-' #
( `.)#
`--'`#
##
.#
|#
$#
$#
##
,#
:$#
:$#
`.#
##
`.#
$:#
$:#
.'#
##
#
| #
`-:-'#
$/ \$#
##
$ $#
$_|_$#
$ | $#
$ $#
##
#
#
o#
-'#
##
#
$___$#
$ $#
$ $#
$##
#
#
#
o#
##
,#
/ #
/ #
' #
##
#
.-.#
| |#
`-'#
##
#
. #
'| #
'-'#
##
#
,-.#
/ #
'--#
##
#
--.#
--|#
--'#
##
#
,.#
'-|#
'#
##
#
.--#
'-.#
`-'#
##
#
,-#
:-.#
`-'#
##
#
--,#
/ #
' #
##
#
,-.#
:-:#
`-'#
##
#
,-.#
`-;#
' #
##
#
#
o #
o #
##
#
o #
o #
-' #
##
#
.'#
`. #
`#
##
$ $#
$--$#
$--$#
$ $#
##
#
`. #
.`#
' #
##
#
.-.#
-'#
' #
##
#
.-.#
|a'#
`- #
##
#
. #
/_\ #
' '#
##
#
.-.#
|< #
'-'#
##
#
.-#
( #
`-#
##
#
.-.#
| :#
'-'#
##
#
.--#
|- #
'--#
##
#
.--#
|- #
' #
##
#
.-. #
|-. #
'-' #
##
#
. .#
|-|#
' '#
##
#
-.-#
| #
-'-#
##
#
.-.#
;#
`' #
##
#
. .#
|< #
' `#
##
#
. #
| #
'-'#
##
#
. .#
|\/|#
' '#
##
#
. .#
|\|#
' '#
##
#
.-.#
| |#
`-'#
##
#
.-.#
|-'#
' #
##
#
.-.#
|.|#
`-`#
##
#
.-.#
|-'#
'`-#
##
#
.-.#
`-.#
`-'#
##
#
---#
| #
' #
##
#
. .#
| |#
`-'#
##
#
. .#
| |#
` #
##
#
. .#
|/\|#
' '#
##
#
. .#
x #
' '#
##
#
. .#
Y #
' #
##
#
--.#
/ #
'--#
##
.--#
| #
| #
'--#
##
#
\ #
\ #
\#
##
--.#
|#
|#
--'#
##
. #
' `#
#
#
##
#
#
#
___#
##
o #
\#
#
#
##
#
#
.-. #
`-`-#
##
#
. #
|-.#
`-'#
##
#
#
.-#
`-#
##
#
. #
.-| #
`-'-#
##
#
#
.-,#
`'-#
##
#
.-#
-|-#
' #
##
#
#
.-.#
`-|#
`-'##
#
. #
|-. #
' '-#
##
#
.#
.#
'#
##
#
.#
.#
|#
`-'##
#
. #
|_,#
' `#
##
#
. #
| #
'-#
##
#
#
.-.-.#
' ' '#
##
#
#
.-.#
' '#
##
#
#
.-.#
`-'#
##
#
#
.-.#
|-'#
' ##
#
#
.-.#
`-|#
'##
#
#
.-.#
' #
##
#
#
.-#
-'#
##
#
. #
-|-#
'-#
##
#
#
. .#
'-'#
##
#
#
. .#
` #
##
#
#
. . .#
` ` #
##
#
#
._.#
' '#
##
#
#
. .#
'-|#
`-'##
#
#
-,#
'-#
##
#
.-#
< #
`-#
##
.#
|#
|#
|#
'##
#
-. #
>#
-' #
##
#
#
,-. #
`-'#
##
. . #
. #
/_\ #
' '#
##
o o#
.--.#
: :#
`--'#
##
o o#
. .#
: :#
`--'#
##
#
. . #
.-. #
`-`-#
##
#
. .#
.-.#
`-'#
##
#
. .#
. .#
'-'#
##
#
,-.#
|< #
|-'#
' ##
197 LATIN CAPITAL LETTER A WITH RING ABOVE
o #
. #
/_\ #
' '#
##
198 LATIN CAPITAL LETTER AE
#
,--#
/+--#
' '--#
##
216 LATIN CAPITAL LETTER O WITH STROKE
#
.-/#
|/|#
/-'#
##
229 LATIN SMALL LETTER A WITH RING ABOVE
#
o #
.-. #
`-`-#
##
230 LATIN SMALL LETTER AE
#
#
.-.-,#
`-`'-#
##
248 LATIN SMALL LETTER O WITH STROKE
#
#
.-;#
;-'#
##

429
node_modules/figlet/fonts/DANC4.flf generated vendored Normal file
View File

@@ -0,0 +1,429 @@
flf2a$ 4 4 48 0 20 0 0
DANC4 by Richard Sabey <cryptic_fan@hotmail.com> 9.2003
This font is based on the "dancing men" cipher used in Sir Arthur Conan
Doyle's Sherlock Holmes story "The Adventure of the Dancing Men" (DANC),
which was later published in the collection "The Return of Sherlock Holmes".
The cipher ignores punctuation, and marks a space by a flag held by the
dancing man for the last letter before the space. The last figure of
an entire message carries no flag, as there is no need for one. In this
implementation of the cipher, figures with no flags represent lowercase
letters; those with flags, uppercase letters. Thus, when FIGletising, you
should type only the letters, and uppercase the *last* letter of every word
except the last. For example "Come, Elsie!" becomes comEelsie.
The messages in dancing-men cipher in DANC didn't use the letters
FJKQUWXZ. What's more, editions of DANC vary in what mistakes they make in
the cipher, though they are consistent in using the same figure for P & V.
To resolve this problem and supply the missing figures, I follow the TrueType
font designed in 1994 by Martin Bergman of Sweden.
The positions of the flags have been altered to keep this a 4-line FIGfont.
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
\O \O/ \O/ \O \O/ O/ '\ /`@
.___| Y Y___, | Y <| \ / @
| / \ | / \ / \ / \ X @
|_ ./ \, _| _\ /_ ./ \, _| |_ /O\# @@
\O/ O/ '\ /`@
Y_ <| \ / @
/ | / \ Y @
./ |_ _| |_ O\# @@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
\O |_O \O |_O_|#@
.___| _|> |_ _| @
| _| \ / | _| \ @
|_ |_ ./ |_ |_ @@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
\O @
|\ @
/ \ @
_\ /_@@
O/ @
/| @
/ \ @
./ \,@@
O @
/| @
/ \ @
_\ /_@@
O @
/|\ @
/ \ @
./ \,@@
O @
|\ @
/ \ @
_\ /_@@
\O @
|\ @
/ \ @
./ \,@@
O/ @
/| @
/ \ @
_\ /_@@
O @
/| @
/ \ @
./ \,@@
O @
/|\ @
/ \ @
_\ /_@@
O @
|\ @
/ \ @
./ \,@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
\O/ '\ /`@
Y_ \ / @
/ | X @
./ |_ /O\# @@
\O/# @
Y_ @
/ | @
./ |_@@
O @
|# @
/ \ @
_\ /_@@
\O @
|# @
/ \ @
_\ /_@@
'\ /`@
\ / @
Y @
O\# @@
\O/# @
Y @
/ \ @
./ \,@@
O/# @
|_ @
/ | @
./ |_@@
'\ /`@
\ / @
Y @
/O# @@
\O/#@
Y @
| @
_|_ @@
\O/#@
.___Y @
| @
|_ @@
\O @
_|#@
_| | @
|_@@
O/# @
| @
/ \ @
./ \,@@
|_O @
_#> @
_| \ @
|_@@
\O/#@
Y @
/ \ @
_| |_@@
O/#@
<| @
/ \ @
_| |_@@
\O/#@
_Y @
_| | @
|_ @@
\O @
.___|#@
| @
|_@@
\O @
|#__,@
| @
_| @@
\O/# @
Y___,@
| @
_| @@
|_O_|#@
_| @
_| \ @
|_ @@
'\ /`@
\ / @
X @
/O\# @@
\O# @
|_ @
/ | @
./ |_@@
O/#@
.___| @
| @
|_ @@
O/#@
_| @
_| | @
|_ @@
\O @
|# @
/ \ @
./ \,@@
O/# @
_| @
_| \ @
\,@@
O/# @
|___,@
| @
_| @@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
\O/ @
Y_ @
/ | @
./ |_@@
O @
| @
/ \ @
_\ /_@@
\O @
| @
/ \ @
_\ /_@@
'\ /`@
\ / @
Y @
O\ @@
\O/ @
Y @
/ \ @
./ \,@@
O/ @
|_ @
/ | @
./ |_@@
'\ /`@
\ / @
Y @
/O @@
\O/@
Y @
| @
_|_@@
\O/@
.___Y @
| @
|_@@
\O @
_| @
_| | @
|_@@
O/ @
| @
/ \ @
./ \,@@
|_O @
_|> @
_| \ @
|_@@
\O/ @
Y @
/ \ @
_| |_@@
O/ @
<| @
/ \ @
_| |_@@
\O/@
_Y @
_| | @
|_@@
\O @
.___| @
| @
|_@@
\O @
|___,@
| @
_| @@
\O/ @
Y___,@
| @
_| @@
|_O_|@
_| @
_| \ @
|_@@
'\ /`@
\ / @
X @
/O\ @@
\O @
|_ @
/ | @
./ |_@@
O/@
.___| @
| @
|_@@
O/@
_| @
_| | @
|_@@
\O @
| @
/ \ @
./ \,@@
O/ @
_| @
_| \ @
\,@@
O/ @
|___,@
| @
_| @@
@
@
@
@@
@
@
@
@@
@
@
@
@@
@
@
@
@@
\O/ \O/# @
Y_ Y @
/ | / \ @
./ |_ ./ \,@@
\O/ \O/# @
_Y Y @
_| | / \ @
|_ ./ \,@@
\O \O/# @
|_ Y @
/ | / \ @
./ |_ ./ \,@@
\O/ \O/ @
Y_ Y @
/ | / \ @
./ |_ ./ \,@@
\O/ \O/ @
_Y Y @
_| | / \ @
|_ ./ \,@@
\O \O/ @
|_ Y @
/ | / \ @
./ |_ ./ \,@@
|_O_| |_O_|@
_| _| @
_| \ _| \ @
|_ |_@@

1137
node_modules/figlet/fonts/DOS Rebel.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

1033
node_modules/figlet/fonts/DWhistled.flf generated vendored Normal file

File diff suppressed because it is too large Load Diff

731
node_modules/figlet/fonts/Dancing Font.flf generated vendored Normal file
View File

@@ -0,0 +1,731 @@
flf2a$ 7 6 16 1 16 0 129 0
Author : Myflix
Date : 2003/10/18 21:37:14
Version: 1.0
-------------------------------------------------
-------------------------------------------------
This font has been created using JavE's FIGlet font export assistant.
Have a look at: http://www.jave.de
Permission is hereby given to modify this font, as long as the
modifier's name is placed on a comment line.
---
Font modified June 17, 2007 by patorjk
This was to widen the space character.
$ $#
$ $#
$ $#
$ $#
$ $#
$ $#
$ $##
_ #
U|"|u #
\| |/ #
|_| #
(_) #
|||_ #
(__)_) ##
"#
#
#
#
#
#
##
##
#
#
#
#
#
##
$#
#
#
#
#
#
##
%#
#
#
#
#
#
##
&#
#
#
#
#
#
##
_ #
|"| #
|_| #
#
#
#
##
(#
#
#
#
#
#
##
)#
#
#
#
#
#
##
*#
#
#
#
#
#
##
+#
#
#
#
#
#
##
#
#
#
#
_ #
(") #
\| ##
#
#
U u #
/___\ #
|__"__| #
#
##
#
#
#
#
_ #
(") #
" ##
/#
#
#
#
#
#
##
___ #
/ _"\ u #
| / U |/ #
| \// |,-. #
\___/(_/ #
// #
(__) ##
_ #
/"| #
u | |u #
\| |/ #
|_| #
_//<,-, #
(__)(_/ ##
____ #
|___"\ #
U __) | #
\/ __/ \ #
|_____|u #
<< // #
(__)(__) ##
_____ #
|___"/u #
U_|_ \/ #
___) | #
|____/ #
_// \\ #
(__)(__) ##
_ _ #
| ||"| #
| || |_ #
|__ _| #
/|_|\ #
u_|||_u #
(__)__) ##
____ #
U|"___|u #
\|___ \/ #
___) | #
|____/ #
,-,>>\,-. #
\ ) (_/ ##
__ #
U /"/_ u #
\| '_ \/ #
| (_) | #
\___/ #
_// \\_ #
(__) (__) ##
_____ #
|___ "| #
/ / #
u// /\ #
/_/ U #
<<>>_ #
(__)__) ##
___ #
U( " ) u #
\/ \/ #
| ( ) | #
\___/>> #
)( (__) #
(__) ##
___ #
/ _"\ #
| (_) | #
/\__, |\ #
U<< |_/ u #
(__) )( #
(__) ##
#
_ #
(") #
#
_ #
(") #
##
;#
#
#
#
#
#
##
<#
#
#
#
#
#
##
=#
#
#
#
#
#
##
>#
#
#
#
#
#
##
___ #
|__"\ #
U / /u #
\|_|/ #
(_) #
_//\,-. #
(__)( / ##
@#
#
#
#
#
#
##
_ #
U /"\ u #
\/ _ \/ #
/ ___ \ #
/_/ \_\ #
\\ >> #
(__) (__) ##
____ #
U | __")u #
\| _ \/ #
| |_) | #
|____/ #
_|| \\_ #
(__) (__) ##
____ #
U /"___| #
\| | u #
| |/__ #
\____| #
_// \\ #
(__)(__) ##
____ #
| _"\ #
/| | | | #
U| |_| |\ #
|____/ u #
|||_ #
(__)_) ##
U _____ u #
\| ___"|/ #
| _|" #
| |___ #
|_____| #
<< >> #
(__) (__) ##
_____ #
|" ___| #
U| |_ u #
\| _|/ #
|_| #
)(\\,- #
(__)(_/ ##
____ #
U /"___|u #
\| | _ / #
| |_| | #
\____| #
_)(|_ #
(__)__) ##
_ _ #
|'| |'| #
/| |_| |\ #
U| _ |u #
|_| |_| #
// \\ #
(_") ("_) ##
#
___ #
|_"_| #
| | #
U/| |\u #
.-,_|___|_,-. #
\_)-' '-(_/ ##
_ #
U |"| u #
_ \| |/ #
| |_| |_,-. #
\___/-(_/ #
_// #
(__) ##
_ __ #
|"|/ / #
| ' / #
U/| . \\u #
|_|\_\ #
,-,>> \\,-. #
\.) (_/ ##
_ #
|"| #
U | | u #
\| |/__ #
|_____| #
// \\ #
(_")("_) ##
__ __ #
U|' \/ '|u #
\| |\/| |/ #
| | | | #
|_| |_| #
<<,-,,-. #
(./ \.) ##
_ _ #
| \ |"| #
<| \| |> #
U| |\ |u #
|_| \_| #
|| \\,-. #
(_") (_/ ##
U ___ u #
\/"_ \/ #
| | | | #
.-,_| |_| | #
\_)-\___/ #
\\ #
(__) ##
____ #
U| _"\ u #
\| |_) |/ #
| __/ #
|_| #
||>>_ #
(__)__) ##
___ #
/ " \ #
| |"| | #
/| |_| |\ #
U \__\_\u #
\\// #
(_(__) ##
____ #
U | _"\ u #
\| |_) |/ #
| _ < #
|_| \_\ #
// \\_ #
(__) (__) ##
____ #
/ __"| u #
<\___ \/ #
u___) | #
|____/>> #
)( (__) #
(__) ##
_____ #
|_ " _| #
| | #
/| |\ #
u |_|U #
_// \\_ #
(__) (__) ##
_ _ #
U |"|u| | #
\| |\| | #
| |_| | #
<<\___/ #
(__) )( #
(__) ##
__ __ #
\ \ /"/u #
\ \ / // #
/\ V /_,-. #
U \_/-(_/ #
// #
(__) ##
#
__ __ #
\"\ /"/ #
/\ \ /\ / /\ #
U \ V V / U#
.-,_\ /\ /_,-.#
\_)-' '-(_/ ##
__ __ #
\ \/"/ #
/\ /\ #
U / \ u #
/_/\_\ #
,-,>> \\_ #
\_) (__) ##
__ __ #
\ \ / / #
\ V / #
U_|"|_u #
|_| #
.-,//|(_ #
\_) (__) ##
_____ #
|"_ /u #
U / // #
\/ /_ #
/____| #
_//<<,- #
(__) (_/ ##
[#
#
#
#
#
#
##
\#
#
#
#
#
#
##
]#
#
#
#
#
#
##
U _ u #
\/"\/ #
|/`\| #
#
#
#
##
_#
#
#
#
#
#
##
___ #
(" / #
)/ #
#
#
#
##
_ #
U /"\ u #
\/ _ \/ #
/ ___ \ #
/_/ \_\ #
\\ >> #
(__) (__) ##
____ #
U | __")u #
\| _ \/ #
| |_) | #
|____/ #
_|| \\_ #
(__) (__) ##
____ #
U /"___| #
\| | u #
| |/__ #
\____| #
_// \\ #
(__)(__) ##
____ #
| _"\ #
/| | | | #
U| |_| |\ #
|____/ u #
|||_ #
(__)_) ##
U _____ u #
\| ___"|/ #
| _|" #
| |___ #
|_____| #
<< >> #
(__) (__) ##
_____ #
|" ___| #
U| |_ u #
\| _|/ #
|_| #
)(\\,- #
(__)(_/ ##
____ #
U /"___|u #
\| | _ / #
| |_| | #
\____| #
_)(|_ #
(__)__) ##
_ _ #
|'| |'| #
/| |_| |\ #
U| _ |u #
|_| |_| #
// \\ #
(_") ("_) ##
#
___ #
|_"_| #
| | #
U/| |\u #
.-,_|___|_,-. #
\_)-' '-(_/ ##
_ #
U |"| u #
_ \| |/ #
| |_| |_,-. #
\___/-(_/ #
_// #
(__) ##
_ __ #
|"|/ / #
| ' / #
U/| . \\u #
|_|\_\ #
,-,>> \\,-. #
\.) (_/ ##
_ #
|"| #
U | | u #
\| |/__ #
|_____| #
// \\ #
(_")("_) ##
__ __ #
U|' \/ '|u #
\| |\/| |/ #
| | | | #
|_| |_| #
<<,-,,-. #
(./ \.) ##
_ _ #
| \ |"| #
<| \| |> #
U| |\ |u #
|_| \_| #
|| \\,-. #
(_") (_/ ##
U ___ u #
\/"_ \/ #
| | | | #
.-,_| |_| | #
\_)-\___/ #
\\ #
(__) ##
____ #
U| _"\ u #
\| |_) |/ #
| __/ #
|_| #
||>>_ #
(__)__) ##
___ #
/ " \ #
| |"| | #
/| |_| |\ #
U \__\_\u #
\\// #
(_(__) ##
____ #
U | _"\ u #
\| |_) |/ #
| _ < #
|_| \_\ #
// \\_ #
(__) (__) ##
____ #
/ __"| u #
<\___ \/ #
u___) | #
|____/>> #
)( (__) #
(__) ##
_____ #
|_ " _| #
| | #
/| |\ #
u |_|U #
_// \\_ #
(__) (__) ##
_ _ #
U |"|u| | #
\| |\| | #
| |_| | #
<<\___/ #
(__) )( #
(__) ##
__ __ #
\ \ /"/u #
\ \ / // #
/\ V /_,-. #
U \_/-(_/ #
// #
(__) ##
#
__ __ #
\"\ /"/ #
/\ \ /\ / /\ #
U \ V V / U#
.-,_\ /\ /_,-.#
\_)-' '-(_/ ##
__ __ #
\ \/"/ #
/\ /\ #
U / \ u #
/_/\_\ #
,-,>> \\_ #
\_) (__) ##
__ __ #
\ \ / / #
\ V / #
U_|"|_u #
|_| #
.-,//|(_ #
\_) (__) ##
_____ #
|"_ /u #
U / // #
\/ /_ #
/____| #
_//<<,- #
(__) (_/ ##
__ #
u /"/U #
\| |/ #
< < #
| | #
<<\_\ #
(__)_) ##
|#
#
#
#
#
#
##
__ #
\"\ u #
| |/ #
/ > > #
U| | #
/_/>>_ #
(_(__) ##
~#
#
#
#
#
#
##
_ #
U /"\ u #
\/ _ \/ #
/ ___ \ #
/_/ \_\ #
\\ >> #
(__) (__) ##
U ___ u #
\/"_ \/ #
| | | | #
.-,_| |_| | #
\_)-\___/ #
\\ #
(__) ##
_ _ #
U |"|u| | #
\| |\| | #
| |_| | #
<<\___/ #
(__) )( #
(__) ##
_ #
U /"\ u #
\/ _ \/ #
/ ___ \ #
/_/ \_\ #
\\ >> #
(__) (__) ##
U ___ u #
\/"_ \/ #
| | | | #
.-,_| |_| | #
\_)-\___/ #
\\ #
(__) ##
_ _ #
U |"|u| | #
\| |\| | #
| |_| | #
<<\___/ #
(__) )( #
(__) ##
ß#
#
#
#
#
#
##

Some files were not shown because too many files have changed in this diff Show More