>>106425356
#include <stdint.h>
#include <stdio.h>
int main()
{
//the following code should be self-explanatory
int format = 684837;
uint64_t freqs[16] = {4054998059412627488, 7303807615843717704, 6799974004618176629, 4657449412518044769, 7955156174022466392, 3513286678004007804, 478559098708};
uint64_t phases[16] = {3316907778697993493, 1442841045428938803, 1156952529336864027, 4473781984858234378, 5490526870435153165, 1527017391200686200, 26681431365};
uint64_t composite[32] = {0};
int i = 0;
unsigned char frequency = i[(char*)(freqs)];
unsigned char phase = i[(char*)(phases)];
while (frequency > 0){
for (int j=phase;j<2048;j+=frequency){
(j/64)[composite] |= ((uint64_t)1 << j%64);
}
frequency = (i%64)[(char*)(freqs+i/64)];
phase = (i%64)[(char*)(phases+i/64)];
i++;
}
printf((char*)&format, composite);
return 0;
}