DS
Size: a a a
DS
AM
AM
static const char parts[] = "0123456789qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM";
std::mt19937 mt(std::random_device{}());
std::uniform_int_distribution ud(0, sizeof(parts) - 1);
std::string name;
for (auto i = 0; i < 12; ++i)
name += parts[ud(mt)];
AM
AP
S
MS
static const char parts[] = "0123456789qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM";
std::mt19937 mt(std::random_device{}());
std::uniform_int_distribution ud(0, sizeof(parts) - 1);
std::string name;
for (auto i = 0; i < 12; ++i)
name += parts[ud(mt)];
RN
RN
AM
MS
MS
OS
OS
MS
MS
YL
YL
YL
AM