For those of you worried about posting your IMEI numbers online I have written a mIRC script which does the NCK calculations for you.
All you need is mIRC and the code below installed in the "Aliases" script window, followed by: /unlock (your IMEI code) i.e. /unlock 353294040330144
This only works for gen1 Racer / Blade phones do not attempt to use the NCK code on gen2 phones it won't work.
/unlock {
if ($1 = $null) { echo -e IMEI is required | return }
if ($len($1) != 15) { echo -e IMEI not valid size | return }
var %nck
var %hash = $md5($1)
var %loop = 0
while (%loop < 16) {
var %n = $calc($replace($mid(%hash,$calc(%loop + 1),1),a,10,b,11,c,12,d,13,e,14,f,15) * 16)
%n = %n + $calc($replace($mid(%hash,$calc(%loop + 2),1),a,10,b,11,c,12,d,13,e,14,f,15))
%n = %n + $calc($replace($mid(%hash,$calc(%loop + 17),1),a,10,b,11,c,12,d,13,e,14,f,15) * 16)
%n = %n + $calc($replace($mid(%hash,$calc(%loop + 18),1),a,10,b,11,c,12,d,13,e,14,f,15))
%nck = %nck $+ $left($calc(($and(%n , 255)) * 9 / 255),1)
%loop = %loop + 2
}
echo -e IMEI = $1 $+ , NCK = %nck
}
Richard S.