21 lines
263 B
TypeScript
21 lines
263 B
TypeScript
export const names: Set<string> = new Set([
|
|
"anglo",
|
|
"bible",
|
|
"carol",
|
|
"costa",
|
|
"dutch",
|
|
"fossa", // just too hard
|
|
"harry",
|
|
"jimmy",
|
|
"jones",
|
|
"lewis",
|
|
"maria",
|
|
"paris",
|
|
"pedro",
|
|
"roger",
|
|
"sally",
|
|
"savoy",
|
|
"texas",
|
|
"willy",
|
|
]);
|