BTW.. zip was not used as metadata on purpose (feel free to ask why we did things the way we did.. it was a huge crazy rush of course, but we did try a dozen variations first.. we had some reasons
.. at the time (possibly today even), the zip management had a huge memory overhead (and also at the time, zip didn't work at all for mounting, but did later in firmware life; but recall we had only a couple weeks to put together a system, so thats why
; Various mount strategies tended to put the entire thing in RAM at once, which meant including a couple png's in there ate up a lot of memory in a worst case. At the same time, it was considered to use an unpacked zip since the content should be small and the large content wouldn't compress well anyway, and that could permit manual scanning through anyway; but in the end, we've all written out own unzip handlers before and just jumping to the piece in question and unzipping it is probably okay too. Just be ware, that using a mount against a zip chunk is usually a bad idea for performance