Don't get me bad ideas ...
Actually it does piss me off that people can now buy YACs so much cheaper than I had paid. I wouldn't even have to actually fight many POWs since I ask the miners for a little donation. It would be a shame if something happend to your block. Since I would still kill a lot of blocks there would be far less supply for the exchanges.
In fact I can't stop people from selling cheap at the exchanges, but if I punish all miners for to low prices I can somewhat stabilize the market. I do have the coins, the money to buy significant on the exchanges to prevent a panic and my morals ain't that good either.

On a total different subject, how can I automatically split up a big wallet into a few small ones. Let's say about 10.000 adresses?
Something like:
1) create new wallet.dat
2) generate and save 10000 addresses via RPC command
3) switch to your old wallet.dat
4) send X YAC to each of these 10k addresses you just generated
5)

6) Profit!
Some BASH code for step 2:
for i in $(seq 1 10000) ; do yacoind getnewaddress >> addresses.txt ; done
And for step 4:
for address in $(cat addresses.txt) ; do yacoind sendtoaddress ${address} ; done
Replace by the amount of YACs you want to send to each address.
Quite easy.
