// Copyright (c) 2002 - 2022 kio@little-bat.de
// BSD-2-Clause license
// https://opensource.org/licenses/BSD-2-Clause


/*
	conversion table 7-bit Ascii-US -> UTF-8
*/


currently not used


	A(0x00),
	A(0x01), A(0x02), A(0x03), A(0x04), A(0x05), A(0x06), A(0x07), A(0x08), A(0x09), A(0x0a), A(0x0b), A(0x0c), A(0x0d),
	A(0x0e), A(0x0f), A(0x10), A(0x11), A(0x12), A(0x13), A(0x14), A(0x15), A(0x16), A(0x17), A(0x18), A(0x19), A(0x1a),
	A(0x1b), A(0x1c), A(0x1d), A(0x1e), A(0x1f),

	A(0x20), A(0x21), A(0x22), A(0x23), A(0x24), A(0x25), A(0x26), A(0x27), A(0x28), A(0x29), A(0x2a), A(0x2b), A(0x2c),
	A(0x2d), A(0x2e), A(0x2f), B("0"), B("1"), B("2"), B("3"), B("4"), B("5"), B("6"), B("7"), B("8"), B("9"), A(0x3a),
	A(0x3b), A(0x3c), A(0x3d), A(0x3e), A(0x3f),

	B("@"), B("A"), B("B"), B("C"), B("D"), B("E"), B("F"), B("G"), B("H"), B("I"), B("J"), B("K"), B("L"), B("M"),
	B("N"), B("O"), B("P"), B("Q"), B("R"), B("S"), B("T"), B("U"), B("V"), B("W"), B("X"), B("Y"), B("Z"), B("["),
	B("\\"), B("]"), B("^"), B("_"),

	B("`"), B("a"), B("b"), B("c"), B("d"), B("e"), B("f"), B("g"), B("h"), B("i"), B("j"), B("k"), B("l"), B("m"),
	B("n"), B("o"), B("p"), B("q"), B("r"), B("s"), B("t"), B("u"), B("v"), B("w"), B("x"), B("y"), B("z"), B("{"),
	B("|"), B("}"), B("~"), A(0x7f),

	A(0x00), A(0x01), A(0x02), A(0x03), A(0x04), A(0x05), A(0x06), A(0x07), A(0x08), A(0x09), A(0x0a), A(0x0b), A(0x0c),
	A(0x0d), A(0x0e), A(0x0f), A(0x10), A(0x11), A(0x12), A(0x13), A(0x14), A(0x15), A(0x16), A(0x17), A(0x18), A(0x19),
	A(0x1a), A(0x1b), A(0x1c), A(0x1d), A(0x1e), A(0x1f),

	A(0x20), A(0x21), A(0x22), A(0x23), A(0x24), A(0x25), A(0x26), A(0x27), A(0x28), A(0x29), A(0x2a), A(0x2b), A(0x2c),
	A(0x2d), A(0x2e), A(0x2f), B("0"), B("1"), B("2"), B("3"), B("4"), B("5"), B("6"), B("7"), B("8"), B("9"), A(0x3a),
	A(0x3b), A(0x3c), A(0x3d), A(0x3e), A(0x3f),

	B("@"), B("A"), B("B"), B("C"), B("D"), B("E"), B("F"), B("G"), B("H"), B("I"), B("J"), B("K"), B("L"), B("M"),
	B("N"), B("O"), B("P"), B("Q"), B("R"), B("S"), B("T"), B("U"), B("V"), B("W"), B("X"), B("Y"), B("Z"), B("["),
	B("\\"), B("]"), B("^"), B("_"),

	B("`"), B("a"), B("b"), B("c"), B("d"), B("e"), B("f"), B("g"), B("h"), B("i"), B("j"), B("k"), B("l"), B("m"),
	B("n"), B("o"), B("p"), B("q"), B("r"), B("s"), B("t"), B("u"), B("v"), B("w"), B("x"), B("y"), B("z"), B("{"),
	B("|"), B("}"), B("~"), A(0x7f),
