Index: /branches/rel1/psLib/src/Makefile.Globals
===================================================================
--- /branches/rel1/psLib/src/Makefile.Globals	(revision 1042)
+++ /branches/rel1/psLib/src/Makefile.Globals	(revision 1043)
@@ -5,6 +5,6 @@
 ##  Assumptions:    Variable "prefix" already defined
 ##
-##  $Revision: 1.10 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-06-12 01:33:16 $
+##  $Revision: 1.10.2.1 $  $Name: not supported by cvs2svn $
+##  $Date: 2004-06-15 03:09:15 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -46,5 +46,6 @@
 # Set initial value for LDFLAGS which will include all OS common flags for GCC and required libraries.
 
-LDFLAGS := -g2 -pipe -lcfitsio -lgsl -lgslcblas -lfftw3f
+EXTLIBS := -lcfitsio -lgsl -lgslcblas -lfftw3f
+LDFLAGS := -g2 -pipe $(EXTLIBS) 
 
 # Define or refine variables for the Linux OS
@@ -64,4 +65,5 @@
     CFLAGS += -Wno-long-double -DDARWIN
     CFLAGS_RELOC := $(CFLAGS)
+    LDFLAGS := $(LDFLAGS) -lmx
     LDFLAGS_SO := $(LDFLAGS) -bundle -flat_namespace -undefined suppress
     LDFLAGS_DLL := $(LDFLAGS) -dynamiclib
@@ -70,5 +72,5 @@
     DOCS =
     BUILD_DYNAMIC1 = libtool -dynamic
-    BUILD_DYNAMIC2 = -lm -lgcc -o
+    BUILD_DYNAMIC2 = -lm -lmx -lgcc $(EXTLIBS) -o
 endif
 
Index: /branches/rel1/psLib/src/collections/psBitSet.c
===================================================================
--- /branches/rel1/psLib/src/collections/psBitSet.c	(revision 1042)
+++ /branches/rel1/psLib/src/collections/psBitSet.c	(revision 1043)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-10 00:29:09 $
+ *  @version $Revision: 1.6.2.1 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-15 03:09:18 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -222,9 +222,11 @@
     int i = 0;
     int numBits = inBitSet->n*8;
-    char* outString = psAlloc((size_t)numBits);
+    char* outString = psAlloc((size_t)numBits+1);
     for(i=0; i<numBits; i++) {
         outString[numBits-i-1] = (psBitSetTest(inBitSet, i) == 1)?'1':'0';
     }
 
+    outString[numBits] = 0;
+
     return outString;
 }
Index: /branches/rel1/psLib/src/sysUtils/psHash.d
===================================================================
--- /branches/rel1/psLib/src/sysUtils/psHash.d	(revision 1042)
+++ /branches/rel1/psLib/src/sysUtils/psHash.d	(revision 1043)
@@ -1,3 +1,3 @@
 psHash.o psHash.d : psHash.c psHash.h ../collections/psList.h \
   ../collections/psVector.h ../collections/psType.h \
-  ../sysUtils/psMemory.h psMemory.h psString.h psTrace.h psAbort.h
+  ../sysUtils/psMemory.h psString.h psTrace.h psAbort.h
Index: /branches/rel1/psLib/src/types/psBitSet.c
===================================================================
--- /branches/rel1/psLib/src/types/psBitSet.c	(revision 1042)
+++ /branches/rel1/psLib/src/types/psBitSet.c	(revision 1043)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-10 00:29:09 $
+ *  @version $Revision: 1.6.2.1 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-15 03:09:18 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -222,9 +222,11 @@
     int i = 0;
     int numBits = inBitSet->n*8;
-    char* outString = psAlloc((size_t)numBits);
+    char* outString = psAlloc((size_t)numBits+1);
     for(i=0; i<numBits; i++) {
         outString[numBits-i-1] = (psBitSetTest(inBitSet, i) == 1)?'1':'0';
     }
 
+    outString[numBits] = 0;
+
     return outString;
 }
Index: /branches/rel1/psLib/test/Makefile
===================================================================
--- /branches/rel1/psLib/test/Makefile	(revision 1042)
+++ /branches/rel1/psLib/test/Makefile	(revision 1043)
@@ -3,6 +3,6 @@
 ##  Makefile:   test
 ##
-##  $Revision: 1.5 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-06-14 19:38:06 $
+##  $Revision: 1.5.2.1 $  $Name: not supported by cvs2svn $
+##  $Date: 2004-06-15 03:09:20 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -47,5 +47,5 @@
 
 libpstest.$(DLL): $(SRC_OBJS)
-	$(CC) $(LDFLAGS_DLL) $(SRC_OBJS) -o $@  
+	$(CC) $(LDFLAGS_DLL) -L../lib -lpslib $(SRC_OBJS) -o $@  
 
 # Define PHONY target "install" which will install necessary files
Index: /branches/rel1/psLib/test/collections/verified/tst_psBitSet_01.stdout
===================================================================
--- /branches/rel1/psLib/test/collections/verified/tst_psBitSet_01.stdout	(revision 1042)
+++ /branches/rel1/psLib/test/collections/verified/tst_psBitSet_01.stdout	(revision 1043)
@@ -6,5 +6,5 @@
 
 Creating psBitSet with 24 bits...
-000000000000000000000000ïŸ­Þ
+000000000000000000000000
 
 
@@ -20,5 +20,5 @@
 Setting third bit...
 Setting last bit...
-100000000000000000000101ïŸ­Þ
+100000000000000000000101
 
 
Index: /branches/rel1/psLib/test/collections/verified/tst_psBitSet_02.stdout
===================================================================
--- /branches/rel1/psLib/test/collections/verified/tst_psBitSet_02.stdout	(revision 1042)
+++ /branches/rel1/psLib/test/collections/verified/tst_psBitSet_02.stdout	(revision 1043)
@@ -5,10 +5,10 @@
 \**********************************************************************************/
 
-000000000000000000000000ïŸ­Þ
-000000000000000000000000ïŸ­Þ
+000000000000000000000000
+000000000000000000000000
 
 Setting all bits true...
-111111111111111111111111ïŸ­Þ
-111111111111111111111111ïŸ­Þ
+111111111111111111111111
+111111111111111111111111
 
 
@@ -22,5 +22,5 @@
 
 Result:
-111111111111111111111111ïŸ­Þ
+111111111111111111111111
 
 ---> TESTPOINT PASSED (psBitSet{Perform binary AND with psBitSets} | tst_psBitSet_02.c)
Index: /branches/rel1/psLib/test/collections/verified/tst_psBitSet_03.stdout
===================================================================
--- /branches/rel1/psLib/test/collections/verified/tst_psBitSet_03.stdout	(revision 1042)
+++ /branches/rel1/psLib/test/collections/verified/tst_psBitSet_03.stdout	(revision 1043)
@@ -5,10 +5,10 @@
 \**********************************************************************************/
 
-000000000000000000000000ïŸ­Þ
-000000000000000000000000ïŸ­Þ
+000000000000000000000000
+000000000000000000000000
 
 Setting all bits true...
-111111111111111111111111ïŸ­Þ
-111111111111111111111111ïŸ­Þ
+111111111111111111111111
+111111111111111111111111
 
 
@@ -22,5 +22,5 @@
 
 Result:
-111111111111111111111111ïŸ­Þ
+111111111111111111111111
 
 ---> TESTPOINT PASSED (psBitSet{Perform binary OR with psBitSets} | tst_psBitSet_03.c)
Index: /branches/rel1/psLib/test/collections/verified/tst_psBitSet_04.stdout
===================================================================
--- /branches/rel1/psLib/test/collections/verified/tst_psBitSet_04.stdout	(revision 1042)
+++ /branches/rel1/psLib/test/collections/verified/tst_psBitSet_04.stdout	(revision 1043)
@@ -5,10 +5,10 @@
 \**********************************************************************************/
 
-000000000000000000000000ïŸ­Þ
-000000000000000000000000ïŸ­Þ
+000000000000000000000000
+000000000000000000000000
 
 Setting all bits true...
-111111111111111111111111ïŸ­Þ
-111111111111111111111111ïŸ­Þ
+111111111111111111111111
+111111111111111111111111
 
 
@@ -22,5 +22,5 @@
 
 Result:
-000000000000000000000000ïŸ­Þ
+000000000000000000000000
 
 ---> TESTPOINT PASSED (psBitSet{Perform binary XOR with psBitSets} | tst_psBitSet_04.c)
Index: /branches/rel1/psLib/test/collections/verified/tst_psBitSet_05.stdout
===================================================================
--- /branches/rel1/psLib/test/collections/verified/tst_psBitSet_05.stdout	(revision 1042)
+++ /branches/rel1/psLib/test/collections/verified/tst_psBitSet_05.stdout	(revision 1043)
@@ -5,6 +5,6 @@
 \**********************************************************************************/
 
-000000000000000000000000ïŸ­Þ
-0000000000000000000000000000000000000000ïŸ­Þ
+000000000000000000000000
+0000000000000000000000000000000000000000
 
 
Index: /branches/rel1/psLib/test/collections/verified/tst_psBitSet_06.stdout
===================================================================
--- /branches/rel1/psLib/test/collections/verified/tst_psBitSet_06.stdout	(revision 1042)
+++ /branches/rel1/psLib/test/collections/verified/tst_psBitSet_06.stdout	(revision 1043)
@@ -5,6 +5,6 @@
 \**********************************************************************************/
 
-000000000000000000000000ïŸ­Þ
-000000000000000000000000ïŸ­Þ
+000000000000000000000000
+000000000000000000000000
 
 
Index: /branches/rel1/psLib/test/dataManip/Makefile
===================================================================
--- /branches/rel1/psLib/test/dataManip/Makefile	(revision 1042)
+++ /branches/rel1/psLib/test/dataManip/Makefile	(revision 1043)
@@ -3,6 +3,6 @@
 ##  Makefile:   test/sysUtils
 ##
-##  $Revision: 1.14 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-06-12 02:17:42 $
+##  $Revision: 1.14.2.1 $  $Name: not supported by cvs2svn $
+##  $Date: 2004-06-15 03:09:23 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -66,5 +66,5 @@
 
 %   : builddir/%.o
-	$(CC) -o $@ $< -L$(PSLIB_LIB_DIR) -lpslib -lpstest -lgsl -lgslcblas $(LDFLAGS)
+	$(CC) -o $@ $< -L$(PSLIB_LIB_DIR) -lpslib -lpstest $(LDFLAGS)
 
 distclean: clean
Index: /branches/rel1/psLib/test/image/tst_psImageStats00.c
===================================================================
--- /branches/rel1/psLib/test/image/tst_psImageStats00.c	(revision 1042)
+++ /branches/rel1/psLib/test/image/tst_psImageStats00.c	(revision 1043)
@@ -65,5 +65,5 @@
         for (i=0;i<tmpImage->numRows;i++) {
             for (j=0;j<tmpImage->numCols;j++) {
-                tmpImage->data.F32[i][j] = (float) (i + j);
+                tmpImage->data.F32[i][j] = (float) (i + j + 0.1);
             }
         }
Index: /branches/rel1/psLib/test/image/verified/tst_psImageStats00.stdout
===================================================================
--- /branches/rel1/psLib/test/image/verified/tst_psImageStats00.stdout	(revision 1042)
+++ /branches/rel1/psLib/test/image/verified/tst_psImageStats00.stdout	(revision 1043)
@@ -8,6 +8,6 @@
 \**********************************************************************************/
 
-Bin number 0 bounds: (0.000000 - 0.100000) data (1)
-Bin number 1 bounds: (0.100000 - 0.200000) data (0)
+Bin number 0 bounds: (0.000000 - 0.100000) data (0)
+Bin number 1 bounds: (0.100000 - 0.200000) data (1)
 Bin number 2 bounds: (0.200000 - 0.300000) data (0)
 Bin number 3 bounds: (0.300000 - 0.400000) data (0)
@@ -37,6 +37,6 @@
 \**********************************************************************************/
 
-Bin number 0 bounds: (0.000000 - 0.100000) data (1)
-Bin number 1 bounds: (0.100000 - 0.200000) data (0)
+Bin number 0 bounds: (0.000000 - 0.100000) data (0)
+Bin number 1 bounds: (0.100000 - 0.200000) data (1)
 Bin number 2 bounds: (0.200000 - 0.300000) data (0)
 Bin number 3 bounds: (0.300000 - 0.400000) data (0)
@@ -91,9 +91,9 @@
 Bin number 11 bounds: (18.150000 - 19.799999) data (1)
 Bin number 12 bounds: (19.799999 - 21.449999) data (2)
-Bin number 13 bounds: (21.449999 - 23.100000) data (2)
-Bin number 14 bounds: (23.100000 - 24.750000) data (1)
+Bin number 13 bounds: (21.449999 - 23.100000) data (1)
+Bin number 14 bounds: (23.100000 - 24.750000) data (2)
 Bin number 15 bounds: (24.750000 - 26.400000) data (2)
-Bin number 16 bounds: (26.400000 - 28.049999) data (2)
-Bin number 17 bounds: (28.049999 - 29.699999) data (1)
+Bin number 16 bounds: (26.400000 - 28.049999) data (1)
+Bin number 17 bounds: (28.049999 - 29.699999) data (2)
 Bin number 18 bounds: (29.699999 - 31.350000) data (2)
 Bin number 19 bounds: (31.350000 - 33.000000) data (0)
@@ -120,9 +120,9 @@
 Bin number 11 bounds: (18.150000 - 19.799999) data (1)
 Bin number 12 bounds: (19.799999 - 21.449999) data (2)
-Bin number 13 bounds: (21.449999 - 23.100000) data (2)
-Bin number 14 bounds: (23.100000 - 24.750000) data (1)
+Bin number 13 bounds: (21.449999 - 23.100000) data (1)
+Bin number 14 bounds: (23.100000 - 24.750000) data (2)
 Bin number 15 bounds: (24.750000 - 26.400000) data (2)
-Bin number 16 bounds: (26.400000 - 28.049999) data (2)
-Bin number 17 bounds: (28.049999 - 29.699999) data (1)
+Bin number 16 bounds: (26.400000 - 28.049999) data (1)
+Bin number 17 bounds: (28.049999 - 29.699999) data (2)
 Bin number 18 bounds: (29.699999 - 31.350000) data (2)
 Bin number 19 bounds: (31.350000 - 33.000000) data (0)
@@ -161,9 +161,9 @@
 Bin number 11 bounds: (18.150000 - 19.799999) data (1)
 Bin number 12 bounds: (19.799999 - 21.449999) data (2)
-Bin number 13 bounds: (21.449999 - 23.100000) data (2)
-Bin number 14 bounds: (23.100000 - 24.750000) data (1)
+Bin number 13 bounds: (21.449999 - 23.100000) data (1)
+Bin number 14 bounds: (23.100000 - 24.750000) data (2)
 Bin number 15 bounds: (24.750000 - 26.400000) data (2)
-Bin number 16 bounds: (26.400000 - 28.049999) data (2)
-Bin number 17 bounds: (28.049999 - 29.699999) data (1)
+Bin number 16 bounds: (26.400000 - 28.049999) data (1)
+Bin number 17 bounds: (28.049999 - 29.699999) data (2)
 Bin number 18 bounds: (29.699999 - 31.350000) data (2)
 Bin number 19 bounds: (31.350000 - 33.000000) data (0)
@@ -190,9 +190,9 @@
 Bin number 11 bounds: (18.150000 - 19.799999) data (1)
 Bin number 12 bounds: (19.799999 - 21.449999) data (2)
-Bin number 13 bounds: (21.449999 - 23.100000) data (2)
-Bin number 14 bounds: (23.100000 - 24.750000) data (1)
+Bin number 13 bounds: (21.449999 - 23.100000) data (1)
+Bin number 14 bounds: (23.100000 - 24.750000) data (2)
 Bin number 15 bounds: (24.750000 - 26.400000) data (2)
-Bin number 16 bounds: (26.400000 - 28.049999) data (2)
-Bin number 17 bounds: (28.049999 - 29.699999) data (1)
+Bin number 16 bounds: (26.400000 - 28.049999) data (1)
+Bin number 17 bounds: (28.049999 - 29.699999) data (2)
 Bin number 18 bounds: (29.699999 - 31.350000) data (2)
 Bin number 19 bounds: (31.350000 - 33.000000) data (0)
@@ -222,16 +222,16 @@
 Bin number 2 bounds: (6.400000 - 9.600000) data (27)
 Bin number 3 bounds: (9.600000 - 12.800000) data (36)
-Bin number 4 bounds: (12.800000 - 16.000000) data (62)
-Bin number 5 bounds: (16.000000 - 19.200001) data (57)
+Bin number 4 bounds: (12.800000 - 16.000000) data (45)
+Bin number 5 bounds: (16.000000 - 19.200001) data (74)
 Bin number 6 bounds: (19.200001 - 22.400000) data (66)
 Bin number 7 bounds: (22.400000 - 25.600000) data (75)
 Bin number 8 bounds: (25.600000 - 28.800001) data (84)
-Bin number 9 bounds: (28.800001 - 32.000000) data (124)
-Bin number 10 bounds: (32.000000 - 35.200001) data (87)
+Bin number 9 bounds: (28.800001 - 32.000000) data (93)
+Bin number 10 bounds: (32.000000 - 35.200001) data (118)
 Bin number 11 bounds: (35.200001 - 38.400002) data (78)
 Bin number 12 bounds: (38.400002 - 41.600002) data (69)
 Bin number 13 bounds: (41.600002 - 44.799999) data (60)
-Bin number 14 bounds: (44.799999 - 48.000000) data (66)
-Bin number 15 bounds: (48.000000 - 51.200001) data (39)
+Bin number 14 bounds: (44.799999 - 48.000000) data (51)
+Bin number 15 bounds: (48.000000 - 51.200001) data (54)
 Bin number 16 bounds: (51.200001 - 54.400002) data (30)
 Bin number 17 bounds: (54.400002 - 57.600002) data (21)
@@ -251,11 +251,11 @@
 Bin number 2 bounds: (6.400000 - 9.600000) data (27)
 Bin number 3 bounds: (9.600000 - 12.800000) data (36)
-Bin number 4 bounds: (12.800000 - 16.000000) data (62)
-Bin number 5 bounds: (16.000000 - 19.200001) data (57)
+Bin number 4 bounds: (12.800000 - 16.000000) data (45)
+Bin number 5 bounds: (16.000000 - 19.200001) data (74)
 Bin number 6 bounds: (19.200001 - 22.400000) data (66)
 Bin number 7 bounds: (22.400000 - 25.600000) data (75)
 Bin number 8 bounds: (25.600000 - 28.800001) data (84)
-Bin number 9 bounds: (28.800001 - 32.000000) data (124)
-Bin number 10 bounds: (32.000000 - 35.200001) data (84)
+Bin number 9 bounds: (28.800001 - 32.000000) data (93)
+Bin number 10 bounds: (32.000000 - 35.200001) data (115)
 Bin number 11 bounds: (35.200001 - 38.400002) data (66)
 Bin number 12 bounds: (38.400002 - 41.600002) data (48)
@@ -292,16 +292,16 @@
 Bin number 2 bounds: (9.600000 - 14.400001) data (65)
 Bin number 3 bounds: (14.400001 - 19.200001) data (90)
-Bin number 4 bounds: (19.200001 - 24.000000) data (115)
-Bin number 5 bounds: (24.000000 - 28.800001) data (110)
+Bin number 4 bounds: (19.200001 - 24.000000) data (90)
+Bin number 5 bounds: (24.000000 - 28.800001) data (135)
 Bin number 6 bounds: (28.800001 - 33.600002) data (157)
 Bin number 7 bounds: (33.600002 - 38.400002) data (160)
 Bin number 8 bounds: (38.400002 - 43.200001) data (160)
-Bin number 9 bounds: (43.200001 - 48.000000) data (160)
-Bin number 10 bounds: (48.000000 - 52.800003) data (128)
+Bin number 9 bounds: (43.200001 - 48.000000) data (128)
+Bin number 10 bounds: (48.000000 - 52.800003) data (160)
 Bin number 11 bounds: (52.800003 - 57.600002) data (160)
 Bin number 12 bounds: (57.600002 - 62.400002) data (160)
 Bin number 13 bounds: (62.400002 - 67.200005) data (150)
-Bin number 14 bounds: (67.200005 - 72.000000) data (125)
-Bin number 15 bounds: (72.000000 - 76.800003) data (82)
+Bin number 14 bounds: (67.200005 - 72.000000) data (102)
+Bin number 15 bounds: (72.000000 - 76.800003) data (105)
 Bin number 16 bounds: (76.800003 - 81.600006) data (80)
 Bin number 17 bounds: (81.600006 - 86.400002) data (55)
@@ -321,16 +321,16 @@
 Bin number 2 bounds: (9.600000 - 14.400001) data (65)
 Bin number 3 bounds: (14.400001 - 19.200001) data (90)
-Bin number 4 bounds: (19.200001 - 24.000000) data (115)
-Bin number 5 bounds: (24.000000 - 28.800001) data (110)
+Bin number 4 bounds: (19.200001 - 24.000000) data (90)
+Bin number 5 bounds: (24.000000 - 28.800001) data (135)
 Bin number 6 bounds: (28.800001 - 33.600002) data (157)
 Bin number 7 bounds: (33.600002 - 38.400002) data (160)
 Bin number 8 bounds: (38.400002 - 43.200001) data (160)
-Bin number 9 bounds: (43.200001 - 48.000000) data (160)
-Bin number 10 bounds: (48.000000 - 52.800003) data (122)
+Bin number 9 bounds: (43.200001 - 48.000000) data (128)
+Bin number 10 bounds: (48.000000 - 52.800003) data (154)
 Bin number 11 bounds: (52.800003 - 57.600002) data (130)
 Bin number 12 bounds: (57.600002 - 62.400002) data (105)
 Bin number 13 bounds: (62.400002 - 67.200005) data (76)
-Bin number 14 bounds: (67.200005 - 72.000000) data (50)
-Bin number 15 bounds: (72.000000 - 76.800003) data (22)
+Bin number 14 bounds: (67.200005 - 72.000000) data (42)
+Bin number 15 bounds: (72.000000 - 76.800003) data (30)
 Bin number 16 bounds: (76.800003 - 81.600006) data (6)
 Bin number 17 bounds: (81.600006 - 86.400002) data (0)
@@ -362,16 +362,16 @@
 Bin number 2 bounds: (9.600000 - 14.400001) data (65)
 Bin number 3 bounds: (14.400001 - 19.200001) data (90)
-Bin number 4 bounds: (19.200001 - 24.000000) data (115)
-Bin number 5 bounds: (24.000000 - 28.800001) data (110)
+Bin number 4 bounds: (19.200001 - 24.000000) data (90)
+Bin number 5 bounds: (24.000000 - 28.800001) data (135)
 Bin number 6 bounds: (28.800001 - 33.600002) data (157)
 Bin number 7 bounds: (33.600002 - 38.400002) data (160)
 Bin number 8 bounds: (38.400002 - 43.200001) data (160)
-Bin number 9 bounds: (43.200001 - 48.000000) data (160)
-Bin number 10 bounds: (48.000000 - 52.800003) data (128)
+Bin number 9 bounds: (43.200001 - 48.000000) data (128)
+Bin number 10 bounds: (48.000000 - 52.800003) data (160)
 Bin number 11 bounds: (52.800003 - 57.600002) data (160)
 Bin number 12 bounds: (57.600002 - 62.400002) data (160)
 Bin number 13 bounds: (62.400002 - 67.200005) data (150)
-Bin number 14 bounds: (67.200005 - 72.000000) data (125)
-Bin number 15 bounds: (72.000000 - 76.800003) data (82)
+Bin number 14 bounds: (67.200005 - 72.000000) data (102)
+Bin number 15 bounds: (72.000000 - 76.800003) data (105)
 Bin number 16 bounds: (76.800003 - 81.600006) data (80)
 Bin number 17 bounds: (81.600006 - 86.400002) data (55)
@@ -391,16 +391,16 @@
 Bin number 2 bounds: (9.600000 - 14.400001) data (65)
 Bin number 3 bounds: (14.400001 - 19.200001) data (90)
-Bin number 4 bounds: (19.200001 - 24.000000) data (115)
-Bin number 5 bounds: (24.000000 - 28.800001) data (110)
+Bin number 4 bounds: (19.200001 - 24.000000) data (90)
+Bin number 5 bounds: (24.000000 - 28.800001) data (135)
 Bin number 6 bounds: (28.800001 - 33.600002) data (157)
 Bin number 7 bounds: (33.600002 - 38.400002) data (160)
 Bin number 8 bounds: (38.400002 - 43.200001) data (160)
-Bin number 9 bounds: (43.200001 - 48.000000) data (160)
-Bin number 10 bounds: (48.000000 - 52.800003) data (122)
+Bin number 9 bounds: (43.200001 - 48.000000) data (128)
+Bin number 10 bounds: (48.000000 - 52.800003) data (154)
 Bin number 11 bounds: (52.800003 - 57.600002) data (130)
 Bin number 12 bounds: (57.600002 - 62.400002) data (105)
 Bin number 13 bounds: (62.400002 - 67.200005) data (76)
-Bin number 14 bounds: (67.200005 - 72.000000) data (50)
-Bin number 15 bounds: (72.000000 - 76.800003) data (22)
+Bin number 14 bounds: (67.200005 - 72.000000) data (42)
+Bin number 15 bounds: (72.000000 - 76.800003) data (30)
 Bin number 16 bounds: (76.800003 - 81.600006) data (6)
 Bin number 17 bounds: (81.600006 - 86.400002) data (0)
