Array Reuse

Hmm, I may not be getting the problem. If you want to write the whole thing to EEPROM without iterating, use eeprom_write_block.

int CodeStore[] = {320,760,280,1620,260,680,[...],740,200};  // <- 71 int's 
eeprom_write_block(CodeStore,0,sizeof(CodeStore));

What do you mean "re-use the array"? Where else would your next 71 ints come from?