Hi again Philippe,
These frames have a row of saturated pixels. The first row of each flat frame has a constant value of 65535. This is obviously wrong and is, for some reason that I have to investigate further, affecting ImageIntegration's normalization routines in this particular case.
To fix this problem with these flat frames, you can use PixelMath with an ImageContainer. This is the PixelMath expression I've used:
iif( y() == 0 && $T == 1, pixel( $T, x(), y()+1 ), $T )
This expression will simply copy the second row of pixels to replace the first row. With this change, you can integrate your 15 flat frames with any rejection settings without problems. The maximum value of the integrated master flat will be about 0.78, and the mean value about 0.69, as expected.