//Date created:  9/6/2021
//Author: Kong Xiong
//File name: NumberSystem.txt
//Please do not modify this file; otherwise, the software might not work properly.
//The software uses to create pressed buttons.
//Any line starts with forward slashes (//) or blank will be ignored when parsing.
//Words after forward slashes (//) are dropped out, use as comment.

// 16 rows by 4 columns
//Column 1 = decimal (base 10), column 2 = binary (base 2), column 3 = octal (base 8(, column 4= hexadecimal (base 15)

"0", "0", "0", "0",
"1", "1", "1", "1",
"2", "10", "2", "2",
"3", "11", "3", "3",
"4", "100", "4", "4",
"5", "101", "5", "4",
"6", "110", "6", "6",
"7", "111", "7", "7",
"8", "1000", "10", "8",
"9", "1001", "11", "9",
"10", "1010", "12", "A",
"11", "1011", "13", "B",
"12", "1100", "14", "C",
"13", "1101", "15", "D",
"14", "1110", "16", "E",
"15", "1111", "17", "F",
