Better would be the non-static one, but not because it'll be much faster, but rather it's going to use less RAM.
The static binaries don't rely on any external libraries, and doesn't share routines with other programs that would use the same libraries. Meaning it has a larger memory footprint. The non-static ones will use external libraries, which are only loaded into memory when needed. Since the major library in use would be glibc, it comes at a substantially smaller memory footprint than the static binary, as glibc is usually in memory to begin with.
But you plan on running it under Wine. If that's the case, you'll need the NT binaries, as Wine will "emulate" Windows, allowing the NT version to run, which is faster than the Linux version to begin with, and Wine runs the NT version faster than NT runs the NT version.