This is why you don't pay devs by the hour...
The combinify function is just adding two numbers by sleeping for the first, then the second, then measuring the elasped time.
ct = [86, 19, 20304, 3864100, 720160578, 4105564729, 1710554160, 3956393540, 3631228131, 3844144272, 3159071183, 1935271076, 1880195787, 286659220, 2637473496, 3337089417, 902437867, 2684126330, 467677413, 3386842748, 1385254386, 96755826, 3474961133, 1024955004, 1633639851, 2562422466, 468365725, 219405782, 1415425177, 617316294, 3700754605, 2413949375, 2673249190, 3602164671, 1955316913, 1635036104, 2604773015, 1741032651, 2270889642, 2164201674, 732877205, 3553556446, 3683532177, 1741647566, 1380355995, 1375675096, 530249863, 852697830, 2900968595, 2314256588, 4131952791, 1359561944, 3807160204, 1948933081, 504789668]
print(bytes((ct[i]+ct[i+1])%256 for i in range(len(ct)-1)))```