[PATCH] powerpc64: strcpy optimization for unaligned string

Rajalakshmi Srinivasaraghavan raji@linux.vnet.ibm.com
Wed Dec 17 18:06:00 GMT 2014



This patch optimizes strcpy for ppc64 for unaligned source or
destination address. The source or destination address is aligned
to doubleword and data is shifted based on the alignment and
added with the previous loaded data to be written as a doubleword.
For each load, cmpb instruction is used for faster null check.

More combination of unaligned inputs is also added in benchtest
to measure the improvement.The new optimization shows 2 to 80% of
performance improvement for longer string though it does not show
big difference on string size less than 16 due to additional checks.

This patch is tested on powerpc64 BE and LE and I have also attached
the benchtest result.

	* sysdeps/powerpc/powerpc64/power7/strcpy.S: Optimize unaligned path.
	* benchtests/bench-strcpy.c: Add more unaligned inputs.
---
  benchtests/bench-strcpy.c                 |  15 ++
  sysdeps/powerpc/powerpc64/power7/strcpy.S | 325 ++++++++++++++++++++++--------
  2 files changed, 260 insertions(+), 80 deletions(-)

diff --git a/benchtests/bench-strcpy.c b/benchtests/bench-strcpy.c
index c3ab4cf..d9b790f 100644
--- a/benchtests/bench-strcpy.c
+++ b/benchtests/bench-strcpy.c
@@ -171,6 +171,21 @@ test_main (void)
        do_test (i, i, 8 << i, BIG_CHAR);
      }

+  for (i = 16; i <= 512; i+=4)
+    {
+      do_test (0, 4, i, SMALL_CHAR);
+      do_test (4, 0, i, BIG_CHAR);
+      do_test (4, 4, i, SMALL_CHAR);
+      do_test (2, 2, i, BIG_CHAR);
+      do_test (2, 6, i, SMALL_CHAR);
+      do_test (6, 2, i, BIG_CHAR);
+      do_test (1, 7, i, SMALL_CHAR);
+      do_test (7, 1, i, BIG_CHAR);
+      do_test (3, 4, i, SMALL_CHAR);
+      do_test (4, 3, i, BIG_CHAR);
+      do_test (5, 7, i, SMALL_CHAR);
+      do_test (7, 5, i, SMALL_CHAR);
+    }
    return ret;
  }

diff --git a/sysdeps/powerpc/powerpc64/power7/strcpy.S b/sysdeps/powerpc/powerpc64/power7/strcpy.S
index ce71982..1bc9737 100644
--- a/sysdeps/powerpc/powerpc64/power7/strcpy.S
+++ b/sysdeps/powerpc/powerpc64/power7/strcpy.S
@@ -70,9 +70,18 @@ EALIGN (FUNC_NAME, 4, 0)
  #endif
  	or	rTMP, rSRC, rRTN
  	clrldi.	rTMP, rTMP, 61
-	bne	L(check_word_alignment)
+	bne	L(check_alignment)
  	b	L(aligned_doubleword_copy)

+	.align 4
+L(check_alignment):
+	rldicl	rRTNAL, rRTN, 0, 61
+	rldicl	rSRCAL, rSRC, 0, 61
+	cmpld	cr7, rSRCAL, rRTNAL
+	beq	cr7, L(same_alignment)
+	b	L(unaligned)
+
+	.align 4
  L(same_alignment):
  /* Src and dst with same alignment: align both to doubleword.  */
  	mr	rALCNT, rRTN
@@ -180,93 +189,249 @@ L(g1):
  #endif
  	blr

-L(check_word_alignment):
-	clrldi. rTMP, rTMP, 62
-	beq	L(aligned_word_copy)
-	rldicl	rRTNAL, rRTN, 0, 61
-	rldicl	rSRCAL, rSRC, 0, 61
-	cmpld	cr7, rSRCAL, rRTNAL
-	beq	cr7, L(same_alignment)
-	b	L(unaligned)
-
-/* For word aligned memory, operate using word load and stores.  */
  	.align	4
-L(aligned_word_copy):
-	li	rMASK, 0
-	addi	rRTN, rRTN, -4
-	lwz	rWORD, 0(rSRC)
-	b	L(g5)
+L(unaligned):
+	cmpdi	rSRCAL, 0		/* Check src alignment */
+	beq	L(srcaligndstunalign)
+	/* src is unaligned */
+	rlwinm	r10, rSRC, 3,26,28	/* Calculate padding.  */
+	clrrdi	rSRC, rSRC, 3		/* Align the addr to dw boundary */
+	ld	rWORD, 0(rSRC)		/* Load doubleword from memory.  */
+	li	rTMP, 0
+	/* Discard bits not part of the string */
+#ifdef __LITTLE_ENDIAN__
+	srd	rALT, rWORD, r10
+#else
+	sld	rALT, rWORD, r10
+#endif
+	cmpb	rTMP, rALT, rTMP	/* Compare each byte against null */
+	/* Discard bits not part of the string */
+#ifdef __LITTLE_ENDIAN__
+	sld	rTMP, rTMP, r10
+#else
+	srd	rTMP, rTMP, r10
+#endif
+	cmpdi	rTMP, 0
+	bne	L(bytebybyte)		/* if it has null, copy byte by byte */
+	subfic	r8, r9, 8
+	rlwinm	r5, rRTN, 3,26,28	/* Calculate padding in bits.  */
+	rldicl	r9, rRTN, 0, 61		/* Calculate padding in bytes. */
+	addi	rRTN, rRTN, -1

-	.align	4
-L(g3):	lwzu	rALT, 4(rSRC)
-	stwu	rWORD, 4(rRTN)
-	cmpb	rTMP, rALT, rMASK
-	cmpwi	rTMP, 0
-	bne	L(g4)
-	lwzu	rWORD, 4(rSRC)
-	stwu	rALT, 4(rRTN)
-L(g5):	cmpb	rTMP, rWORD, rMASK
-	cmpwi	rTMP, 0		/* If rTMP is 0, no null in word.  */
-	beq	L(g3)
-
-	mr      rALT, rWORD
-/* We've hit the end of the string.  Do the rest byte-by-byte.  */
-L(g4):
+	cmpdi	r5, 0			/* check dest alignment */
+	beq	L(srcunaligndstalign)
+
+	/* both src and dst unaligned */
  #ifdef __LITTLE_ENDIAN__
-	rlwinm.	rTMP, rALT, 0, 24, 31
-	stbu	rALT, 4(rRTN)
-	beqlr-
-	rlwinm.	rTMP, rALT, 24, 24, 31
-	stbu	rTMP, 1(rRTN)
-	beqlr-
-	rlwinm.	rTMP, rALT, 16, 24, 31
-	stbu	rTMP, 1(rRTN)
-	beqlr-
-	rlwinm	rTMP, rALT, 8, 24, 31
-	stbu	rTMP, 1(rRTN)
+	sld	rWORD, rALT, r10
+	mr 	r11, r10
+	addi	r11, r11, -8		/* Adjust byte pointer on loaded dw */
  #else
-	rlwinm. rTMP, rALT, 8, 24, 31
-	stbu    rTMP, 4(rRTN)
-	beqlr
-	rlwinm. rTMP, rALT, 16, 24, 31
-	stbu    rTMP, 1(rRTN)
-	beqlr
-	rlwinm. rTMP, rALT, 24, 24, 31
-	stbu    rTMP, 1(rRTN)
-	beqlr
-	stbu    rALT, 1(rRTN)
+	srd	rWORD, rALT, r10
+	subfic	r11, r10, 64
  #endif
-	blr
+	/* dst alignment is greater then src alignment? */
+	cmpd	cr7, r5, r10
+	blt	cr7, L(dst_align_small)
+	/* src alignment is less than dst */

-/* Oh well.  In this case, we just do a byte-by-byte copy.  */
-	.align	4
-L(unaligned):
-	lbz	rWORD, 0(rSRC)
-	addi	rRTN, rRTN, -1
-	cmpdi	rWORD, 0
-	beq	L(u2)
-
-	.align 	5
-L(u0):	lbzu	rALT, 1(rSRC)
-	stbu	rWORD, 1(rRTN)
-	cmpdi	rALT, 0
-	beq	L(u1)
-	lbzu	rWORD, 1(rSRC)
+	/* Calculate the dst alignment differnce */
+	subfic	rALT, r9, 8
+	mtctr	rALT
+
+	/* Write till dst is aligned */
+	cmpdi	rTMP, rALT, 4
+	blt	L(storebyte1)		/* less than 4, store byte by byte */
+	beq	L(equal1)		/* if its 4, store word */
+	addi	rTMP, rALT, -4		/* greater than 4, so stb and stw */
+	mtctr	rTMP
+L(storebyte1):
+#ifdef __LITTLE_ENDIAN__
+	addi	r11, r11, 8		/* Adjust byte pointer on loaded dw */
+#else
+	addi	r11, r11, -8
+#endif
+	srd	rALT, rWORD, r11
+	stbu	rALT, 1(rRTN)
+	bdnz	L(storebyte1)
+
+	subfic	rALT, r9, 8		/* Check the remaining bytes */
+	cmpdi	rTMP, rALT, 4
+	blt	L(proceed)
+
+	.align 4
+L(equal1):
+#ifdef __LITTLE_ENDIAN__
+	addi	r11, r11, 8		/* Adjust byte pointer on loaded dw */
+	srd	rALT, rWORD, r11
+#else
+	subfic	r11, r11, 64
+	sld	rALT, rWORD, r11
+	srdi	rALT, rALT, 32
+#endif
+	stw	rALT, 1(rRTN)
+	addi	rRTN, rRTN, 4
+
+L(proceed):
+	mr	rALT, rWORD
+	/* calculate the Left over bytes to be written */
+	subfic	r11, r10, 64
+	subfic	r5, r5, 64
+	subf	r5, r5, r11		/* remaining bytes on second dw */
+        subfic	r10, r5, 64		/* remaining bytes on first dw */
+	subfic	r9, r9, 8
+	subf	r8, r9, r8		/* recalculate padding */
+L(srcunaligndstalign):
+	addi	rRTN, rRTN, 1
+	subfic	r5, r10, 64		/* remaining bytes on second dw */
+	addi	rSRC, rSRC, 8
+	li	rTMP,0
+	b	L(storedouble)
+
+	.align 4
+L(dst_align_small):
+	mtctr	r8
+	/* Write till src is aligned */
+L(storebyte2):
+#ifdef __LITTLE_ENDIAN__
+	addi	r11, r11, 8		/* Adjust byte pointer on dw */
+#else
+	addi	r11, r11, -8
+#endif
+	srd	rALT, rWORD, r11
  	stbu	rALT, 1(rRTN)
-	cmpdi	rWORD, 0
-	beq	L(u2)
-	lbzu	rALT, 1(rSRC)
-	stbu	rWORD, 1(rRTN)
-	cmpdi	rALT, 0
-	beq	L(u1)
-	lbzu	rWORD, 1(rSRC)
+	bdnz	L(storebyte2)
+
+	addi	rSRC, rSRC, 8		/* Increment src pointer */
+	addi	rRTN, rRTN, 1		/* Increment dst pointer */
+	rldicl	r8, rRTN, 0, 61		/* Recalculate padding */
+
+	/* src is aligned */
+L(srcaligndstunalign):
+	ld	rWORD, 0(rSRC)
+	mr	rALT, rWORD
+	li	rTMP, 0			/* Check null */
+	cmpb	rTMP, rWORD, rTMP
+	cmpdi	rTMP, 0
+	bne	L(bytebybyte)		/* Do byte by byte if there is NULL */
+	rlwinm	r5, rRTN, 3,26,28	/* Calculate padding */
+	addi	rRTN, rRTN, -1
+	subfic	r10, r8, 8
+	/* write byte by byte till aligned */
+#ifdef __LITTLE_ENDIAN__
+	li	r11, -8
+#else
+	li	r11, 64
+#endif
+	mtctr	r10
+	cmpdi	rTMP, r10, 4
+	blt	L(storebyte)
+	beq	L(equal)
+	addi	rTMP, r10, -4
+	mtctr	rTMP
+L(storebyte):
+#ifdef __LITTLE_ENDIAN__
+	addi	r11, r11, 8		/* Adjust byte pointer on  dw */
+#else
+	addi	r11, r11, -8
+#endif
+	srd	rALT, rWORD, r11
  	stbu	rALT, 1(rRTN)
-	cmpdi	rWORD, 0
-	bne	L(u0)
-L(u2):	stbu	rWORD, 1(rRTN)
-	blr
-L(u1):	stbu	rALT, 1(rRTN)
-	blr
+	bdnz	L(storebyte)
+
+	cmpdi	rTMP, r10, 4
+	blt	L(align)
+
+	.align 4
+L(equal):
+#ifdef __LITTLE_ENDIAN__
+	addi	r11, r11, 8
+	srd	rALT, rWORD, r11
+#else
+	subfic	r11, r11, 64
+	sld	rALT, rWORD, r11
+	srdi	rALT, rALT, 32
+#endif
+	stw	rALT, 1(rRTN)
+	addi	rRTN, rRTN, 4
+L(align):
+	addi	rRTN, rRTN, 1
+	addi	rSRC, rSRC, 8		/* Increment src pointer */
+	subfic	r10, r5, 64
+	li	rTMP, 0
+	/* dst addr aligned to 8 */
+L(storedouble):
+	ld	rALT, 0(rSRC)		/* load next dw */
+	cmpb	rTMP, rALT, rTMP
+	cmpdi	rTMP, 0			/* check for null on each new dw */
+	bne	L(null)
+#ifdef __LITTLE_ENDIAN__
+	srd	r9, rWORD, r10		/* bytes from first dw */
+	sld	r11, rALT, r5		/* bytes from second dw */
+#else
+	sld	r9, rWORD, r10
+	srd	r11, rALT, r5
+#endif
+	or	r11, r9, r11		/* make as a single dw */
+	std	r11, 0(rRTN)		/* store as std on aligned addr */
+	mr	rWORD, rALT		/* still few bytes left to be written */
+	addi	rRTN, rRTN, 8		/* increment dst addr */
+	addi	rSRC, rSRC, 8		/* increment src addr */
+	b	L(storedouble)		/* Loop till NULL */
+
+	.align 4
+
+/* We've hit the end of the string.  Do the rest byte-by-byte.  */
+L(null):
+	addi	rRTN, rRTN, -1
+	mr	r10, r5
+	mtctr	r8
+#ifdef __LITTLE_ENDIAN__
+	subfic	r10, r10, 64
+	addi	r10, r10, -8
+#endif
+	cmpdi	rTMP, r8, 4
+	blt	L(loop)
+
+	/* we can still use stw if leftover >= 4*/
+#ifdef __LITTLE_ENDIAN__
+	addi	r10, r10, 8
+	srd	r11, rWORD, r10
+#else
+	subfic	r10, r10, 64
+	sld	r11, rWORD, r10
+	srdi	r11, r11, 32
+#endif
+	stw	r11, 1(rRTN)
+	addi	rRTN, rRTN, 4
+
+	beq	L(bytebybyte1)
+	addi	r10, r10, 32
+#ifdef __LITTLE_ENDIAN__
+	addi	r10, r10, -8
+#else
+	subfic	r10, r10, 64
+#endif
+	addi	rTMP, r8, -4
+	mtctr	rTMP
+	/* remaining byte by byte part of first dw */
+L(loop):
+#ifdef __LITTLE_ENDIAN__
+	addi	r10, r10, 8
+#else
+	addi	r10, r10, -8
+#endif
+	srd	rTMP, rWORD, r10
+	stbu	rTMP, 1(rRTN)
+	bdnz	L(loop)
+
+L(bytebybyte1):
+	addi	rRTN, rRTN, 1
+	/* remaining byte by byte part of second dw */
+L(bytebybyte):
+	addi	rRTN, rRTN, -8
+	b	L(g1)
+
  END (FUNC_NAME)

  #ifndef USE_AS_STPCPY
-- 
1.8.3.1



-------------- next part --------------
                       	simple_strcpy	__strcpy_power7	__strcpy_ppc
Length    0, alignments in bytes  0/ 0:	4.95312	4.75	16.1719
Length    0, alignments in bytes  0/ 0:	5.09375	4.54688	15.9375
Length    0, alignments in bytes  0/ 0:	4.98438	4.34375	15.8594
Length    0, alignments in bytes  0/ 0:	5.07812	4.35938	15.8906
Length    1, alignments in bytes  0/ 0:	9.3125	4.84375	15.9375
Length    1, alignments in bytes  0/ 0:	9.03125	4.46875	15.9375
Length    1, alignments in bytes  0/ 1:	8.84375	7.29688	10.1875
Length    1, alignments in bytes  1/ 0:	8.79688	6.89062	9.9375
Length    2, alignments in bytes  0/ 0:	6.20312	4.60938	16.4375
Length    2, alignments in bytes  0/ 0:	5.10938	4.40625	16.3438
Length    2, alignments in bytes  0/ 2:	5.32812	6.85938	11.6875
Length    2, alignments in bytes  2/ 0:	5.3125	6.875	10.5312
Length    3, alignments in bytes  0/ 0:	5.78125	5.14062	17.2656
Length    3, alignments in bytes  0/ 0:	5.45312	4.82812	17.2344
Length    3, alignments in bytes  0/ 3:	5.375	7.71875	11.7656
Length    3, alignments in bytes  3/ 0:	5.03125	6.71875	11.4062
Length    4, alignments in bytes  0/ 0:	12.5	5.3125	12.125
Length    4, alignments in bytes  0/ 0:	12.2344	4.90625	11.8594
Length    4, alignments in bytes  0/ 4:	12.3594	7.46875	16.3906
Length    4, alignments in bytes  4/ 0:	13.3125	9.60938	16.1406
Length    5, alignments in bytes  0/ 0:	7.4375	5.875	17.8906
Length    5, alignments in bytes  0/ 0:	6.85938	5.70312	17.7031
Length    5, alignments in bytes  0/ 5:	6.9375	7.6875	13.1719
Length    5, alignments in bytes  5/ 0:	7.03125	11.5781	12.9688
Length    6, alignments in bytes  0/ 0:	8.01562	5.98438	18.7188
Length    6, alignments in bytes  0/ 0:	7.67188	5.89062	18.6562
Length    6, alignments in bytes  0/ 6:	7.35938	7.5	13.8906
Length    6, alignments in bytes  6/ 0:	7.5625	10.9219	13.8438
Length    7, alignments in bytes  0/ 0:	13.5625	6.01562	12.0938
Length    7, alignments in bytes  0/ 0:	13.1562	6.125	12.0938
Length    7, alignments in bytes  0/ 7:	15.2656	7.6875	14.8125
Length    7, alignments in bytes  7/ 0:	12.8281	10.7344	14.6406
Length    8, alignments in bytes  0/ 0:	9.40625	6.17188	15.7344
Length    8, alignments in bytes  0/ 0:	9.03125	6.23438	15.5938
Length    8, alignments in bytes  0/ 0:	12.0156	6.14062	15.625
Length    8, alignments in bytes  0/ 0:	8.73438	6.125	15.6406
Length    9, alignments in bytes  0/ 0:	10.4531	6.04688	16.1406
Length    9, alignments in bytes  0/ 0:	9.78125	5.90625	15.8281
Length    9, alignments in bytes  0/ 1:	9.95312	10.9375	16.3438
Length    9, alignments in bytes  1/ 0:	9.95312	11.7656	16.1094
Length   10, alignments in bytes  0/ 0:	11.3281	6.21875	16.1719
Length   10, alignments in bytes  0/ 0:	10.7969	5.9375	16.1562
Length   10, alignments in bytes  0/ 2:	10.4062	11.2656	17.1562
Length   10, alignments in bytes  2/ 0:	10.4688	10.8594	16.8281
Length   11, alignments in bytes  0/ 0:	11.625	6.60938	16.3281
Length   11, alignments in bytes  0/ 0:	11.1562	6.25	16.2656
Length   11, alignments in bytes  0/ 3:	11.5	11.375	18.0781
Length   11, alignments in bytes  3/ 0:	11.1094	9.89062	17.6094
Length   12, alignments in bytes  0/ 0:	24.0938	6.78125	11.6875
Length   12, alignments in bytes  0/ 0:	24.0781	6.26562	11.5625
Length   12, alignments in bytes  0/ 4:	23.9062	10.2188	18.125
Length   12, alignments in bytes  4/ 0:	23.4844	11.1094	18.0312
Length   13, alignments in bytes  0/ 0:	24.0781	7.48438	16.8281
Length   13, alignments in bytes  0/ 0:	24.7969	6.875	16.7812
Length   13, alignments in bytes  0/ 5:	24.6406	12.0625	19.2344
Length   13, alignments in bytes  5/ 0:	24.7188	13.2656	18.7812
Length   14, alignments in bytes  0/ 0:	13.8125	6.76562	17.2656
Length   14, alignments in bytes  0/ 0:	13.5312	7.10938	17.0781
Length   14, alignments in bytes  0/ 6:	13.5156	12.5	20
Length   14, alignments in bytes  6/ 0:	13.375	12.7344	19.8125
Length   15, alignments in bytes  0/ 0:	14.7969	6.90625	14.4531
Length   15, alignments in bytes  0/ 0:	14.2656	6.625	14.3281
Length   15, alignments in bytes  0/ 7:	14.1406	12.7812	20.75
Length   15, alignments in bytes  7/ 0:	14.25	12.0781	20.6562
Length   16, alignments in bytes  0/ 0:	15.5156	12.2344	17.3438
Length   16, alignments in bytes  7/ 2:	14.9531	13.7812	21.4062
Length   32, alignments in bytes  0/ 0:	34.5625	7.29688	18.7188
Length   32, alignments in bytes  6/ 4:	34.4062	19.0625	30.8594
Length   64, alignments in bytes  0/ 0:	59.0156	10.0156	21.9688
Length   64, alignments in bytes  5/ 6:	58.6875	21.6719	51.7188
Length  128, alignments in bytes  0/ 0:	107.016	14.25	28.0938
Length  128, alignments in bytes  4/ 0:	106.922	32.8594	40.0938
Length  256, alignments in bytes  0/ 0:	204.266	32.1875	39.4062
Length  256, alignments in bytes  3/ 2:	203.516	58	197.172
Length  512, alignments in bytes  0/ 0:	398.703	53.1875	65.2656
Length  512, alignments in bytes  2/ 4:	402.312	92.0312	389.094
Length 1024, alignments in bytes  0/ 0:	791.969	102.219	117.219
Length 1024, alignments in bytes  1/ 6:	788.438	163.656	772.828
Length   16, alignments in bytes  1/ 2:	15.3281	13.25	21.3281
Length   16, alignments in bytes  2/ 1:	15.0469	17.7969	21.0469
Length   16, alignments in bytes  1/ 1:	14.8438	13.6562	21.375
Length   16, alignments in bytes  1/ 1:	14.8438	13.3125	20.8906
Length   32, alignments in bytes  2/ 4:	34.5156	14.8281	31.2344
Length   32, alignments in bytes  4/ 2:	34.1562	19.5312	31.1094
Length   32, alignments in bytes  2/ 2:	34.1875	14.5312	31.0781
Length   32, alignments in bytes  2/ 2:	34.3125	13.6406	31.2656
Length   64, alignments in bytes  3/ 6:	58.7031	23.2344	51.7656
Length   64, alignments in bytes  6/ 3:	58.5781	23.5625	51.6094
Length   64, alignments in bytes  3/ 3:	58.8125	17.4844	51.3906
Length   64, alignments in bytes  3/ 3:	58.5938	16.4844	51.2344
Length  128, alignments in bytes  4/ 0:	107.031	32.3594	39.5781
Length  128, alignments in bytes  0/ 4:	107.062	32.5625	39.5625
Length  128, alignments in bytes  4/ 4:	106.562	20.75	39.7031
Length  128, alignments in bytes  4/ 4:	106.922	20.1406	39.7344
Length  256, alignments in bytes  5/ 2:	205.234	56.6875	197.609
Length  256, alignments in bytes  2/ 5:	204.797	56.5938	197.25
Length  256, alignments in bytes  5/ 5:	204.344	36.5	197.906
Length  256, alignments in bytes  5/ 5:	204.047	36.5156	197.391
Length  512, alignments in bytes  6/ 4:	399.219	92.9844	390.359
Length  512, alignments in bytes  4/ 6:	402.75	93.7812	389.453
Length  512, alignments in bytes  6/ 6:	400.203	56.9375	389.953
Length  512, alignments in bytes  6/ 6:	399.484	56.0312	389.812
Length 1024, alignments in bytes  7/ 6:	789.031	165.547	772.672
Length 1024, alignments in bytes  6/ 7:	794.109	163.484	772.266
Length 1024, alignments in bytes  7/ 7:	1198.75	105.031	772.797
Length 1024, alignments in bytes  7/ 7:	786.484	105.219	771.625
Length   16, alignments in bytes  0/ 4:	15.3438	10.7188	19.3438
Length   16, alignments in bytes  4/ 0:	14.8438	11.6875	19.3906
Length   16, alignments in bytes  4/ 4:	14.8125	12.0156	19.1406
Length   16, alignments in bytes  2/ 2:	14.8438	12.9219	21.4844
Length   16, alignments in bytes  2/ 6:	14.7031	12.8906	21.3906
Length   16, alignments in bytes  6/ 2:	14.9375	12.75	21.1562
Length   16, alignments in bytes  1/ 7:	14.75	13.2188	21.3438
Length   16, alignments in bytes  7/ 1:	14.875	13.9219	21.0781
Length   16, alignments in bytes  3/ 4:	14.6094	14	21.2031
Length   16, alignments in bytes  4/ 3:	14.7344	16.0938	21.1562
Length   16, alignments in bytes  5/ 7:	14.7188	13.9531	21.0469
Length   16, alignments in bytes  7/ 5:	14.7812	13.8906	21.3906
Length   20, alignments in bytes  0/ 4:	25.1094	11.7812	19.8594
Length   20, alignments in bytes  4/ 0:	24.9219	11.9062	19.6406
Length   20, alignments in bytes  4/ 4:	24.9375	11.5312	19.5938
Length   20, alignments in bytes  2/ 2:	24.8438	13.8906	23.8906
Length   20, alignments in bytes  2/ 6:	25.0938	14.3125	24.1875
Length   20, alignments in bytes  6/ 2:	24.8125	13.0469	23.8125
Length   20, alignments in bytes  1/ 7:	24.7656	13.9219	24.1094
Length   20, alignments in bytes  7/ 1:	24.7812	13.8594	24.125
Length   20, alignments in bytes  3/ 4:	24.8906	13.1406	23.9375
Length   20, alignments in bytes  4/ 3:	24.875	17.8125	24.0781
Length   20, alignments in bytes  5/ 7:	24.8906	14.7344	23.6562
Length   20, alignments in bytes  7/ 5:	24.8125	14.2344	24.1719
Length   24, alignments in bytes  0/ 4:	27.7344	11.8125	21.2031
Length   24, alignments in bytes  4/ 0:	28	13.4375	20.9688
Length   24, alignments in bytes  4/ 4:	27.9688	12.125	21.0938
Length   24, alignments in bytes  2/ 2:	28.0625	12.6719	26.375
Length   24, alignments in bytes  2/ 6:	27.7188	14.7969	26.1875
Length   24, alignments in bytes  6/ 2:	27.9531	13.8906	26.3594
Length   24, alignments in bytes  1/ 7:	28.0469	13.5781	26.5625
Length   24, alignments in bytes  7/ 1:	28.0938	14.6406	26.0781
Length   24, alignments in bytes  3/ 4:	28.1875	13.625	26.1719
Length   24, alignments in bytes  4/ 3:	28	17.4062	26.3906
Length   24, alignments in bytes  5/ 7:	27.9688	15.0781	26.5625
Length   24, alignments in bytes  7/ 5:	27.8125	14.7969	26.4219
Length   28, alignments in bytes  0/ 4:	30.7188	12.5938	21.125
Length   28, alignments in bytes  4/ 0:	30.9375	13.7656	21.1406
Length   28, alignments in bytes  4/ 4:	31.1094	12.8906	20.9375
Length   28, alignments in bytes  2/ 2:	31.0312	13.5312	28.8438
Length   28, alignments in bytes  2/ 6:	30.9531	15.2031	28.7656
Length   28, alignments in bytes  6/ 2:	31.0312	13.6562	28.6094
Length   28, alignments in bytes  1/ 7:	31.0312	14.6094	29.1719
Length   28, alignments in bytes  7/ 1:	31.0625	14.7188	28.9531
Length   28, alignments in bytes  3/ 4:	31.0156	13.6406	28.7812
Length   28, alignments in bytes  4/ 3:	31	20.1094	29.0156
Length   28, alignments in bytes  5/ 7:	31.1875	15.625	28.4531
Length   28, alignments in bytes  7/ 5:	31	15.0312	28.9375
Length   32, alignments in bytes  0/ 4:	33.9688	13.5	23.1094
Length   32, alignments in bytes  4/ 0:	34.1406	14.0781	22.5
Length   32, alignments in bytes  4/ 4:	34.3281	13.0938	22.4531
Length   32, alignments in bytes  2/ 2:	34.5938	14.3125	31.0781
Length   32, alignments in bytes  2/ 6:	34.2188	15.5938	31.1562
Length   32, alignments in bytes  6/ 2:	34.0938	15.4219	30.9844
Length   32, alignments in bytes  1/ 7:	34.3125	15.2344	31.2031
Length   32, alignments in bytes  7/ 1:	34.2812	15.5469	31.5156
Length   32, alignments in bytes  3/ 4:	34.1875	14.3125	30.9062
Length   32, alignments in bytes  4/ 3:	34.1719	17.7656	30.9531
Length   32, alignments in bytes  5/ 7:	34.2344	16.0781	31.125
Length   32, alignments in bytes  7/ 5:	34.375	15.875	30.8125
Length   36, alignments in bytes  0/ 4:	37.5	13.875	22.7188
Length   36, alignments in bytes  4/ 0:	37.5	16.4375	22.5312
Length   36, alignments in bytes  4/ 4:	37.4062	12.5938	22.6875
Length   36, alignments in bytes  2/ 2:	37.4062	15.3125	33.125
Length   36, alignments in bytes  2/ 6:	37.1562	15.875	33.6875
Length   36, alignments in bytes  6/ 2:	37.5312	16	33.5312
Length   36, alignments in bytes  1/ 7:	37.5	15.4688	33.4531
Length   36, alignments in bytes  7/ 1:	37.5	15.7969	33.7344
Length   36, alignments in bytes  3/ 4:	37.5312	14.8594	33.6562
Length   36, alignments in bytes  4/ 3:	37.4844	19.3438	33.1719
Length   36, alignments in bytes  5/ 7:	37.7031	16.6719	33.2344
Length   36, alignments in bytes  7/ 5:	37.3594	16.2031	32.9531
Length   40, alignments in bytes  0/ 4:	40.3438	14.8281	24.2344
Length   40, alignments in bytes  4/ 0:	40.4219	16.5312	24.1562
Length   40, alignments in bytes  4/ 4:	40.25	12.5938	23.9844
Length   40, alignments in bytes  2/ 2:	40.375	13.75	35.7188
Length   40, alignments in bytes  2/ 6:	40.625	16.625	35.7031
Length   40, alignments in bytes  6/ 2:	40.5469	17.2031	35.8438
Length   40, alignments in bytes  1/ 7:	40.875	16.125	36
Length   40, alignments in bytes  7/ 1:	40.4375	17.75	35.8438
Length   40, alignments in bytes  3/ 4:	40.5	15.75	35.4062
Length   40, alignments in bytes  4/ 3:	40.6719	20.7969	35.7656
Length   40, alignments in bytes  5/ 7:	40.7188	17.0781	35.7656
Length   40, alignments in bytes  7/ 5:	40.3906	17.1406	35.7656
Length   44, alignments in bytes  0/ 4:	43.5938	15.6562	24.4531
Length   44, alignments in bytes  4/ 0:	43.4531	15.3594	24.1875
Length   44, alignments in bytes  4/ 4:	43.6562	14.0469	24.3281
Length   44, alignments in bytes  2/ 2:	43.6094	14.9219	37.875
Length   44, alignments in bytes  2/ 6:	43.5938	17.2812	37.9531
Length   44, alignments in bytes  6/ 2:	43.6094	16.3594	38.5625
Length   44, alignments in bytes  1/ 7:	43.5469	16.7188	38.2969
Length   44, alignments in bytes  7/ 1:	43.75	16.9844	38.1406
Length   44, alignments in bytes  3/ 4:	43.875	17.3125	38.1719
Length   44, alignments in bytes  4/ 3:	43.5	21.4844	38.3438
Length   44, alignments in bytes  5/ 7:	43.8125	18.2344	37.5312
Length   44, alignments in bytes  7/ 5:	43.5469	16.9219	38.2344
Length   48, alignments in bytes  0/ 4:	46.9375	15.5469	25.2344
Length   48, alignments in bytes  4/ 0:	47.0469	16.4062	25.4062
Length   48, alignments in bytes  4/ 4:	46.625	14.6875	25.2031
Length   48, alignments in bytes  2/ 2:	46.6562	15.75	40.8125
Length   48, alignments in bytes  2/ 6:	46.7188	18.8281	40.1562
Length   48, alignments in bytes  6/ 2:	46.5781	17.2969	40.6406
Length   48, alignments in bytes  1/ 7:	46.7656	17.4219	40.2188
Length   48, alignments in bytes  7/ 1:	46.6094	17.6562	40.9375
Length   48, alignments in bytes  3/ 4:	46.75	16.6875	40.0469
Length   48, alignments in bytes  4/ 3:	46.8594	21.5781	40.4062
Length   48, alignments in bytes  5/ 7:	46.625	22.7656	40.1562
Length   48, alignments in bytes  7/ 5:	46.8594	18.0938	40.2812
Length   52, alignments in bytes  0/ 4:	49.6719	15.75	25.8125
Length   52, alignments in bytes  4/ 0:	49.6562	19.9375	25.5
Length   52, alignments in bytes  4/ 4:	49.4844	13.3125	25.4219
Length   52, alignments in bytes  2/ 2:	49.5312	16.3594	43.3594
Length   52, alignments in bytes  2/ 6:	49.5	19.5469	43.4531
Length   52, alignments in bytes  6/ 2:	49.6094	19.7969	42.5469
Length   52, alignments in bytes  1/ 7:	49.5469	17.6875	43.2031
Length   52, alignments in bytes  7/ 1:	49.7031	22.7344	42.9062
Length   52, alignments in bytes  3/ 4:	49.7812	17.4062	42.9531
Length   52, alignments in bytes  4/ 3:	49.5	21.6719	42.9844
Length   52, alignments in bytes  5/ 7:	49.6719	19.2812	43.0312
Length   52, alignments in bytes  7/ 5:	49.6875	20.0312	42.9219
Length   56, alignments in bytes  0/ 4:	52.5156	17.5938	27.0312
Length   56, alignments in bytes  4/ 0:	52.6719	20.2344	26.9688
Length   56, alignments in bytes  4/ 4:	52.5781	13.5156	27
Length   56, alignments in bytes  2/ 2:	52.6719	15.0469	45.3281
Length   56, alignments in bytes  2/ 6:	52.5938	19.7656	45.5156
Length   56, alignments in bytes  6/ 2:	52.6719	21.5312	45.5312
Length   56, alignments in bytes  1/ 7:	52.7656	20.5938	45.75
Length   56, alignments in bytes  7/ 1:	52.8125	20.8438	45.7188
Length   56, alignments in bytes  3/ 4:	52.7812	19.0469	45.7344
Length   56, alignments in bytes  4/ 3:	52.5938	21.3125	45.9844
Length   56, alignments in bytes  5/ 7:	53.0469	22.875	45.6875
Length   56, alignments in bytes  7/ 5:	52.6562	22.0469	45.8594
Length   60, alignments in bytes  0/ 4:	55.4531	17.2344	27
Length   60, alignments in bytes  4/ 0:	55.5312	18.9688	26.8594
Length   60, alignments in bytes  4/ 4:	55.8125	15.2031	26.625
Length   60, alignments in bytes  2/ 2:	55.6406	15.375	48.8281
Length   60, alignments in bytes  2/ 6:	55.6875	22.2812	48.8594
Length   60, alignments in bytes  6/ 2:	55.875	17.9062	48.3906
Length   60, alignments in bytes  1/ 7:	55.9844	19.2969	48.4219
Length   60, alignments in bytes  7/ 1:	55.6406	20.9531	48.8281
Length   60, alignments in bytes  3/ 4:	55.6562	18.9062	48.8281
Length   60, alignments in bytes  4/ 3:	55.5938	22.6719	48.2969
Length   60, alignments in bytes  5/ 7:	56.0156	20.625	48.7656
Length   60, alignments in bytes  7/ 5:	55.8906	21.4062	48.3125
Length   64, alignments in bytes  0/ 4:	58.8906	17.2969	28.0781
Length   64, alignments in bytes  4/ 0:	58.7969	19.1875	28.2969
Length   64, alignments in bytes  4/ 4:	58.7812	15.375	28.2344
Length   64, alignments in bytes  2/ 2:	58.9219	16.5469	50.9531
Length   64, alignments in bytes  2/ 6:	58.875	20.4219	51.2969
Length   64, alignments in bytes  6/ 2:	59.0469	21.75	51.2188
Length   64, alignments in bytes  1/ 7:	58.9062	22.2031	51.5
Length   64, alignments in bytes  7/ 1:	59.0625	20.3438	51.5312
Length   64, alignments in bytes  3/ 4:	58.7344	20.8906	51.5781
Length   64, alignments in bytes  4/ 3:	58.6406	22.8594	51.4062
Length   64, alignments in bytes  5/ 7:	59	21	51.4062
Length   64, alignments in bytes  7/ 5:	58.8438	21.8438	51.3281
Length   68, alignments in bytes  0/ 4:	61.8438	18.75	28.4219
Length   68, alignments in bytes  4/ 0:	61.7031	19.4375	28.0938
Length   68, alignments in bytes  4/ 4:	61.8438	14.5	28.2969
Length   68, alignments in bytes  2/ 2:	61.875	17.25	54.2031
Length   68, alignments in bytes  2/ 6:	61.6875	21	54.6406
Length   68, alignments in bytes  6/ 2:	62.125	24.0156	54.25
Length   68, alignments in bytes  1/ 7:	61.7656	21.1875	54.4219
Length   68, alignments in bytes  7/ 1:	61.6562	24.0156	54.1875
Length   68, alignments in bytes  3/ 4:	62.0625	21.5	54.3125
Length   68, alignments in bytes  4/ 3:	61.7812	24.5781	54.5469
Length   68, alignments in bytes  5/ 7:	61.9375	26.1562	54.2188
Length   68, alignments in bytes  7/ 5:	61.7031	21.5938	54.8594
Length   72, alignments in bytes  0/ 4:	64.9062	19.1094	29.625
Length   72, alignments in bytes  4/ 0:	64.7344	19.9531	29.8125
Length   72, alignments in bytes  4/ 4:	65.0781	14.875	29.5781
Length   72, alignments in bytes  2/ 2:	64.7656	16.9062	57.25
Length   72, alignments in bytes  2/ 6:	64.9375	21.2969	57.5312
Length   72, alignments in bytes  6/ 2:	64.6719	20.7656	57.6562
Length   72, alignments in bytes  1/ 7:	64.6406	25.7812	57.6562
Length   72, alignments in bytes  7/ 1:	64.6562	24.5625	57.9375
Length   72, alignments in bytes  3/ 4:	64.875	20.6094	57.75
Length   72, alignments in bytes  4/ 3:	64.7188	23.8438	57.4844
Length   72, alignments in bytes  5/ 7:	65.0469	26.7188	57.2344
Length   72, alignments in bytes  7/ 5:	65.0469	22.125	57.5781
Length   76, alignments in bytes  0/ 4:	67.625	19.2188	29.7656
Length   76, alignments in bytes  4/ 0:	67.6094	26.2344	29.3594
Length   76, alignments in bytes  4/ 4:	67.4688	16.4062	29.5938
Length   76, alignments in bytes  2/ 2:	67.5469	16.5312	60.9062
Length   76, alignments in bytes  2/ 6:	67.5781	22.3281	60.3906
Length   76, alignments in bytes  6/ 2:	68.0312	20.9688	60.9219
Length   76, alignments in bytes  1/ 7:	68.0469	26.4844	60.8281
Length   76, alignments in bytes  7/ 1:	67.6406	22.375	60.125
Length   76, alignments in bytes  3/ 4:	67.8594	24.0781	60.7031
Length   76, alignments in bytes  4/ 3:	67.75	25.1406	60.9219
Length   76, alignments in bytes  5/ 7:	67.9531	26.6406	60.5938
Length   76, alignments in bytes  7/ 5:	67.7188	22.5625	60.5938
Length   80, alignments in bytes  0/ 4:	71.0156	25.3594	30.8281
Length   80, alignments in bytes  4/ 0:	70.875	21.1094	30.9062
Length   80, alignments in bytes  4/ 4:	71.0781	16.6094	30.7812
Length   80, alignments in bytes  2/ 2:	70.9219	18.1719	63.5625
Length   80, alignments in bytes  2/ 6:	70.7812	26.6875	63.6719
Length   80, alignments in bytes  6/ 2:	70.875	22.2812	63.7031
Length   80, alignments in bytes  1/ 7:	70.9844	26.7656	63.1719
Length   80, alignments in bytes  7/ 1:	70.8594	23.1875	63.9062
Length   80, alignments in bytes  3/ 4:	70.8594	21.75	63.4375
Length   80, alignments in bytes  4/ 3:	70.9375	24.6875	63.5312
Length   80, alignments in bytes  5/ 7:	70.5938	27.5156	63.8281
Length   80, alignments in bytes  7/ 5:	70.5781	23.1719	63.5469
Length   84, alignments in bytes  0/ 4:	73.5469	20.5156	30.9062
Length   84, alignments in bytes  4/ 0:	74.2031	21.4688	30.9375
Length   84, alignments in bytes  4/ 4:	73.9844	15.25	31.0156
Length   84, alignments in bytes  2/ 2:	73.8125	18.6406	66.6406
Length   84, alignments in bytes  2/ 6:	73.7812	28.7188	66.3594
Length   84, alignments in bytes  6/ 2:	73.7031	22.1406	66.5938
Length   84, alignments in bytes  1/ 7:	73.875	27.6094	66.7031
Length   84, alignments in bytes  7/ 1:	73.7031	23.1719	66.2656
Length   84, alignments in bytes  3/ 4:	74.0938	23.0156	66.7344
Length   84, alignments in bytes  4/ 3:	73.6562	26.25	66.5625
Length   84, alignments in bytes  5/ 7:	73.9844	27.9844	66.2344
Length   84, alignments in bytes  7/ 5:	73.7812	23.0625	66.6719
Length   88, alignments in bytes  0/ 4:	76.5156	21.3125	32.0312
Length   88, alignments in bytes  4/ 0:	76.6719	21.875	32.4688
Length   88, alignments in bytes  4/ 4:	76.6875	17.6719	32.5156
Length   88, alignments in bytes  2/ 2:	76.5938	17.1094	69.9688
Length   88, alignments in bytes  2/ 6:	76.6562	27.9062	69.8594
Length   88, alignments in bytes  6/ 2:	76.9688	23.2344	69.7031
Length   88, alignments in bytes  1/ 7:	77.2812	27.875	69.9375
Length   88, alignments in bytes  7/ 1:	76.6094	24.2188	69.875
Length   88, alignments in bytes  3/ 4:	76.9844	27.0469	69.75
Length   88, alignments in bytes  4/ 3:	76.9375	26.0156	70.1406
Length   88, alignments in bytes  5/ 7:	76.7344	28.5781	70.0469
Length   88, alignments in bytes  7/ 5:	76.875	24.0625	69.8906
Length   92, alignments in bytes  0/ 4:	79.8281	21.8594	32.6094
Length   92, alignments in bytes  4/ 0:	79.8594	27.0938	32.2812
Length   92, alignments in bytes  4/ 4:	79.9531	20.2812	32.5
Length   92, alignments in bytes  2/ 2:	79.5	17.7031	73.1719
Length   92, alignments in bytes  2/ 6:	79.8906	28.6562	73.1406
Length   92, alignments in bytes  6/ 2:	79.8906	23.3438	72.9062
Length   92, alignments in bytes  1/ 7:	79.6562	28.7812	73
Length   92, alignments in bytes  7/ 1:	79.8594	24.2031	73.0781
Length   92, alignments in bytes  3/ 4:	79.9062	29.2344	72.6875
Length   92, alignments in bytes  4/ 3:	79.9688	26.6719	72.7031
Length   92, alignments in bytes  5/ 7:	79.8125	29.125	73.2031
Length   92, alignments in bytes  7/ 5:	79.7188	24.4375	73.2031
Length   96, alignments in bytes  0/ 4:	82.8594	26.9062	33.8125
Length   96, alignments in bytes  4/ 0:	82.9375	28.4219	33.75
Length   96, alignments in bytes  4/ 4:	83.0938	17.7969	33.6562
Length   96, alignments in bytes  2/ 2:	82.8906	19.1406	76.7812
Length   96, alignments in bytes  2/ 6:	82.8438	28.9688	76.4219
Length   96, alignments in bytes  6/ 2:	82.8594	24.6719	75.8594
Length   96, alignments in bytes  1/ 7:	83.2031	29.1562	75.8125
Length   96, alignments in bytes  7/ 1:	82.6406	25.8281	75.9844
Length   96, alignments in bytes  3/ 4:	83.125	28.6406	76.0312
Length   96, alignments in bytes  4/ 3:	83.125	26.8125	75.8125
Length   96, alignments in bytes  5/ 7:	82.7031	29.9219	75.9531
Length   96, alignments in bytes  7/ 5:	82.6562	25.5156	76.1719
Length  100, alignments in bytes  0/ 4:	85.9375	28.2969	33.8281
Length  100, alignments in bytes  4/ 0:	85.625	27.6562	33.5156
Length  100, alignments in bytes  4/ 4:	85.5156	16.5156	33.8125
Length  100, alignments in bytes  2/ 2:	85.75	19.4219	79.2969
Length  100, alignments in bytes  2/ 6:	86.0781	29.7031	78.8438
Length  100, alignments in bytes  6/ 2:	85.5312	28.7656	78.8281
Length  100, alignments in bytes  1/ 7:	86.0312	30.125	78.9531
Length  100, alignments in bytes  7/ 1:	85.8281	30.25	78.7656
Length  100, alignments in bytes  3/ 4:	85.7969	30.2656	79.4531
Length  100, alignments in bytes  4/ 3:	85.6875	32.4688	78.7812
Length  100, alignments in bytes  5/ 7:	85.8594	30.3906	78.6719
Length  100, alignments in bytes  7/ 5:	85.5469	31.0469	78.8125
Length  104, alignments in bytes  0/ 4:	88.6719	28.75	35.4531
Length  104, alignments in bytes  4/ 0:	88.7969	28.125	35.1562
Length  104, alignments in bytes  4/ 4:	88.9688	17.0312	35.2812
Length  104, alignments in bytes  2/ 2:	88.7031	19.375	81.9844
Length  104, alignments in bytes  2/ 6:	88.875	30.4688	82.3594
Length  104, alignments in bytes  6/ 2:	88.75	29.6094	81.9062
Length  104, alignments in bytes  1/ 7:	89.0156	30.4844	82.0938
Length  104, alignments in bytes  7/ 1:	89.0312	31.9062	82.1562
Length  104, alignments in bytes  3/ 4:	89.2656	30.0156	82.0312
Length  104, alignments in bytes  4/ 3:	88.5312	33.25	82.0938
Length  104, alignments in bytes  5/ 7:	88.8906	31.1094	82
Length  104, alignments in bytes  7/ 5:	88.5625	32.875	81.75
Length  108, alignments in bytes  0/ 4:	91.8906	28.9531	35.5
Length  108, alignments in bytes  4/ 0:	91.9062	29.1875	34.9688
Length  108, alignments in bytes  4/ 4:	91.6406	18.3281	35.2031
Length  108, alignments in bytes  2/ 2:	92	20.9531	85.6719
Length  108, alignments in bytes  2/ 6:	91.7344	31.2188	85.25
Length  108, alignments in bytes  6/ 2:	92.1719	30.4844	84.9219
Length  108, alignments in bytes  1/ 7:	92.0781	31.4375	85.25
Length  108, alignments in bytes  7/ 1:	91.8906	31.7969	84.9219
Length  108, alignments in bytes  3/ 4:	92.4219	31.9062	85.4531
Length  108, alignments in bytes  4/ 3:	91.9062	33.7188	85.1406
Length  108, alignments in bytes  5/ 7:	91.7188	32.0469	85.1094
Length  108, alignments in bytes  7/ 5:	91.9219	32.4844	85.0312
Length  112, alignments in bytes  0/ 4:	95.25	30.1094	36.9062
Length  112, alignments in bytes  4/ 0:	94.5469	29.3281	36.9062
Length  112, alignments in bytes  4/ 4:	94.75	19.2656	37.1719
Length  112, alignments in bytes  2/ 2:	94.7344	19.8594	87.6406
Length  112, alignments in bytes  2/ 6:	95.2344	31.7812	88.375
Length  112, alignments in bytes  6/ 2:	94.8281	31.2969	88.2031
Length  112, alignments in bytes  1/ 7:	95.2969	32	88.0938
Length  112, alignments in bytes  7/ 1:	94.7031	33.0938	88.4688
Length  112, alignments in bytes  3/ 4:	95.1875	31.5312	88.0156
Length  112, alignments in bytes  4/ 3:	94.8281	34.6094	88.6562
Length  112, alignments in bytes  5/ 7:	95.2344	32.6719	88.1406
Length  112, alignments in bytes  7/ 5:	94.7344	34.7656	88.3125
Length  116, alignments in bytes  0/ 4:	97.8125	30.2812	36.7812
Length  116, alignments in bytes  4/ 0:	98.0156	30.4375	36.5469
Length  116, alignments in bytes  4/ 4:	98.0312	22.9531	36.7969
Length  116, alignments in bytes  2/ 2:	98.0625	21.2812	91.1406
Length  116, alignments in bytes  2/ 6:	98.0938	32.7031	90.9375
Length  116, alignments in bytes  6/ 2:	98.0625	31.625	91.1562
Length  116, alignments in bytes  1/ 7:	98.2812	32.5938	91.375
Length  116, alignments in bytes  7/ 1:	97.9688	33.1875	90.6562
Length  116, alignments in bytes  3/ 4:	97.8281	33.1719	91.1562
Length  116, alignments in bytes  4/ 3:	97.9531	35.2812	91.5
Length  116, alignments in bytes  5/ 7:	97.625	33.3594	91.4375
Length  116, alignments in bytes  7/ 5:	98.3438	33.8125	91.7188
Length  120, alignments in bytes  0/ 4:	100.922	31.2344	38.6875
Length  120, alignments in bytes  4/ 0:	100.953	30.8906	38.1094
Length  120, alignments in bytes  4/ 4:	100.953	19.5312	38.2656
Length  120, alignments in bytes  2/ 2:	101	18.9688	94.4844
Length  120, alignments in bytes  2/ 6:	100.656	33.3281	94.1562
Length  120, alignments in bytes  6/ 2:	100.969	32.5156	94.3906
Length  120, alignments in bytes  1/ 7:	100.922	33.5938	94.2188
Length  120, alignments in bytes  7/ 1:	101.047	34.5312	93.9844
Length  120, alignments in bytes  3/ 4:	101.031	33.0312	93.6406
Length  120, alignments in bytes  4/ 3:	101.078	35.5156	94.1875
Length  120, alignments in bytes  5/ 7:	101.094	33.9062	94.6406
Length  120, alignments in bytes  7/ 5:	101.109	35.8594	94.3125
Length  124, alignments in bytes  0/ 4:	103.891	31.4062	38.2656
Length  124, alignments in bytes  4/ 0:	103.609	31.7812	38.0781
Length  124, alignments in bytes  4/ 4:	103.875	20.0156	38.25
Length  124, alignments in bytes  2/ 2:	103.531	21.0781	97.4219
Length  124, alignments in bytes  2/ 6:	104.109	33.9688	97.3438
Length  124, alignments in bytes  6/ 2:	103.625	33.5938	97.125
Length  124, alignments in bytes  1/ 7:	104.219	34.0469	97.2656
Length  124, alignments in bytes  7/ 1:	103.828	34.5781	97.2031
Length  124, alignments in bytes  3/ 4:	104.203	34.0781	96.8906
Length  124, alignments in bytes  4/ 3:	103.938	36.5156	97.3906
Length  124, alignments in bytes  5/ 7:	104.328	34.7656	97.4375
Length  124, alignments in bytes  7/ 5:	103.562	35.1875	97.4219
Length  128, alignments in bytes  0/ 4:	107	32.2188	39.9531
Length  128, alignments in bytes  4/ 0:	106.75	32.1562	39.8594
Length  128, alignments in bytes  4/ 4:	106.781	20.5625	39.6094
Length  128, alignments in bytes  2/ 2:	106.875	20.9375	100.25
Length  128, alignments in bytes  2/ 6:	106.375	34.5	101.062
Length  128, alignments in bytes  6/ 2:	107.312	34.2969	100.016
Length  128, alignments in bytes  1/ 7:	106.938	34.7812	100.281
Length  128, alignments in bytes  7/ 1:	107.031	35.7031	100.391
Length  128, alignments in bytes  3/ 4:	107.172	34.25	99.9375
Length  128, alignments in bytes  4/ 3:	106.969	36.9688	100.594
Length  128, alignments in bytes  5/ 7:	106.844	35.2188	100.438
Length  128, alignments in bytes  7/ 5:	106.828	36.8125	100.625
Length  132, alignments in bytes  0/ 4:	110.172	33.0156	39.7344
Length  132, alignments in bytes  4/ 0:	110.078	33.1406	39.7656
Length  132, alignments in bytes  4/ 4:	109.781	19.6094	39.6406
Length  132, alignments in bytes  2/ 2:	110	21.9219	103.859
Length  132, alignments in bytes  2/ 6:	109.734	34.9375	103.375
Length  132, alignments in bytes  6/ 2:	110.391	34.8281	104.062
Length  132, alignments in bytes  1/ 7:	110.078	35.5156	103.562
Length  132, alignments in bytes  7/ 1:	110.078	35.9375	103.312
Length  132, alignments in bytes  3/ 4:	109.984	35.2031	103.156
Length  132, alignments in bytes  4/ 3:	110.094	37.9062	103.469
Length  132, alignments in bytes  5/ 7:	110.234	36.1719	103.609
Length  132, alignments in bytes  7/ 5:	109.938	36.375	103.406
Length  136, alignments in bytes  0/ 4:	113.516	33.7656	41.0938
Length  136, alignments in bytes  4/ 0:	113.016	33.625	41.0781
Length  136, alignments in bytes  4/ 4:	112.922	20.7344	40.9062
Length  136, alignments in bytes  2/ 2:	113.344	21.2188	106.562
Length  136, alignments in bytes  2/ 6:	112.828	36	106.531
Length  136, alignments in bytes  6/ 2:	113.453	35.8125	106.531
Length  136, alignments in bytes  1/ 7:	113.016	36.1094	106.391
Length  136, alignments in bytes  7/ 1:	113.203	36.9375	106.297
Length  136, alignments in bytes  3/ 4:	113.422	35.6562	106
Length  136, alignments in bytes  4/ 3:	113.188	38.5	106.906
Length  136, alignments in bytes  5/ 7:	113.047	36.4688	106.078
Length  136, alignments in bytes  7/ 5:	111.016	37.2031	104.75
Length  140, alignments in bytes  0/ 4:	113.984	33.7188	40.8906
Length  140, alignments in bytes  4/ 0:	113.719	34.25	40.3125
Length  140, alignments in bytes  4/ 4:	114.094	25.7656	40.5469
Length  140, alignments in bytes  2/ 2:	112.453	21.4844	105.562
Length  140, alignments in bytes  2/ 6:	112.328	35.3438	105.891
Length  140, alignments in bytes  6/ 2:	112.328	34.8438	106.359
Length  140, alignments in bytes  1/ 7:	112.516	35.4219	104.75
Length  140, alignments in bytes  7/ 1:	110.516	35.4688	105.047
Length  140, alignments in bytes  3/ 4:	111.203	34.5312	104.078
Length  140, alignments in bytes  4/ 3:	110.625	37.5156	104.312
Length  140, alignments in bytes  5/ 7:	109.969	34.9844	102.547
Length  140, alignments in bytes  7/ 5:	108.75	35.3906	103.062
Length  144, alignments in bytes  0/ 4:	112.219	32.9844	40.2812
Length  144, alignments in bytes  4/ 0:	112	32.8438	40.1406
Length  144, alignments in bytes  4/ 4:	110.578	22.0781	39.6562
Length  144, alignments in bytes  2/ 2:	110.219	21.625	104.109
Length  144, alignments in bytes  2/ 6:	110.031	34.3281	104
Length  144, alignments in bytes  6/ 2:	110.391	34.0781	104.188
Length  144, alignments in bytes  1/ 7:	108.75	33.9844	102.578
Length  144, alignments in bytes  7/ 1:	108.641	34.5469	102.297
Length  144, alignments in bytes  3/ 4:	108.641	33.5938	102.312
Length  144, alignments in bytes  4/ 3:	108.453	36.2188	101.75
Length  144, alignments in bytes  5/ 7:	107.125	34.0156	100.953
Length  144, alignments in bytes  7/ 5:	106.984	35.1562	101.25
Length  148, alignments in bytes  0/ 4:	109.859	32.0469	38.3438
Length  148, alignments in bytes  4/ 0:	109.484	32.2344	38.25
Length  148, alignments in bytes  4/ 4:	108.25	18.5469	37.8125
Length  148, alignments in bytes  2/ 2:	108.141	21.0312	102.781
Length  148, alignments in bytes  2/ 6:	108.234	33.7812	102.125
Length  148, alignments in bytes  6/ 2:	108.281	32.9531	102.062
Length  148, alignments in bytes  1/ 7:	106.875	33.125	100.875
Length  148, alignments in bytes  7/ 1:	106.719	33.2188	101.219
Length  148, alignments in bytes  3/ 4:	106.938	32.8281	100.938
Length  148, alignments in bytes  4/ 3:	106.844	35.3438	100.203
Length  148, alignments in bytes  5/ 7:	104.5	33.0781	99.5781
Length  148, alignments in bytes  7/ 5:	104.891	33.3594	99.0625
Length  152, alignments in bytes  0/ 4:	107.812	31.4531	38.0938
Length  152, alignments in bytes  4/ 0:	107.609	31.1875	38.2344
Length  152, alignments in bytes  4/ 4:	106.234	18.2656	37.625
Length  152, alignments in bytes  2/ 2:	106.25	18.2812	100.828
Length  152, alignments in bytes  2/ 6:	106.156	32.4375	100.625
Length  152, alignments in bytes  6/ 2:	105.969	31.9844	99.9688
Length  152, alignments in bytes  1/ 7:	105.125	31.9375	99.2188
Length  152, alignments in bytes  7/ 1:	104.938	32.875	98.875
Length  152, alignments in bytes  3/ 4:	105.219	31.5156	99.2656
Length  152, alignments in bytes  4/ 3:	104.578	34.7031	99.5938
Length  152, alignments in bytes  5/ 7:	103.484	31.9375	97.7812
Length  152, alignments in bytes  7/ 5:	103.016	33.4219	98.1406
Length  156, alignments in bytes  0/ 4:	105.984	30.7812	36.875
Length  156, alignments in bytes  4/ 0:	106	30.7812	36.3125
Length  156, alignments in bytes  4/ 4:	105.734	18.4844	36.1562
Length  156, alignments in bytes  2/ 2:	104.516	19.1875	99.6562
Length  156, alignments in bytes  2/ 6:	104.641	31.875	98.9531
Length  156, alignments in bytes  6/ 2:	104.688	31.0938	99.6406
Length  156, alignments in bytes  1/ 7:	104.656	31.5938	98.1094
Length  156, alignments in bytes  7/ 1:	103.203	31.7031	98.4688
Length  156, alignments in bytes  3/ 4:	103.594	30.6719	97.7969
Length  156, alignments in bytes  4/ 3:	103.125	33.4531	97.5156
Length  156, alignments in bytes  5/ 7:	103.5	31.5312	96.6094
Length  156, alignments in bytes  7/ 5:	101.75	32.0312	96.5625
Length  160, alignments in bytes  0/ 4:	104.531	29.9375	36.4688
Length  160, alignments in bytes  4/ 0:	104.531	29.4688	36.375
Length  160, alignments in bytes  4/ 4:	104.531	17.9219	36.3125
Length  160, alignments in bytes  2/ 2:	103.109	18.2188	98.0312
Length  160, alignments in bytes  2/ 6:	103.047	30.875	97.5312
Length  160, alignments in bytes  6/ 2:	103.344	30.3594	97.8906
Length  160, alignments in bytes  1/ 7:	103.297	30.8594	97.9219
Length  160, alignments in bytes  7/ 1:	102.484	31.5625	96.6719
Length  160, alignments in bytes  3/ 4:	102.062	29.7656	96.5
Length  160, alignments in bytes  4/ 3:	101.781	33.0156	96.9219
Length  160, alignments in bytes  5/ 7:	102.094	30.7188	96.3438
Length  160, alignments in bytes  7/ 5:	101.641	31.9375	95.3594
Length  164, alignments in bytes  0/ 4:	102.969	29.2188	34.8906
Length  164, alignments in bytes  4/ 0:	102.766	29.3125	34.8594
Length  164, alignments in bytes  4/ 4:	102.891	16.75	34.9219
Length  164, alignments in bytes  2/ 2:	102.781	18.8281	97.7812
Length  164, alignments in bytes  2/ 6:	101.625	30.7656	96.5938
Length  164, alignments in bytes  6/ 2:	101.438	30.0312	96.2812
Length  164, alignments in bytes  1/ 7:	101.969	30.6875	96.7188
Length  164, alignments in bytes  7/ 1:	101.453	30.5625	96.4062
Length  164, alignments in bytes  3/ 4:	100.781	29.8594	94.8281
Length  164, alignments in bytes  4/ 3:	100.125	32.2969	95.5625
Length  164, alignments in bytes  5/ 7:	100.422	30.5625	95.0156
Length  164, alignments in bytes  7/ 5:	100.484	31.2344	95.7969
Length  168, alignments in bytes  0/ 4:	102.344	28.75	34.625
Length  168, alignments in bytes  4/ 0:	101.328	28.375	34.6094
Length  168, alignments in bytes  4/ 4:	101.5	16.5312	34.9531
Length  168, alignments in bytes  2/ 2:	101.344	17.2656	96.5469
Length  168, alignments in bytes  2/ 6:	101.609	30.2344	95.5625
Length  168, alignments in bytes  6/ 2:	100.938	29.0312	94.7656
Length  168, alignments in bytes  1/ 7:	100.188	29.9219	95.75
Length  168, alignments in bytes  7/ 1:	100.312	30.7344	95.2969
Length  168, alignments in bytes  3/ 4:	100.281	29.2188	95.2344
Length  168, alignments in bytes  4/ 3:	100.125	31.625	93.9844
Length  168, alignments in bytes  5/ 7:	99.4688	30.25	93.875
Length  168, alignments in bytes  7/ 5:	99.0938	30.8125	94.1719
Length  172, alignments in bytes  0/ 4:	101.016	28.1875	34.2344
Length  172, alignments in bytes  4/ 0:	101.375	28.6562	33.9219
Length  172, alignments in bytes  4/ 4:	100.234	16.75	33.7031
Length  172, alignments in bytes  2/ 2:	99.6094	17.6875	95.1094
Length  172, alignments in bytes  2/ 6:	100.438	29.8906	94.8438
Length  172, alignments in bytes  6/ 2:	99.9375	28.9531	95.125
Length  172, alignments in bytes  1/ 7:	100.141	29.5625	94.8906
Length  172, alignments in bytes  7/ 1:	98.875	29.5625	93.9688
Length  172, alignments in bytes  3/ 4:	98.8594	28.9688	94.2031
Length  172, alignments in bytes  4/ 3:	98.9375	31.25	94.2812
Length  172, alignments in bytes  5/ 7:	98.9219	29.5781	93.9219
Length  172, alignments in bytes  7/ 5:	97.5625	29.5781	93.0781
Length  176, alignments in bytes  0/ 4:	100.094	27.7812	34
Length  176, alignments in bytes  4/ 0:	99.6719	27.75	33.9531
Length  176, alignments in bytes  4/ 4:	99.8906	16.5625	33.9375
Length  176, alignments in bytes  2/ 2:	99.6562	16.9375	95.25
Length  176, alignments in bytes  2/ 6:	98.8125	29.1406	93.6562
Length  176, alignments in bytes  6/ 2:	99.0625	28.2656	93.9375
Length  176, alignments in bytes  1/ 7:	98.9688	29.0156	94.2031
Length  176, alignments in bytes  7/ 1:	98.75	29.7344	94.1719
Length  176, alignments in bytes  3/ 4:	98.6875	28.625	93.3438
Length  176, alignments in bytes  4/ 3:	97.8594	30.3125	93.25
Length  176, alignments in bytes  5/ 7:	97.75	29.1094	93.3594
Length  176, alignments in bytes  7/ 5:	97.7031	29.875	92.9375
Length  180, alignments in bytes  0/ 4:	99.7812	27.5781	32.875
Length  180, alignments in bytes  4/ 0:	98.5469	27.25	32.5625
Length  180, alignments in bytes  4/ 4:	98.5469	15.1719	32.5156
Length  180, alignments in bytes  2/ 2:	98.7344	17.2812	94.375
Length  180, alignments in bytes  2/ 6:	98.875	28.7031	94.3594
Length  180, alignments in bytes  6/ 2:	98.8906	28.3906	93.6719
Length  180, alignments in bytes  1/ 7:	97.875	28.4531	93
Length  180, alignments in bytes  7/ 1:	97.4844	28.8594	93.2188
Length  180, alignments in bytes  3/ 4:	97.6406	28.4375	93.5156
Length  180, alignments in bytes  4/ 3:	97.4062	30.2031	93.1875
Length  180, alignments in bytes  5/ 7:	97.1562	28.5312	92.1719
Length  180, alignments in bytes  7/ 5:	96.375	28.9219	92.3281
Length  184, alignments in bytes  0/ 4:	98.1875	26.9062	33.0156
Length  184, alignments in bytes  4/ 0:	98.4688	27.2188	33.1562
Length  184, alignments in bytes  4/ 4:	98.7031	15.5781	33.3438
Length  184, alignments in bytes  2/ 2:	98.0156	16.0469	93.5312
Length  184, alignments in bytes  2/ 6:	97.3594	28.2969	93.0625
Length  184, alignments in bytes  6/ 2:	97.5938	27.9375	93.2188
Length  184, alignments in bytes  1/ 7:	97.4688	28.1875	93.0781
Length  184, alignments in bytes  7/ 1:	97.5312	29	128.156
Length  184, alignments in bytes  3/ 4:	96.5	27.5625	92.0938
Length  184, alignments in bytes  4/ 3:	96.5156	29.4844	92.3906
Length  184, alignments in bytes  5/ 7:	96.3906	28.3281	92.5781
Length  184, alignments in bytes  7/ 5:	96.7656	29.1562	91.7969
Length  188, alignments in bytes  0/ 4:	98.4062	26.6094	32
Length  188, alignments in bytes  4/ 0:	97.2969	26.6719	32.1094
Length  188, alignments in bytes  4/ 4:	97.5625	20.3594	31.8594
Length  188, alignments in bytes  2/ 2:	97.5	16.4531	93.4688
Length  188, alignments in bytes  2/ 6:	97.2969	28.0312	93.4531
Length  188, alignments in bytes  6/ 2:	96.7812	27.3594	92.3125
Length  188, alignments in bytes  1/ 7:	96.7188	27.9688	92.1094
Length  188, alignments in bytes  7/ 1:	96.4531	27.7656	92.4062
Length  188, alignments in bytes  3/ 4:	96.4844	27.6094	92.4688
Length  188, alignments in bytes  4/ 3:	96.3438	29.25	91.9688
Length  188, alignments in bytes  5/ 7:	95.6719	27.8594	91.1719
Length  188, alignments in bytes  7/ 5:	95.7656	28.0156	91.4219
Length  192, alignments in bytes  0/ 4:	97.6719	26.4062	32.3125
Length  192, alignments in bytes  4/ 0:	97.5	26.4531	32.4688
Length  192, alignments in bytes  4/ 4:	97.1562	20.25	32.3125
Length  192, alignments in bytes  2/ 2:	96.5781	20.6719	92.75
Length  192, alignments in bytes  2/ 6:	96.5469	27.5	92.5
Length  192, alignments in bytes  6/ 2:	96.2031	27.25	92.4062
Length  192, alignments in bytes  1/ 7:	96.6406	27.5938	91.9531
Length  192, alignments in bytes  7/ 1:	96.5625	28.125	91.6406
Length  192, alignments in bytes  3/ 4:	95.3281	26.6719	91.1719
Length  192, alignments in bytes  4/ 3:	95.4688	28.7812	91.5625
Length  192, alignments in bytes  5/ 7:	95.9062	27.6719	91.1719
Length  192, alignments in bytes  7/ 5:	95.8281	28.4219	91.375
Length  196, alignments in bytes  0/ 4:	97.0156	26.0625	31.4375
Length  196, alignments in bytes  4/ 0:	96.4375	25.75	31.3906
Length  196, alignments in bytes  4/ 4:	96.3594	19.7188	31.2188
Length  196, alignments in bytes  2/ 2:	96.8281	20.5156	92.5156
Length  196, alignments in bytes  2/ 6:	96.7188	26.75	92.125
Length  196, alignments in bytes  6/ 2:	96.1094	26.6875	90.9219
Length  196, alignments in bytes  1/ 7:	95.4688	26.6406	91.0469
Length  196, alignments in bytes  7/ 1:	95.8125	26.5312	91.1719
Length  196, alignments in bytes  3/ 4:	96	27.0469	91.5625
Length  196, alignments in bytes  4/ 3:	95.5	27.9531	91.5156
Length  196, alignments in bytes  5/ 7:	94.7344	27.1719	90.2812
Length  196, alignments in bytes  7/ 5:	94.7656	26.7969	90.4375
Length  200, alignments in bytes  0/ 4:	96.125	25.5312	31.4688
Length  200, alignments in bytes  4/ 0:	96.2656	25.2812	31.7344
Length  200, alignments in bytes  4/ 4:	96.2812	19.625	31.6094
Length  200, alignments in bytes  2/ 2:	96.4531	19.8125	91.4062
Length  200, alignments in bytes  2/ 6:	95.8125	26.1094	91.6875
Length  200, alignments in bytes  6/ 2:	95.5469	26.3906	91.7812
Length  200, alignments in bytes  1/ 7:	95.4375	26.1406	91.6875
Length  200, alignments in bytes  7/ 1:	95.5781	26.75	91.375
Length  200, alignments in bytes  3/ 4:	94.6875	26.2344	91.0625
Length  200, alignments in bytes  4/ 3:	94.8281	27.4375	90.4219
Length  200, alignments in bytes  5/ 7:	94.9844	26.2188	90.625
Length  200, alignments in bytes  7/ 5:	94.2344	27.7656	90.7031
Length  204, alignments in bytes  0/ 4:	96.2188	25.2344	30.9375
Length  204, alignments in bytes  4/ 0:	95.5	25.1719	30.9375
Length  204, alignments in bytes  4/ 4:	95.5469	19.2031	31.0312
Length  204, alignments in bytes  2/ 2:	95.2656	19.8281	91.4062
Length  204, alignments in bytes  2/ 6:	95.2344	26.1406	91.6406
Length  204, alignments in bytes  6/ 2:	95.5469	25.7344	91.6406
Length  204, alignments in bytes  1/ 7:	95.2969	26.375	90.5469
Length  204, alignments in bytes  7/ 1:	94.375	26.5312	90.75
Length  204, alignments in bytes  3/ 4:	94.875	26.5	90.5
Length  204, alignments in bytes  4/ 3:	94.3438	27.2656	90.8125
Length  204, alignments in bytes  5/ 7:	94.9688	26.9062	90.3438
Length  204, alignments in bytes  7/ 5:	93.5938	26.1562	89.6719
Length  208, alignments in bytes  0/ 4:	95.6406	25.5156	31.0312
Length  208, alignments in bytes  4/ 0:	95.25	24.8594	31.3125
Length  208, alignments in bytes  4/ 4:	95.5469	19.2031	31.0156
Length  208, alignments in bytes  2/ 2:	95.3438	19.6094	91.3281
Length  208, alignments in bytes  2/ 6:	95.5312	26.2188	90.9688
Length  208, alignments in bytes  6/ 2:	94.4375	25.375	90.7188
Length  208, alignments in bytes  1/ 7:	94.6562	25.6406	90.6719
Length  208, alignments in bytes  7/ 1:	94.3281	26.9844	90.8438
Length  208, alignments in bytes  3/ 4:	94.7812	26.0312	90.7344
Length  208, alignments in bytes  4/ 3:	93.75	27.3906	89.9375
Length  208, alignments in bytes  5/ 7:	94.0938	26.375	90.2812
Length  208, alignments in bytes  7/ 5:	93.5	27.1875	90.0625
Length  212, alignments in bytes  0/ 4:	95.1719	25.2656	30.5469
Length  212, alignments in bytes  4/ 0:	95.5	25.6406	30.4531
Length  212, alignments in bytes  4/ 4:	94.8125	18.625	30.3281
Length  212, alignments in bytes  2/ 2:	94.0625	19.2812	90.7344
Length  212, alignments in bytes  2/ 6:	94.2812	26.0469	90.9219
Length  212, alignments in bytes  6/ 2:	94.5938	25.9375	90.9531
Length  212, alignments in bytes  1/ 7:	94.7812	26.1562	90.8594
Length  212, alignments in bytes  7/ 1:	94.3125	26.1875	90.1719
Length  212, alignments in bytes  3/ 4:	93.9688	25.9375	90.1562
Length  212, alignments in bytes  4/ 3:	93.5469	27.2656	90.3281
Length  212, alignments in bytes  5/ 7:	93.2031	26.3125	89.7031
Length  212, alignments in bytes  7/ 5:	93.2812	26.4844	89.8125
Length  216, alignments in bytes  0/ 4:	94.875	25.0312	30.5625
Length  216, alignments in bytes  4/ 0:	94.4219	24.8281	30.5625
Length  216, alignments in bytes  4/ 4:	94.4219	18.6562	30.5938
Length  216, alignments in bytes  2/ 2:	94.2969	19.0625	91.2812
Length  216, alignments in bytes  2/ 6:	94.4844	25.5	90.7969
Length  216, alignments in bytes  6/ 2:	95.0156	25.75	89.875
Length  216, alignments in bytes  1/ 7:	93.5312	25.8906	90.1562
Length  216, alignments in bytes  7/ 1:	93.6406	26.375	90.0312
Length  216, alignments in bytes  3/ 4:	93.4531	25.5625	90.1875
Length  216, alignments in bytes  4/ 3:	93.9531	27.2188	90
Length  216, alignments in bytes  5/ 7:	93.9219	26	89.2188
Length  216, alignments in bytes  7/ 5:	93.0938	26.8125	89.2812
Length  220, alignments in bytes  0/ 4:	94.6875	24.1719	30.2344
Length  220, alignments in bytes  4/ 0:	94.5625	24.3438	30.0156
Length  220, alignments in bytes  4/ 4:	94.5781	18.3594	30.1562
Length  220, alignments in bytes  2/ 2:	94.7031	19.1094	90.8438
Length  220, alignments in bytes  2/ 6:	93.8125	25.0781	89.875
Length  220, alignments in bytes  6/ 2:	93.9531	24.7656	90.25
Length  220, alignments in bytes  1/ 7:	93.8594	25.1875	90.3281
Length  220, alignments in bytes  7/ 1:	93.4219	25.3594	90.125
Length  220, alignments in bytes  3/ 4:	152.156	25.2188	89.3438
Length  220, alignments in bytes  4/ 3:	92.9844	26.1562	89.3906
Length  220, alignments in bytes  5/ 7:	93.25	25.1562	89.25
Length  220, alignments in bytes  7/ 5:	93.0312	25.4844	89.0781
Length  224, alignments in bytes  0/ 4:	94.2969	24.3281	30.2656
Length  224, alignments in bytes  4/ 0:	94.375	24.0781	30.375
Length  224, alignments in bytes  4/ 4:	93.7812	18.25	30.0469
Length  224, alignments in bytes  2/ 2:	93.9375	18.5625	90.2031
Length  224, alignments in bytes  2/ 6:	93.7344	24.9531	90.75
Length  224, alignments in bytes  6/ 2:	93.4688	24.8125	90.2188
Length  224, alignments in bytes  1/ 7:	93.5	25.0469	90.2656
Length  224, alignments in bytes  7/ 1:	93.2188	25.3594	89.5469
Length  224, alignments in bytes  3/ 4:	93.1406	24.5156	89.2031
Length  224, alignments in bytes  4/ 3:	92.7344	26.0781	89.2812
Length  224, alignments in bytes  5/ 7:	93.5	25.0156	89.5312
Length  224, alignments in bytes  7/ 5:	92.8125	25.9375	89.0938
Length  228, alignments in bytes  0/ 4:	94.0469	23.7344	29.5156
Length  228, alignments in bytes  4/ 0:	93.625	24	29.5312
Length  228, alignments in bytes  4/ 4:	93.9375	17.5625	29.625
Length  228, alignments in bytes  2/ 2:	93.875	18.7188	90.5938
Length  228, alignments in bytes  2/ 6:	93.7812	24.8906	90.4062
Length  228, alignments in bytes  6/ 2:	93.5156	24.5	90.25
Length  228, alignments in bytes  1/ 7:	92.8594	24.7656	89.5
Length  228, alignments in bytes  7/ 1:	92.5156	25	89.5
Length  228, alignments in bytes  3/ 4:	92.9062	24.9219	89.5156
Length  228, alignments in bytes  4/ 3:	93.2188	26	89.5
Length  228, alignments in bytes  5/ 7:	93.0938	24.9375	89.1719
Length  228, alignments in bytes  7/ 5:	92.7031	25	88.4688
Length  232, alignments in bytes  0/ 4:	94.0781	23.875	29.8906
Length  232, alignments in bytes  4/ 0:	94.0625	23.7812	30.0312
Length  232, alignments in bytes  4/ 4:	93.8438	17.7344	29.8281
Length  232, alignments in bytes  2/ 2:	94.2031	18.2656	89.9375
Length  232, alignments in bytes  2/ 6:	93.8438	24.7344	89.4062
Length  232, alignments in bytes  6/ 2:	92.9531	24.4062	89.4844
Length  232, alignments in bytes  1/ 7:	93.7656	24.625	89.5469
Length  232, alignments in bytes  7/ 1:	92.6875	25.1875	89.7188
Length  232, alignments in bytes  3/ 4:	92.9688	24.2812	89.7031
Length  232, alignments in bytes  4/ 3:	93.0781	25.8281	88.9688
Length  232, alignments in bytes  5/ 7:	92.5312	24.7031	88.625
Length  232, alignments in bytes  7/ 5:	92.5625	25.7344	88.6094
Length  236, alignments in bytes  0/ 4:	93.8438	23.6562	29.5781
Length  236, alignments in bytes  4/ 0:	93.75	23.875	29.5469
Length  236, alignments in bytes  4/ 4:	93.8906	17.8125	29.5781
Length  236, alignments in bytes  2/ 2:	93.1875	18.0938	89.4062
Length  236, alignments in bytes  2/ 6:	92.8438	24.5781	89.4688
Length  236, alignments in bytes  6/ 2:	92.6875	24.2969	89.375
Length  236, alignments in bytes  1/ 7:	93.2344	24.7031	89.2812
Length  236, alignments in bytes  7/ 1:	93.2812	25.375	89.3594
Length  236, alignments in bytes  3/ 4:	92.7812	24.8594	88.7656
Length  236, alignments in bytes  4/ 3:	92.2344	26.1406	88.6406
Length  236, alignments in bytes  5/ 7:	92.6875	25.2812	89
Length  236, alignments in bytes  7/ 5:	92.3281	25.5312	89.0938
Length  240, alignments in bytes  0/ 4:	94	24.3438	29.625
Length  240, alignments in bytes  4/ 0:	94.2031	23.9062	29.4062
Length  240, alignments in bytes  4/ 4:	93.0469	17.375	29.4688
Length  240, alignments in bytes  2/ 2:	93.2812	17.8594	89.8906
Length  240, alignments in bytes  2/ 6:	93.125	24.9688	89.9062
Length  240, alignments in bytes  6/ 2:	92.7031	24.8594	89.8281
Length  240, alignments in bytes  1/ 7:	93.2344	25.0625	89.9531
Length  240, alignments in bytes  7/ 1:	92.5	25.5156	88.6406
Length  240, alignments in bytes  3/ 4:	92.6562	24.5469	88.8906
Length  240, alignments in bytes  4/ 3:	92.1719	25.8906	88.7344
Length  240, alignments in bytes  5/ 7:	92.7969	25.1094	88.7656
Length  240, alignments in bytes  7/ 5:	92.0156	25.6406	89.0312
Length  244, alignments in bytes  0/ 4:	92.7969	23.7188	29.1719
Length  244, alignments in bytes  4/ 0:	92.8594	23.9844	29.0312
Length  244, alignments in bytes  4/ 4:	93.0156	17.1875	28.9062
Length  244, alignments in bytes  2/ 2:	93.2031	17.875	89.6875
Length  244, alignments in bytes  2/ 6:	93.6562	24.9688	89.8125
Length  244, alignments in bytes  6/ 2:	93.1406	24.7344	89.75
Length  244, alignments in bytes  1/ 7:	93.1562	24.75	90.25
Length  244, alignments in bytes  7/ 1:	92.5	25	89.6094
Length  244, alignments in bytes  3/ 4:	92.7656	24.9844	90.0156
Length  244, alignments in bytes  4/ 3:	92.9219	26.0781	89.7188
Length  244, alignments in bytes  5/ 7:	93.4375	25.3594	89.9062
Length  244, alignments in bytes  7/ 5:	93.5469	25.375	89.7344
Length  248, alignments in bytes  0/ 4:	94.8594	24.2344	29.6562
Length  248, alignments in bytes  4/ 0:	94.625	24.2344	29.6875
Length  248, alignments in bytes  4/ 4:	94.2656	17.5469	29.875
Length  248, alignments in bytes  2/ 2:	94.1406	17.8906	91.2656
Length  248, alignments in bytes  2/ 6:	94.2188	25.3906	91.1719
Length  248, alignments in bytes  6/ 2:	94.625	25.0469	91.2188
Length  248, alignments in bytes  1/ 7:	94.9375	25.25	91.25
Length  248, alignments in bytes  7/ 1:	94.8906	25.6406	91.6406
Length  248, alignments in bytes  3/ 4:	95.0312	24.9219	91.4219
Length  248, alignments in bytes  4/ 3:	94.3594	26.3281	91.2656
Length  248, alignments in bytes  5/ 7:	94.9688	25.4531	91.6875
Length  248, alignments in bytes  7/ 5:	94.2344	26.1094	91.2812
Length  252, alignments in bytes  0/ 4:	95.7812	24.5938	30.1406
Length  252, alignments in bytes  4/ 0:	95.9844	24.625	29.9375
Length  252, alignments in bytes  4/ 4:	96.0312	17.5312	29.9375
Length  252, alignments in bytes  2/ 2:	96.0312	18.3594	93.375
Length  252, alignments in bytes  2/ 6:	96.0625	25.5	92.9062
Length  252, alignments in bytes  6/ 2:	96.0156	25.3125	92.5938
Length  252, alignments in bytes  1/ 7:	96.5	25.5	91.8906
Length  252, alignments in bytes  7/ 1:	96.2656	25.8125	92.3906
Length  252, alignments in bytes  3/ 4:	96.1094	25.2031	92.5625
Length  252, alignments in bytes  4/ 3:	95.7969	26.5469	92.6094
Length  252, alignments in bytes  5/ 7:	95.9062	25.8125	92.7969
Length  252, alignments in bytes  7/ 5:	96.0312	25.9688	92.6719
Length  256, alignments in bytes  0/ 4:	96.9688	24.7656	30.5
Length  256, alignments in bytes  4/ 0:	96.7188	24.75	30.8125
Length  256, alignments in bytes  4/ 4:	97.2812	17.5781	30.7344
Length  256, alignments in bytes  2/ 2:	97.2812	18.1562	94.5625
Length  256, alignments in bytes  2/ 6:	97.5	25.7344	94.0469
Length  256, alignments in bytes  6/ 2:	97.3438	25.6719	94.25
Length  256, alignments in bytes  1/ 7:	97.875	25.9375	94.0469
Length  256, alignments in bytes  7/ 1:	97.2969	26.2656	94.1562
Length  256, alignments in bytes  3/ 4:	97.5469	25.5312	94.125
Length  256, alignments in bytes  4/ 3:	97.6406	26.8125	94.4062
Length  256, alignments in bytes  5/ 7:	97.9688	26.0469	94.3281
Length  256, alignments in bytes  7/ 5:	97.4062	26.5625	94.0156
Length  260, alignments in bytes  0/ 4:	98.9844	25.125	30.6406
Length  260, alignments in bytes  4/ 0:	98.8594	25.25	30.5469
Length  260, alignments in bytes  4/ 4:	98.7031	17.4688	30.5625
Length  260, alignments in bytes  2/ 2:	98.7969	18.5938	95.9219
Length  260, alignments in bytes  2/ 6:	98.6406	26.0312	95.625
Length  260, alignments in bytes  6/ 2:	99.0938	25.3906	95.5469
Length  260, alignments in bytes  1/ 7:	99.0312	25.9844	95.625
Length  260, alignments in bytes  7/ 1:	99	25.6562	95.2969
Length  260, alignments in bytes  3/ 4:	99.4219	25.9219	95.7344
Length  260, alignments in bytes  4/ 3:	98.7031	26.7969	95.2656
Length  260, alignments in bytes  5/ 7:	98.7812	26.5781	95.5312
Length  260, alignments in bytes  7/ 5:	99.0156	26.0156	95.4688
Length  264, alignments in bytes  0/ 4:	100.562	25.4219	31.25
Length  264, alignments in bytes  4/ 0:	100.375	24.7812	31.1094
Length  264, alignments in bytes  4/ 4:	99.9844	18.0781	31.0156
Length  264, alignments in bytes  2/ 2:	99.9844	18.4844	97.0156
Length  264, alignments in bytes  2/ 6:	100.484	26.4375	96.9531
Length  264, alignments in bytes  6/ 2:	100.312	25.7031	96.5312
Length  264, alignments in bytes  1/ 7:	100.453	26.3281	97.3438
Length  264, alignments in bytes  7/ 1:	100.281	26.2656	97.2344
Length  264, alignments in bytes  3/ 4:	100.516	26.1094	97.1094
Length  264, alignments in bytes  4/ 3:	100.047	27.0312	96.4375
Length  264, alignments in bytes  5/ 7:	100.75	26.5	97.0625
Length  264, alignments in bytes  7/ 5:	100.562	26.6562	96.8281
Length  268, alignments in bytes  0/ 4:	101.844	25.75	31.4688
Length  268, alignments in bytes  4/ 0:	101.641	25.3281	31.1562
Length  268, alignments in bytes  4/ 4:	101.688	18.0781	31.4062
Length  268, alignments in bytes  2/ 2:	102.047	18.7812	98.4219
Length  268, alignments in bytes  2/ 6:	101.234	26.4375	98.875
Length  268, alignments in bytes  6/ 2:	101.359	25.9062	98.4219
Length  268, alignments in bytes  1/ 7:	102.312	26.6406	98.2969
Length  268, alignments in bytes  7/ 1:	102.125	26.6875	98.4531
Length  268, alignments in bytes  3/ 4:	102.75	26.5469	98.4375
Length  268, alignments in bytes  4/ 3:	101.594	27.7188	98.8281
Length  268, alignments in bytes  5/ 7:	102.188	26.9062	98.5469
Length  268, alignments in bytes  7/ 5:	101.219	27.0312	98.2812
Length  272, alignments in bytes  0/ 4:	103.938	26.0781	32.0781
Length  272, alignments in bytes  4/ 0:	103.016	26	31.8281
Length  272, alignments in bytes  4/ 4:	103.469	18.2812	32.0781
Length  272, alignments in bytes  2/ 2:	102.766	18.9062	99.7969
Length  272, alignments in bytes  2/ 6:	103.172	27.0156	99.9219
Length  272, alignments in bytes  6/ 2:	103.141	26.625	99.875
Length  272, alignments in bytes  1/ 7:	103.203	26.7656	99.9844
Length  272, alignments in bytes  7/ 1:	102.922	27.2656	100
Length  272, alignments in bytes  3/ 4:	103.078	26.6719	100.016
Length  272, alignments in bytes  4/ 3:	103.312	27.8594	100.016
Length  272, alignments in bytes  5/ 7:	103.641	27.1719	99.875
Length  272, alignments in bytes  7/ 5:	102.812	27.5	100.109
Length  276, alignments in bytes  0/ 4:	104.828	26.375	32.3281
Length  276, alignments in bytes  4/ 0:	105.016	26.3125	32.2656
Length  276, alignments in bytes  4/ 4:	104.5	18.4531	31.9844
Length  276, alignments in bytes  2/ 2:	104.469	18.8906	101.359
Length  276, alignments in bytes  2/ 6:	105.672	27.1094	101.203
Length  276, alignments in bytes  6/ 2:	104.828	26.9531	101.562
Length  276, alignments in bytes  1/ 7:	105.109	27.1406	101.375
Length  276, alignments in bytes  7/ 1:	104.984	27.25	101.531
Length  276, alignments in bytes  3/ 4:	104.469	27	101.516
Length  276, alignments in bytes  4/ 3:	104.609	28.3281	100.719
Length  276, alignments in bytes  5/ 7:	105.234	27.3906	101.078
Length  276, alignments in bytes  7/ 5:	104.875	27.5156	101.188
Length  280, alignments in bytes  0/ 4:	106.031	26.5156	32.7969
Length  280, alignments in bytes  4/ 0:	106.125	26.3438	32.8125
Length  280, alignments in bytes  4/ 4:	105.875	18.4844	32.7812
Length  280, alignments in bytes  2/ 2:	135.812	19.0625	102.953
Length  280, alignments in bytes  2/ 6:	106.219	27.3594	102.516
Length  280, alignments in bytes  6/ 2:	106.047	26.6562	102.531
Length  280, alignments in bytes  1/ 7:	106.875	27.2656	102.844
Length  280, alignments in bytes  7/ 1:	106.219	27.7031	102.781
Length  280, alignments in bytes  3/ 4:	106.125	27.0938	102.734
Length  280, alignments in bytes  4/ 3:	105.797	28.1406	102.453
Length  280, alignments in bytes  5/ 7:	106.484	27.1562	102.484
Length  280, alignments in bytes  7/ 5:	105.922	27.75	103.109
Length  284, alignments in bytes  0/ 4:	107.562	26.2812	32.9062
Length  284, alignments in bytes  4/ 0:	107.609	26.4531	32.7812
Length  284, alignments in bytes  4/ 4:	108.234	18.7344	33
Length  284, alignments in bytes  2/ 2:	107.859	19.3281	104.125
Length  284, alignments in bytes  2/ 6:	107.797	27.3125	104.016
Length  284, alignments in bytes  6/ 2:	107.828	26.9531	104.094
Length  284, alignments in bytes  1/ 7:	107.688	27.0469	104
Length  284, alignments in bytes  7/ 1:	107.234	27.2344	104.141
Length  284, alignments in bytes  3/ 4:	107.422	27.0156	104.031
Length  284, alignments in bytes  4/ 3:	107.719	28.3281	103.609
Length  284, alignments in bytes  5/ 7:	108.766	27.3594	104.203
Length  284, alignments in bytes  7/ 5:	107.203	27.4844	104.406
Length  288, alignments in bytes  0/ 4:	108.797	26.5312	33.5938
Length  288, alignments in bytes  4/ 0:	109.078	26.5625	33.6406
Length  288, alignments in bytes  4/ 4:	108.938	19	33.75
Length  288, alignments in bytes  2/ 2:	109.453	19.3125	105.922
Length  288, alignments in bytes  2/ 6:	109.547	27.4688	105.328
Length  288, alignments in bytes  6/ 2:	109.188	27.1562	105.453
Length  288, alignments in bytes  1/ 7:	109.156	27.3906	105.547
Length  288, alignments in bytes  7/ 1:	108.875	27.8281	105.609
Length  288, alignments in bytes  3/ 4:	109.109	27.1094	105.875
Length  288, alignments in bytes  4/ 3:	109.469	28.5312	105.672
Length  288, alignments in bytes  5/ 7:	109.672	27.5625	105.516
Length  288, alignments in bytes  7/ 5:	108.812	27.9688	105.641
Length  292, alignments in bytes  0/ 4:	110.469	26.7812	33.6406
Length  292, alignments in bytes  4/ 0:	110.953	27.0781	33.4531
Length  292, alignments in bytes  4/ 4:	110.172	19	33.5312
Length  292, alignments in bytes  2/ 2:	110.453	19.7188	106.906
Length  292, alignments in bytes  2/ 6:	110.312	27.6719	106.672
Length  292, alignments in bytes  6/ 2:	110.016	27.3125	107.125
Length  292, alignments in bytes  1/ 7:	110.688	27.6562	107.219
Length  292, alignments in bytes  7/ 1:	110.328	27.75	107.016
Length  292, alignments in bytes  3/ 4:	110.469	27.4688	106.844
Length  292, alignments in bytes  4/ 3:	111	28.7188	107.125
Length  292, alignments in bytes  5/ 7:	110.656	28.0312	106.797
Length  292, alignments in bytes  7/ 5:	110.953	28.125	106.828
Length  296, alignments in bytes  0/ 4:	112.344	27.0938	34.1406
Length  296, alignments in bytes  4/ 0:	112.844	26.9375	34.2656
Length  296, alignments in bytes  4/ 4:	112.703	19.2031	34.0938
Length  296, alignments in bytes  2/ 2:	111.844	19.5781	108.281
Length  296, alignments in bytes  2/ 6:	112.609	27.7969	108.375
Length  296, alignments in bytes  6/ 2:	112.016	27.7656	108.547
Length  296, alignments in bytes  1/ 7:	112.641	27.9219	108.641
Length  296, alignments in bytes  7/ 1:	112.203	28.1562	108.25
Length  296, alignments in bytes  3/ 4:	112.234	27.5781	108.5
Length  296, alignments in bytes  4/ 3:	111.953	29.2188	108.172
Length  296, alignments in bytes  5/ 7:	112.688	28.0312	108.5
Length  296, alignments in bytes  7/ 5:	111.922	28.5938	109.109
Length  300, alignments in bytes  0/ 4:	113.344	27.2969	34.5312
Length  300, alignments in bytes  4/ 0:	113.375	27.5156	34.3438
Length  300, alignments in bytes  4/ 4:	113.156	19.2656	34.2656
Length  300, alignments in bytes  2/ 2:	113.625	19.9375	109.672
Length  300, alignments in bytes  2/ 6:	113.578	28.3281	109.5
Length  300, alignments in bytes  6/ 2:	113.453	27.8438	109.812
Length  300, alignments in bytes  1/ 7:	113.422	28.2656	110.141
Length  300, alignments in bytes  7/ 1:	113.094	28.1875	109.375
Length  300, alignments in bytes  3/ 4:	114.578	28.0312	110.328
Length  300, alignments in bytes  4/ 3:	113.734	29.2969	110.375
Length  300, alignments in bytes  5/ 7:	113.875	28.4219	109.578
Length  300, alignments in bytes  7/ 5:	114.016	28.6406	109.547
Length  304, alignments in bytes  0/ 4:	114.672	27.5938	34.8594
Length  304, alignments in bytes  4/ 0:	114.547	27.9219	35.125
Length  304, alignments in bytes  4/ 4:	115.188	19.3906	35.0156
Length  304, alignments in bytes  2/ 2:	114.609	20.0312	111.75
Length  304, alignments in bytes  2/ 6:	114.5	28.5	111.172
Length  304, alignments in bytes  6/ 2:	114.516	28.6719	110.906
Length  304, alignments in bytes  1/ 7:	114.953	28.25	111.078
Length  304, alignments in bytes  7/ 1:	114.422	29.3594	111.828
Length  304, alignments in bytes  3/ 4:	115.031	28.0312	111.172
Length  304, alignments in bytes  4/ 3:	115.438	29.875	111.094
Length  304, alignments in bytes  5/ 7:	115.625	28.6719	111.641
Length  304, alignments in bytes  7/ 5:	114.562	29.6406	111.297
Length  308, alignments in bytes  0/ 4:	117	28.1562	35.1719
Length  308, alignments in bytes  4/ 0:	116.531	28.3594	35.0625
Length  308, alignments in bytes  4/ 4:	116.312	19.5469	35
Length  308, alignments in bytes  2/ 2:	116.234	20.1562	112.797
Length  308, alignments in bytes  2/ 6:	116.094	29.1406	112.859
Length  308, alignments in bytes  6/ 2:	116.5	28.8906	112.531
Length  308, alignments in bytes  1/ 7:	117.172	29.1094	113.062
Length  308, alignments in bytes  7/ 1:	115.984	29.3594	112.672
Length  308, alignments in bytes  3/ 4:	116.812	28.9844	112.5
Length  308, alignments in bytes  4/ 3:	116.078	30.2656	112.953
Length  308, alignments in bytes  5/ 7:	116.219	29.4219	112.375
Length  308, alignments in bytes  7/ 5:	116.609	29.6562	112.75
Length  312, alignments in bytes  0/ 4:	117.703	28.5156	36.0469
Length  312, alignments in bytes  4/ 0:	117.203	28.4844	35.6875
Length  312, alignments in bytes  4/ 4:	117.562	19.5625	36.1562
Length  312, alignments in bytes  2/ 2:	117.344	20.1719	114.25
Length  312, alignments in bytes  2/ 6:	117.969	29.5625	114
Length  312, alignments in bytes  6/ 2:	117.938	29.1875	113.781
Length  312, alignments in bytes  1/ 7:	117.75	29.3125	114.562
Length  312, alignments in bytes  7/ 1:	117.234	30.0156	114.172
Length  312, alignments in bytes  3/ 4:	118.281	28.875	114.047
Length  312, alignments in bytes  4/ 3:	117.484	30.2812	114.516
Length  312, alignments in bytes  5/ 7:	118.422	29.7188	114.156
Length  312, alignments in bytes  7/ 5:	118.5	30.25	114.25
Length  316, alignments in bytes  0/ 4:	119.359	28.8906	35.9531
Length  316, alignments in bytes  4/ 0:	119.672	29.0312	35.8281
Length  316, alignments in bytes  4/ 4:	119.203	19.9219	35.5469
Length  316, alignments in bytes  2/ 2:	119.828	20.5312	115.312
Length  316, alignments in bytes  2/ 6:	119.344	29.4531	115.719
Length  316, alignments in bytes  6/ 2:	118.719	29.3594	115.594
Length  316, alignments in bytes  1/ 7:	119.578	29.7188	115.359
Length  316, alignments in bytes  7/ 1:	119.125	29.7969	115.703
Length  316, alignments in bytes  3/ 4:	119.359	29.7656	115.484
Length  316, alignments in bytes  4/ 3:	119.312	30.3438	115.734
Length  316, alignments in bytes  5/ 7:	120.156	29.875	115.75
Length  316, alignments in bytes  7/ 5:	119.172	30.125	115.562
Length  320, alignments in bytes  0/ 4:	121.016	29	36.3906
Length  320, alignments in bytes  4/ 0:	120.453	28.9531	36.5
Length  320, alignments in bytes  4/ 4:	120.391	20.0781	36.5312
Length  320, alignments in bytes  2/ 2:	121.047	20.625	117.312
Length  320, alignments in bytes  2/ 6:	120.641	29.9531	117.172
Length  320, alignments in bytes  6/ 2:	120.75	29.6094	116.609
Length  320, alignments in bytes  1/ 7:	120.766	29.7656	117.672
Length  320, alignments in bytes  7/ 1:	120.422	30.6719	117.094
Length  320, alignments in bytes  3/ 4:	120.953	29.6406	117.156
Length  320, alignments in bytes  4/ 3:	120.875	31.0312	117.125
Length  320, alignments in bytes  5/ 7:	121.953	30.2969	117.172
Length  320, alignments in bytes  7/ 5:	120.672	30.7812	116.797
Length  324, alignments in bytes  0/ 4:	121.328	29.3125	36.7188
Length  324, alignments in bytes  4/ 0:	121.922	29.4531	36.625
Length  324, alignments in bytes  4/ 4:	121.312	20.1719	36.5625
Length  324, alignments in bytes  2/ 2:	121.406	20.9688	118.453
Length  324, alignments in bytes  2/ 6:	122.266	30.2656	118.438
Length  324, alignments in bytes  6/ 2:	122.297	29.9688	118.297
Length  324, alignments in bytes  1/ 7:	122.812	29.75	118.641
Length  324, alignments in bytes  7/ 1:	121.906	30.3594	118.703
Length  324, alignments in bytes  3/ 4:	123.219	29.6562	118.484
Length  324, alignments in bytes  4/ 3:	122.156	31.375	118.469
Length  324, alignments in bytes  5/ 7:	122.656	30	118.516
Length  324, alignments in bytes  7/ 5:	122.016	30.6719	118.484
Length  328, alignments in bytes  0/ 4:	123.797	29.2656	37.5781
Length  328, alignments in bytes  4/ 0:	123.234	29.4688	37.4062
Length  328, alignments in bytes  4/ 4:	123.594	20.3594	37.3438
Length  328, alignments in bytes  2/ 2:	123.969	21.0156	119.812
Length  328, alignments in bytes  2/ 6:	123.641	30.5625	119.953
Length  328, alignments in bytes  6/ 2:	123.078	30.2812	120.234
Length  328, alignments in bytes  1/ 7:	123.672	30.5	119.688
Length  328, alignments in bytes  7/ 1:	123.594	31.0469	120.188
Length  328, alignments in bytes  3/ 4:	123.469	30.2188	120.141
Length  328, alignments in bytes  4/ 3:	123.484	31.5469	120
Length  328, alignments in bytes  5/ 7:	124.094	30.75	120.094
Length  328, alignments in bytes  7/ 5:	123.375	31.5156	119.656
Length  332, alignments in bytes  0/ 4:	125.484	29.6562	37.2031
Length  332, alignments in bytes  4/ 0:	124.828	29.8906	37.375
Length  332, alignments in bytes  4/ 4:	124.281	20.5156	37.2656
Length  332, alignments in bytes  2/ 2:	125.391	21.0781	121.203
Length  332, alignments in bytes  2/ 6:	125.438	30.7656	120.922
Length  332, alignments in bytes  6/ 2:	125.609	30.3438	121.203
Length  332, alignments in bytes  1/ 7:	125.375	30.8594	121.422
Length  332, alignments in bytes  7/ 1:	125.078	30.9062	121.219
Length  332, alignments in bytes  3/ 4:	125.344	30.875	121.562
Length  332, alignments in bytes  4/ 3:	124.828	32.0469	121.094
Length  332, alignments in bytes  5/ 7:	125.844	31.0781	121.594
Length  332, alignments in bytes  7/ 5:	124.859	31.1875	121.328
Length  336, alignments in bytes  0/ 4:	126.734	30.2188	37.875
Length  336, alignments in bytes  4/ 0:	127.031	29.875	37.9062
Length  336, alignments in bytes  4/ 4:	126.312	20.5469	37.875
Length  336, alignments in bytes  2/ 2:	126.656	21.125	123.062
Length  336, alignments in bytes  2/ 6:	126.594	31.1875	122.938
Length  336, alignments in bytes  6/ 2:	126.75	30.7656	122.734
Length  336, alignments in bytes  1/ 7:	127.016	31.0781	122.766
Length  336, alignments in bytes  7/ 1:	126.672	31.6406	123.016
Length  336, alignments in bytes  3/ 4:	127.016	30.8594	123.078
Length  336, alignments in bytes  4/ 3:	126.922	32.2812	122.625
Length  336, alignments in bytes  5/ 7:	127.719	31.1562	122.828
Length  336, alignments in bytes  7/ 5:	126.094	32.0156	122.781
Length  340, alignments in bytes  0/ 4:	128.359	30.25	38.1562
Length  340, alignments in bytes  4/ 0:	128.312	30.375	37.7656
Length  340, alignments in bytes  4/ 4:	127.688	20.6562	38.1562
Length  340, alignments in bytes  2/ 2:	127.141	21.5938	123.844
Length  340, alignments in bytes  2/ 6:	128.172	31.1094	124.406
Length  340, alignments in bytes  6/ 2:	128.281	31.0625	124.812
Length  340, alignments in bytes  1/ 7:	128.266	31.5156	124.125
Length  340, alignments in bytes  7/ 1:	128.109	31.5625	124.203
Length  340, alignments in bytes  3/ 4:	128.781	31.3594	124.359
Length  340, alignments in bytes  4/ 3:	128.016	32.6562	124.156
Length  340, alignments in bytes  5/ 7:	127.922	31.5625	124.672
Length  340, alignments in bytes  7/ 5:	127.922	31.9375	124.078
Length  344, alignments in bytes  0/ 4:	129.688	30.4375	38.6094
Length  344, alignments in bytes  4/ 0:	129.531	30.5625	38.7188
Length  344, alignments in bytes  4/ 4:	128.875	20.9688	39.1875
Length  344, alignments in bytes  2/ 2:	128.641	21.625	125.703
Length  344, alignments in bytes  2/ 6:	129.328	31.6406	125.547
Length  344, alignments in bytes  6/ 2:	129.766	31.3438	125.859
Length  344, alignments in bytes  1/ 7:	129.844	31.5625	125.5
Length  344, alignments in bytes  7/ 1:	129.484	32.1406	125.797
Length  344, alignments in bytes  3/ 4:	129.75	31.4219	125.75
Length  344, alignments in bytes  4/ 3:	129.766	32.7344	125.234
Length  344, alignments in bytes  5/ 7:	130.281	31.2969	125.438
Length  344, alignments in bytes  7/ 5:	129.5	32.1406	125.859
Length  348, alignments in bytes  0/ 4:	130.922	30.9219	38.6875
Length  348, alignments in bytes  4/ 0:	130.281	30.5781	38.7031
Length  348, alignments in bytes  4/ 4:	131.438	21.3438	38.8438
Length  348, alignments in bytes  2/ 2:	130.828	21.8594	127.156
Length  348, alignments in bytes  2/ 6:	131.172	31.4062	126.859
Length  348, alignments in bytes  6/ 2:	130.516	31.1562	126.641
Length  348, alignments in bytes  1/ 7:	131.219	31.7812	127.203
Length  348, alignments in bytes  7/ 1:	130.594	31.4688	127.141
Length  348, alignments in bytes  3/ 4:	130.766	31.3281	127.109
Length  348, alignments in bytes  4/ 3:	131.016	33.125	127.094
Length  348, alignments in bytes  5/ 7:	131.812	31.6562	127.297
Length  348, alignments in bytes  7/ 5:	130.25	32.2656	126.984
Length  352, alignments in bytes  0/ 4:	132.281	30.7812	39.25
Length  352, alignments in bytes  4/ 0:	132.406	31.1875	39.625
Length  352, alignments in bytes  4/ 4:	131.484	21.3281	39.4688
Length  352, alignments in bytes  2/ 2:	132.547	21.3281	128.438
Length  352, alignments in bytes  2/ 6:	132.906	31.7812	128.422
Length  352, alignments in bytes  6/ 2:	132.297	31.4062	128.188
Length  352, alignments in bytes  1/ 7:	132.359	32.1562	128.578
Length  352, alignments in bytes  7/ 1:	132.109	32.0781	128.281
Length  352, alignments in bytes  3/ 4:	132.609	31.3125	128.766
Length  352, alignments in bytes  4/ 3:	132.156	33.3281	128.391
Length  352, alignments in bytes  5/ 7:	133	31.875	128.734
Length  352, alignments in bytes  7/ 5:	132.594	33.2656	128.125
Length  356, alignments in bytes  0/ 4:	133.375	30.9375	39.6562
Length  356, alignments in bytes  4/ 0:	133.906	31.2188	39.6094
Length  356, alignments in bytes  4/ 4:	133.625	21.25	39.625
Length  356, alignments in bytes  2/ 2:	132.766	22.0781	130.312
Length  356, alignments in bytes  2/ 6:	134.188	32.0312	130.062
Length  356, alignments in bytes  6/ 2:	133.812	31.7344	129.656
Length  356, alignments in bytes  1/ 7:	134.781	32.375	130.156
Length  356, alignments in bytes  7/ 1:	134.156	32.1875	129.922
Length  356, alignments in bytes  3/ 4:	133.844	31.9219	130.312
Length  356, alignments in bytes  4/ 3:	133.828	33.6875	130
Length  356, alignments in bytes  5/ 7:	134.969	32.3281	130.016
Length  356, alignments in bytes  7/ 5:	134.062	32.9688	129.828
Length  360, alignments in bytes  0/ 4:	135.938	31.25	39.9531
Length  360, alignments in bytes  4/ 0:	135.266	31.6562	39.9531
Length  360, alignments in bytes  4/ 4:	135.422	21.75	40.1719
Length  360, alignments in bytes  2/ 2:	135.531	22.2969	131.453
Length  360, alignments in bytes  2/ 6:	135.938	32.1719	131.203
Length  360, alignments in bytes  6/ 2:	134.578	32.0625	131.453
Length  360, alignments in bytes  1/ 7:	135.75	32.8125	131.109
Length  360, alignments in bytes  7/ 1:	135.531	33.3281	131.828
Length  360, alignments in bytes  3/ 4:	135.641	32.4531	131.734
Length  360, alignments in bytes  4/ 3:	134.719	33.8125	131.688
Length  360, alignments in bytes  5/ 7:	136.906	33.0156	131.312
Length  360, alignments in bytes  7/ 5:	134.656	33.6875	131.656
Length  364, alignments in bytes  0/ 4:	137.453	32.0781	40.3594
Length  364, alignments in bytes  4/ 0:	137.172	32.2031	40.0312
Length  364, alignments in bytes  4/ 4:	136.344	21.8281	40.1875
Length  364, alignments in bytes  2/ 2:	136.531	22.2031	133.109
Length  364, alignments in bytes  2/ 6:	136.906	33.0469	132.875
Length  364, alignments in bytes  6/ 2:	137.375	32.8438	133.125
Length  364, alignments in bytes  1/ 7:	136.688	32.9531	132.781
Length  364, alignments in bytes  7/ 1:	136.312	33.375	132.953
Length  364, alignments in bytes  3/ 4:	136.969	33.0938	133.078
Length  364, alignments in bytes  4/ 3:	136.531	34.3125	132.734
Length  364, alignments in bytes  5/ 7:	136.875	33.5	133.172
Length  364, alignments in bytes  7/ 5:	135.5	33.4531	133.047
Length  368, alignments in bytes  0/ 4:	138.875	32.3906	41.0156
Length  368, alignments in bytes  4/ 0:	138.953	32.1719	40.9844
Length  368, alignments in bytes  4/ 4:	138.875	21.8906	41.0469
Length  368, alignments in bytes  2/ 2:	138.203	22.2969	134.219
Length  368, alignments in bytes  2/ 6:	138.234	33.2344	134.453
Length  368, alignments in bytes  6/ 2:	137.297	32.6562	133.797
Length  368, alignments in bytes  1/ 7:	139.359	33.2969	134.344
Length  368, alignments in bytes  7/ 1:	137.844	33.3281	134.547
Length  368, alignments in bytes  3/ 4:	138.438	33.0938	134.359
Length  368, alignments in bytes  4/ 3:	138.297	34.1406	134.859
Length  368, alignments in bytes  5/ 7:	139.484	33.5469	134.422
Length  368, alignments in bytes  7/ 5:	138.297	34.2344	134.094
Length  372, alignments in bytes  0/ 4:	139.375	32.0312	40.9531
Length  372, alignments in bytes  4/ 0:	139.219	32.6094	41.0781
Length  372, alignments in bytes  4/ 4:	139.25	22.0156	40.9844
Length  372, alignments in bytes  2/ 2:	139.422	23.0469	135.797
Length  372, alignments in bytes  2/ 6:	139.5	33.5312	135.734
Length  372, alignments in bytes  6/ 2:	139.891	32.9062	135.797
Length  372, alignments in bytes  1/ 7:	140.375	33.4219	136.094
Length  372, alignments in bytes  7/ 1:	139.844	33.3281	135.719
Length  372, alignments in bytes  3/ 4:	140.719	33.7031	135.75
Length  372, alignments in bytes  4/ 3:	139.016	34.4062	135.609
Length  372, alignments in bytes  5/ 7:	140.438	33.9375	135.828
Length  372, alignments in bytes  7/ 5:	139.781	34.0781	135.5
Length  376, alignments in bytes  0/ 4:	140.609	32.9375	41.7344
Length  376, alignments in bytes  4/ 0:	140.531	32.875	41.75
Length  376, alignments in bytes  4/ 4:	140.641	22.0312	41.7031
Length  376, alignments in bytes  2/ 2:	141.141	22.8125	137.141
Length  376, alignments in bytes  2/ 6:	142.234	33.9531	137.391
Length  376, alignments in bytes  6/ 2:	141.406	33.6406	137.344
Length  376, alignments in bytes  1/ 7:	141.797	33.75	137.141
Length  376, alignments in bytes  7/ 1:	141.734	34.2969	137.109
Length  376, alignments in bytes  3/ 4:	141.562	33.7188	136.766
Length  376, alignments in bytes  4/ 3:	141.641	35.0625	137.406
Length  376, alignments in bytes  5/ 7:	141.672	34.2656	137.172
Length  376, alignments in bytes  7/ 5:	140.734	34.625	137.297
Length  380, alignments in bytes  0/ 4:	142.812	33.2656	41.8438
Length  380, alignments in bytes  4/ 0:	142.531	33.1406	41.625
Length  380, alignments in bytes  4/ 4:	142.781	22.5625	41.8906
Length  380, alignments in bytes  2/ 2:	143.297	22.9531	139.031
Length  380, alignments in bytes  2/ 6:	142.938	34.1562	138.781
Length  380, alignments in bytes  6/ 2:	142.453	33.9531	138.641
Length  380, alignments in bytes  1/ 7:	143.844	34.1406	138.844
Length  380, alignments in bytes  7/ 1:	142.297	34.5469	138.5
Length  380, alignments in bytes  3/ 4:	142.531	33.9531	138.578
Length  380, alignments in bytes  4/ 3:	141.969	35.4219	138.125
Length  380, alignments in bytes  5/ 7:	143.266	34.3594	138.641
Length  380, alignments in bytes  7/ 5:	142.641	34.7656	138.203
Length  384, alignments in bytes  0/ 4:	144.016	33.7344	42.6719
Length  384, alignments in bytes  4/ 0:	143.5	33.5	42.4219
Length  384, alignments in bytes  4/ 4:	144.203	22.3906	42.2656
Length  384, alignments in bytes  2/ 2:	144.219	23.0156	139.797
Length  384, alignments in bytes  2/ 6:	143.656	34.4688	139.875
Length  384, alignments in bytes  6/ 2:	144.266	34.2656	140.188
Length  384, alignments in bytes  1/ 7:	144.547	34.5938	139.906
Length  384, alignments in bytes  7/ 1:	143.844	34.9688	140.25
Length  384, alignments in bytes  3/ 4:	144.594	34.2812	139.469
Length  384, alignments in bytes  4/ 3:	143.797	35.4844	140.047
Length  384, alignments in bytes  5/ 7:	145.297	34.625	140.469
Length  384, alignments in bytes  7/ 5:	144.359	35.2344	140.141
Length  388, alignments in bytes  0/ 4:	145.453	33.7031	42.4688
Length  388, alignments in bytes  4/ 0:	145.922	34	42.625
Length  388, alignments in bytes  4/ 4:	144.797	22.3594	42.375
Length  388, alignments in bytes  2/ 2:	144.703	23.25	141.188
Length  388, alignments in bytes  2/ 6:	145.719	34.6406	141.531
Length  388, alignments in bytes  6/ 2:	145.453	34.3906	141.453
Length  388, alignments in bytes  1/ 7:	145.922	34.6406	141.531
Length  388, alignments in bytes  7/ 1:	145.344	34.3125	141.047
Length  388, alignments in bytes  3/ 4:	146.078	34.1875	215.328
Length  388, alignments in bytes  4/ 3:	145.75	35.5	141.328
Length  388, alignments in bytes  5/ 7:	146.828	34.9844	141.469
Length  388, alignments in bytes  7/ 5:	145.469	35.0781	141.016
Length  392, alignments in bytes  0/ 4:	147.766	34.0469	43.2812
Length  392, alignments in bytes  4/ 0:	147.125	34.0469	43.2812
Length  392, alignments in bytes  4/ 4:	146.875	22.7812	43.5469
Length  392, alignments in bytes  2/ 2:	147.234	23.5469	142.359
Length  392, alignments in bytes  2/ 6:	147.25	35.0938	142.578
Length  392, alignments in bytes  6/ 2:	146.766	34.7656	142.828
Length  392, alignments in bytes  1/ 7:	147.016	35.1406	143.031
Length  392, alignments in bytes  7/ 1:	147.156	35.2812	142.844
Length  392, alignments in bytes  3/ 4:	146.766	34.75	142.453
Length  392, alignments in bytes  4/ 3:	146.484	36.0625	142.625
Length  392, alignments in bytes  5/ 7:	147.875	35.2188	143.203
Length  392, alignments in bytes  7/ 5:	146.719	35.8906	142.891
Length  396, alignments in bytes  0/ 4:	148.625	34.1094	43.125
Length  396, alignments in bytes  4/ 0:	147.797	34.3281	43.1094
Length  396, alignments in bytes  4/ 4:	147.984	22.9219	43.0938
Length  396, alignments in bytes  2/ 2:	148.078	23.5	143.875
Length  396, alignments in bytes  2/ 6:	147.859	35.2344	144.406
Length  396, alignments in bytes  6/ 2:	148.672	34.8438	144.016
Length  396, alignments in bytes  1/ 7:	149.078	35.3438	144.562
Length  396, alignments in bytes  7/ 1:	148.609	35.25	144.531
Length  396, alignments in bytes  3/ 4:	148.125	35.0469	143.766
Length  396, alignments in bytes  4/ 3:	148.922	36.5156	144.422
Length  396, alignments in bytes  5/ 7:	149.156	35.5781	144.641
Length  396, alignments in bytes  7/ 5:	149.016	35.625	144.156
Length  400, alignments in bytes  0/ 4:	149.812	34.6719	44.125
Length  400, alignments in bytes  4/ 0:	149.719	34.5312	43.9688
Length  400, alignments in bytes  4/ 4:	150	23.0781	44.1562
Length  400, alignments in bytes  2/ 2:	150.625	23.7031	145.797
Length  400, alignments in bytes  2/ 6:	149.453	35.4375	145.922
Length  400, alignments in bytes  6/ 2:	150.391	35.1406	146.156
Length  400, alignments in bytes  1/ 7:	150.359	35.4219	145.719
Length  400, alignments in bytes  7/ 1:	149.375	36.0469	145.719
Length  400, alignments in bytes  3/ 4:	150.562	35.2812	145.859
Length  400, alignments in bytes  4/ 3:	149.516	36.6719	145.719
Length  400, alignments in bytes  5/ 7:	151.25	35.7656	145.938
Length  400, alignments in bytes  7/ 5:	149.469	36.25	146.203
Length  404, alignments in bytes  0/ 4:	151.812	34.9688	44.0781
Length  404, alignments in bytes  4/ 0:	150.516	34.8438	43.7031
Length  404, alignments in bytes  4/ 4:	152.547	23.1094	44
Length  404, alignments in bytes  2/ 2:	151.594	23.9688	147.625
Length  404, alignments in bytes  2/ 6:	151.516	35.7969	147.094
Length  404, alignments in bytes  6/ 2:	151.438	35.4375	146.953
Length  404, alignments in bytes  1/ 7:	151.594	35.6562	147.203
Length  404, alignments in bytes  7/ 1:	151.469	36.0156	147.312
Length  404, alignments in bytes  3/ 4:	151.516	35.875	147.094
Length  404, alignments in bytes  4/ 3:	151.031	36.875	147.391
Length  404, alignments in bytes  5/ 7:	152.016	36.2188	147.141
Length  404, alignments in bytes  7/ 5:	151.375	36.2188	147.516
Length  408, alignments in bytes  0/ 4:	153.25	35.25	44.7344
Length  408, alignments in bytes  4/ 0:	152.703	34.9688	44.8906
Length  408, alignments in bytes  4/ 4:	152.578	23.2031	44.75
Length  408, alignments in bytes  2/ 2:	152.984	24.0625	148.531
Length  408, alignments in bytes  2/ 6:	152.703	35.9844	148.5
Length  408, alignments in bytes  6/ 2:	152.438	35.7656	149.062
Length  408, alignments in bytes  1/ 7:	153.266	35.9688	148.453
Length  408, alignments in bytes  7/ 1:	152.25	36.4219	149.031
Length  408, alignments in bytes  3/ 4:	153.438	35.7812	148.75
Length  408, alignments in bytes  4/ 3:	152.453	37.2031	148.266
Length  408, alignments in bytes  5/ 7:	153.5	36.2656	148.797
Length  408, alignments in bytes  7/ 5:	153.078	36.8906	148.969
Length  412, alignments in bytes  0/ 4:	154.172	35.0625	45.0469
Length  412, alignments in bytes  4/ 0:	153.484	35.125	44.6406
Length  412, alignments in bytes  4/ 4:	153.781	23.6719	44.6406
Length  412, alignments in bytes  2/ 2:	153.938	24.2031	150.672
Length  412, alignments in bytes  2/ 6:	154.703	35.8438	149.891
Length  412, alignments in bytes  6/ 2:	153.734	35.7812	150.094
Length  412, alignments in bytes  1/ 7:	154.781	35.8906	150.516
Length  412, alignments in bytes  7/ 1:	155.109	35.9375	149.875
Length  412, alignments in bytes  3/ 4:	154.641	35.625	150.031
Length  412, alignments in bytes  4/ 3:	154.859	37.0312	150.344
Length  412, alignments in bytes  5/ 7:	155.266	36.125	150.203
Length  412, alignments in bytes  7/ 5:	154.922	36.3125	149.938
Length  416, alignments in bytes  0/ 4:	155.797	35.2812	45.75
Length  416, alignments in bytes  4/ 0:	156.25	35.25	45.4375
Length  416, alignments in bytes  4/ 4:	155.266	23.75	45.6875
Length  416, alignments in bytes  2/ 2:	156.109	24.5781	151.719
Length  416, alignments in bytes  2/ 6:	156.188	36.125	151.656
Length  416, alignments in bytes  6/ 2:	156.25	35.7344	151.219
Length  416, alignments in bytes  1/ 7:	156.75	36.0625	151.938
Length  416, alignments in bytes  7/ 1:	155.719	36.4062	151.359
Length  416, alignments in bytes  3/ 4:	156.953	35.875	151.703
Length  416, alignments in bytes  4/ 3:	155.938	37.2812	151.594
Length  416, alignments in bytes  5/ 7:	156.297	36.2812	151.062
Length  416, alignments in bytes  7/ 5:	155.453	37	151.344
Length  420, alignments in bytes  0/ 4:	158	35.375	45.5312
Length  420, alignments in bytes  4/ 0:	157.062	35.6094	45.625
Length  420, alignments in bytes  4/ 4:	157.906	23.75	45.5
Length  420, alignments in bytes  2/ 2:	157.062	24.4844	153.609
Length  420, alignments in bytes  2/ 6:	157.047	36.4375	152.859
Length  420, alignments in bytes  6/ 2:	157.297	35.9688	153.188
Length  420, alignments in bytes  1/ 7:	157.656	36.5156	152.656
Length  420, alignments in bytes  7/ 1:	156.984	36.4688	153.219
Length  420, alignments in bytes  3/ 4:	157.375	36.125	153.422
Length  420, alignments in bytes  4/ 3:	156.828	37.5625	152.516
Length  420, alignments in bytes  5/ 7:	157.844	36.6875	152.781
Length  420, alignments in bytes  7/ 5:	156.547	36.8125	153.203
Length  424, alignments in bytes  0/ 4:	159.094	35.8438	46.1406
Length  424, alignments in bytes  4/ 0:	158.703	35.5938	46.5
Length  424, alignments in bytes  4/ 4:	158.391	24.1875	46.1562
Length  424, alignments in bytes  2/ 2:	158.75	24.7344	154.25
Length  424, alignments in bytes  2/ 6:	158.656	36.6719	153.953
Length  424, alignments in bytes  6/ 2:	158.75	36.2969	154.609
Length  424, alignments in bytes  1/ 7:	159.547	36.7969	153.859
Length  424, alignments in bytes  7/ 1:	158.5	37.1094	154.172
Length  424, alignments in bytes  3/ 4:	158.531	36.2969	154.484
Length  424, alignments in bytes  4/ 3:	158.734	37.8438	154.391
Length  424, alignments in bytes  5/ 7:	159.484	36.7969	154.297
Length  424, alignments in bytes  7/ 5:	157.797	37.4844	154.312
Length  428, alignments in bytes  0/ 4:	160.984	35.9375	46.2031
Length  428, alignments in bytes  4/ 0:	159.953	36.0312	46.2344
Length  428, alignments in bytes  4/ 4:	159.234	24.5312	46.2656
Length  428, alignments in bytes  2/ 2:	160.156	25.0312	155.797
Length  428, alignments in bytes  2/ 6:	159.469	36.9219	155.344
Length  428, alignments in bytes  6/ 2:	160.047	36.5312	156.141
Length  428, alignments in bytes  1/ 7:	160.062	36.9062	156.406
Length  428, alignments in bytes  7/ 1:	160.016	36.9219	155.922
Length  428, alignments in bytes  3/ 4:	160.984	36.7344	155.391
Length  428, alignments in bytes  4/ 3:	159.734	38.0156	156.203
Length  428, alignments in bytes  5/ 7:	160.688	37.125	155.719
Length  428, alignments in bytes  7/ 5:	159.594	37.9531	155.5
Length  432, alignments in bytes  0/ 4:	161.562	36.8281	47.1875
Length  432, alignments in bytes  4/ 0:	160.75	36.6875	47.125
Length  432, alignments in bytes  4/ 4:	161.266	24.2656	47.1719
Length  432, alignments in bytes  2/ 2:	161.781	25.0938	157.984
Length  432, alignments in bytes  2/ 6:	161.734	37.2031	157.75
Length  432, alignments in bytes  6/ 2:	161.438	37.3438	157.172
Length  432, alignments in bytes  1/ 7:	161.562	37.2812	157.094
Length  432, alignments in bytes  7/ 1:	162.375	37.9531	157.875
Length  432, alignments in bytes  3/ 4:	162.094	36.7969	157.141
Length  432, alignments in bytes  4/ 3:	161.578	38.8438	157.109
Length  432, alignments in bytes  5/ 7:	162.781	37.3281	157.297
Length  432, alignments in bytes  7/ 5:	160.844	38.3438	157.25
Length  436, alignments in bytes  0/ 4:	162.172	37.0781	47.0156
Length  436, alignments in bytes  4/ 0:	162.5	36.625	46.7656
Length  436, alignments in bytes  4/ 4:	162.688	24.3438	46.9531
Length  436, alignments in bytes  2/ 2:	161.547	25.4375	158.422
Length  436, alignments in bytes  2/ 6:	163.141	37.7656	158.656
Length  436, alignments in bytes  6/ 2:	162.859	36.9844	158.938
Length  436, alignments in bytes  1/ 7:	163.766	37.8906	158.703
Length  436, alignments in bytes  7/ 1:	162.703	38.1094	158.156
Length  436, alignments in bytes  3/ 4:	163.453	37.3281	158.734
Length  436, alignments in bytes  4/ 3:	162.547	38.9531	159.219
Length  436, alignments in bytes  5/ 7:	164.688	37.5312	158.906
Length  436, alignments in bytes  7/ 5:	162.812	38.3594	158.422
Length  440, alignments in bytes  0/ 4:	164.297	36.8281	48.125
Length  440, alignments in bytes  4/ 0:	164.438	37.1562	47.7969
Length  440, alignments in bytes  4/ 4:	164.344	24.9844	47.6562
Length  440, alignments in bytes  2/ 2:	163.844	25.4375	159.859
Length  440, alignments in bytes  2/ 6:	163.969	37.6094	160.172
Length  440, alignments in bytes  6/ 2:	163.781	38.0312	160.344
Length  440, alignments in bytes  1/ 7:	164.938	37.6719	160.047
Length  440, alignments in bytes  7/ 1:	164.25	38.6562	160.359
Length  440, alignments in bytes  3/ 4:	165.516	37.2812	160.172
Length  440, alignments in bytes  4/ 3:	164.359	39.4062	160.047
Length  440, alignments in bytes  5/ 7:	164.969	37.8281	160.219
Length  440, alignments in bytes  7/ 5:	164.094	38.9531	160.375
Length  444, alignments in bytes  0/ 4:	165.578	37.3594	48
Length  444, alignments in bytes  4/ 0:	165.828	37.5938	47.8906
Length  444, alignments in bytes  4/ 4:	165.062	25.0312	47.8281
Length  444, alignments in bytes  2/ 2:	167.344	25.5938	161.5
Length  444, alignments in bytes  2/ 6:	165.312	38.2969	161.406
Length  444, alignments in bytes  6/ 2:	166.406	38.1875	161.859
Length  444, alignments in bytes  1/ 7:	166.5	38.3281	161.641
Length  444, alignments in bytes  7/ 1:	165.859	38.625	161.828
Length  444, alignments in bytes  3/ 4:	165.906	38.625	161.594
Length  444, alignments in bytes  4/ 3:	166.328	39.5625	161.484
Length  444, alignments in bytes  5/ 7:	168.031	38.7188	160.766
Length  444, alignments in bytes  7/ 5:	165.625	38.7344	162.016
Length  448, alignments in bytes  0/ 4:	166.328	37.8594	48.625
Length  448, alignments in bytes  4/ 0:	168.484	37.6562	48.5938
Length  448, alignments in bytes  4/ 4:	167.422	25.1406	48.4531
Length  448, alignments in bytes  2/ 2:	168.578	25.9531	162.938
Length  448, alignments in bytes  2/ 6:	168.328	38.6875	162.797
Length  448, alignments in bytes  6/ 2:	167.234	38.4531	162.922
Length  448, alignments in bytes  1/ 7:	168.359	38.6562	163.266
Length  448, alignments in bytes  7/ 1:	167.625	39.2656	163.031
Length  448, alignments in bytes  3/ 4:	167.484	38.4531	163.281
Length  448, alignments in bytes  4/ 3:	166.547	39.875	162.688
Length  448, alignments in bytes  5/ 7:	168.797	38.9844	163.781
Length  448, alignments in bytes  7/ 5:	167.672	39.5469	163.281
Length  452, alignments in bytes  0/ 4:	169.016	38.0625	48.3906
Length  452, alignments in bytes  4/ 0:	168.625	38.0156	48.9375
Length  452, alignments in bytes  4/ 4:	168.656	25.2812	48.6719
Length  452, alignments in bytes  2/ 2:	168.625	25.9844	163.844
Length  452, alignments in bytes  2/ 6:	168.094	38.9844	164.469
Length  452, alignments in bytes  6/ 2:	169.312	38.6094	164.484
Length  452, alignments in bytes  1/ 7:	169	38.9531	164.75
Length  452, alignments in bytes  7/ 1:	169.078	39.1406	164.391
Length  452, alignments in bytes  3/ 4:	168.922	39.0781	164.219
Length  452, alignments in bytes  4/ 3:	168.484	39.8281	164.109
Length  452, alignments in bytes  5/ 7:	169.953	39.25	164.766
Length  452, alignments in bytes  7/ 5:	168.094	38.9062	164.422
Length  456, alignments in bytes  0/ 4:	170.828	38.3125	49.1406
Length  456, alignments in bytes  4/ 0:	169.328	37.6875	49.4531
Length  456, alignments in bytes  4/ 4:	170.297	25.3281	49.4844
Length  456, alignments in bytes  2/ 2:	170.672	26.0625	165.812
Length  456, alignments in bytes  2/ 6:	171.125	39.1875	165.938
Length  456, alignments in bytes  6/ 2:	170.984	39.0312	165.766
Length  456, alignments in bytes  1/ 7:	170.016	39.2656	165.734
Length  456, alignments in bytes  7/ 1:	170.688	39.8594	165.781
Length  456, alignments in bytes  3/ 4:	171.141	39.0469	165.922
Length  456, alignments in bytes  4/ 3:	170.875	40.4062	166.25
Length  456, alignments in bytes  5/ 7:	171.297	39.4062	165.656
Length  456, alignments in bytes  7/ 5:	169.344	40.1875	165.844
Length  460, alignments in bytes  0/ 4:	172.406	38.5	49.5
Length  460, alignments in bytes  4/ 0:	171.891	38.6406	49.4219
Length  460, alignments in bytes  4/ 4:	171.781	25.3281	49.25
Length  460, alignments in bytes  2/ 2:	170.812	26.2656	167.109
Length  460, alignments in bytes  2/ 6:	171.594	39.4531	167.594
Length  460, alignments in bytes  6/ 2:	171.5	39.25	167.656
Length  460, alignments in bytes  1/ 7:	171.719	39.3906	167.312
Length  460, alignments in bytes  7/ 1:	171.438	39.7656	166.719
Length  460, alignments in bytes  3/ 4:	172.062	39.6094	167.047
Length  460, alignments in bytes  4/ 3:	170.688	40.7812	167.188
Length  460, alignments in bytes  5/ 7:	172.125	39.7344	167.375
Length  460, alignments in bytes  7/ 5:	171.625	39.9531	167.688
Length  464, alignments in bytes  0/ 4:	173.203	38.9688	49.9219
Length  464, alignments in bytes  4/ 0:	173.016	38.6719	50.3125
Length  464, alignments in bytes  4/ 4:	172.828	25.6719	49.7812
Length  464, alignments in bytes  2/ 2:	173.922	26.2812	168.859
Length  464, alignments in bytes  2/ 6:	173.344	39.9219	168.672
Length  464, alignments in bytes  6/ 2:	172.641	39.75	168.609
Length  464, alignments in bytes  1/ 7:	173.297	39.9062	168.453
Length  464, alignments in bytes  7/ 1:	173.875	40.2812	169.016
Length  464, alignments in bytes  3/ 4:	173.031	39.5625	168.469
Length  464, alignments in bytes  4/ 3:	173.203	41	168.859
Length  464, alignments in bytes  5/ 7:	173.672	40.0312	168.5
Length  464, alignments in bytes  7/ 5:	173.109	40.7344	168.375
Length  468, alignments in bytes  0/ 4:	174.688	39.2656	50.5312
Length  468, alignments in bytes  4/ 0:	174.312	39.2812	50.1719
Length  468, alignments in bytes  4/ 4:	175.5	25.7969	50.1719
Length  468, alignments in bytes  2/ 2:	174.797	26.7812	170.125
Length  468, alignments in bytes  2/ 6:	174.984	40.0469	169.719
Length  468, alignments in bytes  6/ 2:	175.5	39.7812	170.531
Length  468, alignments in bytes  1/ 7:	175.234	40.0469	170.047
Length  468, alignments in bytes  7/ 1:	175.125	40.3594	170.094
Length  468, alignments in bytes  3/ 4:	174.453	40.2031	170.156
Length  468, alignments in bytes  4/ 3:	174.266	41.2969	170.109
Length  468, alignments in bytes  5/ 7:	175.141	40.3906	169.672
Length  468, alignments in bytes  7/ 5:	174.031	40.5625	169.797
Length  472, alignments in bytes  0/ 4:	176.203	39.2969	50.9688
Length  472, alignments in bytes  4/ 0:	176.094	39.375	50.8438
Length  472, alignments in bytes  4/ 4:	176.578	26.0781	50.5156
Length  472, alignments in bytes  2/ 2:	176.906	26.7188	171.219
Length  472, alignments in bytes  2/ 6:	175.938	40.2031	172.031
Length  472, alignments in bytes  6/ 2:	175.688	40	171.469
Length  472, alignments in bytes  1/ 7:	175.797	40.4375	171.609
Length  472, alignments in bytes  7/ 1:	175.984	40.9062	171.75
Length  472, alignments in bytes  3/ 4:	176.047	40.125	171.203
Length  472, alignments in bytes  4/ 3:	175.656	41.5469	171.812
Length  472, alignments in bytes  5/ 7:	176.75	40.5469	172.328
Length  472, alignments in bytes  7/ 5:	175.125	41.1406	172.078
Length  476, alignments in bytes  0/ 4:	178.188	39.5781	50.7812
Length  476, alignments in bytes  4/ 0:	176.547	39.6875	50.9062
Length  476, alignments in bytes  4/ 4:	177.312	26.5	50.75
Length  476, alignments in bytes  2/ 2:	177.438	26.8594	173.156
Length  476, alignments in bytes  2/ 6:	178.188	40.625	173.797
Length  476, alignments in bytes  6/ 2:	178.219	39.9688	173.078
Length  476, alignments in bytes  1/ 7:	178.219	40.6562	172.438
Length  476, alignments in bytes  7/ 1:	177.188	40.4062	173.141
Length  476, alignments in bytes  3/ 4:	177.516	40.6406	172.922
Length  476, alignments in bytes  4/ 3:	178.922	41.9219	173.047
Length  476, alignments in bytes  5/ 7:	179.312	40.875	173.297
Length  476, alignments in bytes  7/ 5:	178.391	41.0312	172.922
Length  480, alignments in bytes  0/ 4:	180.75	39.8594	51.4531
Length  480, alignments in bytes  4/ 0:	179.453	39.9844	51.5469
Length  480, alignments in bytes  4/ 4:	179.25	26.5312	51.4062
Length  480, alignments in bytes  2/ 2:	179.312	27	174.438
Length  480, alignments in bytes  2/ 6:	179.141	40.875	174.484
Length  480, alignments in bytes  6/ 2:	180.141	40.5781	174.172
Length  480, alignments in bytes  1/ 7:	179.656	41.2188	174.562
Length  480, alignments in bytes  7/ 1:	178.594	41.3906	174.234
Length  480, alignments in bytes  3/ 4:	178.688	40.6719	173.703
Length  480, alignments in bytes  4/ 3:	178.234	42	174.344
Length  480, alignments in bytes  5/ 7:	178.891	41.1875	174.328
Length  480, alignments in bytes  7/ 5:	179.219	41.75	174.5
Length  484, alignments in bytes  0/ 4:	182.344	40	51.5
Length  484, alignments in bytes  4/ 0:	180.469	40.5	51.3906
Length  484, alignments in bytes  4/ 4:	180.781	26.5625	51.4531
Length  484, alignments in bytes  2/ 2:	180.062	27.125	176.047
Length  484, alignments in bytes  2/ 6:	180.547	41.0781	175.891
Length  484, alignments in bytes  6/ 2:	179.797	40.9375	176.141
Length  484, alignments in bytes  1/ 7:	181.594	41.2656	175.844
Length  484, alignments in bytes  7/ 1:	179.547	41.5469	175.219
Length  484, alignments in bytes  3/ 4:	180.234	41.25	175.75
Length  484, alignments in bytes  4/ 3:	179.688	42.5156	175.922
Length  484, alignments in bytes  5/ 7:	179.672	41.6406	175.625
Length  484, alignments in bytes  7/ 5:	179.922	41.7188	175.656
Length  488, alignments in bytes  0/ 4:	182.719	40.5938	52.1094
Length  488, alignments in bytes  4/ 0:	182.266	40.4531	52.375
Length  488, alignments in bytes  4/ 4:	180.875	26.5156	52
Length  488, alignments in bytes  2/ 2:	181.5	27.375	176.875
Length  488, alignments in bytes  2/ 6:	182.234	41.4844	177.266
Length  488, alignments in bytes  6/ 2:	180.578	41.125	177.578
Length  488, alignments in bytes  1/ 7:	182.922	41.3438	177.625
Length  488, alignments in bytes  7/ 1:	181.766	41.9531	177.547
Length  488, alignments in bytes  3/ 4:	183.078	41.1094	177.484
Length  488, alignments in bytes  4/ 3:	182.641	42.5938	177.469
Length  488, alignments in bytes  5/ 7:	183.797	41.9062	177.969
Length  488, alignments in bytes  7/ 5:	182.453	42.4531	177.734
Length  492, alignments in bytes  0/ 4:	183.641	40.875	52.2812
Length  492, alignments in bytes  4/ 0:	184.359	40.7812	52.5312
Length  492, alignments in bytes  4/ 4:	183.922	26.9844	52.5
Length  492, alignments in bytes  2/ 2:	183.219	27.6875	179.688
Length  492, alignments in bytes  2/ 6:	182.281	143.016	178.516
Length  492, alignments in bytes  6/ 2:	183.812	41.25	178.734
Length  492, alignments in bytes  1/ 7:	183.953	41.7188	179.234
Length  492, alignments in bytes  7/ 1:	184	41.7812	178.797
Length  492, alignments in bytes  3/ 4:	183.141	41.6094	178.906
Length  492, alignments in bytes  4/ 3:	183.031	43.0469	178.531
Length  492, alignments in bytes  5/ 7:	185.125	42.2188	178.922
Length  492, alignments in bytes  7/ 5:	184.125	42.2656	178.797
Length  496, alignments in bytes  0/ 4:	184.828	41.0625	52.875
Length  496, alignments in bytes  4/ 0:	184.031	41.0938	52.8438
Length  496, alignments in bytes  4/ 4:	183.609	27.5	53.0781
Length  496, alignments in bytes  2/ 2:	185.25	27.6562	180.469
Length  496, alignments in bytes  2/ 6:	186.109	42.0781	179.938
Length  496, alignments in bytes  6/ 2:	184.781	41.8281	180.047
Length  496, alignments in bytes  1/ 7:	185.891	41.5625	180
Length  496, alignments in bytes  7/ 1:	184.922	42.0625	179.828
Length  496, alignments in bytes  3/ 4:	185	41.9531	179.859
Length  496, alignments in bytes  4/ 3:	185.703	42.8438	180.438
Length  496, alignments in bytes  5/ 7:	186.797	42.4688	179.672
Length  496, alignments in bytes  7/ 5:	184.5	42.5156	179.922
Length  500, alignments in bytes  0/ 4:	185.391	41.5	53.4531
Length  500, alignments in bytes  4/ 0:	186.109	41.0156	53
Length  500, alignments in bytes  4/ 4:	184.422	27.2812	52.8594
Length  500, alignments in bytes  2/ 2:	186.312	28.2031	181.438
Length  500, alignments in bytes  2/ 6:	187.094	42.3594	181.656
Length  500, alignments in bytes  6/ 2:	186.094	42.2812	180.719
Length  500, alignments in bytes  1/ 7:	186.281	42.3594	181.562
Length  500, alignments in bytes  7/ 1:	186.016	42.5312	181.703
Length  500, alignments in bytes  3/ 4:	187.125	42.375	181.531
Length  500, alignments in bytes  4/ 3:	185.703	43.4688	181.406
Length  500, alignments in bytes  5/ 7:	188.312	42.7188	181.562
Length  500, alignments in bytes  7/ 5:	186.047	42.7969	181.625
Length  504, alignments in bytes  0/ 4:	188.016	41.7656	54.0781
Length  504, alignments in bytes  4/ 0:	187.641	41.7188	53.8906
Length  504, alignments in bytes  4/ 4:	187.953	27.3438	53.7188
Length  504, alignments in bytes  2/ 2:	187.047	28.3125	182.594
Length  504, alignments in bytes  2/ 6:	188.453	42.6719	182.734
Length  504, alignments in bytes  6/ 2:	185.859	42.3438	182.859
Length  504, alignments in bytes  1/ 7:	187.906	42.5469	182.938
Length  504, alignments in bytes  7/ 1:	188.688	43.0156	183.125
Length  504, alignments in bytes  3/ 4:	189.328	42.3594	182.891
Length  504, alignments in bytes  4/ 3:	188.312	43.75	182.703
Length  504, alignments in bytes  5/ 7:	188.188	42.9375	183.125
Length  504, alignments in bytes  7/ 5:	187.109	43.5	182.875
Length  508, alignments in bytes  0/ 4:	189.406	41.9062	54.0312
Length  508, alignments in bytes  4/ 0:	189.109	42.0469	54.0312
Length  508, alignments in bytes  4/ 4:	188.297	27.5625	53.8438
Length  508, alignments in bytes  2/ 2:	189.656	28.6094	184.219
Length  508, alignments in bytes  2/ 6:	188.406	42.875	184.516
Length  508, alignments in bytes  6/ 2:	188.406	42.4844	184.219
Length  508, alignments in bytes  1/ 7:	189.75	42.9531	184.156
Length  508, alignments in bytes  7/ 1:	189.062	43.125	184.734
Length  508, alignments in bytes  3/ 4:	189.344	42.8906	184.141
Length  508, alignments in bytes  4/ 3:	189.734	44.2656	184.234
Length  508, alignments in bytes  5/ 7:	190.969	43.8594	184.594
Length  508, alignments in bytes  7/ 5:	189.531	43.3125	184.953
Length  512, alignments in bytes  0/ 4:	191.031	42.2031	54.7656
Length  512, alignments in bytes  4/ 0:	190.219	42.1406	54.2344
Length  512, alignments in bytes  4/ 4:	191	27.8125	54.5938
Length  512, alignments in bytes  2/ 2:	190.219	28.5469	185.922
Length  512, alignments in bytes  2/ 6:	190.719	43.3906	185.828
Length  512, alignments in bytes  6/ 2:	190.734	42.9531	185.469
Length  512, alignments in bytes  1/ 7:	190.984	43.7656	186.438
Length  512, alignments in bytes  7/ 1:	190.609	43.625	185.781
Length  512, alignments in bytes  3/ 4:	190.219	42.9062	185.609
Length  512, alignments in bytes  4/ 3:	191.219	44.3594	185.859
Length  512, alignments in bytes  5/ 7:	192.734	43.6094	185.781
Length  512, alignments in bytes  7/ 5:	272.172	43.875	186.391


More information about the Libc-alpha mailing list