Nope, I created wallet, CPU miner and GPU miner for this coin. And the bugs. Lots of bugs.

Block explorer is coming soon too (with even more bugs).
Bug report. I believe that in gpuminer roulette.cpp line 120:
cl::Buffer countersCL(*m.context, CL_MEM_READ_WRITE | CL_MEM_USE_HOST_PTR, (16 + 1) * sizeof(*countersH), count\
ersH, &err);
is allocating the wrong size buffer. (16+1)*sizeof(*countersH) is only 17 ints, but countersCL is used with one set of counters per iteration, and so should be (16*16)*sizeof(*countersH)
(or simply sizeof(countersH))
Thanks for the heads up, developer will fix this during the weekend.