From 68df74a769df6e1e363175684739b0af9fe9f969 Mon Sep 17 00:00:00 2001
From: Leila Gonzales <lmg@agiweb.org>
Date: Thu, 25 May 2017 12:15:12 -0700
Subject: [PATCH] Bug fixes for geo indexing and display (#964)

- Also includes some general whitespace cleanup of Java code.
---
 .../src/org/solrmarc/index/VuFindIndexer.java | 338 +++++++++++++-----
 import/index_scripts/location.bsh             | 276 ++++++++++----
 tests/data/geo.mrc                            |   2 +-
 themes/bootstrap3/js/map_tab_ol.js            |  23 +-
 4 files changed, 478 insertions(+), 161 deletions(-)

diff --git a/import/index_java/src/org/solrmarc/index/VuFindIndexer.java b/import/index_java/src/org/solrmarc/index/VuFindIndexer.java
index 9fdb43b5f15..be7022f0ed7 100644
--- a/import/index_java/src/org/solrmarc/index/VuFindIndexer.java
+++ b/import/index_java/src/org/solrmarc/index/VuFindIndexer.java
@@ -78,7 +78,7 @@ public class VuFindIndexer extends SolrIndexer
     private Connection vufindDatabase = null;
     private UpdateDateTracker tracker = null;
 
-    // the SimpleDateFormat class is not Thread-safe the below line were changes to be not static 
+    // the SimpleDateFormat class is not Thread-safe the below line were changes to be not static
     // which given the rest of the design of SolrMarc will make them work correctly.
     private SimpleDateFormat marc005date = new SimpleDateFormat("yyyyMMddHHmmss.S");
     private SimpleDateFormat marc008date = new SimpleDateFormat("yyMMdd");
@@ -875,7 +875,7 @@ public class VuFindIndexer extends SolrIndexer
 
     /**
      * Get call numbers of a specific type.
-     * 
+     *
      * <p>{@code fieldSpec} is of form {@literal 098abc:099ab}, does not accept subfield ranges.
      *
      *
@@ -906,7 +906,7 @@ public class VuFindIndexer extends SolrIndexer
                 // Assume tag represents a DataField
                 DataField df = (DataField) vf;
                 boolean callTypeMatch = false;
-                
+
                 // Assume call type subfield could repeat
                 for (Subfield typeSf : df.getSubfields(callTypeSf)) {
                     if (callTypeSf.indexOf(typeSf.getCode()) != -1 && typeSf.getData().equals(callType)) {
@@ -921,11 +921,11 @@ public class VuFindIndexer extends SolrIndexer
         } // end loop over fieldSpec
         return result;
     }
-    
+
 
     /**
      * Get call numbers of a specific type.
-     * 
+     *
      * <p>{@code fieldSpec} is of form {@literal 098abc:099ab}, does not accept subfield ranges.
      *
      * @param record  current MARC record
@@ -941,7 +941,7 @@ public class VuFindIndexer extends SolrIndexer
 
     /**
      * Get call numbers of a specific type.
-     * 
+     *
      * <p>{@code fieldSpec} is of form {@literal 098abc:099ab}, does not accept subfield ranges.
      *
      * @param record  current MARC record
@@ -954,7 +954,7 @@ public class VuFindIndexer extends SolrIndexer
         return (List<String>) getCallNumberByTypeCollector(record, fieldSpec, callTypeSf, callType,
                 new ArrayList<String>());
     }
-    
+
     /**
      * Extract the full call number from a record, stripped of spaces
      * @param record MARC record
@@ -1162,7 +1162,7 @@ public class VuFindIndexer extends SolrIndexer
      *
      * @param  record current MARC record
      * @param  fieldSpec which MARC fields / subfields need to be analyzed
-     * @return sortable shelf key of the first valid LC number encountered, 
+     * @return sortable shelf key of the first valid LC number encountered,
      *         otherwise shelf key of the first call number found.
      */
     public String getLCSortable(Record record, String fieldSpec) {
@@ -1186,7 +1186,7 @@ public class VuFindIndexer extends SolrIndexer
 
     /**
      * Get sort key for first LC call number, identified by call type.
-     * 
+     *
      * <p>{@code fieldSpec} is of form {@literal 098abc:099ab}, does not accept subfield ranges.
      *
      *
@@ -1217,7 +1217,7 @@ public class VuFindIndexer extends SolrIndexer
                 // Assume tag represents a DataField
                 DataField df = (DataField) vf;
                 boolean callTypeMatch = false;
-                
+
                 // Assume call type subfield could repeat
                 for (Subfield typeSf : df.getSubfields(callTypeSf)) {
                     if (callTypeSf.indexOf(typeSf.getCode()) != -1 && typeSf.getData().equals(callType)) {
@@ -1260,10 +1260,10 @@ public class VuFindIndexer extends SolrIndexer
             if (callNum.isValid()) {
                 // Convert the numeric portion of the call number into a float:
                 float currentVal = Float.parseFloat(callNum.getClassification());
-                
+
                 // Round the call number value to the specified precision:
                 Float finalVal = new Float(Math.floor(currentVal / precision) * precision);
-                
+
                 // Convert the rounded value back to a string (with leading zeros) and save it:
                 // TODO: Provide different conversion to remove CallNumUtils dependency
                 result.add(CallNumUtils.normalizeFloat(finalVal.toString(), 3, -1));
@@ -1341,7 +1341,7 @@ public class VuFindIndexer extends SolrIndexer
 
     /**
      * Get sort key for first Dewey call number, identified by call type.
-     * 
+     *
      * <p>{@code fieldSpec} is of form {@literal 098abc:099ab}, does not accept subfield ranges.
      *
      *
@@ -1372,7 +1372,7 @@ public class VuFindIndexer extends SolrIndexer
                 // Assume tag represents a DataField
                 DataField df = (DataField) vf;
                 boolean callTypeMatch = false;
-                
+
                 // Assume call type subfield could repeat
                 for (Subfield typeSf : df.getSubfields(callTypeSf)) {
                     if (callTypeSf.indexOf(typeSf.getCode()) != -1 && typeSf.getData().equals(callType)) {
@@ -1389,7 +1389,7 @@ public class VuFindIndexer extends SolrIndexer
         return sortKey;
     }
 
-    
+
     /**
      * Normalize Dewey numbers for AlphaBrowse sorting purposes (use all numbers!)
      *
@@ -1443,36 +1443,29 @@ public class VuFindIndexer extends SolrIndexer
         List<VariableField> list034 = record.getVariableFields("034");
         if (list034 != null) {
             for (VariableField vf : list034) {
-                DataField df = (DataField) vf;
-                String d = df.getSubfield('d').getData();
-                String e = df.getSubfield('e').getData();
-                String f = df.getSubfield('f').getData();
-                String g = df.getSubfield('g').getData();
-                //System.out.println("raw Coords: "+d+" "+e+" "+f+" "+g);
-
-                // Check to see if there are only 2 coordinates
-                // If so, copy them into the corresponding coordinate fields
-                if ((d !=null && (e == null || e.trim().equals(""))) && (f != null && (g==null || g.trim().equals("")))) {
-                    e = d;
-                    g = f;
-                }
-                if ((e !=null && (d == null || d.trim().equals(""))) && (g != null && (f==null || f.trim().equals("")))) {
-                    d = e;
-                    f = g;
-                }
-
-                // Check and convert coordinates to +/- decimal degrees
-                Double west = convertCoordinate(d);
-                Double east = convertCoordinate(e);
-                Double north = convertCoordinate(f);
-                Double south = convertCoordinate(g);
-
-                // New Format for indexing coordinates in Solr 5.0 - minX, maxX, maxY, minY
-                // Note - storage in Solr follows the WENS order, but display is WSEN order
-                String result = String.format("ENVELOPE(%s,%s,%s,%s)", new Object[] { west, east, north, south });
-
-                if (validateCoordinates(west, east, north, south)) {
-                    geo_coordinates.add(result);
+                HashMap<Character, String> coords = getCoordinateValues(vf);
+                //DEBUG output
+                //ControlField recID = (ControlField) record.getVariableField("001");
+                //String recNum = recID.getData();
+                //logger.info("Record ID: " + recNum.trim() + " ...Coordinates: [ {" + coords.get('d') + "} {" + coords.get('e') + "} {" + coords.get('f') + "} {" + coords.get('g') + "} ]");
+
+                // Check for null coordinates
+                if (validateCoordinateValues(record, coords)) {
+                    // Check and convert coordinates to +/- decimal degrees
+                    Double west = convertCoordinate(coords.get('d'));
+                    Double east = convertCoordinate(coords.get('e'));
+                    Double north = convertCoordinate(coords.get('f'));
+                    Double south = convertCoordinate(coords.get('g'));
+                    if (validateDDCoordinates(record, west, east, north, south)) {
+                        // New Format for indexing coordinates in Solr 5.0 - minX, maxX, maxY, minY
+                        // Note - storage in Solr follows the WENS order, but display is WSEN order
+                        String result = String.format("ENVELOPE(%s,%s,%s,%s)", new Object[] { west, east, north, south });
+                        geo_coordinates.add(result);
+                    }  else {
+                        logger.error(".......... Not indexing INVALID coordinates: [ {" + coords.get('d') + "} {" + coords.get('e') + "} {" + coords.get('f') + "} {" + coords.get('g') + "} ]");
+                    }
+                } else {
+                    logger.error(".......... Not indexing INVALID coordinates: [ {" + coords.get('d') + "} {" + coords.get('e') + "} {" + coords.get('f') + "} {" + coords.get('g') + "} ]");
                 }
             }
         }
@@ -1490,31 +1483,19 @@ public class VuFindIndexer extends SolrIndexer
         List<VariableField> list034 = record.getVariableFields("034");
         if (list034 != null) {
             for (VariableField vf : list034) {
-                DataField df = (DataField) vf;
-                String d = df.getSubfield('d').getData();
-                String e = df.getSubfield('e').getData();
-                String f = df.getSubfield('f').getData();
-                String g = df.getSubfield('g').getData();
-
-                // Check to see if there are only 2 coordinates
-                if ((d !=null && (e == null || e.trim().equals(""))) && (f != null && (g==null || g.trim().equals("")))) {
-                    Double long_val = convertCoordinate(d);
-                    Double lat_val = convertCoordinate(f);
-                    String longlatCoordinate = Double.toString(long_val) + ',' + Double.toString(lat_val);
-                    coordinates.add(longlatCoordinate);
-                }
-                if ((e !=null && (d == null || d.trim().equals(""))) && (g != null && (f==null || f.trim().equals("")))) {
-                    Double long_val = convertCoordinate(e);
-                    Double lat_val = convertCoordinate(g);
-                    String longlatCoordinate = Double.toString(long_val) + ',' + Double.toString(lat_val);
-                    coordinates.add(longlatCoordinate);
-                }
-                // Check if N=S and E=W
-                if (d.equals(e) && f.equals(g)) {
-                    Double long_val = convertCoordinate(d);
-                    Double lat_val = convertCoordinate(f);
-                    String longlatCoordinate = Double.toString(long_val) + ',' + Double.toString(lat_val);
-                    coordinates.add(longlatCoordinate);
+                HashMap<Character, String> coords = getCoordinateValues(vf);
+                // Check for null coordinates
+                if (validateCoordinateValues(record, coords)) {
+                    // Check to see if we have a point coordinate
+                    if (coords.get('d').equals(coords.get('e')) && coords.get('f').equals(coords.get('g'))) {
+                        // Convert N (f_coord) and E (e_coord) coordinates to decimal degrees
+                        Double long_val = convertCoordinate(coords.get('e'));
+                        Double lat_val = convertCoordinate(coords.get('f'));
+                        String longlatCoordinate = Double.toString(long_val) + ',' + Double.toString(lat_val);
+                        coordinates.add(longlatCoordinate);
+                    }
+                } else {
+                    logger.error(".......... Not indexing INVALID Point coordinates: [ {" + coords.get('d') + "} {" + coords.get('e') + "} {" + coords.get('f') + "} {" + coords.get('g') + "} ]");
                 }
             }
         }
@@ -1532,20 +1513,75 @@ public class VuFindIndexer extends SolrIndexer
         List<VariableField> list034 = record.getVariableFields("034");
         if (list034 != null) {
             for (VariableField vf : list034) {
-                DataField df = (DataField) vf;
-                String west = df.getSubfield('d').getData();
-                String east = df.getSubfield('e').getData();
-                String north = df.getSubfield('f').getData();
-                String south = df.getSubfield('g').getData();
-                String result = String.format("%s %s %s %s", new Object[] { west, east, north, south });
-                if (west != null || east != null || north != null || south != null) {
+                HashMap<Character, String> coords = getCoordinateValues(vf);
+                // Check for null coordinates
+                if (validateCoordinateValues(record, coords)) {
+                    String result = String.format("%s %s %s %s", new Object[] {  coords.get('d'),  coords.get('e'),  coords.get('f'),  coords.get('g') });
                     geo_coordinates.add(result);
+                } else {
+                    logger.error(".......... Not indexing INVALID Display coordinates: [ {" + coords.get('d') + "} {" + coords.get('e') + "} {" + coords.get('f') + "} {" + coords.get('g') + "} ]");
                 }
             }
         }
         return geo_coordinates;
     }
 
+    /**
+     * Get all coordinate values from list034
+     *
+     * @param  VariableField vf
+     * @return HashMap full_coords
+     */
+    protected HashMap<Character, String> getCoordinateValues(VariableField vf) {
+        DataField df = (DataField) vf;
+        HashMap<Character, String> coords = new HashMap();
+        for (char code = 'd'; code <= 'g'; code++) {
+            Subfield subfield = df.getSubfield(code);
+            if (subfield != null) {
+                coords.put(code, subfield.getData());
+            }
+        }
+        // If coordinate set is a point with 2 coordinates, fill the empty values.
+        HashMap<Character, String> full_coords = fillEmptyPointCoordinates(coords);
+        return full_coords;
+    }
+
+    /**
+     * If coordinates are a point, fill empty N/S or E/W coordinate
+     *
+     * @param  HashMap coords
+     * @return HashMap full_coords
+     */
+    protected HashMap<Character, String> fillEmptyPointCoordinates(HashMap coords) {
+        HashMap<Character, String> full_coords = coords;
+        if (coords.containsKey('d') && !coords.containsKey('e') && coords.containsKey('f') && !coords.containsKey('g')) {
+            full_coords.put('e', coords.get('d').toString());
+            full_coords.put('g', coords.get('f').toString());
+        }
+        if (coords.containsKey('e') && !coords.containsKey('d') && coords.containsKey('g') && !coords.containsKey('h')) {
+            full_coords.put('d', coords.get('e').toString());
+            full_coords.put('f', coords.get('g').toString());
+        }
+        return full_coords;
+    }
+
+    /**
+    * Check record coordinates to make sure they do not contain null values.
+    *
+    * @param  Record record
+    * @param  HashMap coords
+    * @return boolean
+    */
+   protected boolean validateCoordinateValues(Record record, HashMap coords) {
+        if (coords.containsKey('d') && coords.containsKey('e') && coords.containsKey('f') && coords.containsKey('g')) {
+            return true;
+        }
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        logger.error("Record ID: " + recNum.trim() + " - Coordinate values contain null values.");
+        return false;
+    }
+
     /**
      * Check coordinate type HDMS HDD or +/-DD.
      *
@@ -1591,6 +1627,7 @@ public class VuFindIndexer extends SolrIndexer
             }
             return coordinate;
         } else {
+            logger.error("Decimal Degree Coordinate Conversion Error:  Poorly formed coordinate: [" + coordinateStr + "] ... Returning null value ... ");
             return null;
         }
     }
@@ -1620,20 +1657,133 @@ public class VuFindIndexer extends SolrIndexer
     /**
      * Check decimal degree coordinates to make sure they are valid.
      *
+     * @param  Record record
      * @param  Double west, east, north, south
      * @return boolean
      */
-    protected boolean validateCoordinates(Double west, Double east, Double north, Double south) {
-        if (west == null || east == null || north == null || south == null) {
+    protected boolean validateDDCoordinates(Record record, Double west, Double east, Double north, Double south) {
+        boolean validValues = true;
+        boolean validLines = true;
+        boolean validExtent = true;
+        boolean validNorthSouth = true;
+        boolean validCoordDist = true;
+
+        if (validateValues(record, west, east, north, south)) {
+            validLines = validateLines(record, west, east, north, south);
+            validExtent = validateExtent(record, west, east, north, south);
+            validNorthSouth = validateNorthSouth(record, north, south);
+            validCoordDist = validateCoordinateDistance(record, west, east, north, south);
+        } else {
             return false;
         }
-        if (west > 180.0 || west < -180.0 || east > 180.0 || east < -180.0) {
+
+        // Validate all coordinate combinations
+        if (!validLines || !validExtent || !validNorthSouth || !validCoordDist) {
             return false;
-        }
-        if (north > 90.0 || north < -90.0 || south > 90.0 || south < -90.0) {
+        } else {
+            return true;
+        }
+    }
+
+    /**
+    * Check decimal degree coordinates to make sure they do not form a line at the poles.
+    *
+    * @param  Record record
+    * @param  Double west, east, north, south
+    * @return boolean
+    */
+   public boolean validateLines(Record record, Double west, Double east, Double north, Double south) {
+    if ((!west.equals(east) && north.equals(south)) && (north == 90 || south == -90)) {
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        logger.error("Record ID: " + recNum.trim() + " - Coordinates form a line at the pole");
+        return false;
+    }
+    return true;
+   }
+
+    /**
+    * Check decimal degree coordinates to make sure they do not contain null values.
+    *
+    * @param  Record record
+    * @param  Double west, east, north, south
+    * @return boolean
+    */
+   public boolean validateValues(Record record, Double west, Double east, Double north, Double south) {
+    if (west == null || east == null || north == null || south == null) {
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        logger.error("Record ID: " + recNum.trim() + " - Decimal Degree coordinates contain null values: [ {" + west + "} {" + east + "} {" + north + "} {" + south + "} ]");
+        return false;
+    }
+    return true;
+   }
+
+    /**
+    * Check decimal degree coordinates to make sure they are within map extent.
+    *
+    * @param  Record record
+    * @param  Double west, east, north, south
+    * @return boolean
+    */
+   public boolean validateExtent(Record record, Double west, Double east, Double north, Double south) {
+    if (west > 180.0 || west < -180.0 || east > 180.0 || east < -180.0) {
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        logger.error("Record ID: " + recNum.trim() + " - Coordinates exceed map extent.");
+        return false;
+    }
+    if (north > 90.0 || north < -90.0 || south > 90.0 || south < -90.0) {
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        logger.error("Record ID: " + recNum.trim() + " - Coordinates exceed map extent.");
+        return false;
+    }
+    return true;
+   }
+
+    /**
+    * Check decimal degree coordinates to make sure that north is not less than south.
+    *
+    * @param  Record record
+    * @param  Double north, south
+    * @return boolean
+    */
+   public boolean validateNorthSouth(Record record, Double north, Double south) {
+    if (north < south) {
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        logger.error("Record ID: " + recNum.trim() + " - North < South.");
+        return false;
+    }
+    return true;
+   }
+
+    /**
+     * Check decimal degree coordinates to make sure they are not too close.
+     * Coordinates too close will cause Solr to run out of memory during indexing.
+     *
+     * @param  Record record
+     * @param  Double west, east, north, south
+     * @return boolean
+     */
+    public boolean validateCoordinateDistance(Record record, Double west, Double east, Double north, Double south) {
+        Double distEW = east - west;
+        Double distNS = north - south;
+
+        //Check for South Pole coordinate distance
+        if ((north == -90 || south == -90) && (distNS > 0 && distNS < 0.167)) {
+            ControlField recID = (ControlField) record.getVariableField("001");
+            String recNum = recID.getData();
+            logger.error("Record ID: " + recNum.trim() + " - Coordinates < 0.167 degrees from South Pole. Coordinate Distance: "+distNS);
             return false;
         }
-        if (north < south || west > east) {
+
+        //Check for East-West coordinate distance
+        if ((west == 0 || east == 0) && (distEW > -2 && distEW <0)) {
+            ControlField recID = (ControlField) record.getVariableField("001");
+            String recNum = recID.getData();
+            logger.error("Record ID: " + recNum.trim() + " - Coordinates within 2 degrees of Prime Meridian. Coordinate Distance: "+distEW);
             return false;
         }
         return true;
@@ -1953,7 +2103,7 @@ public class VuFindIndexer extends SolrIndexer
         //System.out.println("Loading fulltext from " + url + ". Please wait ...");
         try {
             Process p = Runtime.getRuntime().exec(cmd);
-            
+
             // Debugging output
             /*
             BufferedReader stdInput = new BufferedReader(new
@@ -1963,7 +2113,7 @@ public class VuFindIndexer extends SolrIndexer
                 System.out.println(s);
             }
             */
-            
+
             // Wait for Aperture to finish
             p.waitFor();
         } catch (Throwable e) {
@@ -2122,7 +2272,7 @@ public class VuFindIndexer extends SolrIndexer
      * no declared relator.
      * @param relatorConfig         The setting in author-classification.ini which
      * defines which relator terms are acceptable (or a colon-delimited list)
-     * @param unknownRelatorAllowed Array of tag names whose relators should be indexed 
+     * @param unknownRelatorAllowed Array of tag names whose relators should be indexed
      * even if they are not listed in author-classification.ini.
      * @param indexRawRelators      Set to "true" to index relators raw, as found
      * in the MARC or "false" to index mapped versions.
@@ -2580,7 +2730,7 @@ public class VuFindIndexer extends SolrIndexer
      * Normalizes the strings in a list.
      *
      * @param stringList List of strings to be normalized
-     * @return Normalized List of strings 
+     * @return Normalized List of strings
      */
     protected List<String> normalizeRelatorStringList(List<String> stringList)
     {
@@ -2680,7 +2830,7 @@ public class VuFindIndexer extends SolrIndexer
             acceptUnknownRelators, "false"
         );
     }
-    
+
     /**
      * Takes a name and cuts it into initials
      * @param authorName e.g. Yeats, William Butler
@@ -2689,17 +2839,17 @@ public class VuFindIndexer extends SolrIndexer
     protected String processInitials(String authorName) {
         Boolean isPersonalName = false;
         // we guess that if there is a comma before the end - this is a personal name
-        if ((authorName.indexOf(',') > 0) 
+        if ((authorName.indexOf(',') > 0)
             && (authorName.indexOf(',') < authorName.length()-1)) {
             isPersonalName = true;
         }
-        // get rid of non-alphabet chars but keep hyphens and accents 
+        // get rid of non-alphabet chars but keep hyphens and accents
         authorName = authorName.replaceAll("[^\\p{L} -]", "").toLowerCase();
         String[] names = authorName.split(" "); //split into tokens on spaces
         // if this is a personal name we'll reorganise to put lastname at the end
         String result = "";
         if (isPersonalName) {
-            String lastName = names[0]; 
+            String lastName = names[0];
             for (int i = 0; i < names.length-1; i++) {
                 names[i] = names[i+1];
             }
@@ -2715,7 +2865,7 @@ public class VuFindIndexer extends SolrIndexer
                     String extra = name.substring(pos+1, pos+2);
                     initial = initial + " " + extra;
                 }
-                result += " " + initial; 
+                result += " " + initial;
             }
         }
         // grab all initials and stick them together
@@ -2728,7 +2878,7 @@ public class VuFindIndexer extends SolrIndexer
         }
         // now we have initials separate and together
         if (!result.trim().equals(smushAll)) {
-            result += " " + smushAll; 
+            result += " " + smushAll;
         }
         result = result.trim();
         return result;
@@ -2759,4 +2909,4 @@ public class VuFindIndexer extends SolrIndexer
         // If we found no matches, return null; otherwise, return our results:
         return result.isEmpty() ? null : result;
     }
-}
\ No newline at end of file
+}
diff --git a/import/index_scripts/location.bsh b/import/index_scripts/location.bsh
index 9787855982e..4bba0bf037d 100644
--- a/import/index_scripts/location.bsh
+++ b/import/index_scripts/location.bsh
@@ -29,36 +29,30 @@ public List getAllCoordinates(Record record) {
     List list034 = record.getVariableFields("034");
     if (list034 != null) {
         for (VariableField vf : list034) {
-            DataField df = (DataField) vf;
-            String d = df.getSubfield('d').getData();
-            String e = df.getSubfield('e').getData();
-            String f = df.getSubfield('f').getData();
-            String g = df.getSubfield('g').getData();
-            //System.out.println("raw Coords: "+d+" "+e+" "+f+" "+g);
-
-            // Check to see if there are only 2 coordinates
-            // If so, copy them into the corresponding coordinate fields
-            if ((d !=null && (e == null || e.trim().equals(""))) && (f != null && (g==null || g.trim().equals("")))) {
-                e = d;
-                g = f;
-            }
-            if ((e !=null && (d == null || d.trim().equals(""))) && (g != null && (f==null || f.trim().equals("")))) {
-                d = e;
-                f = g;
-            }
+            HashMap coords = getCoordinateValues(vf);
+            //DEBUG output
+            //ControlField recID = (ControlField) record.getVariableField("001");
+            //String recNum = recID.getData();
+            //indexer.getLogger().info("Record ID: " + recNum.trim() + " ...Coordinates: [ {" + coords.get('d') + "} {" + coords.get('e') + "} {" + coords.get('f') + "} {" + coords.get('g') + "} ]");
 
+            // Check for null coordinates
+            if (validateCoordinateValues(record, coords)) {
             // Check and convert coordinates to +/- decimal degrees
-            Double west = convertCoordinate(d);
-            Double east = convertCoordinate(e);
-            Double north = convertCoordinate(f);
-            Double south = convertCoordinate(g);
+                Double west = convertCoordinate(coords.get('d'));
+                Double east = convertCoordinate(coords.get('e'));
+                Double north = convertCoordinate(coords.get('f'));
+                Double south = convertCoordinate(coords.get('g'));
 
-            // New Format for indexing coordinates in Solr 5.0 - minX, maxX, maxY, minY
-            // Note - storage in Solr follows the WENS order, but display is WSEN order
-            String result = String.format("ENVELOPE(%s,%s,%s,%s)", new Object[] { west, east, north, south });
-
-            if (validateCoordinates(west, east, north, south)) {
+                if (validateDDCoordinates(record, west, east, north, south)) {
+                    // New Format for indexing coordinates in Solr 5.0 - minX, maxX, maxY, minY
+                    // Note - storage in Solr follows the WENS order, but display is WSEN order
+                    String result = String.format("ENVELOPE(%s,%s,%s,%s)", new Object[] { west, east, north, south });
                     geo_coordinates.add(result);
+                }  else {
+                    indexer.getLogger().error(".......... Not indexing INVALID coordinates: [ {" + coords.get('d') + "} {" + coords.get('e') + "} {" + coords.get('f') + "} {" + coords.get('g') + "} ]");
+                }
+            } else {
+                indexer.getLogger().error(".......... Not indexing INVALID coordinates: [ {" + coords.get('d') + "} {" + coords.get('e') + "} {" + coords.get('f') + "} {" + coords.get('g') + "} ]");
             }
         }
     }
@@ -76,31 +70,19 @@ public List getPointCoordinates(Record record) {
     List list034 = record.getVariableFields("034");
     if (list034 != null) {
         for (VariableField vf : list034) {
-            DataField df = (DataField) vf;
-            String d = df.getSubfield('d').getData();
-            String e = df.getSubfield('e').getData();
-            String f = df.getSubfield('f').getData();
-            String g = df.getSubfield('g').getData();
-
-            // Check to see if there are only 2 coordinates
-            if ((d !=null && (e == null || e.trim().equals(""))) && (f != null && (g==null || g.trim().equals("")))) {
-                Double long_val = convertCoordinate(d);
-                Double lat_val = convertCoordinate(f);
-                String longlatCoordinate = Double.toString(long_val) + ',' + Double.toString(lat_val);
-                coordinates.add(longlatCoordinate);
-            }
-            if ((e !=null && (d == null || d.trim().equals(""))) && (g != null && (f==null || f.trim().equals("")))) {
-                Double long_val = convertCoordinate(e);
-                Double lat_val = convertCoordinate(g);
-                String longlatCoordinate = Double.toString(long_val) + ',' + Double.toString(lat_val);
-                coordinates.add(longlatCoordinate);
-            }
-            // Check if N=S and E=W
-            if (d.equals(e) && f.equals(g)) {
-                Double long_val = convertCoordinate(d);
-                Double lat_val = convertCoordinate(f);
-                String longlatCoordinate = Double.toString(long_val) + ',' + Double.toString(lat_val);
-                coordinates.add(longlatCoordinate);
+            HashMap coords = getCoordinateValues(vf);
+            // Check for null coordinates
+            if (validateCoordinateValues(record, coords)) {
+                // Check to see if we have a point coordinate
+                if (coords.get('d').equals(coords.get('e')) && coords.get('f').equals(coords.get('g'))) {
+                    // Convert N (f_coord) and E (e_coord) coordinates to decimal degrees
+                    Double long_val = convertCoordinate(coords.get('e'));
+                    Double lat_val = convertCoordinate(coords.get('f'));
+                    String longlatCoordinate = Double.toString(long_val) + ',' + Double.toString(lat_val);
+                    coordinates.add(longlatCoordinate);
+                }
+            } else {
+                indexer.getLogger().error(".......... Not indexing INVALID Point coordinates: [ {" + coords.get('d') + "} {" + coords.get('e') + "} {" + coords.get('f') + "} {" + coords.get('g') + "} ]");
             }
         }
     }
@@ -118,20 +100,76 @@ public List getDisplayCoordinates(Record record) {
     List list034 = record.getVariableFields("034");
     if (list034 != null) {
         for (VariableField vf : list034) {
-            DataField df = (DataField) vf;
-            String west = df.getSubfield('d').getData();
-            String east = df.getSubfield('e').getData();
-            String north = df.getSubfield('f').getData();
-            String south = df.getSubfield('g').getData();
-            String result = String.format("%s %s %s %s", new Object[] { west, east, north, south });
-            if (west != null || east != null || north != null || south != null) {
+            HashMap coords = getCoordinateValues(vf);
+            // Check for null coordinates
+            if (validateCoordinateValues(record, coords)) {
+                String result = String.format("%s %s %s %s", new Object[] {  coords.get('d'),  coords.get('e'),  coords.get('f'),  coords.get('g') });
                 geo_coordinates.add(result);
+            } else {
+                indexer.getLogger().error(".......... Not indexing INVALID Display coordinates: [ {" + coords.get('d') + "} {" + coords.get('e') + "} {" + coords.get('f') + "} {" + coords.get('g') + "} ]");
             }
         }
     }
     return geo_coordinates;
 }
 
+/**
+* Get all coordinate values from list034
+*
+* @param  VariableField vf
+* @return HashMap full_coords
+*/
+protected HashMap getCoordinateValues(VariableField vf) {
+    DataField df = (DataField) vf;
+    HashMap coords = new HashMap();
+    for (char code = 'd'; code <= 'g'; code++) {
+       Subfield subfield = df.getSubfield(code);
+       if (subfield != null) {
+         coords.put(code, subfield.getData());
+       }
+    }
+    // If coordinate set is a point with 2 coordinates, fill the empty values.
+    HashMap full_coords = fillEmptyPointCoordinates(coords);
+    return full_coords;
+}
+
+/**
+* If coordinates are a point, fill empty N/S or E/W coordinate
+*
+* @param  HashMap coords
+* @return HashMap full_coords
+*/
+protected HashMap fillEmptyPointCoordinates(HashMap coords) {
+    HashMap full_coords = coords;
+    if (coords.containsKey('d') && !coords.containsKey('e') && coords.containsKey('f') && !coords.containsKey('g')) {
+        full_coords.put('e', coords.get('d').toString());
+        full_coords.put('g', coords.get('f').toString());
+    }
+    if (coords.containsKey('e') && !coords.containsKey('d') && coords.containsKey('g') && !coords.containsKey('h')) {
+        full_coords.put('d', coords.get('e').toString());
+        full_coords.put('f', coords.get('g').toString());
+    }
+    return full_coords;
+}
+
+/**
+* Check record coordinates to make sure they do not contain null values.
+*
+* @param  Record record
+* @param  HashMap coords
+* @return boolean
+*/
+protected boolean validateCoordinateValues(Record record, HashMap coords) {
+
+    if (coords.containsKey('d') && coords.containsKey('e') && coords.containsKey('f') && coords.containsKey('g')) {
+        return true;
+    }
+    ControlField recID = (ControlField) record.getVariableField("001");
+    String recNum = recID.getData();
+    indexer.getLogger().error("Record ID: " + recNum.trim() + " - Coordinate values contain null values.");
+    return false;
+}
+
 /**
  * Check coordinate type HDMS HDD or +/-DD.
  *
@@ -177,6 +215,7 @@ public Double convertCoordinate(String coordinateStr) {
         }
         return coordinate;
     } else {
+        indexer.getLogger().error("Decimal Degree Coordinate Conversion Error:  Poorly formed coordinate: [" + coordinateStr + "] ... Returning null value ... ");
         return null;
     }
 }
@@ -206,20 +245,133 @@ public Double coordinateToDecimal(String coordinateStr) {
 /**
  * Check decimal degree coordinates to make sure they are valid.
  *
+ * @param  Record record
+ * @param  Double west, east, north, south
+ * @return boolean
+ */
+protected boolean validateDDCoordinates(Record record, Double west, Double east, Double north, Double south) {
+    boolean validValues = true;
+    boolean validLines = true;
+    boolean validExtent = true;
+    boolean validNorthSouth = true;
+    boolean validCoordDist = true;
+
+    if (validateValues(record, west, east, north, south)) {
+        validLines = validateLines(record, west, east, north, south);
+        validExtent = validateExtent(record, west, east, north, south);
+        validNorthSouth = validateNorthSouth(record, north, south);
+        validCoordDist = validateCoordinateDistance(record, west, east, north, south);
+    } else {
+        return false;
+    }
+
+    // Validate all coordinate combinations
+    if (!validLines || !validExtent || !validNorthSouth || !validCoordDist) {
+        return false;
+    } else {
+        return true;
+    }
+}
+
+/**
+ * Check decimal degree coordinates to make sure they do not form a line at the poles.
+ *
+ * @param  Record record
+ * @param  Double west, east, north, south
+ * @return boolean
+ */
+public boolean validateLines(Record record, Double west, Double east, Double north, Double south) {
+    if ((!west.equals(east) && north.equals(south)) && (north == 90 || south == -90)) {
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        indexer.getLogger().error("Record ID: " + recNum.trim() + " - Coordinates form a line at the pole");
+        return false;
+    }
+    return true;
+}
+
+/**
+ * Check decimal degree coordinates to make sure they do not contain null values.
+ *
+ * @param  Record record
  * @param  Double west, east, north, south
  * @return boolean
  */
-public boolean validateCoordinates(Double west, Double east, Double north, Double south) {
+public boolean validateValues(Record record, Double west, Double east, Double north, Double south) {
     if (west == null || east == null || north == null || south == null) {
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        indexer.getLogger().error("Record ID: " + recNum.trim() + " - Decimal Degree coordinates contain null values: [ {" + west + "} {" + east + "} {" + north + "} {" + south + "} ]");
         return false;
     }
-    if (west > 180.0 || west < -180.0 || east > 180.0 || east < -180.0) {
+    return true;
+}
+
+/**
+ * Check decimal degree coordinates to make sure they are within map extent.
+ *
+ * @param  Record record
+ * @param  Double west, east, north, south
+ * @return boolean
+ */
+public boolean validateExtent(Record record, Double west, Double east, Double north, Double south) {
+     if (west > 180.0 || west < -180.0 || east > 180.0 || east < -180.0) {
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        indexer.getLogger().error("Record ID: " + recNum.trim() + " - Coordinates exceed map extent.");
         return false;
     }
     if (north > 90.0 || north < -90.0 || south > 90.0 || south < -90.0) {
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        indexer.getLogger().error("Record ID: " + recNum.trim() + " - Coordinates exceed map extent.");
         return false;
     }
-    if (north < south || west > east) {
+    return true;
+}
+
+/**
+ * Check decimal degree coordinates to make sure that north is not less than south.
+ *
+ * @param  Record record
+ * @param  Double north, south
+ * @return boolean
+ */
+public boolean validateNorthSouth(Record record, Double north, Double south) {
+    if (north < south) {
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        indexer.getLogger().error("Record ID: " + recNum.trim() + " - North < South.");
+        return false;
+    }
+    return true;
+}
+
+/**
+ * Check decimal degree coordinates to make sure they are not too close.
+ * Coordinates too close will cause Solr to run out of memory during indexing.
+ *
+ * @param  Record record
+ * @param  Double west, east, north, south
+ * @return boolean
+ */
+public boolean validateCoordinateDistance(Record record, Double west, Double east, Double north, Double south) {
+    Double distEW = east - west; 
+    Double distNS = north - south;
+
+    //Check for South Pole coordinate distance
+    if ((north == -90 || south == -90) && (distNS > 0 && distNS < 0.167)) {
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        indexer.getLogger().error("Record ID: " + recNum.trim() + " - Coordinates < 0.167 degrees from South Pole. Coordinate Distance: "+distNS);
+        return false;
+    }
+ 
+    //Check for East-West coordinate distance 
+    if ((west == 0 || east == 0) && (distEW > -2 && distEW <0)) {
+        ControlField recID = (ControlField) record.getVariableField("001");
+        String recNum = recID.getData();
+        indexer.getLogger().error("Record ID: " + recNum.trim() + " - Coordinates within 2 degrees of Prime Meridian. Coordinate Distance: "+distEW);
         return false;
     }
     return true;
@@ -268,4 +420,4 @@ public String getLongLat(Record record) {
     }
     //otherwise return null
     return null;
-}
\ No newline at end of file
+}
diff --git a/tests/data/geo.mrc b/tests/data/geo.mrc
index 42f35e0e556..87b489eeb3d 100644
--- a/tests/data/geo.mrc
+++ b/tests/data/geo.mrc
@@ -1 +1 @@
-00362naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007000138100001700208245002700225  2000120160513104939730000s1973    coAa          0  0  EL  d0 aad+129.95348029e+129.95348029f-55.29356577g-55.29356577zSite 3740 aad+92.58856498e+92.58856498f+35.0285559g+35.0285559zSite 4511 aHurt, Millie10aTest Publication 2000100364naaa 2200109zu 4500001000800000005001500008008004100023034007000064034007200134100002100206245002700227  2000220160513104939730000s1973    coAa          0  0  EL  d0 aad+10.05908843e+10.05908843f-5.75031466g-5.75031466zSite 4400 aad+46.45283977e+46.45283977f+31.50720239g+31.50720239zSite 4471 aWinrow, Sanjuana10aTest Publication 2000200360naaa 2200109zu 4500001000800000005001500008008004100023034007200064034007200136100001500208245002700223  2000320160513104939730000s1973    coAa          0  0  EL  d0 aad-35.26826575e-35.26826575f+27.26620523g+27.26620523zSite 4000 aad-15.10285454e-15.10285454f+14.80524368g+14.80524368zSite 1631 aRudd, Jann10aTest Publication 2000300613naaa 2200145zu 4500001000800000005001500008008004100023034007200064034007200136034006600208034007400274034007200348100002000420245002700440  2000420160513104939730000s1973    coAa          0  0  EL  d0 aad-56.86690649e-56.86690649f+15.77554895g+15.77554895zSite 4790 aad+159.74574799e+159.74574799f-20.9661451g-20.9661451zSite 4340 aad+7.9676261e+7.9676261f+6.62658415g+6.62658415zSite 4480 aad+135.37478775e+135.37478775f+46.27024658g+46.27024658zSite 5530 aad-105.9279514e-105.9279514f+35.25445142g+35.25445142zSite 3061 aWalston, Verlie10aTest Publication 2000400526naaa 2200133zu 4500001000800000005001500008008004100023034007200064034007200136034006600208034007200274100001900346245002700365  2000520160513104939730000s1973    coAa          0  0  EL  d0 aad+83.63104693e+83.63104693f+21.46845472g+21.46845472zSite 3140 aad+156.17691966e+156.17691966f-9.22226407g-9.22226407zSite 1400 aad-7.6873641e-7.6873641f+49.3997425g+49.3997425zSite 1050 aad-85.11852582e-85.11852582f-32.54764684g-32.54764684zSite 2661 aPakele, Marina10aTest Publication 2000500365naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007000138100002000208245002700228  2000620160513104939730000s1973    coAa          0  0  EL  d0 aadE119.53888243eE119.53888243fN62.91327942gN62.91327942zSite 2550 aadE67.8057745eE67.8057745fN36.44414008gN36.44414008zSite 5461 aMcglasson, Rich10aTest Publication 2000600627naaa 2200145zu 4500001000800000005001500008008004100023034007400064034007400138034007200212034007400284034007400358100002200432245002700454  2000720160513104939730000s1973    coAa          0  0  EL  d0 aadE121.59566053eE121.59566053fN23.86811097gN23.86811097zSite 3610 aadE151.51785078eE151.51785078fN13.91875447gN13.91875447zSite 1050 aadW86.72014286eW86.72014286fS10.73770388gS10.73770388zSite 4880 aadE134.89543887eE134.89543887fN25.94241103gN25.94241103zSite 2060 aadE161.78292166eE161.78292166fN10.15327259gN10.15327259zSite 3501 aRottman, Serafina10aTest Publication 2000700621naaa 2200145zu 4500001000800000005001500008008004100023034007400064034007400138034007200212034007200284034007200356100002000428245002700448  2000820160513104939730000s1973    coAa          0  0  EL  d0 aadW103.57340238eW103.57340238fS22.78804289gS22.78804289zSite 2170 aadW175.68166135eW175.68166135fS69.41361345gS69.41361345zSite 4970 aadE48.51599542eE48.51599542fS58.33629524gS58.33629524zSite 3550 aadE65.04196038eE65.04196038fN32.99243302gN32.99243302zSite 4860 aadW111.45384173eW111.45384173fS7.22546191gS7.22546191zSite 1131 aHaberle, Manuel10aTest Publication 2000800616naaa 2200145zu 4500001000800000005001500008008004100023034007000064034007000134034007400204034007200278034007000350100002300420245002700443  2000920160513104939730000s1973    coAa          0  0  EL  d0 aadE1.55144883eE1.55144883fS15.91268613gS15.91268613zSite 4710 aadE0.46771867eE0.46771867fS53.88776866gS53.88776866zSite 1390 aadE120.96526676eE120.96526676fN22.40092028gN22.40092028zSite 2390 aadW43.86881638eW43.86881638fS29.38831583gS29.38831583zSite 1970 aadW158.26944205eW158.26944205fS0.7378453gS0.7378453zSite 3941 aRuvalcaba, Letisha10aTest Publication 2000900326naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001700172245002700189  2001020160513104939730000s1973    coAa          0  0  EL  d0 aadE0870709eE0870709fS065613gS065613zSite 1200 aadE1242258eE1242258fS110713gS110713zSite 2231 aBogard, Noma10aTest Publication 2001000525naaa 2200145zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226034005400280100001800334245002700352  2001120160513104939730000s1973    coAa          0  0  EL  d0 aadE0025331eE0025331fS493930gS493930zSite 3010 aadE0013038eE0013038fN444623gN444623zSite 1560 aadW0483141eW0483141fS452235gS452235zSite 4630 aadW0703406eW0703406fS373129gS373129zSite 3630 aadW1172630eW1172630fN661503gN661503zSite 3931 aPutman, Davis10aTest Publication 2001100526naaa 2200145zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226034005400280100001900334245002700353  2001220160513104939730000s1973    coAa          0  0  EL  d0 aadE1741450eE1741450fN154310gN154310zSite 5490 aadW0570821eW0570821fS415337gS415337zSite 2360 aadE1773647eE1773647fS330258gS330258zSite 4620 aadE0710915eE0710915fN400408gN400408zSite 3550 aadW0401638eW0401638fN093759gN093759zSite 5471 aBucher, Margit10aTest Publication 2001200528naaa 2200145zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226034005400280100002100334245002700355  2001320160513104939730000s1973    coAa          0  0  EL  d0 aadW1511513eW1511513fS055042gS055042zSite 1050 aadW1465931eW1465931fS261609gS261609zSite 4840 aadW0790538eW0790538fS512156gS512156zSite 5440 aadW1415343eW1415343fS185901gS185901zSite 4230 aadW1304431eW1304431fS502042gS502042zSite 1291 aDobyns, Wilfredo10aTest Publication 2001300463naaa 2200133zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226100002200280245002700302  2001420160513104939730000s1973    coAa          0  0  EL  d0 aadE1742335eE1742335fN191726gN191726zSite 2130 aadW1570705eW1570705fN435341gN435341zSite 5090 aadW1020233eW1020233fN203933gN203933zSite 2910 aadW1290413eW1290413fS691417gS691417zSite 2251 aMilbourne, Milton10aTest Publication 2001400328naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001900172245002700191  2001520160513104939730000s1973    coAa          0  0  EL  d0 aadW0755517eW0755517fN151326gN151326zSite 3270 aadW0932259eW0932259fN020021gN020021zSite 1521 aMirsky, Dionna10aTest Publication 2001500536naaa 2200133zu 4500001000800000005001500008008004100023034007400064034007400138034007100212034007200283100002000355245002700375  2001620160513104939730000s1973    coAa          0  0  EL  d0 aad+100.64194149e+150.64194149f+76.29679349g+46.29679349zSite 3250 aad+140.41485857e+150.41485857f-59.57999928g-69.57999928zSite 1980 aad-14.23933962e-9.23933962f-27.72727724g-57.72727724zSite 3170 aad-175.1864435e-172.1864435f-10.03581345g-20.03581345zSite 1721 aInnocent, Leisa10aTest Publication 2001600615naaa 2200145zu 4500001000800000005001500008008004100023034006800064034007100132034007200203034007200275034007200347100002300419245002700442  2001720160513104939730000s1973    coAa          0  0  EL  d0 aad-165.6004414e-115.6004414f-14.509653g-24.509653zSite 2190 aad-172.2069375e-132.2069375f+10.76133978g+5.76133978zSite 2500 aad-162.8898108e-142.8898108f-15.07237354g-25.07237354zSite 5040 aad+71.03685744e+81.03685744f-66.09831516g-76.09831516zSite 1810 aad-160.1490595e-140.1490595f+68.15731704g+58.15731704zSite 4201 aCornforth, Desiree10aTest Publication 2001700613naaa 2200145zu 4500001000800000005001500008008004100023034007000064034007200134034007000206034007200276034007300348100001900421245002700440  2001820160513104939730000s1973    coAa          0  0  EL  d0 aad-91.5895638e-61.5895638f+74.14618546g+44.14618546zSite 1140 aad+64.41336345e+74.41336345f+79.74325176g+49.74325176zSite 1270 aad-7.44081494e-2.44081494f+68.18607023g+58.18607023zSite 1210 aad-170.1177443e-130.1177443f-63.43626229g-73.43626229zSite 4440 aad+95.39073945e+145.39073945f+42.45583955g+22.45583955zSite 2461 aKarter, Marvis10aTest Publication 2001800441naaa 2200121zu 4500001000800000005001500008008004100023034006800064034007000132034007200202100001800274245002700292  2001920160513104939730000s1973    coAa          0  0  EL  d0 aad+10.5670584e+15.5670584f-21.6083379g-41.6083379zSite 2070 aad+41.53787448e+51.53787448f+77.9847143g+57.9847143zSite 5480 aad+129.0839142e+139.0839142f+78.85096117g+68.85096117zSite 2721 aClaro, Bobbie10aTest Publication 2001900620naaa 2200145zu 4500001000800000005001500008008004100023034007400064034006900138034007200207034007400279034007400353100002000427245002700447  2002020160513104939730000s1973    coAa          0  0  EL  d0 aadW163.70412537eW143.70412537fN23.98046062gN13.98046062zSite 2460 aadW37.45857716eW27.45857716fN11.7990193gN6.7990193zSite 4110 aadW92.34562344eW62.34562344fS25.81496714gS55.81496714zSite 4880 aadE144.53537717eE174.53537717fS28.13599649gS58.13599649zSite 5160 aadW177.82278613eW117.82278613fS32.33211767gS62.33211767zSite 2831 aBeckett, Tamala10aTest Publication 2002000364naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007200138100001700210245002700227  2002120160513104939730000s1973    coAa          0  0  EL  d0 aadE114.22094565eE144.22094565fS37.22983935gS77.22983935zSite 4160 aadW167.75647806eW147.75647806fN8.67140253gN3.67140253zSite 3961 aLam, Cristen10aTest Publication 2002100528naaa 2200133zu 4500001000800000005001500008008004100023034007200064034007200136034007200208034007000280100001700350245002700367  2002220160513104939730000s1973    coAa          0  0  EL  d0 aadW97.44010063eW67.44010063fN69.57202273gN39.57202273zSite 3650 aadW79.40943037eW59.40943037fN63.76345804gN43.76345804zSite 2300 aadW103.46816014eW73.46816014fS9.60188743gS14.60188743zSite 2350 aadW16.35276413eW11.35276413fS4.27200773gS9.27200773zSite 2451 aDalke, Isiah10aTest Publication 2002200618naaa 2200145zu 4500001000800000005001500008008004100023034007400064034007200138034007400210034007200284034007400356100001500430245002700445  2002320160513104939730000s1973    coAa          0  0  EL  d0 aadE127.23972147eE137.23972147fN63.12317768gN43.12317768zSite 2080 aadE129.15557267eE149.15557267fN45.7443194gN25.7443194zSite 1020 aadW151.73434552eW101.73434552fS55.73496457gS75.73496457zSite 1080 aadE54.94955124eE64.94955124fS34.71609174gS64.71609174zSite 5370 aadE106.81774118eE156.81774118fS29.05905321gS59.05905321zSite 4111 aOram, Donn10aTest Publication 2002300367naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007100138100002100209245002700230  2002420160513104939730000s1973    coAa          0  0  EL  d0 aadE129.86022987eE149.86022987fN51.68020143gN31.68020143zSite 4760 aadE5.86815575eE15.86815575fN60.95617804gN40.95617804zSite 1761 aRupp, Georgeanna10aTest Publication 2002400450naaa 2200121zu 4500001000800000005001500008008004100023034007400064034007200138034007200210100001900282245002700301  2002520160513104939730000s1973    coAa          0  0  EL  d0 aadW156.11673622eW106.11673622fN78.32587133gN68.32587133zSite 3370 aadE47.92289733eE57.92289733fN77.17739015gN67.17739015zSite 1040 aadW32.89273609eW22.89273609fS40.70960814gS60.70960814zSite 4531 aWalter, Jasper10aTest Publication 2002500532naaa 2200133zu 4500001000800000005001500008008004100023034007300064034007400137034007300211034006800284100001900352245002700371  2002620160513104939730000s1973    coAa          0  0  EL  d0 aadE96.70798372eE146.70798372fN54.00011075gN34.00011075zSite 2710 aadE145.51684204eE165.51684204fN27.98976019gN17.98976019zSite 2660 aadW106.32772299eW76.32772299fN46.24201475gN26.24201475zSite 2860 aadE20.1511411eE25.1511411fN6.07910182gN1.07910182zSite 2421 aHultgren, Josh10aTest Publication 2002600328naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001900172245002700191  2002720160513104939730000s1973    coAa          0  0  EL  d0 aadW0170403eW0120403fN755211gN455211zSite 4560 aadW1740209eW1340209fN794749gN694749zSite 3851 aGalasso, Tatum10aTest Publication 2002700333naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100002400172245002700196  2002820160513104939730000s1973    coAa          0  0  EL  d0 aadE0710106eE0810106fS111308gS211308zSite 5310 aadE0132703eE0182703fN541236gN341236zSite 3481 aCantrell, Cornelius10aTest Publication 2002800399naaa 2200121zu 4500001000800000005001500008008004100023034005400064034005400118034005400172100002400226245002700250  2002920160513104939730000s1973    coAa          0  0  EL  d0 aadW1693838eW1193838fN122531gN072531zSite 4150 aadE0844331eE1044331fS693723gS793723zSite 1320 aadE0062611eE0162611fN681512gN381512zSite 5031 aGreenblatt, Sherill10aTest Publication 2002900327naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001800172245002700190  2003020160513104939730000s1973    coAa          0  0  EL  d0 aadE1053451eE1553451fS183256gS383256zSite 2870 aadE0830412eE1030412fS174644gS374644zSite 1801 aPerine, Alisa10aTest Publication 2003000393naaa 2200121zu 4500001000800000005001500008008004100023034005400064034005400118034005400172100001800226245002700244  2003120160513104939730000s1973    coAa          0  0  EL  d0 aadE0202657eE0252657fS470042gS770042zSite 2360 aadW1594422eW1094422fS562802gS762802zSite 4950 aadW0254325eW0204325fS591429gS691429zSite 3241 aSuen, Lanette10aTest Publication 2003100460naaa 2200133zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226100001900280245002700299  2003220160513104939730000s1973    coAa          0  0  EL  d0 aadW1331944eW0931944fN402114gN202114zSite 3060 aadW1780423eW1700423fN584511gN284511zSite 4340 aadW1600712eW1500712fN454326gN254326zSite 3810 aadW1752336eW1652336fN731737gN631737zSite 5211 aIverson, Beryl10aTest Publication 2003200459naaa 2200133zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226100001800280245002700298  2003320160513104939730000s1973    coAa          0  0  EL  d0 aadE1423151eE1523151fS521748gS721748zSite 2580 aadW1691508eW1391508fS131306gS231306zSite 5220 aadE1345235eE1745235fS630056gS730056zSite 3540 aadW1640324eW1140324fS330005gS630005zSite 1441 aBoyland, Bebe10aTest Publication 2003300394naaa 2200121zu 4500001000800000005001500008008004100023034005400064034005400118034005400172100001900226245002700245  2003420160513104939730000s1973    coAa          0  0  EL  d0 aadE1590126eE1690126fS341136gS641136zSite 3030 aadW1054117eW0754117fS354552gS754552zSite 3730 aadW0994125eW0694125fS434119gS634119zSite 3551 aArechiga, Moon10aTest Publication 2003400457naaa 2200133zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226100001600280245002700296  2003520160513104939730000s1973    coAa          0  0  EL  d0 aadW1405617eW1205617fS555856gS755856zSite 4800 aadE1073429eE1573429fS022601gS072601zSite 3730 aadE0913431eE1011343fS422933gS622933zSite 5360 aadE1131855eE1231855fS682514gS782514zSite 3241 aRozar, Josh10aTest Publication 2003500521naaa 2200133zu 4500001000800000005001500008008004100023034006800064034007200132034006800204034007000272100001800342245002700360  2003620160513104939730000s1973    coAa          0  0  EL  d0 aad-169.415256e-169.415256f+29.8815696g+29.8815696zSite 5600 aad-151.5560527e-151.5560527f-36.13307132g-36.13307132zSite 2020 aad-87.4479458e-87.4479458f+9.11816125g+9.11816125zSite 5400 aad-149.4183832e-149.4183832f+29.1541857g+29.1541857zSite 5571 aGuynn, Mayola10aTest Publication 2003600366naaa 2200109zu 4500001000800000005001500008008004100023034007200064034007200136100002100208245002700229  2003720160513104939730000s1973    coAa          0  0  EL  d0 aad+86.55263228e+86.55263228f-28.95862432g-28.95862432zSite 1680 aad-149.3464366e-129.3464366f+27.28202333g+17.28202333zSite 1341 aEngelhard, Marco10aTest Publication 2003700366naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007200138100001900210245002700229  2003820160513104939730000s1973    coAa          0  0  EL  d0 aad+118.90296884e+118.90296884f+27.65389383g+27.65389383zSite 3970 aad-135.3498909e-95.34989087f+60.71524151g+40.71524151zSite 2231 aBornstein, Dia10aTest Publication 2003800363naaa 2200109zu 4500001000800000005001500008008004100023034007000064034007200134100002000206245002700226  2003920160513104939730000s1973    coAa          0  0  EL  d0 aad+15.7081159e+15.7081159f+10.51847859g+10.51847859zSite 1540 aad-65.34590317e-45.34590317f-16.22908424g-36.22908424zSite 4341 aMathisen, Dayle10aTest Publication 2003900356naaa 2200109zu 4500001000800000005001500008008004100023034007000064034007000134100001500204245002700219  2004020160513104939730000s1973    coAa          0  0  EL  d0 aad+120.07557262e+120.07557262f-7.8300017g-7.8300017zSite 4600 aad-78.33685724e-58.33685724f-20.7677353g-40.7677353zSite 3351 aOrtiz, Tia10aTest Publication 2004000370naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007200138100002300210245002700233  2004120160513104939730000s1973    coAa          0  0  EL  d0 aad+179.11624407e+179.11624407f+49.45597061g+49.45597061zSite 1290 aad+18.65135762e+23.65135762f+75.67582839g+65.67582839zSite 3251 aSteffensen, Bianca10aTest Publication 2004100365naaa 2200109zu 4500001000800000005001500008008004100023034007200064034007200136100002000208245002700228  2004220160513104939730000s1973    coAa          0  0  EL  d0 aad-69.44473478e-69.44473478f+16.37800971g+16.37800971zSite 5180 aad-31.50294667e-21.50294667f-31.33882964g-61.33882964zSite 3511 aLaurich, Stuart10aTest Publication 2004200369naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007200138100002200210245002700232  2004320160513104939730000s1973    coAa          0  0  EL  d0 aad+154.29238217e+154.29238217f-50.92756335g-50.92756335zSite 2970 aad-66.00381134e-46.00381134f-41.48033844g-61.48033844zSite 1781 aBeveridge, Albina10aTest Publication 2004300367naaa 2200109zu 4500001000800000005001500008008004100023034007000064034007400134100002200208245002700230  2004420160513104939730000s1973    coAa          0  0  EL  d0 aadE24.1857034eE24.1857034fS66.87278415gS66.87278415zSite 1290 aadW166.03284101eW156.03284101fN65.01324719gN35.01324719zSite 3991 aLetsinger, Tamiko10aTest Publication 2004400366naaa 2200109zu 4500001000800000005001500008008004100023034007000064034007400134100002100208245002700229  2004520160513104939730000s1973    coAa          0  0  EL  d0 aadE25.0293899eE25.0293899fS12.28047561gS12.28047561zSite 5060 aadW169.45170238eW119.45170238fN38.14274122gN18.14274122zSite 1251 aCounter, Modesto10aTest Publication 2004500531naaa 2200133zu 4500001000800000005001500008008004100023034007200064034007200136034007200208034007300280100001700353245002700370  2004620160513104939730000s1973    coAa          0  0  EL  d0 aadE86.99902059eE86.99902059fS41.27856855gS41.27856855zSite 3990 aadE133.71880822eE143.71880822fN8.13138602gN3.13138602zSite 4030 aadE171.49599516eE171.49599516fS56.3556026gS56.3556026zSite 1530 aadE119.63111094eE169.63111094fN11.62690851gN6.62690851zSite 1201 aValois, Arie10aTest Publication 2004600528naaa 2200133zu 4500001000800000005001500008008004100023034006800064034007200132034007200204034007400276100001700350245002700367  2004720160513104939730000s1973    coAa          0  0  EL  d0 aadW23.6918351eW23.6918351fN5.50055924gN5.50055924zSite 4950 aadW71.72678006eW51.72678006fN80.68048573gN72.68048573zSite 4190 aadW72.47081023eW72.47081023fS13.50689659gS13.50689659zSite 5050 aadW159.51582506eW109.51582506fS12.01041499gS22.01041499zSite 3211 aGiard, Dodie10aTest Publication 2004700364naaa 2200109zu 4500001000800000005001500008008004100023034007200064034007200136100001900208245002700227  2004820160513104939730000s1973    coAa          0  0  EL  d0 aadW98.39221287eW98.39221287fN20.00645186gN20.00645186zSite 1400 aadW35.22129012eW25.22129012fS11.27828226gS21.27828226zSite 1821 aDryer, Verlene10aTest Publication 2004800365naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007400138100001600212245002700228  2004920160513104939730000s1973    coAa          0  0  EL  d0 aadW126.87139449eW126.87139449fS18.74530167gS18.74530167zSite 4470 aadW159.94018465eW109.94018465fS57.54337933gS67.54337933zSite 4601 aKohn, Clora10aTest Publication 2004900366naaa 2200109zu 4500001000800000005001500008008004100023034007200064034007200136100002100208245002700229  2005020160513104939730000s1973    coAa          0  0  EL  d0 aadW159.88627958eW109.88627958fS3.02307754gS8.02307754zSite 3560 aadE109.5707309eE119.5707309fS48.38262915gS78.38262915zSite 5401 aSutter, Katheryn10aTest Publication 2005000358naaa 2200109zu 4500001000800000005001500008008004100023034007000064034007000134100001700204245002700221  2005120160513104939730000s1973    coAa          0  0  EL  d0 aadE19.87166027eE24.87166027fS35.8561532gS75.8561532zSite 3760 aadE71.3886803eE81.3886803fS25.17975703gS55.17975703zSite 1071 aWalberg, Pia10aTest Publication 2005100590naaa 2200157zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226034005400280034005400334100001700388245002700405  2005220160513104939730000s1973    coAa          0  0  EL  d0 aadE0475840eE0475840fN315244gN315244zSite 3620 aadE0250120eE0250120fS051344gS051344zSite 4610 aadE0392838eE0392838fN123637gN123637zSite 3470 aadW0041819eW0041819fN670212gN670212zSite 3540 aadW0514641eW0514641fS325055gS325055zSite 5520 aadW0532607eW0432607fN401312gN201312zSite 2221 aHove, Armand10aTest Publication 2005200329naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100002000172245002700192  2005320160513104939730000s1973    coAa          0  0  EL  d0 aadW0670504eW0670504fS394806gS394806zSite 3640 aadW0380213eW0280213fN411500gN211500zSite 1091 aWestray, Shizue10aTest Publication 2005300326naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001700172245002700189  2005420160513104939730000s1973    coAa          0  0  EL  d0 aadW0254536eW0254536fS244501gS244501zSite 2570 aadW0934339eW0634339fN451934gN251934zSite 5111 aOros, Cierra10aTest Publication 2005400330naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100002100172245002700193  2005520160513104939730000s1973    coAa          0  0  EL  d0 aadW1652138eW1652138fN004809gN004809zSite 3750 aadE0435513eE0535513fN510216gN310216zSite 2421 aBlacker, Minerva10aTest Publication 2005500329naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100002000172245002700192  2005620160513104939730000s1973    coAa          0  0  EL  d0 aadW1043920eW1043920fS011057gS011057zSite 2450 aadW0234238eW0184238fN682608gN382608zSite 4221 aLaurich, Stuart10aTest Publication 2005600328naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001900172245002700191  2005720160513104939730000s1973    coAa          0  0  EL  d0 aadW1722040eW1722040fS352841gS352841zSite 2820 aadW1665858eW1565858fN683913gN383913zSite 1871 aKarter, Marvis10aTest Publication 2005700264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2005820160513104939730000s1973    coAa          0  0  EL  d0 aadW0981303eW0981303fN194221gN194221zSite 1021 aFavela, Lorretta10aTest Publication 2005800262naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001900118245002700137  2005920160513104939730000s1973    coAa          0  0  EL  d0 aadW1612904eW1412904fS130045gS230045zSite 4881 aHultgren, Josh10aTest Publication 2005900327naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001800172245002700190  2006020160513104939730000s1973    coAa          0  0  EL  d0 aadW0960543eW0960543fS052755gS052755zSite 5170 aadW1062423eW0762423fN181516gN081516zSite 1581 aMain, Neville10aTest Publication 2006000326naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001700172245002700189  2006120160513104939730000s1973    coAa          0  0  EL  d0 aadW1681205eW1681205fN335749gN335749zSite 1440 aadW1684935eW1384935fS551611gS751611zSite 2101 aShaw, Denice10aTest Publication 2006100278naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001900134245002700153  2006220160513104939730000s1973    coAa          0  0  EL  d0 aad+72.62860542e+72.62860542f-50.0640401g-50.0640401zSite 3861 aJasik, Micaela10aTest Publication 2006200280naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002100134245002700155  2006320160513104939730000s1973    coAa          0  0  EL  d0 aad+79.53785174e+79.53785174f+6.56562911g+6.56562911zSite 1381 aRupp, Georgeanna10aTest Publication 2006300277naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001600136245002700152  2006420160513104939730000s1973    coAa          0  0  EL  d0 aad+91.40655977e+91.40655977f-68.68188538g-68.68188538zSite 3761 aSears, Meri10aTest Publication 2006400280naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002100134245002700155  2006520160513104939730000s1973    coAa          0  0  EL  d0 aad+90.5240303e+90.5240303f+16.31382075g+16.31382075zSite 2991 aWinrow, Sanjuana10aTest Publication 2006500279naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002000134245002700154  2006620160513104939730000s1973    coAa          0  0  EL  d0 aad+51.37763177e+51.37763177f+0.65207263g+0.65207263zSite 4471 aSutter, Karolyn10aTest Publication 2006600280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2006720160513104939730000s1973    coAa          0  0  EL  d0 aad+173.34512334e+173.34512334f+28.0049181g+28.0049181zSite 1541 aArechiga, Moon10aTest Publication 2006700277naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001600136245002700152  2006820160513104939730000s1973    coAa          0  0  EL  d0 aad-15.99213608e-15.99213608f+13.65438911g+13.65438911zSite 4251 aSaar, Danna10aTest Publication 2006800280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2006920160513104939730000s1973    coAa          0  0  EL  d0 aad+137.98717735e+137.98717735f-65.0442013g-65.0442013zSite 1001 aMirabito, Shin10aTest Publication 2006900278naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001700136245002700153  2007020160513104939730000s1973    coAa          0  0  EL  d0 aad-117.4711533e-117.4711533f+38.23863124g+38.23863124zSite 3651 aWalberg, Pia10aTest Publication 2007000282naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002100136245002700157  2007120160513104939730000s1973    coAa          0  0  EL  d0 aad+95.03142217e+95.03142217f-14.54137057g-14.54137057zSite 2361 aBalicki, Nicolas10aTest Publication 2007100276naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001500136245002700151  2007220160513104939730000s1973    coAa          0  0  EL  d0 aad+34.55902657e+34.55902657f-27.96661882g-27.96661882zSite 5541 aOram, Donn10aTest Publication 2007200279naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001800136245002700154  2007320160513104939730000s1973    coAa          0  0  EL  d0 aad+125.34051527e+125.34051527f+9.81883652g+9.81883652zSite 1211 aMurden, Claud10aTest Publication 2007300279naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001600138245002700154  2007420160513104939730000s1973    coAa          0  0  EL  d0 aad+110.92377605e+110.92377605f+31.06593861g+31.06593861zSite 4421 aPerla, Jong10aTest Publication 2007400284naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002100138245002700159  2007520160513104939730000s1973    coAa          0  0  EL  d0 aad+111.98924724e+111.98924724f+52.12174162g+52.12174162zSite 1501 aDobyns, Wilfredo10aTest Publication 2007500282naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002300134245002700157  2007620160513104939730000s1973    coAa          0  0  EL  d0 aad+155.34616323e+155.34616323f-7.8061926g-7.8061926zSite 3231 aGrizzell, Griselda10aTest Publication 2007600282naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002100136245002700157  2007720160513104939730000s1973    coAa          0  0  EL  d0 aad-45.37116744e-45.37116744f-45.10756474g-45.10756474zSite 1551 aSharrow, Sherron10aTest Publication 2007700279naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001800136245002700154  2007820160513104939730000s1973    coAa          0  0  EL  d0 aad-125.8758505e-125.8758505f+37.66553345g+37.66553345zSite 4951 aOverall, Lula10aTest Publication 2007800280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2007920160513104939730000s1973    coAa          0  0  EL  d0 aad-125.7131481e-125.7131481f-65.01937325g-65.01937325zSite 2721 aHersh, Sheldon10aTest Publication 2007900278naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001700136245002700153  2008020160513104939730000s1973    coAa          0  0  EL  d0 aad-167.5160645e-167.5160645f+48.54645955g+48.54645955zSite 4591 aFouche, Hsiu10aTest Publication 2008000281naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001800138245002700156  2008120160513104939730000s1973    coAa          0  0  EL  d0 aadE118.55522501eE118.55522501fS59.40043873gS59.40043873zSite 4161 aPerine, Alisa10aTest Publication 2008100280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2008220160513104939730000s1973    coAa          0  0  EL  d0 aadE19.95358751eE19.95358751fN66.64677012gN66.64677012zSite 4031 aWalter, Jasper10aTest Publication 2008200285naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002400136245002700160  2008320160513104939730000s1973    coAa          0  0  EL  d0 aadW61.22077604eW61.22077604fS26.01320081gS26.01320081zSite 3771 aGreenblatt, Sherill10aTest Publication 2008300283naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002200136245002700158  2008420160513104939730000s1973    coAa          0  0  EL  d0 aadW38.52101948eW38.52101948fN42.22226461gN42.22226461zSite 5481 aCrafts, Claudette10aTest Publication 2008400284naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002100138245002700159  2008520160513104939730000s1973    coAa          0  0  EL  d0 aadE132.70789703eE132.70789703fN38.04866994gN38.04866994zSite 1881 aCounter, Modesto10aTest Publication 2008500281naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002000136245002700156  2008620160513104939730000s1973    coAa          0  0  EL  d0 aadW89.35020317eW89.35020317fN47.93266336gN47.93266336zSite 3091 aCrowder, Carlee10aTest Publication 2008600280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2008720160513104939730000s1973    coAa          0  0  EL  d0 aadW125.32764205eW125.32764205fS4.19255958gS4.19255958zSite 3411 aJone, Federico10aTest Publication 2008700282naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002100136245002700157  2008820160513104939730000s1973    coAa          0  0  EL  d0 aadW168.93025338eW168.93025338fS6.02872258gS6.02872258zSite 2641 aSchock, Lisandra10aTest Publication 2008800282naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002300134245002700157  2008920160513104939730000s1973    coAa          0  0  EL  d0 aadW98.77347908eW98.77347908fS42.6798184gS42.6798184zSite 1191 aSpadaro, Geraldine10aTest Publication 2008900278naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001900134245002700153  2009020160513104939730000s1973    coAa          0  0  EL  d0 aadE85.8591623eE85.8591623fN66.00524174gN66.00524174zSite 3251 aSwanson, Mario10aTest Publication 2009000286naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002300138245002700161  2009120160513104939730000s1973    coAa          0  0  EL  d0 aadE137.11729029eE137.11729029fN39.84518323gN39.84518323zSite 1601 aCornforth, Desiree10aTest Publication 2009100276naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001700134245002700151  2009220160513104939730000s1973    coAa          0  0  EL  d0 aadW65.3799254eW65.3799254fS46.40296668gS46.40296668zSite 3221 aLam, Cristen10aTest Publication 2009200283naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002000138245002700158  2009320160513104939730000s1973    coAa          0  0  EL  d0 aadE176.53377147eE176.53377147fN22.77971971gN22.77971971zSite 3131 aFrankum, Thomas10aTest Publication 2009300284naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002300136245002700159  2009420160513104939730000s1973    coAa          0  0  EL  d0 aadW27.45737117eW27.45737117fS55.67694086gS55.67694086zSite 3631 aMagallon, Christia10aTest Publication 2009400282naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001900138245002700157  2009520160513104939730000s1973    coAa          0  0  EL  d0 aadE175.12324693eE175.12324693fS38.39888377gS38.39888377zSite 4401 aIverson, Beryl10aTest Publication 2009500274naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001500134245002700149  2009620160513104939730000s1973    coAa          0  0  EL  d0 aadW23.4142272eW23.4142272fN29.80880028gN29.80880028zSite 3131 aOrtiz, Tia10aTest Publication 2009600276naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001700134245002700151  2009720160513104939730000s1973    coAa          0  0  EL  d0 aadW18.33091801eW18.33091801fS6.31305738gS6.31305738zSite 3991 aBogard, Noma10aTest Publication 2009700281naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002000136245002700156  2009820160513104939730000s1973    coAa          0  0  EL  d0 aadW72.31173246eW72.31173246fS46.75721273gS46.75721273zSite 3311 aWalston, Verlie10aTest Publication 2009800281naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002000136245002700156  2009920160513104939730000s1973    coAa          0  0  EL  d0 aadW48.97356546eW48.97356546fN36.74731237gN36.74731237zSite 3291 aInnocent, Leisa10aTest Publication 2009900277naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001600136245002700152  2010020160513104939730000s1973    coAa          0  0  EL  d0 aadW91.61595667eW91.61595667fN11.85462394gN11.85462394zSite 2661 aKohn, Clora10aTest Publication 2010000280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2010120160513104939730000s1973    coAa          0  0  EL  d0 aadW99.81880793eW99.81880793fN56.31339558gN56.31339558zSite 1271 aLinney, Samual10aTest Publication 2010100283naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002000138245002700158  2010220160513104939730000s1973    coAa          0  0  EL  d0 aadW125.07883932eW125.07883932fS45.00178881gS45.00178881zSite 2591 aMerrifield, Kym10aTest Publication 2010200262naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001900118245002700137  2010320160513104939730000s1973    coAa          0  0  EL  d0 aadE0362614eE0362614fS011543gS011543zSite 1811 aBucher, Margit10aTest Publication 2010300264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2010420160513104939730000s1973    coAa          0  0  EL  d0 aadE0181242eE0181242fS291354gS291354zSite 2271 aSteenberg, Shila10aTest Publication 2010400264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2010520160513104939730000s1973    coAa          0  0  EL  d0 aadE0983727eE0983727fN682744gN682744zSite 5311 aBlacker, Minerva10aTest Publication 2010500261naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001800118245002700136  2010620160513104939730000s1973    coAa          0  0  EL  d0 aadE0963319eE0963319fN151338gN151338zSite 1301 aHanley, Karla10aTest Publication 2010600264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2010720160513104939730000s1973    coAa          0  0  EL  d0 aadW0753627eW0753627fN265359gN265359zSite 3661 aMackson, Yolanda10aTest Publication 2010700263naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002000118245002700138  2010820160513104939730000s1973    coAa          0  0  EL  d0 aadE1792143eE1792143fS752257gS752257zSite 5231 aHarrill, Mariko10aTest Publication 2010800265naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002200118245002700140  2010920160513104939730000s1973    coAa          0  0  EL  d0 aadW0953048eW0953048fS170735gS170735zSite 4021 aBehringer, Anitra10aTest Publication 2010900258naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001500118245002700133  2011020160513104939730000s1973    coAa          0  0  EL  d0 aadW1184933eW1184933fN152720gN152720zSite 3511 aRowse, Ida10aTest Publication 2011000264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2011120160513104939730000s1973    coAa          0  0  EL  d0 aadW1374144eW1374144fS081546gS081546zSite 1531 aSutter, Katheryn10aTest Publication 2011100263naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002000118245002700138  2011220160513104939730000s1973    coAa          0  0  EL  d0 aadW1705954eW1705954fS082612gS082612zSite 3541 aBeckett, Tamala10aTest Publication 2011200259naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001600118245002700134  2011320160513104939730000s1973    coAa          0  0  EL  d0 aadE0783553eE0783553fS255532gS255532zSite 4171 aBetty, Eryn10aTest Publication 2011300265naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002200118245002700140  2011420160513104939730000s1973    coAa          0  0  EL  d0 aadE1284246eE1284246fS020216gS020216zSite 2121 aLetsinger, Tamiko10aTest Publication 2011400267naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002400118245002700142  2011520160513104939730000s1973    coAa          0  0  EL  d0 aadE0521421eE0521421fS022222gS022222zSite 4701 aCantrell, Cornelius10aTest Publication 2011500260naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001700118245002700135  2011620160513104939730000s1973    coAa          0  0  EL  d0 aadE0331639eE0331639fS283049gS283049zSite 4771 aLeyva, Marie10aTest Publication 2011600265naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002200118245002700140  2011720160513104939730000s1973    coAa          0  0  EL  d0 aadE0760744eE0760744fN480042gN480042zSite 4401 aBeveridge, Albina10aTest Publication 2011700261naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001800118245002700136  2011820160513104939730000s1973    coAa          0  0  EL  d0 aadW0712539eW0712539fN295730gN295730zSite 5271 aBramhall, Ria10aTest Publication 2011800260naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001700118245002700135  2011920160513104939730000s1973    coAa          0  0  EL  d0 aadE1681553eE1681553fN524510gN524510zSite 1391 aHurt, Millie10aTest Publication 2011900260naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001700118245002700135  2012020160513104939730000s1973    coAa          0  0  EL  d0 aadW0140130eW0140130fS010120gS010120zSite 4641 aWulff, Nilsa10aTest Publication 2012000263naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002000118245002700138  2012120160513104939730000s1973    coAa          0  0  EL  d0 aadW0782218eW0782218fS753724gS753724zSite 5041 aFirth, Theressa10aTest Publication 2012100263naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002000118245002700138  2012220160513104939730000s1973    coAa          0  0  EL  d0 aadW1330422eW1330422fN034324gN034324zSite 4511 aWorster, Marita10aTest Publication 2012200265naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002200118245002700140  2012320160513104939730000s1973    coAa          0  0  EL  d0 aadW0843206eW0843206fS553424gS553424zSite 2961 aOlveda, Jenniffer10aTest Publication 2012300263naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002000118245002700138  2012420160513104939730000s1973    coAa          0  0  EL  d0 aadW1582630eW1582630fS142429gS142429zSite 2791 aMessner, Leanna10aTest Publication 2012400275naaa 2200097zu 4500001000800000005001500008008004100023034006900064100001700133245002700150  2012520160513104939730000s1973    coAa          0  0  EL  d0 aad-12.49085466e-7.49085466f+9.71187917g+4.71187917zSite 1731 aBevill, Sook10aTest Publication 2012500282naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002100136245002700157  2012620160513104939730000s1973    coAa          0  0  EL  d0 aad+71.12605143e+81.12605143f+20.40214021g+10.40214021zSite 1211 aSchock, Lisandra10aTest Publication 2012600281naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001800138245002700156  2012720160513104939730000s1973    coAa          0  0  EL  d0 aad+104.20929332e+154.20929332f+23.15670674g+13.15670674zSite 2831 aAbner, Shelli10aTest Publication 2012700282naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002100136245002700157  2012820160513104939730000s1973    coAa          0  0  EL  d0 aad-130.3358613e-90.33586126f+54.37067475g+34.37067475zSite 3061 aNecessary, Dante10aTest Publication 2012800277naaa 2200097zu 4500001000800000005001500008008004100023034007300064100001500137245002700152  2012920160513104939730000s1973    coAa          0  0  EL  d0 aad+89.51162859e+109.51162859f-22.88853952g-42.88853952zSite 1271 aAmyx, Lyle10aTest Publication 2012900281naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001800138245002700156  2013020160513104939730000s1973    coAa          0  0  EL  d0 aad+120.94552421e+130.94552421f+80.21089126g+77.21089126zSite 5191 aGranda, Isiah10aTest Publication 2013000280naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002100134245002700155  2013120160513104939730000s1973    coAa          0  0  EL  d0 aad+166.31983556e+176.31983556f-64.114475g-74.114475zSite 1291 aFavela, Lorretta10aTest Publication 2013100277naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001600136245002700152  2013220160513104939730000s1973    coAa          0  0  EL  d0 aad-33.35817709e-23.35817709f-26.04958019g-56.04958019zSite 3441 aDaub, Lloyd10aTest Publication 2013200278naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001700136245002700153  2013320160513104939730000s1973    coAa          0  0  EL  d0 aad+100.28119821e+150.28119821f-39.5929073g-79.5929073zSite 2811 aFines, Gregg10aTest Publication 2013300279naaa 2200097zu 4500001000800000005001500008008004100023034006800064100002200132245002700154  2013420160513104939730000s1973    coAa          0  0  EL  d0 aad-98.724204e-38.72420401f+40.4924143g+20.4924143zSite 4941 aWalcott, Porfirio10aTest Publication 2013400280naaa 2200097zu 4500001000800000005001500008008004100023034007300064100001800137245002700155  2013520160513104939730000s1973    coAa          0  0  EL  d0 aad-170.45022257e-156.4502226f+25.08138959g+15.08138959zSite 4151 aGranda, Isiah10aTest Publication 2013500281naaa 2200097zu 4500001000800000005001500008008004100023034007300064100001900137245002700156  2013620160513104939730000s1973    coAa          0  0  EL  d0 aad+93.74890612e+143.74890612f-13.32263614g-23.32263614zSite 2561 aCutter, Annika10aTest Publication 2013600279naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001800136245002700154  2013720160513104939730000s1973    coAa          0  0  EL  d0 aad-66.87358455e-46.87358455f+70.98897026g+50.98897026zSite 5431 aHanley, Karla10aTest Publication 2013700276naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001700134245002700151  2013820160513104939730000s1973    coAa          0  0  EL  d0 aad-172.9265117e-162.9265117f-1.47082029g-6.47082029zSite 1691 aDalke, Isiah10aTest Publication 2013800281naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002200134245002700156  2013920160513104939730000s1973    coAa          0  0  EL  d0 aad+33.61230501e+43.61230501f-4.12575355g-9.12575355zSite 3771 aBehringer, Anitra10aTest Publication 2013900281naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002000136245002700156  2014020160513104939730000s1973    coAa          0  0  EL  d0 aad+75.10477259e+95.10477259f+73.86871739g+53.86871739zSite 2831 aWilhoite, Kathi10aTest Publication 2014000282naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001900138245002700157  2014120160513104939730000s1973    coAa          0  0  EL  d0 aad+125.92523664e+135.92523664f-15.86550515g-25.86550515zSite 1841 aJasik, Micaela10aTest Publication 2014100283naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002000138245002700158  2014220160513104939730000s1973    coAa          0  0  EL  d0 aad+112.65337661e+122.65337661f+78.04277975g+68.04277975zSite 5271 aStrine, Tabitha10aTest Publication 2014200276naaa 2200097zu 4500001000800000005001500008008004100023034006900064100001800133245002700151  2014320160513104939730000s1973    coAa          0  0  EL  d0 aad-10.83945484e-5.83945484f-30.6046605g-60.6046605zSite 1311 aOverall, Lula10aTest Publication 2014300279naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002000134245002700154  2014420160513104939730000s1973    coAa          0  0  EL  d0 aad-15.53775937e-10.53775937f-46.3793589g-66.3793589zSite 2041 aMathisen, Dayle10aTest Publication 2014400281naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002000136245002700156  2014520160513104939730000s1973    coAa          0  0  EL  d0 aad-147.1524264e-127.1524264f-70.97214091g-75.97214091zSite 4281 aWilhoite, Kathi10aTest Publication 2014500278naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001700136245002700153  2014620160513104939730000s1973    coAa          0  0  EL  d0 aad+73.14760572e+93.14760572f-44.44305202g-64.44305202zSite 4881 aFines, Gregg10aTest Publication 2014600280naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001700138245002700155  2014720160513104939730000s1973    coAa          0  0  EL  d0 aadE143.91680691eE153.91680691fN69.05928016gN59.05928016zSite 2301 aKinnan, Enda10aTest Publication 2014700281naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002200134245002700156  2014820160513104939730000s1973    coAa          0  0  EL  d0 aadE109.2953057eE159.2953057fN75.6021786gN72.6021786zSite 2351 aHartfield, Shelba10aTest Publication 2014800282naaa 2200097zu 4500001000800000005001500008008004100023034007300064100002000137245002700157  2014920160513104939730000s1973    coAa          0  0  EL  d0 aadE144.81897837eE164.81897837fN18.62668817gN8.62668817zSite 2871 aSkeens, Cordell10aTest Publication 2014900278naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001700136245002700153  2015020160513104939730000s1973    coAa          0  0  EL  d0 aadW115.49585203eW85.49585203fN19.56564384gN9.56564384zSite 4151 aHove, Armand10aTest Publication 2015000280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2015120160513104939730000s1973    coAa          0  0  EL  d0 aadW32.63289449eW22.63289449fS55.38513226gS75.38513226zSite 1201 aHaugh, Winford10aTest Publication 2015100279naaa 2200097zu 4500001000800000005001500008008004100023034007300064100001700137245002700154  2015220160513104939730000s1973    coAa          0  0  EL  d0 aadE87.77332672eE107.77332672fS54.25951534gS74.25951534zSite 3431 aValois, Arie10aTest Publication 2015200279naaa 2200097zu 4500001000800000005001500008008004100023034006800064100002200132245002700154  2015320160513104939730000s1973    coAa          0  0  EL  d0 aadW32.8377449eW22.8377449fS3.09135927gS8.09135927zSite 4141 aMcclaran, Kathern10aTest Publication 2015300277naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001800134245002700152  2015420160513104939730000s1973    coAa          0  0  EL  d0 aadE34.4627201eE44.4627201fN23.51119899gN13.51119899zSite 3351 aHeinrich, See10aTest Publication 2015400282naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002100136245002700157  2015520160513104939730000s1973    coAa          0  0  EL  d0 aadE11.25085415eE16.25085415fN62.44255328gN42.44255328zSite 3801 aSteenberg, Shila10aTest Publication 2015500278naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001700136245002700153  2015620160513104939730000s1973    coAa          0  0  EL  d0 aadE35.02387108eE45.02387108fN51.72426854gN31.72426854zSite 1231 aNiccum, Alex10aTest Publication 2015600284naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002100138245002700159  2015720160513104939730000s1973    coAa          0  0  EL  d0 aadE115.38134036eE145.38134036fS21.96462606gS41.96462606zSite 3801 aRussom, Clorinda10aTest Publication 2015700278naaa 2200097zu 4500001000800000005001500008008004100023034006600064100002300130245002700153  2015820160513104939730000s1973    coAa          0  0  EL  d0 aadW79.5685706eW59.5685706fS3.2186524gS8.2186524zSite 4461 aMontanye, Criselda10aTest Publication 2015800280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2015920160513104939730000s1973    coAa          0  0  EL  d0 aadE78.87843097eE98.87843097fS24.09348392gS44.09348392zSite 3721 aGalasso, Tatum10aTest Publication 2015900283naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002000138245002700158  2016020160513104939730000s1973    coAa          0  0  EL  d0 aadW179.09659396eW119.09659396fS39.32213026gS79.32213026zSite 4631 aLiptak, Caitlin10aTest Publication 2016000282naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001900138245002700157  2016120160513104939730000s1973    coAa          0  0  EL  d0 aadW163.27020238eW113.27020238fS36.75458726gS76.75458726zSite 1621 aGaetano, Dedra10aTest Publication 2016100261naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001800118245002700136  2016220160513104939730000s1973    coAa          0  0  EL  d0 aadE1114626eE1214626fN752639gN452639zSite 4161 aTorian, Belva10aTest Publication 2016200262naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001900118245002700137  2016320160513104939730000s1973    coAa          0  0  EL  d0 aadE0285018eE0335018fN271418gN171418zSite 2191 aMirabito, Shin10aTest Publication 2016300266naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002300118245002700141  2016420160513104939730000s1973    coAa          0  0  EL  d0 aadE0330550eE0430550fN471910gN271910zSite 1651 aSpadaro, Geraldine10aTest Publication 2016400265naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002200118245002700140  2016520160513104939730000s1973    coAa          0  0  EL  d0 aadW0501321eW0401321fN053851gN003851zSite 4651 aHartfield, Shelba10aTest Publication 2016500259naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001600118245002700134  2016620160513104939730000s1973    coAa          0  0  EL  d0 aadE1541338eE1641338fS053823gS103823zSite 2621 aDaub, Lloyd10aTest Publication 2016600262naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001900118245002700137  2016720160513104939730000s1973    coAa          0  0  EL  d0 aadW0722141eW0522141fS223403gS423403zSite 5141 aCutter, Annika10aTest Publication 2016700264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2016820160513104939730000s1973    coAa          0  0  EL  d0 aadW0053928eW0003928fS472308gS772308zSite 1971 aErickson, Joette10aTest Publication 2016800264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2016920160513104939730000s1973    coAa          0  0  EL  d0 aadW0675444eW0475444fN571945gN271945zSite 2791 aSharrow, Sherron10aTest Publication 2016900261naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001800118245002700136  2017020160513104939730000s1973    coAa          0  0  EL  d0 aadE1064421eE1564421fN402522gN202522zSite 1701 aVidrio, Sofia10aTest Publication 2017000261naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001800118245002700136  2017120160513104939730000s1973    coAa          0  0  EL  d0 aadW1254938eW0854938fN511735gN311735zSite 5101 aHeinrich, See10aTest Publication 2017100261naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001800118245002700136  2017220160513104939730000s1973    coAa          0  0  EL  d0 aadW1344729eW0944729fN051424gN001424zSite 5111 aBoyland, Bebe10aTest Publication 2017200263naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002000118245002700138  2017320160513104939730000s1973    coAa          0  0  EL  d0 aadE0932835eE1432835fS175621gS375621zSite 2151 aStrine, Tabitha10aTest Publication 2017300262naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001900118245002700137  2017420160513104939730000s1973    coAa          0  0  EL  d0 aadE1701912eE1751912fS073104gS123104zSite 1931 aBornstein, Dia10aTest Publication 2017400266naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002300118245002700141  2017520160513104939730000s1973    coAa          0  0  EL  d0 aadW1362047eW0962047fS250039gS550039zSite 4111 aGrizzell, Griselda10aTest Publication 2017500264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2017620160513104939730000s1973    coAa          0  0  EL  d0 aadW0545835eW0445835fS450010gS650010zSite 5091 aFalzone, Natasha10aTest Publication 2017600259naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001600118245002700134  2017720160513104939730000s1973    coAa          0  0  EL  d0 aadE1455446eE1555446fS373045gS773045zSite 3521 aJaco, Angle10aTest Publication 20177
\ No newline at end of file
+00362naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007000138100001700208245002700225  2000120160513104939730000s1973    coAa          0  0  EL  d0 aad+129.95348029e+129.95348029f-55.29356577g-55.29356577zSite 3740 aad+92.58856498e+92.58856498f+35.0285559g+35.0285559zSite 4511 aHurt, Millie10aTest Publication 2000100364naaa 2200109zu 4500001000800000005001500008008004100023034007000064034007200134100002100206245002700227  2000220160513104939730000s1973    coAa          0  0  EL  d0 aad+10.05908843e+10.05908843f-5.75031466g-5.75031466zSite 4400 aad+46.45283977e+46.45283977f+31.50720239g+31.50720239zSite 4471 aWinrow, Sanjuana10aTest Publication 2000200360naaa 2200109zu 4500001000800000005001500008008004100023034007200064034007200136100001500208245002700223  2000320160513104939730000s1973    coAa          0  0  EL  d0 aad-35.26826575e-35.26826575f+27.26620523g+27.26620523zSite 4000 aad-15.10285454e-15.10285454f+14.80524368g+14.80524368zSite 1631 aRudd, Jann10aTest Publication 2000300613naaa 2200145zu 4500001000800000005001500008008004100023034007200064034007200136034006600208034007400274034007200348100002000420245002700440  2000420160513104939730000s1973    coAa          0  0  EL  d0 aad-56.86690649e-56.86690649f+15.77554895g+15.77554895zSite 4790 aad+159.74574799e+159.74574799f-20.9661451g-20.9661451zSite 4340 aad+7.9676261e+7.9676261f+6.62658415g+6.62658415zSite 4480 aad+135.37478775e+135.37478775f+46.27024658g+46.27024658zSite 5530 aad-105.9279514e-105.9279514f+35.25445142g+35.25445142zSite 3061 aWalston, Verlie10aTest Publication 2000400526naaa 2200133zu 4500001000800000005001500008008004100023034007200064034007200136034006600208034007200274100001900346245002700365  2000520160513104939730000s1973    coAa          0  0  EL  d0 aad+83.63104693e+83.63104693f+21.46845472g+21.46845472zSite 3140 aad+156.17691966e+156.17691966f-9.22226407g-9.22226407zSite 1400 aad-7.6873641e-7.6873641f+49.3997425g+49.3997425zSite 1050 aad-85.11852582e-85.11852582f-32.54764684g-32.54764684zSite 2661 aPakele, Marina10aTest Publication 2000500365naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007000138100002000208245002700228  2000620160513104939730000s1973    coAa          0  0  EL  d0 aadE119.53888243eE119.53888243fN62.91327942gN62.91327942zSite 2550 aadE67.8057745eE67.8057745fN36.44414008gN36.44414008zSite 5461 aMcglasson, Rich10aTest Publication 2000600627naaa 2200145zu 4500001000800000005001500008008004100023034007400064034007400138034007200212034007400284034007400358100002200432245002700454  2000720160513104939730000s1973    coAa          0  0  EL  d0 aadE121.59566053eE121.59566053fN23.86811097gN23.86811097zSite 3610 aadE151.51785078eE151.51785078fN13.91875447gN13.91875447zSite 1050 aadW86.72014286eW86.72014286fS10.73770388gS10.73770388zSite 4880 aadE134.89543887eE134.89543887fN25.94241103gN25.94241103zSite 2060 aadE161.78292166eE161.78292166fN10.15327259gN10.15327259zSite 3501 aRottman, Serafina10aTest Publication 2000700621naaa 2200145zu 4500001000800000005001500008008004100023034007400064034007400138034007200212034007200284034007200356100002000428245002700448  2000820160513104939730000s1973    coAa          0  0  EL  d0 aadW103.57340238eW103.57340238fS22.78804289gS22.78804289zSite 2170 aadW175.68166135eW175.68166135fS69.41361345gS69.41361345zSite 4970 aadE48.51599542eE48.51599542fS58.33629524gS58.33629524zSite 3550 aadE65.04196038eE65.04196038fN32.99243302gN32.99243302zSite 4860 aadW111.45384173eW111.45384173fS7.22546191gS7.22546191zSite 1131 aHaberle, Manuel10aTest Publication 2000800616naaa 2200145zu 4500001000800000005001500008008004100023034007000064034007000134034007400204034007200278034007000350100002300420245002700443  2000920160513104939730000s1973    coAa          0  0  EL  d0 aadE1.55144883eE1.55144883fS15.91268613gS15.91268613zSite 4710 aadE0.46771867eE0.46771867fS53.88776866gS53.88776866zSite 1390 aadE120.96526676eE120.96526676fN22.40092028gN22.40092028zSite 2390 aadW43.86881638eW43.86881638fS29.38831583gS29.38831583zSite 1970 aadW158.26944205eW158.26944205fS0.7378453gS0.7378453zSite 3941 aRuvalcaba, Letisha10aTest Publication 2000900326naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001700172245002700189  2001020160513104939730000s1973    coAa          0  0  EL  d0 aadE0870709eE0870709fS065613gS065613zSite 1200 aadE1242258eE1242258fS110713gS110713zSite 2231 aBogard, Noma10aTest Publication 2001000525naaa 2200145zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226034005400280100001800334245002700352  2001120160513104939730000s1973    coAa          0  0  EL  d0 aadE0025331eE0025331fS493930gS493930zSite 3010 aadE0013038eE0013038fN444623gN444623zSite 1560 aadW0483141eW0483141fS452235gS452235zSite 4630 aadW0703406eW0703406fS373129gS373129zSite 3630 aadW1172630eW1172630fN661503gN661503zSite 3931 aPutman, Davis10aTest Publication 2001100526naaa 2200145zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226034005400280100001900334245002700353  2001220160513104939730000s1973    coAa          0  0  EL  d0 aadE1741450eE1741450fN154310gN154310zSite 5490 aadW0570821eW0570821fS415337gS415337zSite 2360 aadE1773647eE1773647fS330258gS330258zSite 4620 aadE0710915eE0710915fN400408gN400408zSite 3550 aadW0401638eW0401638fN093759gN093759zSite 5471 aBucher, Margit10aTest Publication 2001200528naaa 2200145zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226034005400280100002100334245002700355  2001320160513104939730000s1973    coAa          0  0  EL  d0 aadW1511513eW1511513fS055042gS055042zSite 1050 aadW1465931eW1465931fS261609gS261609zSite 4840 aadW0790538eW0790538fS512156gS512156zSite 5440 aadW1415343eW1415343fS185901gS185901zSite 4230 aadW1304431eW1304431fS502042gS502042zSite 1291 aDobyns, Wilfredo10aTest Publication 2001300463naaa 2200133zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226100002200280245002700302  2001420160513104939730000s1973    coAa          0  0  EL  d0 aadE1742335eE1742335fN191726gN191726zSite 2130 aadW1570705eW1570705fN435341gN435341zSite 5090 aadW1020233eW1020233fN203933gN203933zSite 2910 aadW1290413eW1290413fS691417gS691417zSite 2251 aMilbourne, Milton10aTest Publication 2001400328naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001900172245002700191  2001520160513104939730000s1973    coAa          0  0  EL  d0 aadW0755517eW0755517fN151326gN151326zSite 3270 aadW0932259eW0932259fN020021gN020021zSite 1521 aMirsky, Dionna10aTest Publication 2001500536naaa 2200133zu 4500001000800000005001500008008004100023034007400064034007400138034007100212034007200283100002000355245002700375  2001620160513104939730000s1973    coAa          0  0  EL  d0 aad+100.64194149e+150.64194149f+76.29679349g+46.29679349zSite 3250 aad+140.41485857e+150.41485857f-59.57999928g-69.57999928zSite 1980 aad-14.23933962e-9.23933962f-27.72727724g-57.72727724zSite 3170 aad-175.1864435e-172.1864435f-10.03581345g-20.03581345zSite 1721 aInnocent, Leisa10aTest Publication 2001600615naaa 2200145zu 4500001000800000005001500008008004100023034006800064034007100132034007200203034007200275034007200347100002300419245002700442  2001720160513104939730000s1973    coAa          0  0  EL  d0 aad-165.6004414e-115.6004414f-14.509653g-24.509653zSite 2190 aad-172.2069375e-132.2069375f+10.76133978g+5.76133978zSite 2500 aad-162.8898108e-142.8898108f-15.07237354g-25.07237354zSite 5040 aad+71.03685744e+81.03685744f-66.09831516g-76.09831516zSite 1810 aad-160.1490595e-140.1490595f+68.15731704g+58.15731704zSite 4201 aCornforth, Desiree10aTest Publication 2001700613naaa 2200145zu 4500001000800000005001500008008004100023034007000064034007200134034007000206034007200276034007300348100001900421245002700440  2001820160513104939730000s1973    coAa          0  0  EL  d0 aad-91.5895638e-61.5895638f+74.14618546g+44.14618546zSite 1140 aad+64.41336345e+74.41336345f+79.74325176g+49.74325176zSite 1270 aad-7.44081494e-2.44081494f+68.18607023g+58.18607023zSite 1210 aad-170.1177443e-130.1177443f-63.43626229g-73.43626229zSite 4440 aad+95.39073945e+145.39073945f+42.45583955g+22.45583955zSite 2461 aKarter, Marvis10aTest Publication 2001800441naaa 2200121zu 4500001000800000005001500008008004100023034006800064034007000132034007200202100001800274245002700292  2001920160513104939730000s1973    coAa          0  0  EL  d0 aad+10.5670584e+15.5670584f-21.6083379g-41.6083379zSite 2070 aad+41.53787448e+51.53787448f+77.9847143g+57.9847143zSite 5480 aad+129.0839142e+139.0839142f+78.85096117g+68.85096117zSite 2721 aClaro, Bobbie10aTest Publication 2001900620naaa 2200145zu 4500001000800000005001500008008004100023034007400064034006900138034007200207034007400279034007400353100002000427245002700447  2002020160513104939730000s1973    coAa          0  0  EL  d0 aadW163.70412537eW143.70412537fN23.98046062gN13.98046062zSite 2460 aadW37.45857716eW27.45857716fN11.7990193gN6.7990193zSite 4110 aadW92.34562344eW62.34562344fS25.81496714gS55.81496714zSite 4880 aadE144.53537717eE174.53537717fS28.13599649gS58.13599649zSite 5160 aadW177.82278613eW117.82278613fS32.33211767gS62.33211767zSite 2831 aBeckett, Tamala10aTest Publication 2002000364naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007200138100001700210245002700227  2002120160513104939730000s1973    coAa          0  0  EL  d0 aadE114.22094565eE144.22094565fS37.22983935gS77.22983935zSite 4160 aadW167.75647806eW147.75647806fN8.67140253gN3.67140253zSite 3961 aLam, Cristen10aTest Publication 2002100528naaa 2200133zu 4500001000800000005001500008008004100023034007200064034007200136034007200208034007000280100001700350245002700367  2002220160513104939730000s1973    coAa          0  0  EL  d0 aadW97.44010063eW67.44010063fN69.57202273gN39.57202273zSite 3650 aadW79.40943037eW59.40943037fN63.76345804gN43.76345804zSite 2300 aadW103.46816014eW73.46816014fS9.60188743gS14.60188743zSite 2350 aadW16.35276413eW11.35276413fS4.27200773gS9.27200773zSite 2451 aDalke, Isiah10aTest Publication 2002200618naaa 2200145zu 4500001000800000005001500008008004100023034007400064034007200138034007400210034007200284034007400356100001500430245002700445  2002320160513104939730000s1973    coAa          0  0  EL  d0 aadE127.23972147eE137.23972147fN63.12317768gN43.12317768zSite 2080 aadE129.15557267eE149.15557267fN45.7443194gN25.7443194zSite 1020 aadW151.73434552eW101.73434552fS55.73496457gS75.73496457zSite 1080 aadE54.94955124eE64.94955124fS34.71609174gS64.71609174zSite 5370 aadE106.81774118eE156.81774118fS29.05905321gS59.05905321zSite 4111 aOram, Donn10aTest Publication 2002300367naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007100138100002100209245002700230  2002420160513104939730000s1973    coAa          0  0  EL  d0 aadE129.86022987eE149.86022987fN51.68020143gN31.68020143zSite 4760 aadE5.86815575eE15.86815575fN60.95617804gN40.95617804zSite 1761 aRupp, Georgeanna10aTest Publication 2002400450naaa 2200121zu 4500001000800000005001500008008004100023034007400064034007200138034007200210100001900282245002700301  2002520160513104939730000s1973    coAa          0  0  EL  d0 aadW156.11673622eW106.11673622fN78.32587133gN68.32587133zSite 3370 aadE47.92289733eE57.92289733fN77.17739015gN67.17739015zSite 1040 aadW32.89273609eW22.89273609fS40.70960814gS60.70960814zSite 4531 aWalter, Jasper10aTest Publication 2002500532naaa 2200133zu 4500001000800000005001500008008004100023034007300064034007400137034007300211034006800284100001900352245002700371  2002620160513104939730000s1973    coAa          0  0  EL  d0 aadE96.70798372eE146.70798372fN54.00011075gN34.00011075zSite 2710 aadE145.51684204eE165.51684204fN27.98976019gN17.98976019zSite 2660 aadW106.32772299eW76.32772299fN46.24201475gN26.24201475zSite 2860 aadE20.1511411eE25.1511411fN6.07910182gN1.07910182zSite 2421 aHultgren, Josh10aTest Publication 2002600328naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001900172245002700191  2002720160513104939730000s1973    coAa          0  0  EL  d0 aadW0170403eW0120403fN755211gN455211zSite 4560 aadW1740209eW1340209fN794749gN694749zSite 3851 aGalasso, Tatum10aTest Publication 2002700333naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100002400172245002700196  2002820160513104939730000s1973    coAa          0  0  EL  d0 aadE0710106eE0810106fS111308gS211308zSite 5310 aadE0132703eE0182703fN541236gN341236zSite 3481 aCantrell, Cornelius10aTest Publication 2002800399naaa 2200121zu 4500001000800000005001500008008004100023034005400064034005400118034005400172100002400226245002700250  2002920160513104939730000s1973    coAa          0  0  EL  d0 aadW1693838eW1193838fN122531gN072531zSite 4150 aadE0844331eE1044331fS693723gS793723zSite 1320 aadE0062611eE0162611fN681512gN381512zSite 5031 aGreenblatt, Sherill10aTest Publication 2002900327naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001800172245002700190  2003020160513104939730000s1973    coAa          0  0  EL  d0 aadE1053451eE1553451fS183256gS383256zSite 2870 aadE0830412eE1030412fS174644gS374644zSite 1801 aPerine, Alisa10aTest Publication 2003000393naaa 2200121zu 4500001000800000005001500008008004100023034005400064034005400118034005400172100001800226245002700244  2003120160513104939730000s1973    coAa          0  0  EL  d0 aadE0202657eE0252657fS470042gS770042zSite 2360 aadW1594422eW1094422fS562802gS762802zSite 4950 aadW0254325eW0204325fS591429gS691429zSite 3241 aSuen, Lanette10aTest Publication 2003100460naaa 2200133zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226100001900280245002700299  2003220160513104939730000s1973    coAa          0  0  EL  d0 aadW1331944eW0931944fN402114gN202114zSite 3060 aadW1780423eW1700423fN584511gN284511zSite 4340 aadW1600712eW1500712fN454326gN254326zSite 3810 aadW1752336eW1652336fN731737gN631737zSite 5211 aIverson, Beryl10aTest Publication 2003200459naaa 2200133zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226100001800280245002700298  2003320160513104939730000s1973    coAa          0  0  EL  d0 aadE1423151eE1523151fS521748gS721748zSite 2580 aadW1691508eW1391508fS131306gS231306zSite 5220 aadE1345235eE1745235fS630056gS730056zSite 3540 aadW1640324eW1140324fS330005gS630005zSite 1441 aBoyland, Bebe10aTest Publication 2003300394naaa 2200121zu 4500001000800000005001500008008004100023034005400064034005400118034005400172100001900226245002700245  2003420160513104939730000s1973    coAa          0  0  EL  d0 aadE1590126eE1690126fS341136gS641136zSite 3030 aadW1054117eW0754117fS354552gS754552zSite 3730 aadW0994125eW0694125fS434119gS634119zSite 3551 aArechiga, Moon10aTest Publication 2003400457naaa 2200133zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226100001600280245002700296  2003520160513104939730000s1973    coAa          0  0  EL  d0 aadW1405617eW1205617fS555856gS755856zSite 4800 aadE1073429eE1573429fS022601gS072601zSite 3730 aadE0913431eE1011343fS422933gS622933zSite 5360 aadE1131855eE1231855fS682514gS782514zSite 3241 aRozar, Josh10aTest Publication 2003500521naaa 2200133zu 4500001000800000005001500008008004100023034006800064034007200132034006800204034007000272100001800342245002700360  2003620160513104939730000s1973    coAa          0  0  EL  d0 aad-169.415256e-169.415256f+29.8815696g+29.8815696zSite 5600 aad-151.5560527e-151.5560527f-36.13307132g-36.13307132zSite 2020 aad-87.4479458e-87.4479458f+9.11816125g+9.11816125zSite 5400 aad-149.4183832e-149.4183832f+29.1541857g+29.1541857zSite 5571 aGuynn, Mayola10aTest Publication 2003600366naaa 2200109zu 4500001000800000005001500008008004100023034007200064034007200136100002100208245002700229  2003720160513104939730000s1973    coAa          0  0  EL  d0 aad+86.55263228e+86.55263228f-28.95862432g-28.95862432zSite 1680 aad-149.3464366e-129.3464366f+27.28202333g+17.28202333zSite 1341 aEngelhard, Marco10aTest Publication 2003700366naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007200138100001900210245002700229  2003820160513104939730000s1973    coAa          0  0  EL  d0 aad+118.90296884e+118.90296884f+27.65389383g+27.65389383zSite 3970 aad-135.3498909e-95.34989087f+60.71524151g+40.71524151zSite 2231 aBornstein, Dia10aTest Publication 2003800363naaa 2200109zu 4500001000800000005001500008008004100023034007000064034007200134100002000206245002700226  2003920160513104939730000s1973    coAa          0  0  EL  d0 aad+15.7081159e+15.7081159f+10.51847859g+10.51847859zSite 1540 aad-65.34590317e-45.34590317f-16.22908424g-36.22908424zSite 4341 aMathisen, Dayle10aTest Publication 2003900356naaa 2200109zu 4500001000800000005001500008008004100023034007000064034007000134100001500204245002700219  2004020160513104939730000s1973    coAa          0  0  EL  d0 aad+120.07557262e+120.07557262f-7.8300017g-7.8300017zSite 4600 aad-78.33685724e-58.33685724f-20.7677353g-40.7677353zSite 3351 aOrtiz, Tia10aTest Publication 2004000370naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007200138100002300210245002700233  2004120160513104939730000s1973    coAa          0  0  EL  d0 aad+179.11624407e+179.11624407f+49.45597061g+49.45597061zSite 1290 aad+18.65135762e+23.65135762f+75.67582839g+65.67582839zSite 3251 aSteffensen, Bianca10aTest Publication 2004100365naaa 2200109zu 4500001000800000005001500008008004100023034007200064034007200136100002000208245002700228  2004220160513104939730000s1973    coAa          0  0  EL  d0 aad-69.44473478e-69.44473478f+16.37800971g+16.37800971zSite 5180 aad-31.50294667e-21.50294667f-31.33882964g-61.33882964zSite 3511 aLaurich, Stuart10aTest Publication 2004200369naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007200138100002200210245002700232  2004320160513104939730000s1973    coAa          0  0  EL  d0 aad+154.29238217e+154.29238217f-50.92756335g-50.92756335zSite 2970 aad-66.00381134e-46.00381134f-41.48033844g-61.48033844zSite 1781 aBeveridge, Albina10aTest Publication 2004300367naaa 2200109zu 4500001000800000005001500008008004100023034007000064034007400134100002200208245002700230  2004420160513104939730000s1973    coAa          0  0  EL  d0 aadE24.1857034eE24.1857034fS66.87278415gS66.87278415zSite 1290 aadW166.03284101eW156.03284101fN65.01324719gN35.01324719zSite 3991 aLetsinger, Tamiko10aTest Publication 2004400366naaa 2200109zu 4500001000800000005001500008008004100023034007000064034007400134100002100208245002700229  2004520160513104939730000s1973    coAa          0  0  EL  d0 aadE25.0293899eE25.0293899fS12.28047561gS12.28047561zSite 5060 aadW169.45170238eW119.45170238fN38.14274122gN18.14274122zSite 1251 aCounter, Modesto10aTest Publication 2004500531naaa 2200133zu 4500001000800000005001500008008004100023034007200064034007200136034007200208034007300280100001700353245002700370  2004620160513104939730000s1973    coAa          0  0  EL  d0 aadE86.99902059eE86.99902059fS41.27856855gS41.27856855zSite 3990 aadE133.71880822eE143.71880822fN8.13138602gN3.13138602zSite 4030 aadE171.49599516eE171.49599516fS56.3556026gS56.3556026zSite 1530 aadE119.63111094eE169.63111094fN11.62690851gN6.62690851zSite 1201 aValois, Arie10aTest Publication 2004600528naaa 2200133zu 4500001000800000005001500008008004100023034006800064034007200132034007200204034007400276100001700350245002700367  2004720160513104939730000s1973    coAa          0  0  EL  d0 aadW23.6918351eW23.6918351fN5.50055924gN5.50055924zSite 4950 aadW71.72678006eW51.72678006fN80.68048573gN72.68048573zSite 4190 aadW72.47081023eW72.47081023fS13.50689659gS13.50689659zSite 5050 aadW159.51582506eW109.51582506fS12.01041499gS22.01041499zSite 3211 aGiard, Dodie10aTest Publication 2004700364naaa 2200109zu 4500001000800000005001500008008004100023034007200064034007200136100001900208245002700227  2004820160513104939730000s1973    coAa          0  0  EL  d0 aadW98.39221287eW98.39221287fN20.00645186gN20.00645186zSite 1400 aadW35.22129012eW25.22129012fS11.27828226gS21.27828226zSite 1821 aDryer, Verlene10aTest Publication 2004800365naaa 2200109zu 4500001000800000005001500008008004100023034007400064034007400138100001600212245002700228  2004920160513104939730000s1973    coAa          0  0  EL  d0 aadW126.87139449eW126.87139449fS18.74530167gS18.74530167zSite 4470 aadW159.94018465eW109.94018465fS57.54337933gS67.54337933zSite 4601 aKohn, Clora10aTest Publication 2004900366naaa 2200109zu 4500001000800000005001500008008004100023034007200064034007200136100002100208245002700229  2005020160513104939730000s1973    coAa          0  0  EL  d0 aadW159.88627958eW109.88627958fS3.02307754gS8.02307754zSite 3560 aadE109.5707309eE119.5707309fS48.38262915gS78.38262915zSite 5401 aSutter, Katheryn10aTest Publication 2005000358naaa 2200109zu 4500001000800000005001500008008004100023034007000064034007000134100001700204245002700221  2005120160513104939730000s1973    coAa          0  0  EL  d0 aadE19.87166027eE24.87166027fS35.8561532gS75.8561532zSite 3760 aadE71.3886803eE81.3886803fS25.17975703gS55.17975703zSite 1071 aWalberg, Pia10aTest Publication 2005100590naaa 2200157zu 4500001000800000005001500008008004100023034005400064034005400118034005400172034005400226034005400280034005400334100001700388245002700405  2005220160513104939730000s1973    coAa          0  0  EL  d0 aadE0475840eE0475840fN315244gN315244zSite 3620 aadE0250120eE0250120fS051344gS051344zSite 4610 aadE0392838eE0392838fN123637gN123637zSite 3470 aadW0041819eW0041819fN670212gN670212zSite 3540 aadW0514641eW0514641fS325055gS325055zSite 5520 aadW0532607eW0432607fN401312gN201312zSite 2221 aHove, Armand10aTest Publication 2005200329naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100002000172245002700192  2005320160513104939730000s1973    coAa          0  0  EL  d0 aadW0670504eW0670504fS394806gS394806zSite 3640 aadW0380213eW0280213fN411500gN211500zSite 1091 aWestray, Shizue10aTest Publication 2005300326naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001700172245002700189  2005420160513104939730000s1973    coAa          0  0  EL  d0 aadW0254536eW0254536fS244501gS244501zSite 2570 aadW0934339eW0634339fN451934gN251934zSite 5111 aOros, Cierra10aTest Publication 2005400330naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100002100172245002700193  2005520160513104939730000s1973    coAa          0  0  EL  d0 aadW1652138eW1652138fN004809gN004809zSite 3750 aadE0435513eE0535513fN510216gN310216zSite 2421 aBlacker, Minerva10aTest Publication 2005500329naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100002000172245002700192  2005620160513104939730000s1973    coAa          0  0  EL  d0 aadW1043920eW1043920fS011057gS011057zSite 2450 aadW0234238eW0184238fN682608gN382608zSite 4221 aLaurich, Stuart10aTest Publication 2005600328naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001900172245002700191  2005720160513104939730000s1973    coAa          0  0  EL  d0 aadW1722040eW1722040fS352841gS352841zSite 2820 aadW1665858eW1565858fN683913gN383913zSite 1871 aKarter, Marvis10aTest Publication 2005700264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2005820160513104939730000s1973    coAa          0  0  EL  d0 aadW0981303eW0981303fN194221gN194221zSite 1021 aFavela, Lorretta10aTest Publication 2005800262naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001900118245002700137  2005920160513104939730000s1973    coAa          0  0  EL  d0 aadW1612904eW1412904fS130045gS230045zSite 4881 aHultgren, Josh10aTest Publication 2005900327naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001800172245002700190  2006020160513104939730000s1973    coAa          0  0  EL  d0 aadW0960543eW0960543fS052755gS052755zSite 5170 aadW1062423eW0762423fN181516gN081516zSite 1581 aMain, Neville10aTest Publication 2006000326naaa 2200109zu 4500001000800000005001500008008004100023034005400064034005400118100001700172245002700189  2006120160513104939730000s1973    coAa          0  0  EL  d0 aadW1681205eW1681205fN335749gN335749zSite 1440 aadW1684935eW1384935fS551611gS751611zSite 2101 aShaw, Denice10aTest Publication 2006100278naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001900134245002700153  2006220160513104939730000s1973    coAa          0  0  EL  d0 aad+72.62860542e+72.62860542f-50.0640401g-50.0640401zSite 3861 aJasik, Micaela10aTest Publication 2006200280naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002100134245002700155  2006320160513104939730000s1973    coAa          0  0  EL  d0 aad+79.53785174e+79.53785174f+6.56562911g+6.56562911zSite 1381 aRupp, Georgeanna10aTest Publication 2006300277naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001600136245002700152  2006420160513104939730000s1973    coAa          0  0  EL  d0 aad+91.40655977e+91.40655977f-68.68188538g-68.68188538zSite 3761 aSears, Meri10aTest Publication 2006400280naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002100134245002700155  2006520160513104939730000s1973    coAa          0  0  EL  d0 aad+90.5240303e+90.5240303f+16.31382075g+16.31382075zSite 2991 aWinrow, Sanjuana10aTest Publication 2006500279naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002000134245002700154  2006620160513104939730000s1973    coAa          0  0  EL  d0 aad+51.37763177e+51.37763177f+0.65207263g+0.65207263zSite 4471 aSutter, Karolyn10aTest Publication 2006600280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2006720160513104939730000s1973    coAa          0  0  EL  d0 aad+173.34512334e+173.34512334f+28.0049181g+28.0049181zSite 1541 aArechiga, Moon10aTest Publication 2006700277naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001600136245002700152  2006820160513104939730000s1973    coAa          0  0  EL  d0 aad-15.99213608e-15.99213608f+13.65438911g+13.65438911zSite 4251 aSaar, Danna10aTest Publication 2006800280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2006920160513104939730000s1973    coAa          0  0  EL  d0 aad+137.98717735e+137.98717735f-65.0442013g-65.0442013zSite 1001 aMirabito, Shin10aTest Publication 2006900278naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001700136245002700153  2007020160513104939730000s1973    coAa          0  0  EL  d0 aad-117.4711533e-117.4711533f+38.23863124g+38.23863124zSite 3651 aWalberg, Pia10aTest Publication 2007000282naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002100136245002700157  2007120160513104939730000s1973    coAa          0  0  EL  d0 aad+95.03142217e+95.03142217f-14.54137057g-14.54137057zSite 2361 aBalicki, Nicolas10aTest Publication 2007100276naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001500136245002700151  2007220160513104939730000s1973    coAa          0  0  EL  d0 aad+34.55902657e+34.55902657f-27.96661882g-27.96661882zSite 5541 aOram, Donn10aTest Publication 2007200279naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001800136245002700154  2007320160513104939730000s1973    coAa          0  0  EL  d0 aad+125.34051527e+125.34051527f+9.81883652g+9.81883652zSite 1211 aMurden, Claud10aTest Publication 2007300279naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001600138245002700154  2007420160513104939730000s1973    coAa          0  0  EL  d0 aad+110.92377605e+110.92377605f+31.06593861g+31.06593861zSite 4421 aPerla, Jong10aTest Publication 2007400284naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002100138245002700159  2007520160513104939730000s1973    coAa          0  0  EL  d0 aad+111.98924724e+111.98924724f+52.12174162g+52.12174162zSite 1501 aDobyns, Wilfredo10aTest Publication 2007500282naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002300134245002700157  2007620160513104939730000s1973    coAa          0  0  EL  d0 aad+155.34616323e+155.34616323f-7.8061926g-7.8061926zSite 3231 aGrizzell, Griselda10aTest Publication 2007600282naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002100136245002700157  2007720160513104939730000s1973    coAa          0  0  EL  d0 aad-45.37116744e-45.37116744f-45.10756474g-45.10756474zSite 1551 aSharrow, Sherron10aTest Publication 2007700279naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001800136245002700154  2007820160513104939730000s1973    coAa          0  0  EL  d0 aad-125.8758505e-125.8758505f+37.66553345g+37.66553345zSite 4951 aOverall, Lula10aTest Publication 2007800280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2007920160513104939730000s1973    coAa          0  0  EL  d0 aad-125.7131481e-125.7131481f-65.01937325g-65.01937325zSite 2721 aHersh, Sheldon10aTest Publication 2007900278naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001700136245002700153  2008020160513104939730000s1973    coAa          0  0  EL  d0 aad-167.5160645e-167.5160645f+48.54645955g+48.54645955zSite 4591 aFouche, Hsiu10aTest Publication 2008000281naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001800138245002700156  2008120160513104939730000s1973    coAa          0  0  EL  d0 aadE118.55522501eE118.55522501fS59.40043873gS59.40043873zSite 4161 aPerine, Alisa10aTest Publication 2008100280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2008220160513104939730000s1973    coAa          0  0  EL  d0 aadE19.95358751eE19.95358751fN66.64677012gN66.64677012zSite 4031 aWalter, Jasper10aTest Publication 2008200285naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002400136245002700160  2008320160513104939730000s1973    coAa          0  0  EL  d0 aadW61.22077604eW61.22077604fS26.01320081gS26.01320081zSite 3771 aGreenblatt, Sherill10aTest Publication 2008300283naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002200136245002700158  2008420160513104939730000s1973    coAa          0  0  EL  d0 aadW38.52101948eW38.52101948fN42.22226461gN42.22226461zSite 5481 aCrafts, Claudette10aTest Publication 2008400284naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002100138245002700159  2008520160513104939730000s1973    coAa          0  0  EL  d0 aadE132.70789703eE132.70789703fN38.04866994gN38.04866994zSite 1881 aCounter, Modesto10aTest Publication 2008500281naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002000136245002700156  2008620160513104939730000s1973    coAa          0  0  EL  d0 aadW89.35020317eW89.35020317fN47.93266336gN47.93266336zSite 3091 aCrowder, Carlee10aTest Publication 2008600280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2008720160513104939730000s1973    coAa          0  0  EL  d0 aadW125.32764205eW125.32764205fS4.19255958gS4.19255958zSite 3411 aJone, Federico10aTest Publication 2008700282naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002100136245002700157  2008820160513104939730000s1973    coAa          0  0  EL  d0 aadW168.93025338eW168.93025338fS6.02872258gS6.02872258zSite 2641 aSchock, Lisandra10aTest Publication 2008800282naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002300134245002700157  2008920160513104939730000s1973    coAa          0  0  EL  d0 aadW98.77347908eW98.77347908fS42.6798184gS42.6798184zSite 1191 aSpadaro, Geraldine10aTest Publication 2008900278naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001900134245002700153  2009020160513104939730000s1973    coAa          0  0  EL  d0 aadE85.8591623eE85.8591623fN66.00524174gN66.00524174zSite 3251 aSwanson, Mario10aTest Publication 2009000286naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002300138245002700161  2009120160513104939730000s1973    coAa          0  0  EL  d0 aadE137.11729029eE137.11729029fN39.84518323gN39.84518323zSite 1601 aCornforth, Desiree10aTest Publication 2009100276naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001700134245002700151  2009220160513104939730000s1973    coAa          0  0  EL  d0 aadW65.3799254eW65.3799254fS46.40296668gS46.40296668zSite 3221 aLam, Cristen10aTest Publication 2009200283naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002000138245002700158  2009320160513104939730000s1973    coAa          0  0  EL  d0 aadE176.53377147eE176.53377147fN22.77971971gN22.77971971zSite 3131 aFrankum, Thomas10aTest Publication 2009300284naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002300136245002700159  2009420160513104939730000s1973    coAa          0  0  EL  d0 aadW27.45737117eW27.45737117fS55.67694086gS55.67694086zSite 3631 aMagallon, Christia10aTest Publication 2009400282naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001900138245002700157  2009520160513104939730000s1973    coAa          0  0  EL  d0 aadE175.12324693eE175.12324693fS38.39888377gS38.39888377zSite 4401 aIverson, Beryl10aTest Publication 2009500274naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001500134245002700149  2009620160513104939730000s1973    coAa          0  0  EL  d0 aadW23.4142272eW23.4142272fN29.80880028gN29.80880028zSite 3131 aOrtiz, Tia10aTest Publication 2009600276naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001700134245002700151  2009720160513104939730000s1973    coAa          0  0  EL  d0 aadW18.33091801eW18.33091801fS6.31305738gS6.31305738zSite 3991 aBogard, Noma10aTest Publication 2009700281naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002000136245002700156  2009820160513104939730000s1973    coAa          0  0  EL  d0 aadW72.31173246eW72.31173246fS46.75721273gS46.75721273zSite 3311 aWalston, Verlie10aTest Publication 2009800281naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002000136245002700156  2009920160513104939730000s1973    coAa          0  0  EL  d0 aadW48.97356546eW48.97356546fN36.74731237gN36.74731237zSite 3291 aInnocent, Leisa10aTest Publication 2009900277naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001600136245002700152  2010020160513104939730000s1973    coAa          0  0  EL  d0 aadW91.61595667eW91.61595667fN11.85462394gN11.85462394zSite 2661 aKohn, Clora10aTest Publication 2010000280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2010120160513104939730000s1973    coAa          0  0  EL  d0 aadW99.81880793eW99.81880793fN56.31339558gN56.31339558zSite 1271 aLinney, Samual10aTest Publication 2010100283naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002000138245002700158  2010220160513104939730000s1973    coAa          0  0  EL  d0 aadW125.07883932eW125.07883932fS45.00178881gS45.00178881zSite 2591 aMerrifield, Kym10aTest Publication 2010200262naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001900118245002700137  2010320160513104939730000s1973    coAa          0  0  EL  d0 aadE0362614eE0362614fS011543gS011543zSite 1811 aBucher, Margit10aTest Publication 2010300264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2010420160513104939730000s1973    coAa          0  0  EL  d0 aadE0181242eE0181242fS291354gS291354zSite 2271 aSteenberg, Shila10aTest Publication 2010400264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2010520160513104939730000s1973    coAa          0  0  EL  d0 aadE0983727eE0983727fN682744gN682744zSite 5311 aBlacker, Minerva10aTest Publication 2010500261naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001800118245002700136  2010620160513104939730000s1973    coAa          0  0  EL  d0 aadE0963319eE0963319fN151338gN151338zSite 1301 aHanley, Karla10aTest Publication 2010600264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2010720160513104939730000s1973    coAa          0  0  EL  d0 aadW0753627eW0753627fN265359gN265359zSite 3661 aMackson, Yolanda10aTest Publication 2010700263naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002000118245002700138  2010820160513104939730000s1973    coAa          0  0  EL  d0 aadE1792143eE1792143fS752257gS752257zSite 5231 aHarrill, Mariko10aTest Publication 2010800265naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002200118245002700140  2010920160513104939730000s1973    coAa          0  0  EL  d0 aadW0953048eW0953048fS170735gS170735zSite 4021 aBehringer, Anitra10aTest Publication 2010900258naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001500118245002700133  2011020160513104939730000s1973    coAa          0  0  EL  d0 aadW1184933eW1184933fN152720gN152720zSite 3511 aRowse, Ida10aTest Publication 2011000264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2011120160513104939730000s1973    coAa          0  0  EL  d0 aadW1374144eW1374144fS081546gS081546zSite 1531 aSutter, Katheryn10aTest Publication 2011100263naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002000118245002700138  2011220160513104939730000s1973    coAa          0  0  EL  d0 aadW1705954eW1705954fS082612gS082612zSite 3541 aBeckett, Tamala10aTest Publication 2011200259naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001600118245002700134  2011320160513104939730000s1973    coAa          0  0  EL  d0 aadE0783553eE0783553fS255532gS255532zSite 4171 aBetty, Eryn10aTest Publication 2011300265naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002200118245002700140  2011420160513104939730000s1973    coAa          0  0  EL  d0 aadE1284246eE1284246fS020216gS020216zSite 2121 aLetsinger, Tamiko10aTest Publication 2011400267naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002400118245002700142  2011520160513104939730000s1973    coAa          0  0  EL  d0 aadE0521421eE0521421fS022222gS022222zSite 4701 aCantrell, Cornelius10aTest Publication 2011500260naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001700118245002700135  2011620160513104939730000s1973    coAa          0  0  EL  d0 aadE0331639eE0331639fS283049gS283049zSite 4771 aLeyva, Marie10aTest Publication 2011600265naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002200118245002700140  2011720160513104939730000s1973    coAa          0  0  EL  d0 aadE0760744eE0760744fN480042gN480042zSite 4401 aBeveridge, Albina10aTest Publication 2011700261naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001800118245002700136  2011820160513104939730000s1973    coAa          0  0  EL  d0 aadW0712539eW0712539fN295730gN295730zSite 5271 aBramhall, Ria10aTest Publication 2011800260naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001700118245002700135  2011920160513104939730000s1973    coAa          0  0  EL  d0 aadE1681553eE1681553fN524510gN524510zSite 1391 aHurt, Millie10aTest Publication 2011900260naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001700118245002700135  2012020160513104939730000s1973    coAa          0  0  EL  d0 aadW0140130eW0140130fS010120gS010120zSite 4641 aWulff, Nilsa10aTest Publication 2012000263naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002000118245002700138  2012120160513104939730000s1973    coAa          0  0  EL  d0 aadW0782218eW0782218fS753724gS753724zSite 5041 aFirth, Theressa10aTest Publication 2012100263naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002000118245002700138  2012220160513104939730000s1973    coAa          0  0  EL  d0 aadW1330422eW1330422fN034324gN034324zSite 4511 aWorster, Marita10aTest Publication 2012200265naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002200118245002700140  2012320160513104939730000s1973    coAa          0  0  EL  d0 aadW0843206eW0843206fS553424gS553424zSite 2961 aOlveda, Jenniffer10aTest Publication 2012300263naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002000118245002700138  2012420160513104939730000s1973    coAa          0  0  EL  d0 aadW1582630eW1582630fS142429gS142429zSite 2791 aMessner, Leanna10aTest Publication 2012400275naaa 2200097zu 4500001000800000005001500008008004100023034006900064100001700133245002700150  2012520160513104939730000s1973    coAa          0  0  EL  d0 aad-12.49085466e-7.49085466f+9.71187917g+4.71187917zSite 1731 aBevill, Sook10aTest Publication 2012500282naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002100136245002700157  2012620160513104939730000s1973    coAa          0  0  EL  d0 aad+71.12605143e+81.12605143f+20.40214021g+10.40214021zSite 1211 aSchock, Lisandra10aTest Publication 2012600281naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001800138245002700156  2012720160513104939730000s1973    coAa          0  0  EL  d0 aad+104.20929332e+154.20929332f+23.15670674g+13.15670674zSite 2831 aAbner, Shelli10aTest Publication 2012700282naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002100136245002700157  2012820160513104939730000s1973    coAa          0  0  EL  d0 aad-130.3358613e-90.33586126f+54.37067475g+34.37067475zSite 3061 aNecessary, Dante10aTest Publication 2012800277naaa 2200097zu 4500001000800000005001500008008004100023034007300064100001500137245002700152  2012920160513104939730000s1973    coAa          0  0  EL  d0 aad+89.51162859e+109.51162859f-22.88853952g-42.88853952zSite 1271 aAmyx, Lyle10aTest Publication 2012900281naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001800138245002700156  2013020160513104939730000s1973    coAa          0  0  EL  d0 aad+120.94552421e+130.94552421f+80.21089126g+77.21089126zSite 5191 aGranda, Isiah10aTest Publication 2013000280naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002100134245002700155  2013120160513104939730000s1973    coAa          0  0  EL  d0 aad+166.31983556e+176.31983556f-64.114475g-74.114475zSite 1291 aFavela, Lorretta10aTest Publication 2013100277naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001600136245002700152  2013220160513104939730000s1973    coAa          0  0  EL  d0 aad-33.35817709e-23.35817709f-26.04958019g-56.04958019zSite 3441 aDaub, Lloyd10aTest Publication 2013200278naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001700136245002700153  2013320160513104939730000s1973    coAa          0  0  EL  d0 aad+100.28119821e+150.28119821f-39.5929073g-79.5929073zSite 2811 aFines, Gregg10aTest Publication 2013300279naaa 2200097zu 4500001000800000005001500008008004100023034006800064100002200132245002700154  2013420160513104939730000s1973    coAa          0  0  EL  d0 aad-98.724204e-38.72420401f+40.4924143g+20.4924143zSite 4941 aWalcott, Porfirio10aTest Publication 2013400280naaa 2200097zu 4500001000800000005001500008008004100023034007300064100001800137245002700155  2013520160513104939730000s1973    coAa          0  0  EL  d0 aad-170.45022257e-156.4502226f+25.08138959g+15.08138959zSite 4151 aGranda, Isiah10aTest Publication 2013500281naaa 2200097zu 4500001000800000005001500008008004100023034007300064100001900137245002700156  2013620160513104939730000s1973    coAa          0  0  EL  d0 aad+93.74890612e+143.74890612f-13.32263614g-23.32263614zSite 2561 aCutter, Annika10aTest Publication 2013600279naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001800136245002700154  2013720160513104939730000s1973    coAa          0  0  EL  d0 aad-66.87358455e-46.87358455f+70.98897026g+50.98897026zSite 5431 aHanley, Karla10aTest Publication 2013700276naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001700134245002700151  2013820160513104939730000s1973    coAa          0  0  EL  d0 aad-172.9265117e-162.9265117f-1.47082029g-6.47082029zSite 1691 aDalke, Isiah10aTest Publication 2013800281naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002200134245002700156  2013920160513104939730000s1973    coAa          0  0  EL  d0 aad+33.61230501e+43.61230501f-4.12575355g-9.12575355zSite 3771 aBehringer, Anitra10aTest Publication 2013900281naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002000136245002700156  2014020160513104939730000s1973    coAa          0  0  EL  d0 aad+75.10477259e+95.10477259f+73.86871739g+53.86871739zSite 2831 aWilhoite, Kathi10aTest Publication 2014000282naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001900138245002700157  2014120160513104939730000s1973    coAa          0  0  EL  d0 aad+125.92523664e+135.92523664f-15.86550515g-25.86550515zSite 1841 aJasik, Micaela10aTest Publication 2014100283naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002000138245002700158  2014220160513104939730000s1973    coAa          0  0  EL  d0 aad+112.65337661e+122.65337661f+78.04277975g+68.04277975zSite 5271 aStrine, Tabitha10aTest Publication 2014200276naaa 2200097zu 4500001000800000005001500008008004100023034006900064100001800133245002700151  2014320160513104939730000s1973    coAa          0  0  EL  d0 aad-10.83945484e-5.83945484f-30.6046605g-60.6046605zSite 1311 aOverall, Lula10aTest Publication 2014300279naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002000134245002700154  2014420160513104939730000s1973    coAa          0  0  EL  d0 aad-15.53775937e-10.53775937f-46.3793589g-66.3793589zSite 2041 aMathisen, Dayle10aTest Publication 2014400281naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002000136245002700156  2014520160513104939730000s1973    coAa          0  0  EL  d0 aad-147.1524264e-127.1524264f-70.97214091g-75.97214091zSite 4281 aWilhoite, Kathi10aTest Publication 2014500278naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001700136245002700153  2014620160513104939730000s1973    coAa          0  0  EL  d0 aad+73.14760572e+93.14760572f-44.44305202g-64.44305202zSite 4881 aFines, Gregg10aTest Publication 2014600280naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001700138245002700155  2014720160513104939730000s1973    coAa          0  0  EL  d0 aadE143.91680691eE153.91680691fN69.05928016gN59.05928016zSite 2301 aKinnan, Enda10aTest Publication 2014700281naaa 2200097zu 4500001000800000005001500008008004100023034007000064100002200134245002700156  2014820160513104939730000s1973    coAa          0  0  EL  d0 aadE109.2953057eE159.2953057fN75.6021786gN72.6021786zSite 2351 aHartfield, Shelba10aTest Publication 2014800282naaa 2200097zu 4500001000800000005001500008008004100023034007300064100002000137245002700157  2014920160513104939730000s1973    coAa          0  0  EL  d0 aadE144.81897837eE164.81897837fN18.62668817gN8.62668817zSite 2871 aSkeens, Cordell10aTest Publication 2014900278naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001700136245002700153  2015020160513104939730000s1973    coAa          0  0  EL  d0 aadW115.49585203eW85.49585203fN19.56564384gN9.56564384zSite 4151 aHove, Armand10aTest Publication 2015000280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2015120160513104939730000s1973    coAa          0  0  EL  d0 aadW32.63289449eW22.63289449fS55.38513226gS75.38513226zSite 1201 aHaugh, Winford10aTest Publication 2015100279naaa 2200097zu 4500001000800000005001500008008004100023034007300064100001700137245002700154  2015220160513104939730000s1973    coAa          0  0  EL  d0 aadE87.77332672eE107.77332672fS54.25951534gS74.25951534zSite 3431 aValois, Arie10aTest Publication 2015200279naaa 2200097zu 4500001000800000005001500008008004100023034006800064100002200132245002700154  2015320160513104939730000s1973    coAa          0  0  EL  d0 aadW32.8377449eW22.8377449fS3.09135927gS8.09135927zSite 4141 aMcclaran, Kathern10aTest Publication 2015300277naaa 2200097zu 4500001000800000005001500008008004100023034007000064100001800134245002700152  2015420160513104939730000s1973    coAa          0  0  EL  d0 aadE34.4627201eE44.4627201fN23.51119899gN13.51119899zSite 3351 aHeinrich, See10aTest Publication 2015400282naaa 2200097zu 4500001000800000005001500008008004100023034007200064100002100136245002700157  2015520160513104939730000s1973    coAa          0  0  EL  d0 aadE11.25085415eE16.25085415fN62.44255328gN42.44255328zSite 3801 aSteenberg, Shila10aTest Publication 2015500278naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001700136245002700153  2015620160513104939730000s1973    coAa          0  0  EL  d0 aadE35.02387108eE45.02387108fN51.72426854gN31.72426854zSite 1231 aNiccum, Alex10aTest Publication 2015600284naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002100138245002700159  2015720160513104939730000s1973    coAa          0  0  EL  d0 aadE115.38134036eE145.38134036fS21.96462606gS41.96462606zSite 3801 aRussom, Clorinda10aTest Publication 2015700278naaa 2200097zu 4500001000800000005001500008008004100023034006600064100002300130245002700153  2015820160513104939730000s1973    coAa          0  0  EL  d0 aadW79.5685706eW59.5685706fS3.2186524gS8.2186524zSite 4461 aMontanye, Criselda10aTest Publication 2015800280naaa 2200097zu 4500001000800000005001500008008004100023034007200064100001900136245002700155  2015920160513104939730000s1973    coAa          0  0  EL  d0 aadE78.87843097eE98.87843097fS24.09348392gS44.09348392zSite 3721 aGalasso, Tatum10aTest Publication 2015900283naaa 2200097zu 4500001000800000005001500008008004100023034007400064100002000138245002700158  2016020160513104939730000s1973    coAa          0  0  EL  d0 aadW179.09659396eW119.09659396fS39.32213026gS79.32213026zSite 4631 aLiptak, Caitlin10aTest Publication 2016000282naaa 2200097zu 4500001000800000005001500008008004100023034007400064100001900138245002700157  2016120160513104939730000s1973    coAa          0  0  EL  d0 aadW163.27020238eW113.27020238fS36.75458726gS76.75458726zSite 1621 aGaetano, Dedra10aTest Publication 2016100261naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001800118245002700136  2016220160513104939730000s1973    coAa          0  0  EL  d0 aadE1114626eE1214626fN752639gN452639zSite 4161 aTorian, Belva10aTest Publication 2016200262naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001900118245002700137  2016320160513104939730000s1973    coAa          0  0  EL  d0 aadE0285018eE0335018fN271418gN171418zSite 2191 aMirabito, Shin10aTest Publication 2016300266naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002300118245002700141  2016420160513104939730000s1973    coAa          0  0  EL  d0 aadE0330550eE0430550fN471910gN271910zSite 1651 aSpadaro, Geraldine10aTest Publication 2016400265naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002200118245002700140  2016520160513104939730000s1973    coAa          0  0  EL  d0 aadW0501321eW0401321fN053851gN003851zSite 4651 aHartfield, Shelba10aTest Publication 2016500259naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001600118245002700134  2016620160513104939730000s1973    coAa          0  0  EL  d0 aadE1541338eE1641338fS053823gS103823zSite 2621 aDaub, Lloyd10aTest Publication 2016600262naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001900118245002700137  2016720160513104939730000s1973    coAa          0  0  EL  d0 aadW0722141eW0522141fS223403gS423403zSite 5141 aCutter, Annika10aTest Publication 2016700264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2016820160513104939730000s1973    coAa          0  0  EL  d0 aadW0053928eW0003928fS472308gS772308zSite 1971 aErickson, Joette10aTest Publication 2016800264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2016920160513104939730000s1973    coAa          0  0  EL  d0 aadW0675444eW0475444fN571945gN271945zSite 2791 aSharrow, Sherron10aTest Publication 2016900261naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001800118245002700136  2017020160513104939730000s1973    coAa          0  0  EL  d0 aadE1064421eE1564421fN402522gN202522zSite 1701 aVidrio, Sofia10aTest Publication 2017000261naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001800118245002700136  2017120160513104939730000s1973    coAa          0  0  EL  d0 aadW1254938eW0854938fN511735gN311735zSite 5101 aHeinrich, See10aTest Publication 2017100261naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001800118245002700136  2017220160513104939730000s1973    coAa          0  0  EL  d0 aadW1344729eW0944729fN051424gN001424zSite 5111 aBoyland, Bebe10aTest Publication 2017200263naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002000118245002700138  2017320160513104939730000s1973    coAa          0  0  EL  d0 aadE0932835eE1432835fS175621gS375621zSite 2151 aStrine, Tabitha10aTest Publication 2017300262naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001900118245002700137  2017420160513104939730000s1973    coAa          0  0  EL  d0 aadE1701912eE1751912fS073104gS123104zSite 1931 aBornstein, Dia10aTest Publication 2017400266naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002300118245002700141  2017520160513104939730000s1973    coAa          0  0  EL  d0 aadW1362047eW0962047fS250039gS550039zSite 4111 aGrizzell, Griselda10aTest Publication 2017500264naaa 2200097zu 4500001000800000005001500008008004100023034005400064100002100118245002700139  2017620160513104939730000s1973    coAa          0  0  EL  d0 aadW0545835eW0445835fS450010gS650010zSite 5091 aFalzone, Natasha10aTest Publication 2017600259naaa 2200097zu 4500001000800000005001500008008004100023034005400064100001600118245002700134  2017720160513104939730000s1973    coAa          0  0  EL  d0 aadE1455446eE1555446fS373045gS773045zSite 3521 aJaco, Angle10aTest Publication 2017700303nam  2200109   45e0001000900000005001500009008004100024034004700065100001800112245002800130500003500158  20170020170517104939730000s1973    coAa          0  0  EL  d0 aadW1362047eW0962047fS250039gzSite 4111 aOverall, Lula10aTest Publication 201700  aForms a line at the North Pole00311nam  2200109   45e0001000900000005001500009008004100024034005500065100001800120245002800138500003500166  20170120170517104939730000s1973    coAa          0  0  EL  d0 aadeW59.5685706fS3.2186524gS8.2186524zSite 4461 aGranda, Isiah10aTest Publication 201701  aForms a line at the North Pole00316nam  2200109   45e0001000900000005001500009008004100024034006100065100001700126245002800143500003500171  20170220170517104939730000s1973    coAa          0  0  EL  d0 aadW103.57340238efS22.78804289gS22.78804289zSite 2171 aOros, Cierra10aTest Publication 201702  aForms a line at the North Pole00316nam  2200109   45e0001000900000005001500009008004100024034006200065100001600127245002800143500003500171  20170320170517104939730000s1973    coAa          0  0  EL  d0 aadE120.96526676eE120.96526676fgN22.40092028zSite 2391 aSaar, Danna10aTest Publication 201703  aForms a line at the South Pole00321nam  2200109   45e0001000900000005001500009008004100024034006200065100002100127245002800148500003500176  20170420170517104939730000s1973    coAa          0  0  EL  d0 aadE151.51785078eE151.51785078fN13.91875447gzSite 1051 aMackson, Yolanda10aTest Publication 201704  aForms a line at the South Pole00320nam  2200109   45e0001000900000005001500009008004100024034006000065100002200125245002800147500003500175  20170520170517104939730000s1973    coAa          0  0  EL  d0 aade+86.55263228f-28.95862432g-28.95862432zSite 1681 aHartfield, Shelba10aTest Publication 201705  aForms a line at the South Pole00308nam  2200109   45e0001000900000005001500009008004100024034006100065100002100126245002800147500002300175  20170620170517104939730000s1973    coAa          0  0  EL  d0 aad+104.20929332ef+23.15670674g+13.15670674zSite 2461 aWinrow, Sanjuana10aTest Publication 201706  aWest value is null00303nam  2200109   45e0001000900000005001500009008004100024034005900065100001800124245002800142500002300170  20170720170517104939730000s1973    coAa          0  0  EL  d0 aad-172.9265117e-162.9265117fg-6.47082029zSite 1691 aAbner, Shelli10aTest Publication 201707  aEast value is null00306nam  2200109   45e0001000900000005001500009008004100024034006000065100001900125245002800144500002400172  20170820170517104939730000s1973    coAa          0  0  EL  d0 aad-149.3464366e-129.3464366f+27.28202333gzSite 1341 aNelms, Lanelle10aTest Publication 201708  aNorth value is null00300nam  2200109   45e0001000900000005001500009008004100024034005400065100001900119245002800138500002400166  20170920170517104939730000s1973    coAa          0  0  EL  d0 aadE1865330eE1765330fN221220gN122012zSite 3131 aPakele, Marina10aTest Publication 201709  aSouth value is null00295nam  2200109   45e0001000900000005001500009008004100024034005400065100001500119245002800134500002300162  20171020170517104939730000s1973    coAa          0  0  EL  d0 aadW1899190eW999180fN663133gN563133zSite 12771 aOram, Donn10aTest Publication 201710  aWest value is null00300nam  2200109   45e0001000900000005001500009008004100024034005400065100002000119245002800139500002300167  20171120170517104939730000s1973    coAa          0  0  EL  d0 aadE1792143eE1892143fS702257gS752257zSite 5231 aHarrill, Mariko10aTest Publication 201711  aEast value is null00298nam  2200109   45e0001000900000005001500009008004100024034005400065100001700119245002800136500002400164  20171220170517104939730000s1973    coAa          0  0  EL  d0 aadW1792143eW1892143fS702257gS752257zSite 5231 aLeyva, Marie10aTest Publication 201712  aNorth value is null00303nam  2200109   45e0001000900000005001500009008004100024034005400065100002200119245002800141500002400169  20171320170517104939730000s1973    coAa          0  0  EL  d0 aadE1202300eE1301512fN982100gN772108zSite 5191 aWalcott, Porfirio10aTest Publication 201713  aSouth value is null00301nam  2200109   45e0001000900000005001500009008004100024034005400065100002100119245002800140500002300168  20171420170517104939730000s1973    coAa          0  0  EL  d0 aadE1202300eE1301512fS982100gS772108zSite 6191 aErickson, Joette10aTest Publication 201714  aWest value is null00302nam  2200109   45e0001000900000005001500009008004100024034005400065100002200119245002800141500002300169  20171520170517104939730000s1973    coAa          0  0  EL  d0 aadW1790910eW1190915fN393212gN913213zSite 4631 aCrafts, Claudette10aTest Publication 201715  aEast value is null00300nam  2200109   45e0001000900000005001500009008004100024034005400065100001900119245002800138500002400166  20171620170517104939730000s1973    coAa          0  0  EL  d0 aadW1790910eW1190915fS393212gS913213zSite 4631 aAlcina, Rashad10aTest Publication 201716  aNorth value is null00322nam  2200109   45e0001000900000005001500009008004100024034007400065100002100139245002800160500002400188  20171720170517104939730000s1973    coAa          0  0  EL  d0 aadE186.53377147eE176.53377147fN22.77971971gN12.77971971zSite 3131 aSchlosser, Karan10aTest Publication 201717  aSouth value is null00316nam  2200109   45e0001000900000005001500009008004100024034007400065100001800139245002800157500002100185  20171820170517104939730000s1973    coAa          0  0  EL  d0 aadW189.81880793eW99.81880793fN66.31339558gN56.31339558zSite 12771 aMurden, Claud10aTest Publication 201718  aWest exceeds 18000317nam  2200109   45e0001000900000005001500009008004100024034007400065100001800139245002800157500002200185  20171920170517104939730000s1973    coAa          0  0  EL  d0 aadE176.53377147eE186.53377147fN22.77971971gN12.77971971zSite 3131 aOverall, Lula10aTest Publication 201719  aWest exceeds -18000316nam  2200109   45e0001000900000005001500009008004100024034007400065100001800139245002800157500002100185  20172020170517104939730000s1973    coAa          0  0  EL  d0 aadW175.68166135eW185.68166135fS60.41361345gS69.41361345zSite 4971 aGranda, Isiah10aTest Publication 201720  aEast exceeds 18000316nam  2200109   45e0001000900000005001500009008004100024034007400065100001700139245002800156500002200184  20172120170517104939730000s1973    coAa          0  0  EL  d0 aadE120.94552421eE130.94552421fN98.21089126gN77.21089126zSite 5191 aOros, Cierra10aTest Publication 201721  aEast exceeds -18000314nam  2200109   45e0001000900000005001500009008004100024034007400065100001600139245002800155500002100183  20172220170517104939730000s1973    coAa          0  0  EL  d0 aadE120.94552421eE130.94552421fS98.21089126gS77.21089126zSite 6191 aSaar, Danna10aTest Publication 201722  aNorth exceeds 9000320nam  2200109   45e0001000900000005001500009008004100024034007400065100002100139245002800160500002200188  20172320170517104939730000s1973    coAa          0  0  EL  d0 aadW179.09659396eW119.09659396fN39.32213026gN91.32213026zSite 4631 aMackson, Yolanda10aTest Publication 201723  aNorth exceeds -9000320nam  2200109   45e0001000900000005001500009008004100024034007400065100002200139245002800161500002100189  20172420170517104939730000s1973    coAa          0  0  EL  d0 aadW179.09659396eW119.09659396fS39.32213026gS91.32213026zSite 4631 aHartfield, Shelba10aTest Publication 201724  aSouth exceeds 9000320nam  2200109   45e0001000900000005001500009008004100024034007400065100002100139245002800160500002200188  20172520170517104939730000s1973    coAa          0  0  EL  d0 aad+186.53377147e+176.53377147f+22.77971971g+12.77971971zSite 3131 aWinrow, Sanjuana10aTest Publication 201725  aSouth exceeds -9000316nam  2200109   45e0001000900000005001500009008004100024034007400065100001800139245002800157500002100185  20172620170517104939730000s1973    coAa          0  0  EL  d0 aad-189.81880793e-99.81880793f+66.31339558g+56.31339558zSite 12771 aAbner, Shelli10aTest Publication 201726  aWest exceeds 18000318nam  2200109   45e0001000900000005001500009008004100024034007400065100001900139245002800158500002200186  20172720170517104939730000s1973    coAa          0  0  EL  d0 aad+175.1864435e+182.18644345f-10.03581345g-20.03581345zSite 11721 aNelms, Lanelle10aTest Publication 201727  aWest exceeds -18000315nam  2200109   45e0001000900000005001500009008004100024034007200065100001900137245002800156500002100184  20172820170517104939730000s1973    coAa          0  0  EL  d0 aad-175.1864435e-182.1864435f-10.03581345g-20.03581345zSite 1721 aPakele, Marina10aTest Publication 201728  aEast exceeds 18000315nam  2200109   45e0001000900000005001500009008004100024034007500065100001500140245002800155500002200183  20172920170517104939730000s1973    coAa          0  0  EL  d0 aad+120.94552421e'+130.94552421f+98.21089126g+77.21089126zSite 5191 aOram, Donn10aTest Publication 201729  aEast exceeds -18000319nam  2200109   45e0001000900000005001500009008004100024034007500065100002000140245002800160500002100188  20173020170517104939730000s1973    coAa          0  0  EL  d0 aad+120.94552421e'+130.94552421f-98.21089126g-77.21089126zSite 6191 aHarrill, Mariko10aTest Publication 201730  aNorth exceeds 9000316nam  2200109   45e0001000900000005001500009008004100024034007400065100001700139245002800156500002200184  20173120170517104939730000s1973    coAa          0  0  EL  d0 aad-179.09659396e-119.09659396f+39.32213026g+91.32213026zSite 4631 aLeyva, Marie10aTest Publication 201731  aNorth exceeds -9000320nam  2200109   45e0001000900000005001500009008004100024034007400065100002200139245002800161500002100189  20173220170517104939730000s1973    coAa          0  0  EL  d0 aad-179.09659396e-119.09659396f-39.32213026g-91.32213026zSite 4631 aWalcott, Porfirio10aTest Publication 201732  aSouth exceeds 9000318nam  2200109   45e0001000900000005001500009008004100024034007200065100002100137245002800158500002200186  20173320170517104939730000s1973    coAa          0  0  EL  d0 aad+75.10477259e'+95.10477259f43.86871739g+53.86871739zSite 2831 aErickson, Joette10aTest Publication 201733  aSouth exceeds -9000301nam  2200109   45e0001000900000005001500009008004100024034005500065100002200120245002800142500002100170  20173420170517104939730000s1973    coAa          0  0  EL  d0 aadE1455446eE1555446fS793045gS773045zSite 35201 aCrafts, Claudette10aTest Publication 201734  aWest exceeds 18000317nam  2200109   45e0001000900000005001500009008004100024034007300065100001900138245002800157500002200185  20173520170517104939730000s1973    coAa          0  0  EL  d0 aadW106.32772299eW76.32772299fN46.24201475gN56.24201475zSite 2861 aAlcina, Rashad10aTest Publication 201735  aWest exceeds -18000319nam  2200109   45e0001000900000005001500009008004100024034007400065100002100139245002800160500002100188  20173620170517104939730000s1973    coAa          0  0  EL  d0 aad-180.0 e+179.98333333333332f-89.98333333333333g-90.0zSite 25831 aSchlosser, Karan10aTest Publication 201736  aEast exceeds 18000298nam  2200109   45e0001000900000005001500009008004100024034005500065100001800120245002800138500002200166  20173720170517104939730000s1973    coAa          0  0  EL  d0 aadW1800000eE1795900fS895900gS900000zSite 25831 aMurden, Claud10aTest Publication 201737  aEast exceeds -18000316nam  2200109   45e0001000900000005001500009008004100024034007400065100001800139245002800157500002100185  20173820170517104939730000s1973    coAa          0  0  EL  d0 aadW180.0 eE179.98333333333332fS89.98333333333333gS90.0zSite 25831 aOverall, Lula10aTest Publication 201738  aNorth exceeds 9000315nam  2200109   45e0001000900000005001500009008004100024034007200065100001800137245002800155500002200183  20173920170517104939730000s1973    coAa          0  0  EL  d0 aad-180.0 e+179.98333333333332f-85g-89.98333333333333zSite 25841 aGranda, Isiah10aTest Publication 201739  aNorth exceeds -9000296nam  2200109   45e0001000900000005001500009008004100024034005500065100001700120245002800137500002100165  20174020170517104939730000s1973    coAa          0  0  EL  d0 aadW1800000eE1795900fS850000gS895900zSite 25841 aOros, Cierra10aTest Publication 201740  aSouth exceeds 9000313nam  2200109   45e0001000900000005001500009008004100024034007200065100001600137245002800153500002200181  20174120170517104939730000s1973    coAa          0  0  EL  d0 aadW180.0 eE179.98333333333332fS85gS89.98333333333333zSite 25841 aSaar, Danna10aTest Publication 201741  aSouth exceeds -9000291nam  2200109   45e0001000900000005001500009008004100024034004100065100002100106245002800127500002600155  20174220170517104939730000s1973    coAa          0  0  EL  d0 aad+1.0e-0.0f90.0g70.0zSite 22331 aMackson, Yolanda10aTest Publication 201742  aNorth less than South00306nam  2200109   45e0001000900000005001500009008004100024034005500065100002200120245002800142500002600170  20174320170517104939730000s1973    coAa          0  0  EL  d0 aadE0000001eW0000000fN900000gN700000zSite 22331 aHartfield, Shelba10aTest Publication 201743  aNorth less than South00293nam  2200109   45e0001000900000005001500009008004100024034004300065100002100108245002800129500002600157  20174420170517104939730000s1973    coAa          0  0  EL  d0 aadE1.0eW0.0fN90.0gN70.0zSite 22331 aWinrow, Sanjuana10aTest Publication 201744  aNorth less than South00337nam  2200109   45e0001000900000005001500009008004100024034007400065100001800139245002800157500004200185  20174520170517104939730000s1973    coAa          0  0  EL  d0 aad-180.0 e+179.98333333333332f-89.98333333333333g-90.0zSite 25831 aAbner, Shelli10aTest Publication 201745  aNorth less than 0.167 from South Pole00319nam  2200109   45e0001000900000005001500009008004100024034005500065100001900120245002800139500004200167  20174620170517104939730000s1973    coAa          0  0  EL  d0 aadW1800000eE1795900fS895900gS900000zSite 25831 aNelms, Lanelle10aTest Publication 201746  aNorth less than 0.167 from South Pole00338nam  2200109   45e0001000900000005001500009008004100024034007400065100001900139245002800158500004200186  20174720170517104939730000s1973    coAa          0  0  EL  d0 aadW180.0 eE179.98333333333332fS89.98333333333333gS90.0zSite 25831 aPakele, Marina10aTest Publication 201747  aNorth less than 0.167 from South Pole00332nam  2200109   45e0001000900000005001500009008004100024034007200065100001500137245002800152500004200180  20174820170517104939730000s1973    coAa          0  0  EL  d0 aad-180.0 e+179.98333333333332f-85g-89.98333333333333zSite 25841 aOram, Donn10aTest Publication 201748  aSouth less than 0.167 from South Pole00320nam  2200109   45e0001000900000005001500009008004100024034005500065100002000120245002800140500004200168  20174920170517104939730000s1973    coAa          0  0  EL  d0 aadW1800000eE1795900fS850000gS895900zSite 25841 aHarrill, Mariko10aTest Publication 201749  aSouth less than 0.167 from South Pole00334nam  2200109   45e0001000900000005001500009008004100024034007200065100001700137245002800154500004200182  20175020170517104939730000s1973    coAa          0  0  EL  d0 aadW180.0 eE179.98333333333332fS85gS89.98333333333333zSite 25841 aLeyva, Marie10aTest Publication 201750  aSouth less than 0.167 from South Pole00317nam  2200109   45e0001000900000005001500009008004100024034004100065100002200106245002800128500005100156  20175120170517104939730000s1973    coAa          0  0  EL  d0 aad+1.0e-0.0f90.0g70.0zSite 22331 aWalcott, Porfirio10aTest Publication 201751  aEW distance is greater than -2 and less than 000330nam  2200109   45e0001000900000005001500009008004100024034005500065100002100120245002800141500005100169  20175220170517104939730000s1973    coAa          0  0  EL  d0 aadE0000001eW0000000fN900000gN700000zSite 22331 aErickson, Joette10aTest Publication 201752  aEW distance is greater than -2 and less than 000319nam  2200109   45e0001000900000005001500009008004100024034004300065100002200108245002800130500005100158  20175320170517104939730000s1973    coAa          0  0  EL  d0 aadE1.0eW0.0fN90.0gN70.0zSite 22331 aCrafts, Claudette10aTest Publication 201753  aEW distance is greater than -2 and less than 0
\ No newline at end of file
diff --git a/themes/bootstrap3/js/map_tab_ol.js b/themes/bootstrap3/js/map_tab_ol.js
index 1e26b2f073a..c8fc30a1736 100644
--- a/themes/bootstrap3/js/map_tab_ol.js
+++ b/themes/bootstrap3/js/map_tab_ol.js
@@ -78,10 +78,25 @@ function loadMapTab(mapData, popupTitle) {
         iconFeature.setStyle(iconStyle);
         vectorSource.addFeature(iconFeature);
       } else if (mapData[i][4] === 4) { // It's a polygon feature //
-        var point1 = ol.proj.transform([mapData[i][0], mapData[i][3]], srcProj, dstProj);
-        var point2 = ol.proj.transform([mapData[i][0], mapData[i][1]], srcProj, dstProj);
-        var point3 = ol.proj.transform([mapData[i][2], mapData[i][1]], srcProj, dstProj);
-        var point4 = ol.proj.transform([mapData[i][2], mapData[i][3]], srcProj, dstProj);
+        var west = mapData[i][0];
+        var east = mapData[i][2];
+        var north = mapData[i][3];
+        var south = mapData[i][1];
+        // handle dateline crossing
+        if (west > east) {
+          var wpt = 180 - west;
+          var ept = 180 + east;
+          east = west + wpt + ept;
+        }
+        // move S90 off the poles so ol will map it
+        if (south === -90) {
+          south = south + 0.5;
+        }
+        var point1 = ol.proj.transform([west, north], srcProj, dstProj);
+        var point2 = ol.proj.transform([west, south], srcProj, dstProj);
+        var point3 = ol.proj.transform([east, south], srcProj, dstProj);
+        var point4 = ol.proj.transform([east, north], srcProj, dstProj);
+
         var polyFeature = new ol.Feature({
           geometry: new ol.geom.Polygon([
             [point1, point2, point3, point4, point1]
-- 
GitLab