r2.get_bytes = function(off, n, cb) {
    r2.cmd('pcj @' + off + '!' + n +'|', function(json) {
        cb(JSON.parse(json));
    });
};