diff --git a/.github/workflows/build_push_insufficient_data.yml b/.github/workflows/build_push_insufficient_data.yml index 52678d46e..5861375f4 100644 --- a/.github/workflows/build_push_insufficient_data.yml +++ b/.github/workflows/build_push_insufficient_data.yml @@ -5,7 +5,7 @@ on: branches: - 'master' paths: - - 'flow/flow.insufficient.data/**' + - 'flow/flow.qf.insuff.data/**' workflow_dispatch: {} # Allows trigger of workflow from web interface env: @@ -22,7 +22,7 @@ env: # Get just the repo name from the event, i.e., NEON-IS-data-processing REPO_NAME: ${{ github.event.repository.name }} # IS module name - MODULE_PATH: ./flow/flow.insufficient.data + MODULE_PATH: ./flow/flow.qf.insuff.data IMAGE_NAME: neon-is-insufficient-data jobs: diff --git a/.github/workflows/build_push_sunav2_ucrt_group.yml b/.github/workflows/build_push_sunav2_ucrt_group.yml index b679570ac..23c635b8c 100644 --- a/.github/workflows/build_push_sunav2_ucrt_group.yml +++ b/.github/workflows/build_push_sunav2_ucrt_group.yml @@ -9,7 +9,7 @@ on: - 'modules/filter_joiner/**' - 'modules/common/**' - 'flow/flow.sunav2.exp.uncert/**' - - 'flow/flow.insufficient.data/**' + - 'flow/flow.qf.insuff.data/**' workflow_dispatch: {} # Allows trigger of workflow from web interface env: diff --git a/flow/flow.gap.fill.nonrglr/Dockerfile b/flow/flow.gap.fill.nonrglr/Dockerfile new file mode 100644 index 000000000..4478d4d25 --- /dev/null +++ b/flow/flow.gap.fill.nonrglr/Dockerfile @@ -0,0 +1,27 @@ +# Dockerfile for NEON IS Data Processing - flow.gap.fill.nonrglr + +# Start with the neon-is-base-r image. +FROM us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-pack-base-r:v1.7.0 + +ARG FLOW_DIR="./flow" +ARG APP_DIR="flow.gap.fill.nonrglr" + +# maintainer handle +MAINTAINER "Nora Catolico" ncatolico@battelleecology.org + +# Copy the lockfile and restore known working versions of R dependency packages +COPY ${FLOW_DIR}/${APP_DIR}/renv.lock /renv.lock +RUN R -e 'renv::restore(lockfile="/renv.lock")' + +# Create app user +RUN groupadd app && \ + useradd app -g app +WORKDIR /home/app + +# Copy in application code +COPY ${FLOW_DIR}/${APP_DIR}/flow.gap.fill.nonrglr.R . +COPY ${FLOW_DIR}/${APP_DIR}/wrap.gap.fill.nonrglr.R . + +# Run as app user +RUN chown app:app -R /home/app +USER app diff --git a/flow/flow.gap.fill.nonrglr/flow.gap.fill.nonrglr.R b/flow/flow.gap.fill.nonrglr/flow.gap.fill.nonrglr.R new file mode 100644 index 000000000..36fe9064b --- /dev/null +++ b/flow/flow.gap.fill.nonrglr/flow.gap.fill.nonrglr.R @@ -0,0 +1,247 @@ +############################################################################################## +#' @title Gap filling module for non-regularized data in NEON IS data processing. + +#' @author +#' Nora Catolico \email{ncatolico@battelleecology.org} \cr + +#' @description Workflow. +#' General code workflow: +#' Parse input parameters +#' Read in output schemas if indicated in parameters +#' Determine datums to process (set of files/folders to process as a single unit) +#' For each datum: +#' Create output directories and copy (by symbolic link) unmodified components +#' Loop through all data files and fill gaps +#' Write out the gap filled data +#' +#' This script is run at the command line with the following arguments. Each argument must be a +#' string in the format "Para=value", where "Para" is the intended parameter name and "value" is +#' the value of the parameter. Note: If the "value" string begins with a $ (e.g. $DIR_IN), the +#' value of the parameter will be assigned from the system environment variable matching the value +#' string. +#' +#' The arguments are: +#' +#' 1. "DirIn=value", where value is the path to the input data directory. NOTE: This path must be a +#' parent of the terminal directory where the data to be gap filled reside. See argument "DirFill" +#' below to indicate the terminal directory. +#' +#' The input path is structured as follows: #/pfs/BASE_REPO/#/yyyy/mm/dd/#, where # indicates any +#' number of parent and child directories of any name, so long as they are not 'pfs', the same name +#' as the terminal directory indicated in argument "DirFill", or recognizable as the 'yyyy/mm/dd' +#' structure which indicates the 4-digit year, 2-digit month, and 2-digit day of the data contained +#' in the folder. +#' +#' For example: +#' Input path = /scratch/pfs/sunav2_fill_date_gaps/sunav2/2019/01/01 +#' +#' 2. "DirOut=value", where the value is the output path that will replace the #/pfs/BASE_REPO portion +#' of DirIn. +#' +#' 3. "DirErr=value", where the value is the output path to place the path structure of errored datums that will +#' replace the #/pfs/BASE_REPO portion of DirIn. +#' +#' 4. "DirFill=value", where value is the name of the terminal directory where the data to be +#' gap filled resides. This will be one or more child levels away from "DirIn". All files in the +#' terminal directory will be gap filled. The value may also be a vector of terminal directories, +#' separated by pipes (|). All terminal directories must be present and at the same directory level. +#' For example, "DirFill=data|flags" indicates to gap fill the data files within each the data +#' and flags directories. +#' +#' #' 5. "FileSchm=value" (optional), where value is the full path to schema for data output by +#' this workflow. The value may be NA, in which case the output schema will be the same as the input +#' data. The value may be a single file, in which case it will apply to all output, or +#' multiple values in which case the argument is formatted as dir:value|dir:value... +#' where dir is one of the directories specified in DirFill and value is the path to the schema file +#' for the output of that directory. Multiple dir:value pairs are separated by pipes (|). +#' For example, "FileSchm=data:/path/to/schemaData.avsc|flags:NA" indicates that the +#' output from the data directory will be written with the schema /path/to/schemaData.avsc and the +#' output from the flags directory will be the same as the input files found in that +#' directory. +#' +#' 6. "WndwFill=value", where value is the window in minutes in which data are expected. It is formatted as a 3 character sequence, +#' representing the number of minutes over which any number of measurements are expected. +#' For example, "WndwFill=015" refers to a 15-minute interval, while "WndwAgr=030" refers to a +#' 30-minute interval. +#' +#' 7. "DirSubCopy=value" (optional), where value is the names of additional subfolders, separated by +#' pipes, at the same level as the folders in the input path that are to be copied with a +#' symbolic link to the output path. +#' +#' Note: This script implements logging described in \code{\link[NEONprocIS.base]{def.log.init}}, +#' which uses system environment variables if available. +#' +#' @return gap filled data and flag output in Parquet format in DirOut, where DirOut directory +#' replaces BASE_REPO but otherwise retains the child directory structure of the input path. + +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 + +#' @keywords Currently none + +#' @examples +#' Stepping through the code in R studio +# log <- NEONprocIS.base::def.log.init(Lvl = "debug") +# arg<-c( "DirIn=~/pfs/sunav2_fill_date_gaps/sunav2/2025/06/23/CFGLOC110819", +# "DirOut=~/pfs/out ", +# "DirErr=~/pfs/out/errored_datums ", +# "DirFill=data|flags", +# "WndwFill=015", +# "FileSchm=data:/home/NEON/ncatolico/pfs/sunav2_avro_schemas/sunav2/sunav2_logfilled.avsc|flags:/home/NEON/ncatolico/pfs/sunav2_avro_schemas/sunav2/sunav2_calibration_flags.avsc|flags:/home/NEON/ncatolico/pfs/sunav2_avro_schemas/sunav2/sunav2_log_flags.avsc", +# "DirSubCopy=location|uncertainty_coef") +#' @seealso \code{\link[eddy4R.base]{def.rglr}} + +# changelog and author contributions / copyrights +# Nora Catolico (12/4/2025) +# original creation +############################################################################################## +library(foreach) +library(doParallel) +library(dplyr) + +# Source the wrapper function. Assume it is in the working directory +source("./wrap.gap.fill.nonrglr.R") + +# Pull in command line arguments (parameters) +arg <- base::commandArgs(trailingOnly = TRUE) + +# Start logging +log <- NEONprocIS.base::def.log.init() + +# Use environment variable to specify how many cores to run on +numCoreUse <- base::as.numeric(Sys.getenv('PARALLELIZATION_INTERNAL')) +numCoreAvail <- parallel::detectCores() +if (base::is.na(numCoreUse)){ + numCoreUse <- 1 +} +if(numCoreUse > numCoreAvail){ + numCoreUse <- numCoreAvail +} +log$debug(paste0(numCoreUse, ' of ',numCoreAvail, ' available cores will be used for internal parallelization.')) + +# Parse the input arguments into parameters +Para <- + NEONprocIS.base::def.arg.pars( + arg = arg, + NameParaReqd = c( + "DirIn", + "DirOut", + "DirErr", + "DirFill", + "WndwFill" + ), + NameParaOptn = c( + "DirSubCopy", + "FileSchm" + ), + log = log + ) + +# Retrieve output schema(s) +log$debug(base::paste0( + 'Output schema(s) for gap-filled data: ', + base::paste0(Para$FileSchm, collapse = ',') +)) +if(length(Para$FileSchm)>0){ + SchmFill <- + NEONprocIS.base::def.vect.pars.pair( + vect = Para$FileSchm, + KeyExp = Para$DirFill, + ValuDflt = 'NA', + NameCol = c('DirFill', 'FileSchmFill'), + log = log + ) + # Read in the schema(s) + SchmFill$SchmFill <- NA + for (idxSchmFill in 1:base::length(SchmFill$FileSchmFill)) { + if (SchmFill$FileSchmFill[idxSchmFill] != 'NA') { + SchmFill$SchmFill[idxSchmFill] <- + base::paste0(base::readLines(SchmFill$FileSchmFill[idxSchmFill]), + collapse = '') + } + } +}else{ + SchmFill <- NA +} + + +# Echo arguments +log$debug(base::paste0('Input directory: ', Para$DirIn)) +log$debug(base::paste0('Output directory: ', Para$DirOut)) +log$debug(base::paste0('Error directory: ', Para$DirErr)) +log$debug(base::paste0( + 'Terminal Directories to gap fill: ', + base::paste0(Para$DirFill, collapse = ',') +)) + +# Retrieve intervals for gap filling +WndwFill <- base::as.numeric(Para$WndwFill) +log$debug(base::paste0('Interval for gap filling, in minutes: ',base::paste0(WndwFill,collapse=','))) + + +# Retrieve output schema(s) +log$debug(base::paste0( + 'Output schema(s) for gap filled data: ', + base::paste0(Para$FileSchmFill, collapse = ',') +)) + +# Retrieve optional subdirectories to copy over +DirSubCopy <- + base::unique(base::setdiff(Para$DirSubCopy, Para$DirFill)) +log$debug(base::paste0( + 'Additional subdirectories to copy: ', + base::paste0(DirSubCopy, collapse = ',') +)) + +nameDirSub <- base::as.list(c(Para$DirFill)) +log$debug(base::paste0( + 'Expected subdirectories of each datum path: ', + base::paste0(nameDirSub, collapse = ',') +)) + +# Find all the input paths (datums). We will process each one. +DirIn <- + NEONprocIS.base::def.dir.in(DirBgn = Para$DirIn, + nameDirSub = nameDirSub, + log = log) + +# Process each datum +doParallel::registerDoParallel(numCoreUse) +foreach::foreach(idxDirIn = DirIn) %dopar% { + + log$info(base::paste0('Processing datum path: ', idxDirIn)) + + # Run the wrapper function for each datum, with error routing + tryCatch( + withCallingHandlers( + wrap.gap.fill.nonrglr(DirIn=idxDirIn, + DirOutBase=Para$DirOut, + WndwFill=WndwFill, + DirFill=Para$DirFill, + SchmFill=SchmFill, + DirSubCopy=DirSubCopy, + log=log + ), + error = function(err) { + call.stack <- base::sys.calls() # is like a traceback within "withCallingHandlers" + + # Re-route the failed datum + NEONprocIS.base::def.err.datm( + err=err, + call.stack=call.stack, + DirDatm=idxDirIn, + DirErrBase=Para$DirErr, + RmvDatmOut=TRUE, + DirOutBase=Para$DirOut, + log=log + ) + } + ), + # This simply to avoid returning the error + error=function(err) {} + ) + + + return() + +} # End loop around datum paths diff --git a/flow/flow.gap.fill.nonrglr/renv.lock b/flow/flow.gap.fill.nonrglr/renv.lock new file mode 100644 index 000000000..e1243e0b3 --- /dev/null +++ b/flow/flow.gap.fill.nonrglr/renv.lock @@ -0,0 +1,235 @@ +{ + "R": { + "Version": "4.1.3", + "Repositories": [ + { + "Name": "CRAN", + "URL": "https://cran.rstudio.com" + } + ] + }, + "Packages": { + "R6": { + "Package": "R6", + "Version": "2.6.1", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "d4335fe7207f1c01ab8c41762f5840d4", + "Requirements": [] + }, + "cli": { + "Package": "cli", + "Version": "3.6.5", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "16850760556401a2eeb27d39bd11c9cb", + "Requirements": [] + }, + "codetools": { + "Package": "codetools", + "Version": "0.2-18", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "019388fc48e48b3da0d3a76ff94608a8", + "Requirements": [] + }, + "doParallel": { + "Package": "doParallel", + "Version": "1.0.17", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "451e5edf411987991ab6a5410c45011f", + "Requirements": [ + "foreach", + "iterators" + ] + }, + "dplyr": { + "Package": "dplyr", + "Version": "1.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "fedd9d00c2944ff00a0e2696ccf048ec", + "Requirements": [ + "R6", + "cli", + "generics", + "glue", + "lifecycle", + "magrittr", + "pillar", + "rlang", + "tibble", + "tidyselect", + "vctrs" + ] + }, + "foreach": { + "Package": "foreach", + "Version": "1.5.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "618609b42c9406731ead03adf5379850", + "Requirements": [ + "codetools", + "iterators" + ] + }, + "fs": { + "Package": "fs", + "Version": "1.6.6", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "7eb1e342eee7e0a7449c49cdaa526d39", + "Requirements": [] + }, + "generics": { + "Package": "generics", + "Version": "0.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "4b29bf698d0c7bdb9f1e4976e7ade41d", + "Requirements": [] + }, + "glue": { + "Package": "glue", + "Version": "1.8.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "5899f1eaa825580172bb56c08266f37c", + "Requirements": [] + }, + "iterators": { + "Package": "iterators", + "Version": "1.0.14", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "8954069286b4b2b0d023d1b288dce978", + "Requirements": [] + }, + "lifecycle": { + "Package": "lifecycle", + "Version": "1.0.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "b8552d117e1b808b09a832f589b79035", + "Requirements": [ + "cli", + "glue", + "rlang" + ] + }, + "magrittr": { + "Package": "magrittr", + "Version": "2.0.3", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "7ce2733a9826b3aeb1775d56fd305472", + "Requirements": [] + }, + "pillar": { + "Package": "pillar", + "Version": "1.10.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "1098920a19b5cd5a15bacdc74a89979d", + "Requirements": [ + "cli", + "glue", + "lifecycle", + "rlang", + "utf8", + "vctrs" + ] + }, + "pkgconfig": { + "Package": "pkgconfig", + "Version": "2.0.3", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "01f28d4278f15c76cddbea05899c5d6f", + "Requirements": [] + }, + "renv": { + "Package": "renv", + "Version": "0.16.0", + "Source": "GitHub", + "RemoteType": "github", + "RemoteHost": "api.github.com", + "RemoteRepo": "renv", + "RemoteUsername": "rstudio", + "RemoteRef": "0.16.0", + "RemoteSha": "0e3aab27a928eb261819a3fc45a3ee2b4ba902a5", + "Hash": "9e5e2246d73254a29a4182f4e8257c09", + "Requirements": [] + }, + "rlang": { + "Package": "rlang", + "Version": "1.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "3eec01f8b1dee337674b2e34ab1f9bc1", + "Requirements": [] + }, + "tibble": { + "Package": "tibble", + "Version": "3.3.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "784b27d0801c3829de602105757b2cd7", + "Requirements": [ + "cli", + "lifecycle", + "magrittr", + "pillar", + "pkgconfig", + "rlang", + "vctrs" + ] + }, + "tidyselect": { + "Package": "tidyselect", + "Version": "1.2.1", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "829f27b9c4919c16b593794a6344d6c0", + "Requirements": [ + "cli", + "glue", + "lifecycle", + "rlang", + "vctrs", + "withr" + ] + }, + "utf8": { + "Package": "utf8", + "Version": "1.2.6", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "d526d558be176e9ceb68c3d1e83479b7", + "Requirements": [] + }, + "vctrs": { + "Package": "vctrs", + "Version": "0.6.5", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "c03fa420630029418f7e6da3667aac4a", + "Requirements": [ + "cli", + "glue", + "lifecycle", + "rlang" + ] + }, + "withr": { + "Package": "withr", + "Version": "3.0.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "cc2d62c76458d425210d1eb1478b30b4", + "Requirements": [] + } + } +} diff --git a/flow/flow.gap.fill.nonrglr/wrap.gap.fill.nonrglr.R b/flow/flow.gap.fill.nonrglr/wrap.gap.fill.nonrglr.R new file mode 100644 index 000000000..d515edf9e --- /dev/null +++ b/flow/flow.gap.fill.nonrglr/wrap.gap.fill.nonrglr.R @@ -0,0 +1,203 @@ +############################################################################################## +#' @title Gap filling module for non-regularized data in NEON IS data processing. + +#' @author +#' Nora Catolico \email{ncatolico@battelleecology.org} + +#' @description Wrapper function. +#' General code workflow: +#' Parse input parameters +#' Read in output schemas if indicated in parameters +#' Determine datums to process (set of files/folders to process as a single unit) +#' For each datum: +#' Create output directories and copy (by symbolic link) unmodified components +#' Loop through all data files and fill gaps +#' Write out the gap filled data +#' +#' +#' @param DirIn Character value. The input path to the data from a single sensor or location, structured as follows: +#' #/pfs/BASE_REPO/#/yyyy/mm/dd/#/id, where # indicates any number of parent and child directories +#' of any name, so long as they are not 'pfs' or recognizable as the 'yyyy/mm/dd' structure which indicates +#' the 4-digit year, 2-digit month, and' 2-digit day. The id is the unique identifier of the sensor or location. \cr +#' +#' Nested within this path are the folders: +#' /data +#' /flags +#' +#' @param DirOutBase Character value. The output path that will replace the #/pfs/BASE_REPO portion of DirIn. +#' +#' @param DirFill List of the terminal directories where the data to be +#' gap filled resides. This will be one or more child levels away from "DirIn". All files in the +#' terminal directory will be gap filled. The value may also be a vector of terminal directories, +#' separated by pipes (|). All terminal directories must be present and at the same directory level. +#' For example, "DirFill=data|flags" indicates to gap fill the data files within each the data +#' and flags directories. +#' +#' @param FileSchm Character value (optional), where value is the full path to schema for data output by +#' this workflow. The value may be NA, in which case the output schema will be the same as the input +#' data. The value may be a single file, in which case it will apply to all output, or +#' multiple values in which case the argument is formatted as dir:value|dir:value... +#' where dir is one of the directories specified in DirFill and value is the path to the schema file +#' for the output of that directory. Multiple dir:value pairs are separated by pipes (|). +#' For example, "FileSchm=data:/path/to/schemaData.avsc|flags:NA" indicates that the +#' output from the data directory will be written with the schema /path/to/schemaData.avsc and the +#' output from the flags directory will be the same as the input files found in that +#' directory. +#' +#' @param WndwFill Character value. The window in minutes in which data are expected. It is formatted as a 3 character sequence, +#' representing the number of minutes over which any number of measurements are expected. +#' For example, "WndwFill=015" refers to a 15-minute interval, while "WndwAgr=030" refers to a +#' 30-minute interval. +#' +#' @param DirSubCopy (optional) Character vector. The names of additional subfolders at +#' the same level as the location folder in the input path that are to be copied with a symbolic link to the +#' output path (i.e. not combined but carried through as-is). + +#' @param log A logger object as produced by NEONprocIS.base::def.log.init to produce structured log +#' output. Defaults to NULL, in which the logger will be created and used within the function. See NEONprocIS.base::def.log.init +#' for more details. + +#' @return Gap filled data output in Parquet format in DirOutBase, where DirOutBase directory +#' replaces BASE_REPO of DirIn but otherwise retains the child directory structure of the input path. + +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 + +#' @keywords Currently none + +#' @examples +#' # Not run + +#' @seealso None currently + +# changelog and author contributions / copyrights +# Nora Catolico (2025-12-4) +# original creation +############################################################################################## +wrap.gap.fill.nonrglr <- function(DirIn, + DirOutBase, + DirFill, + WndwFill, + SchmFill, + DirSubCopy=NULL, + log=NULL +){ + + # Start logging if not already + if(base::is.null(log)){ + log <- NEONprocIS.base::def.log.init() + } + + # Gather info about the input directory (including date) and create the output directory. + InfoDirIn <- NEONprocIS.base::def.dir.splt.pach.time(DirIn,log=log) + dirOut <- base::paste0(DirOutBase, InfoDirIn$dirRepo) + + timeBgn <-InfoDirIn$time # Earliest possible start date for the data + timeEnd <- InfoDirIn$time + base::as.difftime(1, units = 'days') + # All minute window start times in [timeBgn, timeEnd) + all_starts <- seq(timeBgn, timeEnd - WndwFill*60, by = WndwFill*60) + + # Helper to floor readout_times to window starts + floor_15m <- function(x) { + as.POSIXct(floor(as.numeric(x) / (WndwFill*60)) * (WndwFill*60), + origin = "1970-01-01", tz = attr(x, "tzone")) + } + + # Copy with a symbolic link the desired subfolders + if (base::length(DirSubCopy) > 0) { + NEONprocIS.base::def.dir.copy.symb(base::paste0(DirIn, '/', DirSubCopy), + dirOut, + log = log) + } + + + # --------- loop through the directories ---------- + for (i in 1:length(DirFill)){ + + subDir<-DirFill[i] + + # Take stock of our files. + subDirIn <- fs::path(DirIn,subDir) + files <- base::list.files(subDirIn,full.names=FALSE) + + #loop through files in directory + for (j in 1:length(files)){ + fileName <- files[j] + + # Load in file in parquet format into data frame + df <- + base::try(NEONprocIS.base::def.read.parq(NameFile = base::paste0(subDirIn, '/', fileName), + log = log), + silent = FALSE) + if (base::any(base::class(df) == 'try-error')) { + # Generate error and stop execution + log$error(base::paste0('File ', subDirIn, '/', fileName, ' is unreadable.')) + base::stop() + } + df$readout_time <- base::as.POSIXlt(df$readout_time) + + # Windows that already have at least one observation + present <- unique(floor_15m(df$readout_time)) + + # Missing windows + missing <- all_starts[!all_starts %in% present] + + # Build blank rows for missing windows + blanks <- data.frame(readout_time = missing) + + # Combine and sort + df_filled <- bind_rows(df, blanks) + df_filled <- df_filled[order(df_filled$readout_time), ] + + #add in source id if needed + if("source_id" %in% colnames(df_filled)){ + source_id<-unique(df_filled$source_id[!is.na(df_filled$source_id)]) + if(length(source_id>0)){ + df_filled$source_id[is.na(df_filled$source_id)]<-source_id[1] + }else{ + df_filled$source_id[is.na(df_filled$source_id)]<-"99999" + } + } + + # create output directories + subDirOut <- paste0(dirOut,'/',subDir,'/') + base::dir.create(subDirOut,recursive=TRUE) + + # select output schema + if(!is.na(SchmFill)){ + FileSchmFill<-SchmFill$FileSchmFill[grepl(subDir,SchmFill$DirFill)] + if(length(FileSchmFill)>1){ + #specific to suna for now. can be updated if needed down the road + if(grepl("log",fileName,ignore.case = TRUE)){ + FileSchmFill<-FileSchmFill[grepl("log",FileSchmFill,ignore.case = TRUE)] + } + if(grepl("cal",fileName,ignore.case = TRUE)){ + FileSchmFill<-FileSchmFill[grepl("cal",FileSchmFill,ignore.case = TRUE)] + } + } + if (base::is.na(FileSchmFill)|FileSchmFill=="NA"|length(FileSchmFill)>1) { + # use the output data to generate a schema + idxSchmFill <- base::attr(df_filled, 'schema') + } else { + idxSchmFill <- SchmFill$SchmFill[SchmFill$FileSchmFill==FileSchmFill] + } + }else{ + # use the output data to generate a schema + idxSchmFill <- base::attr(df_filled, 'schema') + } + + + # write out data + rptOut <- try(NEONprocIS.base::def.wrte.parq(data = df_filled, + NameFile = base::paste0(subDirOut,fileName),Schm = idxSchmFill),silent=TRUE) + if(class(rptOut)[1] == 'try-error'){ + log$error(base::paste0('Cannot write file to ',base::paste0(subDirOut,fileName),'. ',attr(rptOut, "condition"))) + stop() + } else { + log$info(base::paste0('File written successfully in ', base::paste0(subDirOut,fileName))) + } + + } + } + +} diff --git a/flow/flow.qf.insuff.data/Dockerfile b/flow/flow.qf.insuff.data/Dockerfile new file mode 100644 index 000000000..87dae10ae --- /dev/null +++ b/flow/flow.qf.insuff.data/Dockerfile @@ -0,0 +1,29 @@ +# Dockerfile for NEON IS Data Processing - insufficient data + +# Start with the NEON IS base package image +FROM us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-pack-base-r:v1.7.0 + +ARG FLOW_DIR="./flow" +ARG APP_DIR="flow.qf.insuff.data" + +# maintainer handle +MAINTAINER "Bobby Hensley" hensley@battelleecology.org + +# Copy the lockfile and restore known working versions of R dependency packages +# ENSURE that the renv.lock file is up-to-date and thus has all listed dependencies prior to creating this docker image +COPY ${FLOW_DIR}/${APP_DIR}/renv.lock /renv.lock +RUN R -e 'renv::restore(lockfile="/renv.lock")' + +# Create app user +RUN groupadd app && \ + useradd app -g app +WORKDIR /home/app + +# Copy in application code +COPY ${FLOW_DIR}/${APP_DIR}/flow.qf.insuff.data.R . +COPY ${FLOW_DIR}/${APP_DIR}/wrap.qf.insuff.data.R . + +# Run as app user +RUN chown app:app -R /home/app +USER app + diff --git a/flow/flow.qf.insuff.data/flow.qf.insuff.data.R b/flow/flow.qf.insuff.data/flow.qf.insuff.data.R new file mode 100644 index 000000000..2c8d79de1 --- /dev/null +++ b/flow/flow.qf.insuff.data/flow.qf.insuff.data.R @@ -0,0 +1,204 @@ +############################################################################################## +#' @title Workflow for insufficient data calculations + +#' @author +#' Bobby Hensley \email{hensley@battelleecology.org} + +#' @description Workflow. Uses number of measuremnts in averaging window to determine whether insufficient +#' data quality flag should be applied. +#' +#' The arguments are: +#' +#' 1. "DirIn=value", The base file path to the statistics data (including number of points) and the QM data. +#' +#' 2-N. "insuffInfoX=value", where X is a number beginning at 1 and value is a group of parameter fields and +#' user-defined values for determining data insufficiency. Each group is a single argument, where the field is listed first followed +#' by any applicable value strings, separated by pipes. All groups must include the following fields: +#' term - Name of the product e.g."nitrate" +#' wndw - window of time for which insufficient data will be calculated +#' minPoints - minimum number of points required to not trigger the insufficient data quality flag +#' There may be multiple assignments of insuffInfoX, specified by incrementing the number X by 1 with each additional argument. +#' For example, a 3-argument set of parameter-value groups could be: +#' "insuffInfo1=term:nitrate|wndw:030|minPoints:10" +#' "insuffInfo3=term:nitrate|wndw:005|minPoints:5" +#' "insuffInfo3=term:temp|wndw:030|minPoints:10" +#' +#' N+1. "DirOut=value", The base file path for the output data. +#' +#' N+2. "DirErr=value", where the value is the output path to place the path structure of errored datums that will +#' replace the #/pfs/BASE_REPO portion of \code{DirIn}. +#' +#' N+3. "SchmStats=value" (optional), The avro schema for the input and output stats file. +#' +#' N+4. "SchmQMs=value" (optional), The avro schema for the updated QMs (insufficientDataQF added). +#' +#' N+5. "DirSubCopy=value" (optional), where value is the names of additional subfolders, separated by +#' pipes, that are to be copied with a symbolic link to the output path. +#' +#' Note: This script implements logging described in \code{\link[NEONprocIS.base]{def.log.init}}, +#' which uses system environment variables if available. +#' +#' @return Updated stats and QMs data files in daily parquets. + +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 + +#' @keywords Currently none + +#' @examples +#' flow.qf.insuff.data <- function(DirIn<-"~/pfs/nitrate_null_gap_ucrt/2025/06/24/nitrate_CRAM103100/sunav2/CFGLOC110733", +#' insuffInfo1<-"term:nitrate|wndw:015|minPoints:5", +#' DirOut<-"~/pfs/nitrate_null_gap_ucrt_updated/2025/06/24/nitrate_CRAM103100/sunav2/CFGLOC110733" , +#' SchmStats<-base::paste0(base::readLines('~/pfs/nitrate_avro_schemas/sunav2_stats.avsc'),collapse=''), +#' SchmQMs<-base::paste0(base::readLines('~/pfs/nitrate_avro_schemas/sunav2_quality_metrics.avsc'),collapse=''), +#' log=log) +#' Stepping through the code in R studio +# log <- NEONprocIS.base::def.log.init(Lvl = "debug") +# arg <- c("DirIn=~/pfs/nitrate_null_gap_ucrt/2025/06/24/nitrate_CRAM103100/sunav2/CFGLOC110733", +# "insuffInfo1=term:nitrate|wndw:015|minPoints:5", +# "DirOut=~/pfs/out","DirErr=~/pfs/out/errored_datums","DirSubCopy=location", +# "SchmQMs=~/pfs/nitrate_avro_schemas/nitrate/nitrate_insufficient_data.avsc") +# rm(list=setdiff(ls(),c('arg','log'))) + +#' @seealso None currently + +# changelog and author contributions / copyrights +#' Bobby Hensley (2025-10-31) +#' Initial creation. +#' Nora Catolico (2025-11-04) +#' add in copied directories +#' Nora Catolico (2025-12-11) +#' fix schema outputs +#' Nora Catolico (2026-02-06) +#' Updated code structure for data frame input of multiple variables. +#' +############################################################################################## +options(digits.secs = 3) +library(foreach) +library(doParallel) + +# Source the wrapper function. Assume it is in the working directory +source("./wrap.qf.insuff.data.R") + +# Pull in command line arguments (parameters) +arg <- base::commandArgs(trailingOnly = TRUE) + +# Start logging +log <- NEONprocIS.base::def.log.init() + +# Use environment variable to specify how many cores to run on +numCoreUse <- base::as.numeric(Sys.getenv('PARALLELIZATION_INTERNAL')) +numCoreAvail <- parallel::detectCores() +if (base::is.na(numCoreUse)){ + numCoreUse <- 1 +} +if(numCoreUse > numCoreAvail){ + numCoreUse <- numCoreAvail +} +log$debug(paste0(numCoreUse, ' of ',numCoreAvail, ' available cores will be used for internal parallelization.')) + +# Parse the input arguments into parameters +Para <- NEONprocIS.base::def.arg.pars(arg = arg,NameParaReqd = c("DirIn","insuffInfo1","DirOut","DirErr"), + NameParaOptn = c(base::paste0("insuffInfo",2:100),"SchmStats","SchmQMs","DirSubCopy"),log = log) + +# Echo arguments +log$debug(base::paste0('Input data directory: ', Para$DirIn)) +log$debug(base::paste0('Output directory: ', Para$DirOut)) +log$debug(base::paste0('Error directory: ', Para$DirErr)) +log$debug(base::paste0('Schema for output stats: ', Para$SchmStats)) +log$debug(base::paste0('Schema for output QMs: ', Para$SchmQMs)) +log$debug(base::paste0('Director to copy: ', Para$DirSubCopy)) + +# These are input as subsequent arguments with term and context strings separated by pipes. +namesParaInsuffInfo <- base::names(Para)[names(Para) %in% base::paste0("insuffInfo",1:100)] +numInsuffInfo <- base::length(namesParaInsuffInfo) +insuffParam <- data.frame( + InfoSet = character(), + field = character(), + value = character(), + stringsAsFactors = FALSE +) +for(idx in base::seq_len(numInsuffInfo)){ + nameParaInsuffInfo <- namesParaInsuffInfo[idx] + splt <- Para[[namesParaInsuffInfo[idx]]] + numSplt <- base::length(splt) + if(!"term" %in% splt | !"wndw" %in% splt | !"minPoints" %in% splt){ + log$error(base::paste0('ERROR: insuffInfo',idx,' does not contain the required parameters (term, wndw, minpoints)')) + stop() + } + if (numSplt > 1) { + rpt <- base::data.frame(InfoSet = nameParaInsuffInfo, field = splt[base::seq.int(from = 1,to = numSplt, by = 2)], value = splt[base::seq.int(from = 2,to = numSplt, by = 2)], stringsAsFactors = FALSE) + } + insuffParam <- rbind(insuffParam,rpt) +} +if(nrow(insuffParam)>=3){ + log$debug(base::paste0('Insufficient data parameters successfully read in for ',nrow(insuffParam)/3,' info sets.')) +}else{ + log$error(base::paste0('Error reading in info sets.')) + stop() +} + +# Read in the schemas so we only have to do it once and not every time in the avro writer. +if(base::is.null(Para$SchmStats) || Para$SchmStats == 'NA'){ + SchmStats <- NULL +} else { + SchmStats <- base::paste0(base::readLines(Para$SchmStats),collapse='') +} +if(base::is.null(Para$SchmQMs) || Para$SchmQMs == 'NA'){ + SchmQMs <- NULL +} else { + SchmQMs <- base::paste0(base::readLines(Para$SchmQMs),collapse='') +} + + +# Find all the input paths (datums). We will process each one. +DirIn <- + NEONprocIS.base::def.dir.in(DirBgn = Para$DirIn, + nameDirSub = c('stats','quality_metrics'), + log = log) + +# Retrieve optional subdirectories to copy over +DirSubCopy <- base::unique(base::setdiff(Para$DirSubCopy,'stats')) +log$debug(base::paste0('Additional subdirectories to copy: ',base::paste0(DirSubCopy,collapse=','))) + +# Process each datum path +doParallel::registerDoParallel(numCoreUse) +foreach::foreach(idxFileIn = DirIn) %dopar% { + log$info(base::paste0('Processing path to file: ', idxFileIn)) + # Run the wrapper function for each datum, with error routing + tryCatch( + withCallingHandlers( + wrap.qf.insuff.data( + DirIn=idxFileIn, + insuffParam=insuffParam, + DirOutBase=Para$DirOut, + SchmStats=SchmStats, + SchmQMs=SchmQMs, + DirSubCopy=DirSubCopy, + log=log + ), + error = function(err) { + call.stack <- base::sys.calls() # is like a traceback within "withCallingHandlers" + + # Re-route the failed datum + NEONprocIS.base::def.err.datm( + err=err, + call.stack=call.stack, + DirDatm=idxDirIn, + DirErrBase=Para$DirErr, + RmvDatmOut=TRUE, + DirOutBase=Para$DirOut, + log=log + ) + } + ), + # This simply to avoid returning the error + error=function(err) {} + ) + + return() +} + + + + diff --git a/flow/flow.qf.insuff.data/renv.lock b/flow/flow.qf.insuff.data/renv.lock new file mode 100644 index 000000000..f2d45d4f4 --- /dev/null +++ b/flow/flow.qf.insuff.data/renv.lock @@ -0,0 +1,256 @@ +{ + "R": { + "Version": "4.1.3", + "Repositories": [ + { + "Name": "CRAN", + "URL": "https://cran.rstudio.com" + } + ] + }, + "Packages": { + "R6": { + "Package": "R6", + "Version": "2.6.1", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "d4335fe7207f1c01ab8c41762f5840d4", + "Requirements": [] + }, + "cli": { + "Package": "cli", + "Version": "3.6.5", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "16850760556401a2eeb27d39bd11c9cb", + "Requirements": [] + }, + "codetools": { + "Package": "codetools", + "Version": "0.2-18", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "019388fc48e48b3da0d3a76ff94608a8", + "Requirements": [] + }, + "cpp11": { + "Package": "cpp11", + "Version": "0.5.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "2720e3fd3dad08f34b19b56b3d6f073d", + "Requirements": [] + }, + "doParallel": { + "Package": "doParallel", + "Version": "1.0.17", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "451e5edf411987991ab6a5410c45011f", + "Requirements": [ + "foreach", + "iterators" + ] + }, + "dplyr": { + "Package": "dplyr", + "Version": "1.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "fedd9d00c2944ff00a0e2696ccf048ec", + "Requirements": [ + "R6", + "cli", + "generics", + "glue", + "lifecycle", + "magrittr", + "pillar", + "rlang", + "tibble", + "tidyselect", + "vctrs" + ] + }, + "foreach": { + "Package": "foreach", + "Version": "1.5.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "618609b42c9406731ead03adf5379850", + "Requirements": [ + "codetools", + "iterators" + ] + }, + "generics": { + "Package": "generics", + "Version": "0.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "4b29bf698d0c7bdb9f1e4976e7ade41d", + "Requirements": [] + }, + "glue": { + "Package": "glue", + "Version": "1.8.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "5899f1eaa825580172bb56c08266f37c", + "Requirements": [] + }, + "iterators": { + "Package": "iterators", + "Version": "1.0.14", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "8954069286b4b2b0d023d1b288dce978", + "Requirements": [] + }, + "lifecycle": { + "Package": "lifecycle", + "Version": "1.0.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "b8552d117e1b808b09a832f589b79035", + "Requirements": [ + "cli", + "glue", + "rlang" + ] + }, + "lubridate": { + "Package": "lubridate", + "Version": "1.9.3", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "680ad542fbcf801442c83a6ac5a2126c", + "Requirements": [ + "generics", + "timechange" + ] + }, + "magrittr": { + "Package": "magrittr", + "Version": "2.0.3", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "7ce2733a9826b3aeb1775d56fd305472", + "Requirements": [] + }, + "pillar": { + "Package": "pillar", + "Version": "1.10.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "1098920a19b5cd5a15bacdc74a89979d", + "Requirements": [ + "cli", + "glue", + "lifecycle", + "rlang", + "utf8", + "vctrs" + ] + }, + "pkgconfig": { + "Package": "pkgconfig", + "Version": "2.0.3", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "01f28d4278f15c76cddbea05899c5d6f", + "Requirements": [] + }, + "renv": { + "Package": "renv", + "Version": "0.16.0", + "Source": "GitHub", + "RemoteType": "github", + "RemoteHost": "api.github.com", + "RemoteRepo": "renv", + "RemoteUsername": "rstudio", + "RemoteRef": "0.16.0", + "RemoteSha": "0e3aab27a928eb261819a3fc45a3ee2b4ba902a5", + "Hash": "9e5e2246d73254a29a4182f4e8257c09", + "Requirements": [] + }, + "rlang": { + "Package": "rlang", + "Version": "1.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "3eec01f8b1dee337674b2e34ab1f9bc1", + "Requirements": [] + }, + "tibble": { + "Package": "tibble", + "Version": "3.3.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "784b27d0801c3829de602105757b2cd7", + "Requirements": [ + "cli", + "lifecycle", + "magrittr", + "pillar", + "pkgconfig", + "rlang", + "vctrs" + ] + }, + "tidyselect": { + "Package": "tidyselect", + "Version": "1.2.1", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "829f27b9c4919c16b593794a6344d6c0", + "Requirements": [ + "cli", + "glue", + "lifecycle", + "rlang", + "vctrs", + "withr" + ] + }, + "timechange": { + "Package": "timechange", + "Version": "0.2.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "8548b44f79a35ba1791308b61e6012d7", + "Requirements": [ + "cpp11" + ] + }, + "utf8": { + "Package": "utf8", + "Version": "1.2.6", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "d526d558be176e9ceb68c3d1e83479b7", + "Requirements": [] + }, + "vctrs": { + "Package": "vctrs", + "Version": "0.6.5", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "c03fa420630029418f7e6da3667aac4a", + "Requirements": [ + "cli", + "glue", + "lifecycle", + "rlang" + ] + }, + "withr": { + "Package": "withr", + "Version": "3.0.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "cc2d62c76458d425210d1eb1478b30b4", + "Requirements": [] + } + } +} diff --git a/flow/flow.qf.insuff.data/wrap.qf.insuff.data.R b/flow/flow.qf.insuff.data/wrap.qf.insuff.data.R new file mode 100644 index 000000000..628c030f8 --- /dev/null +++ b/flow/flow.qf.insuff.data/wrap.qf.insuff.data.R @@ -0,0 +1,199 @@ +############################################################################################## +#' @title Wrapper for insufficient data calculations + +#' @author +#' Bobby Hensley \email{hensley@battelleecology.org} +#' +#' @description Wrapper function. Determines the number of available measurements within an +#' averaging period, and whether an insufficient data quality flag should be applied. +#' This insufficient data quality flag is then used to determine whether the final quality +#' flag should be applied. It assumes that measurements that have failed individual +#' plausibility and sensor-specific tests have been removed and the number of remaining +#' measurements available for averaging is the only factor determining the final data quality. +#' +#' @param DirIn Character value. The base file path to the averaged stats and quality metrics. +#' +#' @param InssuffParam Data table of parameters generated by flow script. +#' +#' @param DirOut Character value. The base file path for the output data. +#' +#' @param SchmStats (optional), A json-formatted character string containing the schema for the output averaged stats parquet. +#' Should be the same as the input. +#' +#' @param SchmQMs (optional), A json-formatted character string containing the schema for the output quality metrics parquet +#' with insufficient data quality flag added. +#' +#' @param DirSubCopy (optional) Character vector. The names of additional subfolders at +#' the same level as the location folder in the input path that are to be copied with a symbolic link to the +#' output path (i.e. not combined but carried through as-is). +#' +#' @param log A logger object as produced by NEONprocIS.base::def.log.init to produce structured log +#' output. Defaults to NULL, in which the logger will be created and used within the function. See NEONprocIS.base::def.log.init +#' for more details. +#' +#' @return Averaged stats file and quality metric file in daily parquets. +#' +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 +#' +#' @keywords Currently none +#' +#' @examples +#' # Not run +# DirIn<-"~/pfs/nitrate_null_gap_ucrt/2025/06/24/nitrate_CRAM103100/sunav2/CFGLOC110733" +# insuffParamEx<-read.csv("~/pfs/insuffParamExample.csv") +# DirOutBase<-"~/pfs/out" +# SchmStats<-base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2_stats.avsc'),collapse='') +# SchmQMs<-base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2_quality_metrics.avsc'),collapse='') +# log <- NEONprocIS.base::def.log.init(Lvl = "debug") +#' +#' +#' @changelog +#' Bobby Hensley (2025-10-31) +#' Initial creation. +#' +#' Bobby Hensley (2025-12-18) +#' Updated so that finalQF is solely determined by insufficientDataQF. +#' Nora Catolico (2026-02-06) +#' Updated for data frame input of multiple variables. +############################################################################################## +wrap.qf.insuff.data <- function(DirIn, + insuffParam, + DirOutBase, + SchmStats=NULL, + SchmQMs=NULL, + DirSubCopy=NULL, + log=NULL +){ + + #' Start logging if not already. + if(base::is.null(log)){ + log <- NEONprocIS.base::def.log.init() + } + + InfoDirIn <- NEONprocIS.base::def.dir.splt.pach.time(DirIn) + DirInStats <- paste0(DirIn,"/stats") + DirInQMs <- paste0(DirIn,"/quality_metrics") + DirOut <- base::paste0(DirOutBase,InfoDirIn$dirRepo) + DirOutStats <- base::paste0(DirOut,"/stats") + base::dir.create(DirOutStats,recursive=TRUE) + DirOutQMs <- base::paste0(DirOut,"/quality_metrics") + base::dir.create(DirOutQMs,recursive=TRUE) + + # Copy with a symbolic link the desired subfolders + if(base::length(DirSubCopy) > 0){ + NEONprocIS.base::def.dir.copy.symb(DirSrc=base::paste0(DirIn,'/',DirSubCopy), + DirDest=DirOut, + LnkSubObj=TRUE, + log=log) + } + + #take stock of available files + statsFileNames<-base::list.files(DirInStats,full.names=FALSE) + qmFileNames<-base::list.files(DirInQMs,full.names=FALSE) + + #loop through unique insuffParam values + paramGroups<-unique(insuffParam$InfoSet) + numGroups<-length(paramGroups) + + for (groupIdx in 1:numGroups){ + #subset to one group + paramGroup <- insuffParam[insuffParam$InfoSet == paramGroups[groupIdx],] + + #identify averaging index and min points + wndw <- as.character(paramGroup$value[paramGroup$field == "wndw"]) + minPoints <- as.numeric(paramGroup$value[paramGroup$field == "minPoints"]) + term <- as.character(paramGroup$value[paramGroup$field == "term"]) + + #' choose appropriate file and read in averaged stats parquet + statsFile <- statsFileNames[grepl(paste0(wndw, "\\.parquet$"), statsFileNames)] + if(length(statsFile)==0){ + log$error(base::paste0('Stats file with averaging window ', wndw,' not found in ', DirInStats)) + stop() + } + statsData<-NEONprocIS.base::def.read.parq(NameFile = base::paste0(DirInStats, '/', statsFile), + log = log) + log$debug(base::paste0('Successfully read in file: ',statsFile)) + + #' choose appropriate file and read in averaged quality parquet + qmFile <- qmFileNames[grepl(paste0(wndw, "\\.parquet$"), qmFileNames)] + if(length(qmFile)==0){ + log$error(base::paste0('Quality metrics file with averaging window ', wndw,' not found in ', DirInQMs)) + stop() + } + qmData<-NEONprocIS.base::def.read.parq(NameFile = base::paste0(DirInQMs, '/', qmFile), + log = log) + log$debug(base::paste0('Successfully read in file: ',qmFile)) + + + + # Return the column name(s) containing term and number of points + numPointsColumn <- names(statsData)[grepl(term, names(statsData), ignore.case = TRUE) & + grepl("Num", names(statsData), ignore.case = TRUE)] + if(length(numPointsColumn)!=1){ + log$error(base::paste0('No column found with name the includes ', term,' and num in', DirInStats)) + stop() + } + #' If the number of points is NA, set it to 0. + statsData[is.na(statsData[[numPointsColumn]]), numPointsColumn] <- 0 + + #find insufficient data column name if it already exists + insuffQFColumn <- names(qmData)[grepl("insuf", names(qmData), ignore.case = TRUE)] + #search by term if multiple exist + if(length(insuffQFColumn)>1){ + insuffQFColumn <- names(qmData)[grepl(term, names(qmData), ignore.case = TRUE) & + grepl("insuf", names(qmData), ignore.case = TRUE)] + } + #add it in if it doesn't exist + if(length(insuffQFColumn)==0){ + insuffQFColumn <- "insufficientDataQF" + } + #' If the number of points is greater than or equal to the minimum required, + #' revert the insufficient data quality flag (default is to apply it). + qmData[[insuffQFColumn]]<-1 + qmData[statsData[[numPointsColumn]] >= minPoints, insuffQFColumn] <- 0 + + + #find final QF column name if it already exists + finalQFcolumn <- names(qmData)[grepl("final", names(qmData), ignore.case = TRUE)] + #search by term if multiple exist + if(length(finalQFcolumn)>1){ + finalQFcolumn <- names(qmData)[grepl(term, names(qmData), ignore.case = TRUE) & + grepl("final", names(qmData), ignore.case = TRUE)] + } + #add it in if it doesn't exist + if(length(finalQFcolumn)==0){ + finalQFcolumn <- "finalQF" + } + + #' If insufficient data QF is applied, apply final QF. + qmData[[finalQFcolumn]] <- ifelse(qmData[[insuffQFColumn]] == 1, 1, 0) + + #' Write out stats file. + rptOutStats <- try(NEONprocIS.base::def.wrte.parq(data = statsData, + NameFile = base::paste0(DirOutStats,'/',statsFile), + Schm = SchmStats),silent=TRUE) + if(class(rptOutStats)[1] == 'try-error'){ + log$error(base::paste0('Cannot write updated stats to ',base::paste0(DirOutStats,'/',statsFile),'. ',attr(rptOutStats, "condition"))) + stop() + } else { + log$info(base::paste0('Updated stats written successfully in ', base::paste0(DirOutStats,'/',statsFile))) + } + + #' Write out QMs file. + rptOutQMs <- try(NEONprocIS.base::def.wrte.parq(data = qmData, + NameFile = base::paste0(DirOutQMs,'/',qmFile), + Schm = SchmQMs),silent=TRUE) + if(class(rptOutQMs)[1] == 'try-error'){ + log$error(base::paste0('Cannot write updated QMs to ',base::paste0(DirOutQMs,'/',qmFile),'. ',attr(rptOutQMs, "condition"))) + stop() + } else { + log$info(base::paste0('Updated QMs written successfully in ', base::paste0(DirOutQMs,'/',qmFile))) + } + + } + +} + + + diff --git a/flow/flow.sunav2.exp.uncert/dockerfile_in_combined_module.txt b/flow/flow.sunav2.exp.uncert/dockerfile_in_combined_module.txt new file mode 100644 index 000000000..75b5d274e --- /dev/null +++ b/flow/flow.sunav2.exp.uncert/dockerfile_in_combined_module.txt @@ -0,0 +1 @@ +sunav2_ucrt_group \ No newline at end of file diff --git a/flow/flow.sunav2.exp.uncert/flow.sunav2.exp.uncert.R b/flow/flow.sunav2.exp.uncert/flow.sunav2.exp.uncert.R new file mode 100644 index 000000000..5c73a083f --- /dev/null +++ b/flow/flow.sunav2.exp.uncert/flow.sunav2.exp.uncert.R @@ -0,0 +1,148 @@ +############################################################################################## +#' @title Workflow for SUNA expanded uncertainty calculation + +#' @author +#' Bobby Hensley \email{hensley@battelleecology.org} + +#' @description Workflow. Calculates the expanded uncertainty for each SUNA burst. +#' +#' The arguments are: +#' +#' 1. "DirIn=value", The base file path to the statistics data and calibration coefficients +#' +#' 2. "DirOut=value", The base file path for the output data. +#' +#' 3. "DirErr=value", where the value is the output path to place the path structure of errored datums that will +#' replace the #/pfs/BASE_REPO portion of \code{DirIn}. +#' +#' 4. "SchmStats=value" (optional), The avro schema for the input and output stats file. +#' +#' 5. "DirSubCopy=value" (optional), where value is the names of additional subfolders, separated by +#' pipes, that are to be copied with a symbolic link to the output path. +#' +#' Note: This script implements logging described in \code{\link[NEONprocIS.base]{def.log.init}}, +#' which uses system environment variables if available. +#' +#' @return Updated stats files with expanded uncertainty in daily parquets. + +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 + +#' @keywords Currently none + +#' @examples +#' flow.sunav2.exp.uncert <- function(DirIn<-"~/pfs/nitrate_null_gap_ucrt/2025/06/24/nitrate_CRAM103100/sunav2/CFGLOC110733", +#' DirOut<-"~/pfs/nitrate_null_gap_ucrt_updated/2025/06/24/nitrate_CRAM103100/sunav2/CFGLOC110733" , +#' SchmStats<-base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2_stats.avsc'),collapse=''), +#' log=log) +#' Stepping through the code in R studio +# log <- NEONprocIS.base::def.log.init(Lvl = "debug") +# arg <- c("DirIn=~/pfs/testing/nitrate-surfacewater_SUGG103100", +# "DirOut=~/pfs/nitrate_null_gap_ucrt_updated", +# "DirErr=~/pfs/nitrate_null_gap_ucrt_updated/errored_datums", +# "DirSubCopy=group|location|quality_metrics", +# "SchmStats=~/pfs/nitrate_avro_schemas/nitrate/nitrate_ucrt.avsc") +# rm(list=setdiff(ls(),c('arg','log'))) + +#' @seealso None currently + +# changelog and author contributions / copyrights +#' Bobby Hensley (2025-10-31) +#' Initial creation. +#' Nora Catolico (2025-11-04) +#' add in copied directories + +############################################################################################## +options(digits.secs = 3) +library(foreach) +library(doParallel) +library(lubridate) + +# Source the wrapper function. Assume it is in the working directory +source("./wrap.sunav2.exp.uncert.R") + +# Pull in command line arguments (parameters) +arg <- base::commandArgs(trailingOnly = TRUE) + +# Start logging +log <- NEONprocIS.base::def.log.init() + +# Use environment variable to specify how many cores to run on +numCoreUse <- base::as.numeric(Sys.getenv('PARALLELIZATION_INTERNAL')) +numCoreAvail <- parallel::detectCores() +if (base::is.na(numCoreUse)){ + numCoreUse <- 1 +} +if(numCoreUse > numCoreAvail){ + numCoreUse <- numCoreAvail +} +log$debug(paste0(numCoreUse, ' of ',numCoreAvail, ' available cores will be used for internal parallelization.')) + +# Parse the input arguments into parameters +Para <- NEONprocIS.base::def.arg.pars(arg = arg,NameParaReqd = c("DirIn","DirOut","DirErr"), + NameParaOptn = c("SchmStats","DirSubCopy"),log = log) + +# Echo arguments +log$debug(base::paste0('Input data directory: ', Para$DirIn)) +log$debug(base::paste0('Output directory: ', Para$DirOut)) +log$debug(base::paste0('Error directory: ', Para$DirErr)) +log$debug(base::paste0('Schema for output stats: ', Para$SchmStats)) +log$debug(base::paste0('Director to copy: ', Para$DirSubCopy)) + +# Read in the schemas so we only have to do it once and not every time in the avro writer. +if(base::is.null(Para$SchmStats) || Para$SchmStats == 'NA'){ + SchmStats <- NULL +} else { + SchmStats <- base::paste0(base::readLines(Para$SchmStats),collapse='') +} + + +# Find all the input paths (datums). We will process each one. +DirIn <- + NEONprocIS.base::def.dir.in(DirBgn = Para$DirIn, + nameDirSub = c('stats','uncertainty_coef'), + log = log) + +# Retrieve optional subdirectories to copy over +DirSubCopy <- base::unique(base::setdiff(Para$DirSubCopy,'stats')) +log$debug(base::paste0('Additional subdirectories to copy: ',base::paste0(DirSubCopy,collapse=','))) + +# Process each datum path +doParallel::registerDoParallel(numCoreUse) +foreach::foreach(idxFileIn = DirIn) %dopar% { + log$info(base::paste0('Processing path to file: ', idxFileIn)) + # Run the wrapper function for each datum, with error routing + tryCatch( + withCallingHandlers( + wrap.sunav2.exp.uncert( + DirIn=idxFileIn, + DirOutBase=Para$DirOut, + SchmStats=SchmStats, + DirSubCopy=DirSubCopy, + log=log + ), + error = function(err) { + call.stack <- base::sys.calls() # is like a traceback within "withCallingHandlers" + + # Re-route the failed datum + NEONprocIS.base::def.err.datm( + err=err, + call.stack=call.stack, + DirDatm=idxDirIn, + DirErrBase=Para$DirErr, + RmvDatmOut=TRUE, + DirOutBase=Para$DirOut, + log=log + ) + } + ), + # This simply to avoid returning the error + error=function(err) {} + ) + + return() +} + + + + diff --git a/flow/flow.sunav2.exp.uncert/renv.lock b/flow/flow.sunav2.exp.uncert/renv.lock new file mode 100644 index 000000000..7283865a0 --- /dev/null +++ b/flow/flow.sunav2.exp.uncert/renv.lock @@ -0,0 +1,101 @@ +{ + "R": { + "Version": "4.1.3", + "Repositories": [ + { + "Name": "CRAN", + "URL": "https://cran.rstudio.com" + } + ] + }, + "Packages": { + "codetools": { + "Package": "codetools", + "Version": "0.2-18", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "019388fc48e48b3da0d3a76ff94608a8", + "Requirements": [] + }, + "cpp11": { + "Package": "cpp11", + "Version": "0.5.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "2720e3fd3dad08f34b19b56b3d6f073d", + "Requirements": [] + }, + "doParallel": { + "Package": "doParallel", + "Version": "1.0.17", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "451e5edf411987991ab6a5410c45011f", + "Requirements": [ + "foreach", + "iterators" + ] + }, + "foreach": { + "Package": "foreach", + "Version": "1.5.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "618609b42c9406731ead03adf5379850", + "Requirements": [ + "codetools", + "iterators" + ] + }, + "generics": { + "Package": "generics", + "Version": "0.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "4b29bf698d0c7bdb9f1e4976e7ade41d", + "Requirements": [] + }, + "iterators": { + "Package": "iterators", + "Version": "1.0.14", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "8954069286b4b2b0d023d1b288dce978", + "Requirements": [] + }, + "lubridate": { + "Package": "lubridate", + "Version": "1.9.3", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "680ad542fbcf801442c83a6ac5a2126c", + "Requirements": [ + "generics", + "timechange" + ] + }, + "renv": { + "Package": "renv", + "Version": "0.16.0", + "Source": "GitHub", + "RemoteType": "github", + "RemoteHost": "api.github.com", + "RemoteRepo": "renv", + "RemoteUsername": "rstudio", + "RemoteRef": "0.16.0", + "RemoteSha": "0e3aab27a928eb261819a3fc45a3ee2b4ba902a5", + "Hash": "9e5e2246d73254a29a4182f4e8257c09", + "Requirements": [] + }, + "timechange": { + "Package": "timechange", + "Version": "0.2.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "8548b44f79a35ba1791308b61e6012d7", + "Requirements": [ + "cpp11" + ] + } + } +} diff --git a/flow/flow.sunav2.exp.uncert/wrap.sunav2.exp.uncert.R b/flow/flow.sunav2.exp.uncert/wrap.sunav2.exp.uncert.R new file mode 100644 index 000000000..81da4f9af --- /dev/null +++ b/flow/flow.sunav2.exp.uncert/wrap.sunav2.exp.uncert.R @@ -0,0 +1,169 @@ +############################################################################################## +#' @title Wrapper for SUNA expanded uncertainty calculation + +#' @author +#' Bobby Hensley \email{hensley@battelleecology.org} +#' +#' @description Wrapper function. Calculates the expanded uncertainty for each SUNA burst. +#' +#' @param DirIn Character value. The base file path to the averaged stats and uncertainty coefficients. +#' +#' @param DirOutBase Character value. The base file path for the output data. +#' +#' @param SchmStats (optional), A json-formatted character string containing the schema for the output averaged stats parquet. +#' +#' @param DirSubCopy (optional) Character vector. The names of additional subfolders at +#' the same level as the location folder in the input path that are to be copied with a symbolic link to the +#' output path (i.e. not combined but carried through as-is). +#' +#' @param log A logger object as produced by NEONprocIS.base::def.log.init to produce structured log +#' output. Defaults to NULL, in which the logger will be created and used within the function. See NEONprocIS.base::def.log.init +#' for more details. +#' +#' @return Averaged stats file and quality metric file in daily parquets. +#' +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 +#' +#' @keywords Currently none +#' +#' @examples +#' # Not run +# DirIn<-"~/pfs/nitrate_null_gap_ucrt/2025/06/24/nitrate_CRAM103100/sunav2/CFGLOC110733" +# DirOut<-"~/pfs/nitrate_null_gap_ucrt_updated/2025/06/24/nitrate_CRAM103100/sunav2/CFGLOC110733" +# SchmStats<-base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2_stats.avsc'),collapse='') +# log <- NEONprocIS.base::def.log.init(Lvl = "debug") +#' +#' +#' @changelog +#' Bobby Hensley (2025-11-03) +#' Initial creation. +#' +############################################################################################## +wrap.sunav2.exp.uncert <- function(DirIn, + DirOutBase, + SchmStats=NULL, + DirSubCopy=NULL, + log=NULL +){ + + #' Start logging if not already. + if(base::is.null(log)){ + log <- NEONprocIS.base::def.log.init() + } + + InfoDirIn <- NEONprocIS.base::def.dir.splt.pach.time(DirIn) + DirInStats <- paste0(DirIn,"/stats") + DirInCoeff <- paste0(DirIn,"/uncertainty_coef") + DirOut <- base::paste0(DirOutBase,InfoDirIn$dirRepo) + DirOutStats <- base::paste0(DirOut,"/stats") + base::dir.create(DirOutStats,recursive=TRUE) + + # Copy with a symbolic link the desired subfolders + if(base::length(DirSubCopy) > 0){ + NEONprocIS.base::def.dir.copy.symb(DirSrc=base::paste0(DirIn,'/',DirSubCopy), + DirDest=DirOut, + LnkSubObj=TRUE, + log=log) + } + + #' Read in parquet file of averaged stats. + statsFileName<-base::list.files(DirInStats,full.names=FALSE) + if(length(statsFileName)==0){ + log$error(base::paste0('Stats file not found in ', DirInStats)) + stop() + } else { + statsData<-NEONprocIS.base::def.read.parq(NameFile = base::paste0(DirInStats, '/', statsFileName)) + log$debug(base::paste0('Successfully read in file: ',statsFileName)) + } + + #' Read in json file of uncertainty coefficients. + coeffileName<-base::list.files(DirInCoeff,full.names=FALSE) + if(length(coeffileName)==0){ + log$error(base::paste0('Uncertainty coefficient not found in ', DirInCoeff)) + stop() + } else { + uncertCoeff<-NEONprocIS.cal::def.read.ucrt.coef.fdas(NameFile = base::paste0(DirInCoeff, '/', coeffileName)) + log$debug(base::paste0('Successfully read in file: ',coeffileName)) + } + + if(length(uncertCoeff)>0){ + #' Converts uncertainty coefficient dates to POSIXct and values to numeric + uncertCoeff$start_date <- as.POSIXct(uncertCoeff$start_date, format = "%Y-%m-%dT%H:%M:%S", tz='utc') + uncertCoeff$end_date <- as.POSIXct(uncertCoeff$end_date, format = "%Y-%m-%dT%H:%M:%S", tz='utc') + uncertCoeff$Value<-as.numeric(uncertCoeff$Value) + + #' Determines which uncertainty coefficients to be applied to each time interval. + #' (In case there are more than one on a particular day) + uncertCoeff<-uncertCoeff[order(uncertCoeff$start_date), ] + uncertCoeffA1<-uncertCoeff[(uncertCoeff$Name=="U_CVALA1"),] + statsData$uncertCoeffA1<-NA + for (i in 1:nrow(statsData)){ + for (j in 1:nrow(uncertCoeffA1)){ + if(statsData[i,which(colnames(statsData)=="startDateTime")]>=uncertCoeffA1[j,which(colnames(uncertCoeffA1)=="start_date")]){ + statsData[i,which(colnames(statsData)=="uncertCoeffA1")]=uncertCoeffA1[j,which(colnames(uncertCoeffA1)=="Value")]}}} + uncertCoeffA3<-uncertCoeff[(uncertCoeff$Name=="U_CVALA3"),] + statsData$uncertCoeffA3<-NA + for (i in 1:nrow(statsData)){ + for (j in 1:nrow(uncertCoeffA3)){ + if(statsData[i,which(colnames(statsData)=="startDateTime")]>=uncertCoeffA3[j,which(colnames(uncertCoeffA3)=="start_date")]){ + statsData[i,which(colnames(statsData)=="uncertCoeffA3")]=uncertCoeffA3[j,which(colnames(uncertCoeffA3)=="Value")]}}} + + #' Identify the column name with the mean, variance and number of points + meanName<-grep("Mean",names(statsData),value=TRUE) + varianceName<-grep("Variance",names(statsData),value=TRUE) + pointsName<-grep("NumPts",names(statsData),value=TRUE) + + #' Calculates calibration uncertainty. See ATBD for more details. + #' Concentrations <= 20 mg/L have fixed calibration uncertainty equal to coeffA1. + #' Concentrations greater than 20 mg/L uncertainty equals concentration times coeffA1. + #' Note stats data concentrations are in uM so threshold needs to be converted from mg/L by dividing by 0.014 (14 g/mol / 1000 ug/mg) + statsData$calUncert<-NA + for (i in 1:nrow(statsData)){ + if(is.na(statsData[i,which(colnames(statsData)==meanName)])){statsData[i,which(colnames(statsData)=="calUncert")]=NA} + if(!is.na(statsData[i,which(colnames(statsData)==meanName)])){ + if(statsData[i,which(colnames(statsData)==meanName)]<=(20/0.014)){statsData[i,which(colnames(statsData)=="calUncert")]=statsData[i,which(colnames(statsData)=="uncertCoeffA1")]} + if(statsData[i,which(colnames(statsData)==meanName)]>(20/0.014)){statsData[i,which(colnames(statsData)=="calUncert")]=statsData[i,which(colnames(statsData)=="uncertCoeffA3")]} + } + } + + #' Calculates the repeatability (natural variation). See ATBD for more details. + statsData$natVar<-NA + for (i in 1:nrow(statsData)){ + if(!is.na(statsData[i,which(colnames(statsData)==meanName)])){statsData[i,which(colnames(statsData)=="natVar")]= + sqrt(statsData[i,which(colnames(statsData)==varianceName)]/statsData[i,which(colnames(statsData)==pointsName)])} + } + + #' Calculates the expanded uncertainty, which is estimated as 2x the combined uncertainty. See ATBD for more details. + statsData$surfWaterNitrateExpUncert<-NA + for (i in 1:nrow(statsData)){ + if(!is.na(statsData[i,which(colnames(statsData)==meanName)])){statsData[i,which(colnames(statsData)=="surfWaterNitrateExpUncert")]= + 2*sqrt(statsData[i,which(colnames(statsData)=="natVar")]+statsData[i,which(colnames(statsData)=="calUncert")])} + } + + #' Removes unnecessary columns. + statsData<-subset(statsData,select=-c(uncertCoeffA3,uncertCoeffA1,calUncert,natVar)) + }else{ + #add required columns to stats data + statsData$surfWaterNitrateExpUncert<-NA + } + + statsData$surfWaterNitrateMean[is.nan(statsData$surfWaterNitrateMean)]<-NA + + + #' Write out updated stats file. + rptOutStats <- try(NEONprocIS.base::def.wrte.parq(data = statsData, + NameFile = base::paste0(DirOutStats,'/',statsFileName), + Schm = SchmStats),silent=TRUE) + if(class(rptOutStats)[1] == 'try-error'){ + log$error(base::paste0('Cannot write updated stats to ',base::paste0(DirOutStats,'/',statsFileName),'. ',attr(rptOutStats, "condition"))) + stop() + } else { + log$info(base::paste0('Updated stats written successfully in ', base::paste0(DirOutStats,'/',statsFileName))) + } + + +} + + + diff --git a/flow/flow.sunav2.logfiles.fill/dockerfile_in_combined_module.txt b/flow/flow.sunav2.logfiles.fill/dockerfile_in_combined_module.txt new file mode 100644 index 000000000..c3ba2706c --- /dev/null +++ b/flow/flow.sunav2.logfiles.fill/dockerfile_in_combined_module.txt @@ -0,0 +1 @@ +sunav2_logs_group_and_fill \ No newline at end of file diff --git a/flow/flow.sunav2.logfiles.fill/flow.sunav2.logfiles.fill.R b/flow/flow.sunav2.logfiles.fill/flow.sunav2.logfiles.fill.R new file mode 100644 index 000000000..10389faf0 --- /dev/null +++ b/flow/flow.sunav2.logfiles.fill/flow.sunav2.logfiles.fill.R @@ -0,0 +1,150 @@ +############################################################################################## +#' @title Workflow for SUNA Log File Comparison and Gap Filling + +#' @author +#' Nora Catolico \email{ncatolico@battelleecology.org} + +#' @description Workflow. Compares logged data to streamed data and fills gaps. +#' +#' The arguments are: +#' +#' 1. "DirIn=value", The input path to the data from a single source ID, structured as follows: +#' #/pfs/BASE_REPO/source-id.The source-id folder may have multiple csv log files. +#' The source-id is the unique identifier of the sensor.#' +#' +#' 2. "DirOut=value", where the value is the output path that will replace the #/pfs/BASE_REPO portion +#' of DirIn. +#' +#' 3. "DirErr=value", where the value is the output path to place the path structure of errored datums that will +#' replace the #/pfs/BASE_REPO portion of \code{DirIn}. +#' +#' 4. "FileSchmData=value" (optional), where values is the full path to the avro schema for the output data +#' file. If this input is not provided, the output schema for the data will be the same as the input data +#' file. If a schema is provided, ENSURE THAT ANY PROVIDED OUTPUT SCHEMA FOR THE DATA MATCHES THE COLUMN ORDER OF +#' THE INPUT DATA. +#' +#' 5. "FileSchmFlags=value" (optional), where values is the full path to the avro schema for the output flags +#' file. If this input is not provided, the output schema for the data will be the same as the input data +#' file. If a schema is provided, ENSURE THAT ANY PROVIDED OUTPUT SCHEMA FOR THE DATA MATCHES THE COLUMN ORDER OF +#' THE INPUT DATA. +#' +#' +#' Note: This script implements logging described in \code{\link[NEONprocIS.base]{def.log.init}}, +#' which uses system environment variables if available. +#' +#' @return Cleaned sunav2 log files in daily parquets. + +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 + +#' @keywords Currently none + +#' @examples +#' Stepping through the code in Rstudio +# Sys.setenv(DirIn='/home/NEON/ncatolico/pfs/sunav2_logjam_assign_clean_files/sunav2/2024/09/10/20349') #cleaned log data +# Sys.setenv(DirIn='/home/NEON/ncatolico/pfs/sunav2_trino_data_parser/sunav2/2024/09/11/20349') #streamed L0 data +# log <- NEONprocIS.base::def.log.init(Lvl = "debug") +# arg <- c("DirIn=$DirIn","DirOut=~/pfs/out","DirErr=~/pfs/out/errored_datums","FileSchmData=~/pfs/sunav2_avro_schemas/sunav2/sunav2_logfilled.avsc") +#' rm(list=setdiff(ls(),c('arg','log'))) + +#' @seealso None currently + +# changelog and author contributions / copyrights +# Nora Catolico (2024-01-30) original creation +# Bobby Hensley \email{hensley@battelleecology.org} + +############################################################################################## +options(digits.secs = 3) +library(foreach) +library(doParallel) +library(lubridate) + +# Source the wrapper function. Assume it is in the working directory +source("./wrap.sunav2.logfiles.fill.R") + +# Pull in command line arguments (parameters) +arg <- base::commandArgs(trailingOnly = TRUE) + +# Start logging +log <- NEONprocIS.base::def.log.init() + +# Use environment variable to specify how many cores to run on +numCoreUse <- base::as.numeric(Sys.getenv('PARALLELIZATION_INTERNAL')) +numCoreAvail <- parallel::detectCores() +if (base::is.na(numCoreUse)){ + numCoreUse <- 1 +} +if(numCoreUse > numCoreAvail){ + numCoreUse <- numCoreAvail +} +log$debug(paste0(numCoreUse, ' of ',numCoreAvail, ' available cores will be used for internal parallelization.')) + +# Parse the input arguments into parameters +Para <- NEONprocIS.base::def.arg.pars(arg = arg,NameParaReqd = c("DirIn","DirOut","DirErr"), + NameParaOptn = c("FileSchmData","FileSchmFlags"),log = log) + +# Echo arguments +log$debug(base::paste0('Input directory: ', Para$DirIn)) +log$debug(base::paste0('Output directory: ', Para$DirOut)) +log$debug(base::paste0('Error directory: ', Para$DirErr)) +log$debug(base::paste0('Schema for output data: ', Para$FileSchmData)) +log$debug(base::paste0('Schema for output flags: ', Para$FileSchmFlags)) + + +# Read in the schemas so we only have to do it once and not every time in the avro writer. +if(base::is.null(Para$FileSchmData) || Para$FileSchmData == 'NA'){ + SchmDataOut <- NULL +} else { + SchmDataOut <- base::paste0(base::readLines(Para$FileSchmData),collapse='') +} +if(base::is.null(Para$FileSchmFlags) || Para$FileSchmFlags == 'NA'){ + SchmFlagsOut <- NULL +} else { + SchmFlagsOut <- base::paste0(base::readLines(Para$FileSchmFlags),collapse='') +} + +# Find all the input paths (datums). We will process each one. +DirIn <- + NEONprocIS.base::def.dir.in(DirBgn = Para$DirIn, + nameDirSub = 'data', + log = log) + + +# Process each datum path +doParallel::registerDoParallel(numCoreUse) +foreach::foreach(idxDirIn = DirIn) %dopar% { + log$info(base::paste0('Processing path to datum: ', idxDirIn)) + + # Run the wrapper function for each datum, with error routing + tryCatch( + withCallingHandlers( + wrap.sunav2.logfiles.fill( + DirIn=idxDirIn, + DirOutBase=Para$DirOut, + SchmDataOut=SchmDataOut, + SchmFlagsOut=SchmFlagsOut, + log=log + ), + error = function(err) { + call.stack <- base::sys.calls() # is like a traceback within "withCallingHandlers" + + # Re-route the failed datum + NEONprocIS.base::def.err.datm( + err=err, + call.stack=call.stack, + DirDatm=idxDirIn, + DirErrBase=Para$DirErr, + RmvDatmOut=TRUE, + DirOutBase=Para$DirOut, + log=log + ) + } + ), + # This simply to avoid returning the error + error=function(err) {} + ) + + return() +} + + diff --git a/flow/flow.sunav2.logfiles.fill/renv.lock b/flow/flow.sunav2.logfiles.fill/renv.lock new file mode 100644 index 000000000..04ce2a180 --- /dev/null +++ b/flow/flow.sunav2.logfiles.fill/renv.lock @@ -0,0 +1,308 @@ +{ + "R": { + "Version": "4.1.3", + "Repositories": [ + { + "Name": "CRAN", + "URL": "https://cran.rstudio.com" + } + ] + }, + "Packages": { + "R6": { + "Package": "R6", + "Version": "2.6.1", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "d4335fe7207f1c01ab8c41762f5840d4", + "Requirements": [] + }, + "cli": { + "Package": "cli", + "Version": "3.6.5", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "16850760556401a2eeb27d39bd11c9cb", + "Requirements": [] + }, + "codetools": { + "Package": "codetools", + "Version": "0.2-18", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "019388fc48e48b3da0d3a76ff94608a8", + "Requirements": [] + }, + "cpp11": { + "Package": "cpp11", + "Version": "0.5.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "2720e3fd3dad08f34b19b56b3d6f073d", + "Requirements": [] + }, + "doParallel": { + "Package": "doParallel", + "Version": "1.0.17", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "451e5edf411987991ab6a5410c45011f", + "Requirements": [ + "foreach", + "iterators" + ] + }, + "dplyr": { + "Package": "dplyr", + "Version": "1.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "fedd9d00c2944ff00a0e2696ccf048ec", + "Requirements": [ + "R6", + "cli", + "generics", + "glue", + "lifecycle", + "magrittr", + "pillar", + "rlang", + "tibble", + "tidyselect", + "vctrs" + ] + }, + "ellipsis": { + "Package": "ellipsis", + "Version": "0.3.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "bb0eec2fe32e88d9e2836c2f73ea2077", + "Requirements": [ + "rlang" + ] + }, + "foreach": { + "Package": "foreach", + "Version": "1.5.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "618609b42c9406731ead03adf5379850", + "Requirements": [ + "codetools", + "iterators" + ] + }, + "fs": { + "Package": "fs", + "Version": "1.6.6", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "7eb1e342eee7e0a7449c49cdaa526d39", + "Requirements": [] + }, + "generics": { + "Package": "generics", + "Version": "0.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "4b29bf698d0c7bdb9f1e4976e7ade41d", + "Requirements": [] + }, + "glue": { + "Package": "glue", + "Version": "1.8.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "5899f1eaa825580172bb56c08266f37c", + "Requirements": [] + }, + "iterators": { + "Package": "iterators", + "Version": "1.0.14", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "8954069286b4b2b0d023d1b288dce978", + "Requirements": [] + }, + "lifecycle": { + "Package": "lifecycle", + "Version": "1.0.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "b8552d117e1b808b09a832f589b79035", + "Requirements": [ + "cli", + "glue", + "rlang" + ] + }, + "lubridate": { + "Package": "lubridate", + "Version": "1.9.3", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "680ad542fbcf801442c83a6ac5a2126c", + "Requirements": [ + "generics", + "timechange" + ] + }, + "magrittr": { + "Package": "magrittr", + "Version": "2.0.3", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "7ce2733a9826b3aeb1775d56fd305472", + "Requirements": [] + }, + "pillar": { + "Package": "pillar", + "Version": "1.10.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "1098920a19b5cd5a15bacdc74a89979d", + "Requirements": [ + "cli", + "glue", + "lifecycle", + "rlang", + "utf8", + "vctrs" + ] + }, + "pkgconfig": { + "Package": "pkgconfig", + "Version": "2.0.3", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "01f28d4278f15c76cddbea05899c5d6f", + "Requirements": [] + }, + "purrr": { + "Package": "purrr", + "Version": "1.0.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "cc8b5d43f90551fa6df0a6be5d640a4f", + "Requirements": [ + "cli", + "lifecycle", + "magrittr", + "rlang", + "vctrs" + ] + }, + "renv": { + "Package": "renv", + "Version": "0.16.0", + "Source": "GitHub", + "RemoteType": "github", + "RemoteHost": "api.github.com", + "RemoteRepo": "renv", + "RemoteUsername": "rstudio", + "RemoteRef": "0.16.0", + "RemoteSha": "0e3aab27a928eb261819a3fc45a3ee2b4ba902a5", + "Hash": "9e5e2246d73254a29a4182f4e8257c09", + "Requirements": [] + }, + "rlang": { + "Package": "rlang", + "Version": "1.1.6", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "892124978869b74935dc3934c42bfe5a", + "Requirements": [] + }, + "tibble": { + "Package": "tibble", + "Version": "3.3.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "784b27d0801c3829de602105757b2cd7", + "Requirements": [ + "cli", + "lifecycle", + "magrittr", + "pillar", + "pkgconfig", + "rlang", + "vctrs" + ] + }, + "tidyr": { + "Package": "tidyr", + "Version": "1.2.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "d8b95b7fee945d7da6888cf7eb71a49c", + "Requirements": [ + "cpp11", + "dplyr", + "ellipsis", + "glue", + "lifecycle", + "magrittr", + "purrr", + "rlang", + "tibble", + "tidyselect", + "vctrs" + ] + }, + "tidyselect": { + "Package": "tidyselect", + "Version": "1.2.1", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "829f27b9c4919c16b593794a6344d6c0", + "Requirements": [ + "cli", + "glue", + "lifecycle", + "rlang", + "vctrs", + "withr" + ] + }, + "timechange": { + "Package": "timechange", + "Version": "0.2.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "8548b44f79a35ba1791308b61e6012d7", + "Requirements": [ + "cpp11" + ] + }, + "utf8": { + "Package": "utf8", + "Version": "1.2.6", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "d526d558be176e9ceb68c3d1e83479b7", + "Requirements": [] + }, + "vctrs": { + "Package": "vctrs", + "Version": "0.6.5", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "c03fa420630029418f7e6da3667aac4a", + "Requirements": [ + "cli", + "glue", + "lifecycle", + "rlang" + ] + }, + "withr": { + "Package": "withr", + "Version": "3.0.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "cc2d62c76458d425210d1eb1478b30b4", + "Requirements": [] + } + } +} diff --git a/flow/flow.sunav2.logfiles.fill/wrap.sunav2.logfiles.fill.R b/flow/flow.sunav2.logfiles.fill/wrap.sunav2.logfiles.fill.R new file mode 100644 index 000000000..de0eda989 --- /dev/null +++ b/flow/flow.sunav2.logfiles.fill/wrap.sunav2.logfiles.fill.R @@ -0,0 +1,188 @@ +############################################################################################## +#' @title Wrapper for SUNA Log File Comparison and Gap Filling + +#' @author +#' Nora Catolico \email{ncatolico@battelleecology.org} +#' Bobby Hensley \email{hensley@battelleecology.org} +#' +#' @description Wrapper function. Compares logged data to streamed data. +#' +#' @param DirIn Character value. The input path to the data from a single source ID, structured as follows: +#' #/pfs/BASE_REPO/sensor/yyyy/mm/dd/source-id. The source-id is the unique identifier of the sensor. \cr#' +#' +#' @param DirInStream (optional) Character value. This input is used for testing purposes only prior to joining repos. +#' The input path to the streamed L0 data from a single source ID, structured as follows: +#' #/pfs/BASE_REPO/sensor/yyyy/mm/dd/source-id. The source-id is the unique identifier of the sensor. \cr#' +#' +#' @param DirInLogs (optional) Character value. This input is used for testing purposes only prior to joining repos. +#' The input path to the log data from a single source ID, structured as follows: +#' #/pfs/BASE_REPO/sensor/yyyy/mm/dd/source-id. The source-id is the unique identifier of the sensor. \cr#' +#' +#' @param DirOut Character value. The output path that will replace the #/pfs/BASE_REPO portion of DirIn. +#' +#' @param SchmDataOut (optional), A json-formatted character string containing the schema for the output data +#' file. If this input is not provided, the output schema for the data will be the same as the input data +#' file. If a schema is provided, ENSURE THAT ANY PROVIDED OUTPUT SCHEMA FOR THE DATA MATCHES THE COLUMN ORDER OF +#' THE INPUT DATA. +#' +#' @param SchmFlagsOut (optional), A json-formatted character string containing the schema for the output flags +#' file. If this input is not provided, the output schema for the data will be the same as the input flags +#' file. If a schema is provided, ENSURE THAT ANY PROVIDED OUTPUT SCHEMA FOR THE DATA MATCHES THE COLUMN ORDER OF +#' THE INPUT DATA. +#' +#' @param log A logger object as produced by NEONprocIS.base::def.log.init to produce structured log +#' output. Defaults to NULL, in which the logger will be created and used within the function. See NEONprocIS.base::def.log.init +#' for more details. +#' +#' @return Combined logged and streamed L0 data in daily parquets. +#' +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 +#' +#' @keywords Currently none +#' +#' @examples +#' # Not run +# DirInLogs<-"~/pfs/sunav2_logjam_assign_clean_files/sunav2/2024/09/11/20349" #cleaned log data +# DirInStream<-"~/pfs/sunav2_trino_data_parser/sunav2/2025/06/22/20345" #streamed L0 data +# DirIn<-NULL +# DirOutBase="~/pfs/out" +# SchmDataOut<-base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2/sunav2_logfilled.avsc'),collapse='') +# log <- NEONprocIS.base::def.log.init(Lvl = "debug") +# SchmFlagsOut<-base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2_log_flags.avsc'),collapse='') +#' +#' @changelog +#' Nora Catolico (2024-01-30) original creation +#' Bobby Hensley (2025-05-30) adapted for suna +#' +############################################################################################## +wrap.sunav2.logfiles.fill <- function(DirInLogs=NULL, + DirInStream=NULL, + DirIn, + DirOutBase, + SchmDataOut=NULL, + SchmFlagsOut=NULL, + log=NULL +){ + + # Start logging if not already + if(base::is.null(log)){ + log <- NEONprocIS.base::def.log.init() + } + + # Gather info about the input directory (including date), and create base output directory + if(is.null(DirInLogs)){ + DirInLogs<-DirIn #only need one dir if this is run after filter joiner + } + if(is.null(DirInStream)){ + DirInStream<-DirIn #only need one dir if this is run after filter joiner + } + InfoDirIn <- NEONprocIS.base::def.dir.splt.pach.time(DirInStream) + dirInDataStream <- fs::path(DirInStream,'data') + dirInDataLogs <- fs::path(DirInLogs,'data') + timeBgn <- InfoDirIn$time # Earliest possible start date for the data + DirOut <- base::paste0(DirOutBase,InfoDirIn$dirRepo) + DirOutData <- base::paste0(DirOut,'/data') + base::dir.create(DirOutData,recursive=TRUE) + DirOutFlags <- base::paste0(DirOut,'/flags') + base::dir.create(DirOutFlags,recursive=TRUE) + +#' Load any L0 streamed data + fileDataStream<-base::list.files(dirInDataStream,full.names=FALSE) + L0File <- fileDataStream[!grepl('_log',fileDataStream)] + if(length(L0File)>=1){ + L0Data <- + base::try(NEONprocIS.base::def.read.parq(NameFile = base::paste0(dirInDataStream, '/', L0File), + log = log),silent = FALSE) + if (base::any(base::class(L0Data) == 'try-error')) { + # Generate error and stop execution + log$error(base::paste0('File ', dirInDataStream, '/', L0File, ' is unreadable.')) + base::stop()} + }else{ + L0Data<-NULL + } + +#' Load any logged data + fileDataLogs<-base::list.files(dirInDataLogs,full.names=FALSE) + logFile <- fileDataLogs[grepl('_log',fileDataLogs)] + if(length(logFile)>=1){ + logData <- + base::try(NEONprocIS.base::def.read.parq(NameFile = base::paste0(dirInDataLogs, '/', logFile), + log = log),silent = FALSE) + if (base::any(base::class(logData) == 'try-error')) { + # Generate error and stop execution + log$error(base::paste0('File ', dirInDataLogs, '/', logFile, ' is unreadable.')) + base::stop()} + }else{ + logData<-NULL + } + +#' update columns to same format + if(length(L0Data)>=1){ + L0Data$spectrum_channels <- lapply(L0Data$spectrum_channels, function(x) paste(x, collapse = ";")) + } + + +#' Determine whether to use logged or streamed data. + #' Logged data is used if available, and log data flag set to 1 + if(length(logFile)>=1){ + dataOut<-as.data.frame(logData) + flagsOut<-data.frame(matrix(ncol=2,nrow=nrow(dataOut), dimnames=list(NULL, c("readout_time", "sunaLogDataQF")))) + flagsOut$readout_time<-dataOut$readout_time + flagsOut$sunaLogDataQF<-1 + } + #' Streamed data is used if no logged data is available, and log data flags set to 0 + if(length(logFile)<1 & length(L0Data)>=1){ + dataOut<-as.data.frame(L0Data) + flagsOut<-data.frame(matrix(ncol=2,nrow=nrow(dataOut), dimnames=list(NULL, c("readout_time", "sunaLogDataQF")))) + flagsOut$readout_time<-dataOut$readout_time + flagsOut$sunaLogDataQF<-0 + } + +#' Write out data file and log flags file + + #write out data file + fileOutSplt <- base::strsplit(DirInStream,'[/]')[[1]] # Separate underscore-delimited components of the file name + asset<-tail(x=fileOutSplt,n=1) + csv_name <-paste0('sunav2_',asset,'_',format(timeBgn,format = "%Y-%m-%d")) + + rptOut <- try(NEONprocIS.base::def.wrte.parq(data = dataOut, + NameFile = base::paste0(DirOutData,'/',csv_name,".parquet"), + Schm = SchmDataOut),silent=TRUE) + if(class(rptOut)[1] == 'try-error'){ + log$error(base::paste0('Cannot write Data to ',base::paste0(DirOutData,'/',csv_name,".parquet"),'. ',attr(rptOut, "condition"))) + stop() + } else { + log$info(base::paste0('Data written successfully in ', base::paste0(DirOutData,'/',csv_name,".parquet"))) + } + + #write out log flags file + csv_name_flags <-paste0('sunav2_',asset,'_',format(timeBgn,format = "%Y-%m-%d"),'_logFlags') + + rptOutFlags <- try(NEONprocIS.base::def.wrte.parq(data = flagsOut, + NameFile = base::paste0(DirOutFlags,'/',csv_name_flags,".parquet"), + Schm = SchmFlagsOut),silent=TRUE) + if(class(rptOutFlags)[1] == 'try-error'){ + log$error(base::paste0('Cannot write Flags to ',base::paste0(DirOutFlags,'/',csv_name_flags,".parquet"),'. ',attr(rptOutFlags, "condition"))) + stop() + } else { + log$info(base::paste0('Flags written successfully in ', base::paste0(DirOutFlags,'/',csv_name_flags,".parquet"))) + } + +} + + + + + + + + + + + + + + + + diff --git a/flow/flow.sunav2.logfiles/Dockerfile b/flow/flow.sunav2.logfiles/Dockerfile new file mode 100644 index 000000000..9aa35984c --- /dev/null +++ b/flow/flow.sunav2.logfiles/Dockerfile @@ -0,0 +1,28 @@ +# Dockerfile for NEON IS Data Processing - sunav2 Logfile Processing + +# Start with the neon-is-base-r image. +FROM us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-pack-base-r:v1.7.0 + +ARG FLOW_DIR="./flow" +ARG APP_DIR="flow.sunav2.logfiles" + +# maintainer handle +MAINTAINER "Nora Catolico" ncatolico@battelleecology.org + +# Copy the lockfile and restore known working versions of R dependency packages +# ENSURE that the renv.lock file is up-to-date and thus has all listed dependencies prior to creating this docker image +COPY ${FLOW_DIR}/${APP_DIR}/renv.lock /renv.lock +RUN R -e 'renv::restore(lockfile="/renv.lock")' + +# Create app user +RUN groupadd app && \ + useradd app -g app +WORKDIR /home/app + +# Copy in sunav2 flag workflow +COPY ${FLOW_DIR}/${APP_DIR}/flow.sunav2.logfiles.R . +COPY ${FLOW_DIR}/${APP_DIR}/wrap.sunav2.logfiles.R . + +# Run as app user +RUN chown app:app -R /home/app +USER app \ No newline at end of file diff --git a/flow/flow.sunav2.logfiles/flow.sunav2.logfiles.R b/flow/flow.sunav2.logfiles/flow.sunav2.logfiles.R new file mode 100644 index 000000000..dfcceb2f3 --- /dev/null +++ b/flow/flow.sunav2.logfiles/flow.sunav2.logfiles.R @@ -0,0 +1,147 @@ +############################################################################################## +#' @title Workflow for SUNA Log File Processing + +#' @author +#' Nora Catolico \email{ncatolico@battelleecology.org} +#' Bobby Hensley \email{hensley@battelleecology.org} + +#' @description Workflow. Validates, cleans, and formats sunav2 log files into daily parquets. +#' +#' The arguments are: +#' +#' 1. "DirIn=value", The input path to the data from a single source ID, structured as follows: +#' #/pfs/BASE_REPO/source-id.The source-id folder may have multiple csv log files. +#' The source-id is the unique identifier of the sensor.#' +#' +#' 2. "DirOut=value", where the value is the output path that will replace the #/pfs/BASE_REPO portion +#' of DirIn. +#' +#' 3. "DirErr=value", where the value is the output path to place the path structure of errored datums that will +#' replace the #/pfs/BASE_REPO portion of \code{DirIn}. +#' +#' 4. "FileSchmData=value" (optional), where values is the full path to the avro schema for the output data +#' file. If this input is not provided, the output schema for the data will be the same as the input data +#' file. If a schema is provided, ENSURE THAT ANY PROVIDED OUTPUT SCHEMA FOR THE DATA MATCHES THE COLUMN ORDER OF +#' THE INPUT DATA. +#' +#' +#' Note: This script implements logging described in \code{\link[NEONprocIS.base]{def.log.init}}, +#' which uses system environment variables if available. +#' +#' @return Cleaned sunav2 log files in daily parquets. + +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 + +#' @keywords Currently none + +#' @examples +#' flow.sunav2.logfiles <- function(FileIn = "~/pfs/sunav2_logjam_load_files/20349/logjam_prod_20349_0b05a4c0da3bb05af840fece674fe34c.csv", +#' DirOut="~/pfs/out", +#' SchmDataOut=NULL, +#' log=log) +#' Stepping through the code in R studio +# Sys.setenv(DIR_IN='/home/NEON/ncatolico/pfs/sunav2_logjam_load_files/20349') +# log <- NEONprocIS.base::def.log.init(Lvl = "debug") +# arg <- c("DirIn=$DIR_IN","DirOut=~/pfs/out","DirErr=~/pfs/out/errored_datums","FileSchmData=~/pfs/sunav2_avro_schemas/sunav2/sunav2_logfilled.avsc") +#' rm(list=setdiff(ls(),c('arg','log'))) + +#' @seealso None currently + +# changelog and author contributions / copyrights +#' Nora Catolico (2024-01-09) original creation +#' Bobby Hensley (2025-04-09) adapted for SUNA +# +############################################################################################## +options(digits.secs = 3) +library(foreach) +library(doParallel) +library(lubridate) + +# Source the wrapper function. Assume it is in the working directory +source("./wrap.sunav2.logfiles.R") + +# Pull in command line arguments (parameters) +arg <- base::commandArgs(trailingOnly = TRUE) + +# Start logging +log <- NEONprocIS.base::def.log.init() + +# Use environment variable to specify how many cores to run on +numCoreUse <- base::as.numeric(Sys.getenv('PARALLELIZATION_INTERNAL')) +numCoreAvail <- parallel::detectCores() +if (base::is.na(numCoreUse)){ + numCoreUse <- 1 +} +if(numCoreUse > numCoreAvail){ + numCoreUse <- numCoreAvail +} +log$debug(paste0(numCoreUse, ' of ',numCoreAvail, ' available cores will be used for internal parallelization.')) + +# Parse the input arguments into parameters +Para <- NEONprocIS.base::def.arg.pars(arg = arg,NameParaReqd = c("DirIn", "DirOut","DirErr"), + NameParaOptn = c("FileSchmData"),log = log) + +# Echo arguments +log$debug(base::paste0('Input directory: ', Para$DirIn)) +log$debug(base::paste0('Output directory: ', Para$DirOut)) +log$debug(base::paste0('Error directory: ', Para$DirErr)) +log$debug(base::paste0('Schema for output data: ', Para$FileSchmData)) + + +# Read in the schemas so we only have to do it once and not every time in the avro writer. +if(base::is.null(Para$FileSchmData) || Para$FileSchmData == 'NA'){ + SchmDataOut <- NULL +} else { + SchmDataOut <- base::paste0(base::readLines(Para$FileSchmData),collapse='') +} + +# Find all the input paths (datums). We will process each one. +DirIn <- + NEONprocIS.base::def.dir.in(DirBgn = Para$DirIn, + nameDirSub = NULL, + log = log) + +# Take stock of our data files. +fileData <- base::list.files(DirIn,full.names=TRUE) +log$debug(base::paste0('Files identified:', fileData)) + + +# Process each datum path +doParallel::registerDoParallel(numCoreUse) +foreach::foreach(idxFileIn = fileData) %dopar% { + log$info(base::paste0('Processing path to file: ', idxFileIn)) + # Run the wrapper function for each datum, with error routing + tryCatch( + withCallingHandlers( + wrap.sunav2.logfiles( + FileIn=idxFileIn, + DirOut=Para$DirOut, + SchmDataOut=SchmDataOut, + log=log + ), + error = function(err) { + call.stack <- base::sys.calls() # is like a traceback within "withCallingHandlers" + + # Re-route the failed datum + NEONprocIS.base::def.err.datm( + err=err, + call.stack=call.stack, + DirDatm=idxDirIn, + DirErrBase=Para$DirErr, + RmvDatmOut=TRUE, + DirOutBase=Para$DirOut, + log=log + ) + } + ), + # This simply to avoid returning the error + error=function(err) {} + ) + + return() +} + + + + diff --git a/flow/flow.sunav2.logfiles/renv.lock b/flow/flow.sunav2.logfiles/renv.lock new file mode 100644 index 000000000..7283865a0 --- /dev/null +++ b/flow/flow.sunav2.logfiles/renv.lock @@ -0,0 +1,101 @@ +{ + "R": { + "Version": "4.1.3", + "Repositories": [ + { + "Name": "CRAN", + "URL": "https://cran.rstudio.com" + } + ] + }, + "Packages": { + "codetools": { + "Package": "codetools", + "Version": "0.2-18", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "019388fc48e48b3da0d3a76ff94608a8", + "Requirements": [] + }, + "cpp11": { + "Package": "cpp11", + "Version": "0.5.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "2720e3fd3dad08f34b19b56b3d6f073d", + "Requirements": [] + }, + "doParallel": { + "Package": "doParallel", + "Version": "1.0.17", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "451e5edf411987991ab6a5410c45011f", + "Requirements": [ + "foreach", + "iterators" + ] + }, + "foreach": { + "Package": "foreach", + "Version": "1.5.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "618609b42c9406731ead03adf5379850", + "Requirements": [ + "codetools", + "iterators" + ] + }, + "generics": { + "Package": "generics", + "Version": "0.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "4b29bf698d0c7bdb9f1e4976e7ade41d", + "Requirements": [] + }, + "iterators": { + "Package": "iterators", + "Version": "1.0.14", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "8954069286b4b2b0d023d1b288dce978", + "Requirements": [] + }, + "lubridate": { + "Package": "lubridate", + "Version": "1.9.3", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "680ad542fbcf801442c83a6ac5a2126c", + "Requirements": [ + "generics", + "timechange" + ] + }, + "renv": { + "Package": "renv", + "Version": "0.16.0", + "Source": "GitHub", + "RemoteType": "github", + "RemoteHost": "api.github.com", + "RemoteRepo": "renv", + "RemoteUsername": "rstudio", + "RemoteRef": "0.16.0", + "RemoteSha": "0e3aab27a928eb261819a3fc45a3ee2b4ba902a5", + "Hash": "9e5e2246d73254a29a4182f4e8257c09", + "Requirements": [] + }, + "timechange": { + "Package": "timechange", + "Version": "0.2.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "8548b44f79a35ba1791308b61e6012d7", + "Requirements": [ + "cpp11" + ] + } + } +} diff --git a/flow/flow.sunav2.logfiles/wrap.sunav2.logfiles.R b/flow/flow.sunav2.logfiles/wrap.sunav2.logfiles.R new file mode 100644 index 000000000..796ce8a32 --- /dev/null +++ b/flow/flow.sunav2.logfiles/wrap.sunav2.logfiles.R @@ -0,0 +1,216 @@ +############################################################################################## +#' @title Wrapper for SUNA Log File Processing + +#' @author +#' Nora Catolico \email{ncatolico@battelleecology.org} +#' Bobby Hensley \email{hensley@battelleecology.org} +#' +#' @description Wrapper function. Validates, cleans, and formats SUNA log files into daily parquets. +#' +#' @param FileIn Character value. The input path to the data from a single source ID, structured as follows: +#' #/pfs/BASE_REPO/source-id/file. +#' The source-id is the unique identifier of the sensor. \cr#' +#' +#' @param DirOut Character value. The output path that will replace the #/pfs/BASE_REPO portion of FileIn. +#' +#' @param SchmDataOut (optional), A json-formatted character string containing the schema for the output data +#' file. If this input is not provided, the output schema for the data will be the same as the input data +#' file. If a schema is provided, ENSURE THAT ANY PROVIDED OUTPUT SCHEMA FOR THE DATA MATCHES THE COLUMN ORDER OF +#' THE INPUT DATA. +#' +#' @param log A logger object as produced by NEONprocIS.base::def.log.init to produce structured log +#' output. Defaults to NULL, in which the logger will be created and used within the function. See NEONprocIS.base::def.log.init +#' for more details. +#' +#' @return Data from SUNA log files in daily parquets. +#' +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 +#' +#' @keywords Currently none +#' +#' @examples +#' # Not run +# FileIn <- "~/pfs/sunav2_logjam_load_files/20349/logjam_prod_20349_0b05a4c0da3bb05af840fece674fe34c.csv" +# DirOut="~/pfs/sunav2_logs_output" +# SchmDataOut<-base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2.avsc'),collapse='') +# log <- NEONprocIS.base::def.log.init(Lvl = "debug") +#' wrap.sunav2.logfiles <- function(FileIn = "~/pfs/sunav2_logjam_load_files/20349/logjam_prod_20349_0b05a4c0da3bb05af840fece674fe34c.csv", +#' DirOut="~/pfs/out", +#' SchmDataOut=NULL, +#' log=log) +#' +#' @changelog +#' Nora Catolico (2024-01-09) original creation +#' Bobby Hensley (2025-04-09) adapted for SUNA +############################################################################################## +wrap.sunav2.logfiles <- function(FileIn, + DirOut, + SchmDataOut=NULL, + log=NULL +){ + +#' Start logging if not already + if(base::is.null(log)){ + log <- NEONprocIS.base::def.log.init() + } + +#' Load in the csv log file(s) + logFile <- + base::try(read.table(paste0(FileIn), header = FALSE, sep = ",", + col.names = paste0("V",seq_len(286)),encoding = 'utf-8', + stringsAsFactors = FALSE,fill = TRUE,strip.white = TRUE,na.strings=c(-1,''))) + if (base::any(base::class(logFile) == 'try-error')) { + # Generate error and stop execution + log$error(base::paste0('File ', FileIn, ' is unreadable. Likely not a data file.')) + base::stop() + } + if(any(grepl('TROLL',logFile))){ + log$debug(base::paste0('skipping troll file: ', FileIn)) + base::stop() + }else if(any(grepl('Turbidity',logFile))){ + log$debug(base::paste0('skipping sonde file: ', FileIn)) + base::stop() + } + +#' Find row where data actually starts + start<-which(grepl('Zeiss Coefficient',logFile$V2))+1 + # Separate data and metadata + logData<-logFile[start:(nrow(logFile)),] + logMetadata<-logFile[1:(start-1),2:6] + +#' Update names of existing columns to match avro schema + names(logData)<-c("header_serial_number","year_and_day","time","nitrate_concentration","nitrogen_in_nitrate","absorbance_254nm","absorbance_350nm", + "bromide_trace","spectrum_average","dark_value_used_for_fit","integration_time_factor", + "channel_1","channel_2","channel_3","channel_4","channel_5","channel_6","channel_7","channel_8","channel_9","channel_10", + "channel_11","channel_12","channel_13","channel_14","channel_15","channel_16","channel_17","channel_18","channel_19","channel_20", + "channel_21","channel_22","channel_23","channel_24","channel_25","channel_26","channel_27","channel_28","channel_29","channel_30", + "channel_31","channel_32","channel_33","channel_34","channel_35","channel_36","channel_37","channel_38","channel_39","channel_40", + "channel_41","channel_42","channel_43","channel_44","channel_45","channel_46","channel_47","channel_48","channel_49","channel_50", + "channel_51","channel_52","channel_53","channel_54","channel_55","channel_56","channel_57","channel_58","channel_59","channel_60", + "channel_61","channel_62","channel_63","channel_64","channel_65","channel_66","channel_67","channel_68","channel_69","channel_70", + "channel_71","channel_72","channel_73","channel_74","channel_75","channel_76","channel_77","channel_78","channel_79","channel_80", + "channel_81","channel_82","channel_83","channel_84","channel_85","channel_86","channel_87","channel_88","channel_89","channel_90", + "channel_91","channel_92","channel_93","channel_94","channel_95","channel_96","channel_97","channel_98","channel_99","channel_100", + "channel_101","channel_102","channel_103","channel_104","channel_105","channel_106","channel_107","channel_108","channel_109","channel_110", + "channel_111","channel_112","channel_113","channel_114","channel_115","channel_116","channel_117","channel_118","channel_119","channel_120", + "channel_121","channel_122","channel_123","channel_124","channel_125","channel_126","channel_127","channel_128","channel_129","channel_130", + "channel_131","channel_132","channel_133","channel_134","channel_135","channel_136","channel_137","channel_138","channel_139","channel_140", + "channel_141","channel_142","channel_143","channel_144","channel_145","channel_146","channel_147","channel_148","channel_149","channel_150", + "channel_151","channel_152","channel_153","channel_154","channel_155","channel_156","channel_157","channel_158","channel_159","channel_160", + "channel_161","channel_162","channel_163","channel_164","channel_165","channel_166","channel_167","channel_168","channel_169","channel_170", + "channel_171","channel_172","channel_173","channel_174","channel_175","channel_176","channel_177","channel_178","channel_179","channel_180", + "channel_181","channel_182","channel_183","channel_184","channel_185","channel_186","channel_187","channel_188","channel_189","channel_190", + "channel_191","channel_192","channel_193","channel_194","channel_195","channel_196","channel_197","channel_198","channel_199","channel_200", + "channel_201","channel_202","channel_203","channel_204","channel_205","channel_206","channel_207","channel_208","channel_209","channel_210", + "channel_211","channel_212","channel_213","channel_214","channel_215","channel_216","channel_217","channel_218","channel_219","channel_220", + "channel_221","channel_222","channel_223","channel_224","channel_225","channel_226","channel_227","channel_228","channel_229","channel_230", + "channel_231","channel_232","channel_233","channel_234","channel_235","channel_236","channel_237","channel_238","channel_239","channel_240", + "channel_241","channel_242","channel_243","channel_244","channel_245","channel_246","channel_247","channel_248","channel_249","channel_250", + "channel_251","channel_252","channel_253","channel_254","channel_255","channel_256", + "internal_temperature","spectrometer_temperature","lamp_temperature","lamp_on_time","relative_humidity","main_voltage","lamp_voltage", + "internal_voltage","main_current","fit_aux_1","fit_aux_2","fit_base_1","fit_base_2","fit_rmse","ctd_time","ctd_salinity","ctd_temperature", + "ctd_pressure","check_sum") + +#' Checks that each data burst is complete (Right now only checks whether last column is a value or not) + logData$error_missing_data<-NA + for(i in 1:nrow(logData)){if(is.na(logData[i,which(colnames(logData)=="check_sum")])){logData[i,which(colnames(logData)=="error_missing_data")]=TRUE} + else{logData[i,which(colnames(logData)=="error_missing_data")]=FALSE}} + +#' Combines all 256 spectrum channels into single array + logData$spectrum_channels<-paste(logData$channel_1,logData$channel_2,logData$channel_3,logData$channel_4,logData$channel_5,logData$channel_6,logData$channel_7,logData$channel_8,logData$channel_9,logData$channel_10, + logData$channel_11,logData$channel_12,logData$channel_13,logData$channel_14,logData$channel_15,logData$channel_16,logData$channel_17,logData$channel_18,logData$channel_19,logData$channel_20, + logData$channel_21,logData$channel_22,logData$channel_23,logData$channel_24,logData$channel_25,logData$channel_26,logData$channel_27,logData$channel_28,logData$channel_29,logData$channel_30, + logData$channel_31,logData$channel_32,logData$channel_33,logData$channel_34,logData$channel_35,logData$channel_36,logData$channel_37,logData$channel_38,logData$channel_39,logData$channel_40, + logData$channel_41,logData$channel_42,logData$channel_43,logData$channel_44,logData$channel_45,logData$channel_46,logData$channel_47,logData$channel_48,logData$channel_49,logData$channel_50, + logData$channel_51,logData$channel_52,logData$channel_53,logData$channel_54,logData$channel_55,logData$channel_56,logData$channel_57,logData$channel_58,logData$channel_59,logData$channel_60, + logData$channel_61,logData$channel_62,logData$channel_63,logData$channel_64,logData$channel_65,logData$channel_66,logData$channel_67,logData$channel_68,logData$channel_69,logData$channel_70, + logData$channel_71,logData$channel_72,logData$channel_73,logData$channel_74,logData$channel_75,logData$channel_76,logData$channel_77,logData$channel_78,logData$channel_79,logData$channel_80, + logData$channel_81,logData$channel_82,logData$channel_83,logData$channel_84,logData$channel_85,logData$channel_86,logData$channel_87,logData$channel_88,logData$channel_89,logData$channel_90, + logData$channel_91,logData$channel_92,logData$channel_93,logData$channel_94,logData$channel_95,logData$channel_96,logData$channel_97,logData$channel_98,logData$channel_99,logData$channel_100, + logData$channel_101,logData$channel_102,logData$channel_103,logData$channel_104,logData$channel_105,logData$channel_106,logData$channel_107,logData$channel_108,logData$channel_109,logData$channel_110, + logData$channel_111,logData$channel_112,logData$channel_113,logData$channel_114,logData$channel_115,logData$channel_116,logData$channel_117,logData$channel_118,logData$channel_119,logData$channel_120, + logData$channel_121,logData$channel_122,logData$channel_123,logData$channel_124,logData$channel_125,logData$channel_126,logData$channel_127,logData$channel_128,logData$channel_129,logData$channel_130, + logData$channel_131,logData$channel_132,logData$channel_133,logData$channel_134,logData$channel_135,logData$channel_136,logData$channel_137,logData$channel_138,logData$channel_139,logData$channel_140, + logData$channel_141,logData$channel_142,logData$channel_143,logData$channel_144,logData$channel_145,logData$channel_146,logData$channel_147,logData$channel_148,logData$channel_149,logData$channel_150, + logData$channel_151,logData$channel_152,logData$channel_153,logData$channel_154,logData$channel_155,logData$channel_156,logData$channel_157,logData$channel_158,logData$channel_159,logData$channel_160, + logData$channel_161,logData$channel_162,logData$channel_163,logData$channel_164,logData$channel_165,logData$channel_166,logData$channel_167,logData$channel_168,logData$channel_169,logData$channel_170, + logData$channel_171,logData$channel_172,logData$channel_173,logData$channel_174,logData$channel_175,logData$channel_176,logData$channel_177,logData$channel_178,logData$channel_179,logData$channel_180, + logData$channel_181,logData$channel_182,logData$channel_183,logData$channel_184,logData$channel_185,logData$channel_186,logData$channel_187,logData$channel_188,logData$channel_189,logData$channel_190, + logData$channel_191,logData$channel_192,logData$channel_193,logData$channel_194,logData$channel_195,logData$channel_196,logData$channel_197,logData$channel_198,logData$channel_199,logData$channel_200, + logData$channel_201,logData$channel_202,logData$channel_203,logData$channel_204,logData$channel_205,logData$channel_206,logData$channel_207,logData$channel_208,logData$channel_209,logData$channel_210, + logData$channel_211,logData$channel_212,logData$channel_213,logData$channel_214,logData$channel_215,logData$channel_216,logData$channel_217,logData$channel_218,logData$channel_219,logData$channel_220, + logData$channel_221,logData$channel_222,logData$channel_223,logData$channel_224,logData$channel_225,logData$channel_226,logData$channel_227,logData$channel_228,logData$channel_229,logData$channel_230, + logData$channel_231,logData$channel_232,logData$channel_233,logData$channel_234,logData$channel_235,logData$channel_236,logData$channel_237,logData$channel_238,logData$channel_239,logData$channel_240, + logData$channel_241,logData$channel_242,logData$channel_243,logData$channel_244,logData$channel_245,logData$channel_246,logData$channel_247,logData$channel_248,logData$channel_249,logData$channel_250, + logData$channel_251,logData$channel_252,logData$channel_253,logData$channel_254,logData$channel_255,logData$channel_256,sep=";") + +#' Calculates the readout date and time in POSIXct format + logData$readout_time<-lubridate::parse_date_time(as.character(logData$year_and_day),order="yj") + op <- options(digits.secs=3) + logData$readout_time<-lubridate::with_tz(logData$readout_time+(as.numeric(logData$time)*60*60),'UTC') + +#' Create additional header columns needed to match avro schema + asset_string <- regexpr("\\/[0-9]{5}\\/",FileIn) #' For SUNA asset info not included in log file header. Need it from input file folder name. + asset<-gsub("\\/","",substr(FileIn,asset_string[1],asset_string[1]+attributes(asset_string)$match.length-1)) + logData$source_id<-asset + logData$site_id<-NA #' This can be left blank for now + serial_number<-as.data.frame(strsplit(logMetadata[1,2],":")) + logData$header_manufacturer<-"SATS" + logData$header_serial_number<-serial_number[2,1] + logData$header_light_frame<-NA + for(i in 1:nrow(logData)){if(logData[i,which(colnames(logData)=="dark_value_used_for_fit")]==0){logData[i,which(colnames(logData)=="header_light_frame")]=0} + else{logData[i,which(colnames(logData)=="header_light_frame")]=1}} + +#' Re-orders columns so they match the avro schema + logData<-logData[,c("source_id","site_id","readout_time","header_manufacturer","header_serial_number","header_light_frame","year_and_day","time","nitrate_concentration", + "nitrogen_in_nitrate","absorbance_254nm","absorbance_350nm","bromide_trace","spectrum_average","dark_value_used_for_fit","integration_time_factor", + "spectrum_channels","internal_temperature","spectrometer_temperature","lamp_temperature","lamp_on_time","relative_humidity","main_voltage","lamp_voltage", + "internal_voltage","main_current","fit_aux_1","fit_aux_2","fit_base_1","fit_base_2","fit_rmse","ctd_time","ctd_salinity","ctd_temperature","ctd_pressure", + "check_sum","error_missing_data")] + +#' Checks that there are no dates prior to when NEON began collecting IS data + if(any(logData$readout_time<"2014-01-01 00:00:00 UTC")){ + log$debug(base::paste0("Data contains dates prior to when NEON began collecting IS data"))} +#' Checks that there are no future dates after the current date + if(any(logData$readout_time>Sys.time())){ + log$debug(base::paste0("Data contains future dates after the current date"))} + +#' Output file + #' Create output directory + year <- substr(logData$readout_time[1],1,4) + month <- substr(logData$readout_time[1],6,7) + day <- substr(logData$readout_time[1],9,10) + DirOutLogFile <- paste0(DirOut,'/sunav2/',year,'/',month,'/',day,'/',asset,'/data/') + base::dir.create(DirOutLogFile,recursive=TRUE) + csv_name <-paste0('sunav2_',asset,'_',year,'-',month,'-',day,'_log') + #' Writes parquet file to output directory + rptOut <- try(NEONprocIS.base::def.wrte.parq(data = logData, + NameFile = base::paste0(DirOutLogFile,csv_name,".parquet"), + Schm = SchmDataOut),silent=TRUE) + if(class(rptOut)[1] == 'try-error'){ + log$error(base::paste0('Cannot write Data to ',base::paste0(DirOutLogFile,csv_name,".parquet"),'. ',attr(rptOut, "condition"))) + stop() + } else { + log$info(base::paste0('Data written successfully in ', base::paste0(DirOutLogFile,csv_name,".parquet"))) + } + +} +#' End of file + + + + + + + + + + + + + + + + + diff --git a/flow/flow.sunav2.quality.flags/Dockerfile b/flow/flow.sunav2.quality.flags/Dockerfile new file mode 100644 index 000000000..0fba22454 --- /dev/null +++ b/flow/flow.sunav2.quality.flags/Dockerfile @@ -0,0 +1,28 @@ +# Dockerfile for NEON IS Data Processing - sunav2 sensor-specific quality flags + +# Start with the neon-is-pack-qaqc-r image. +FROM us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-pack-qaqc-r:v1.1.10 + +ARG FLOW_DIR="./flow" +ARG APP_DIR="flow.sunav2.quality.flags" + +# maintainer handle +MAINTAINER "Bobby Hensley" hensley@battelleecology.org + +# Copy the lockfile and restore known working versions of R dependency packages +# ENSURE that the renv.lock file is up-to-date and thus has all listed dependencies prior to creating this docker image +COPY ${FLOW_DIR}/${APP_DIR}/renv.lock /renv.lock +RUN R -e 'renv::restore(lockfile="/renv.lock")' + +# Create app user +RUN groupadd app && \ + useradd app -g app +WORKDIR /home/app + +# Copy in sunav2 flag workflow +COPY ${FLOW_DIR}/${APP_DIR}/flow.sunav2.quality.flags.R . +COPY ${FLOW_DIR}/${APP_DIR}/wrap.sunav2.quality.flags.R . + +# Run as app user +RUN chown app:app -R /home/app +USER app \ No newline at end of file diff --git a/flow/flow.sunav2.quality.flags/flow.sunav2.quality.flags.R b/flow/flow.sunav2.quality.flags/flow.sunav2.quality.flags.R new file mode 100644 index 000000000..757fbc84c --- /dev/null +++ b/flow/flow.sunav2.quality.flags/flow.sunav2.quality.flags.R @@ -0,0 +1,157 @@ +############################################################################################## +#' @title Workflow for SUNA Sensor-specific Quality Flags + +#' @author +#' Bobby Hensley \email{hensley@battelleecology.org} + +#' @description Workflow. Uses thresholds to apply sensor-specific quality flags to SUNA data. +#' Measurements where the lamp has not had enough time to stabilze (nitrateLampStabilizeQF=1) are removed. +#' +#' The arguments are: +#' +#' 1. "DirIn=value", The base file path to the input data, QA/QC plausibility flags and quality flag thresholds. +#' #/pfs/BASE_REPO/date/location/sunav2/cfgloc, where files will then be in /data, /flags and /threshold sub-folders. +#' +#' 2. "DirOut=value", The base file path for the output data. +#' +#' 3. "DirErr=value", where the value is the output path to place the path structure of errored datums that will +#' replace the #/pfs/BASE_REPO portion of \code{DirIn}. +#' +#' 4. "FileSchmData=value" (optional), The avro schema for the input and output data file. +#' +#' 5. "FileSchmQf=value" (optional), The avro schema for the combined flag file. +#' +#' +#' Note: This script implements logging described in \code{\link[NEONprocIS.base]{def.log.init}}, +#' which uses system environment variables if available. +#' +#' @return Sensor-specific quality flag files in daily parquets. + +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 + +#' @keywords Currently none + +#' @examples +#' flow.sunav2.quality.flags <- function(DirIn="~/pfs/nitrate_thresh_select_ts_pad/2025/06/25/nitrate_HOPB112100", +#' DirOut="~/pfs/sunav2_sensor_specific_flags/sunav2/2024/09/10/CFGLOC110733", +#' FileSchmQf=base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2_sensor_specific_flags.avsc'),collapse='') +#' log=log) +#' Stepping through the code in R studio +# Sys.setenv(DIR_IN='/home/NEON/ncatolico/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/24/nitrate_HOPB112100') +# log <- NEONprocIS.base::def.log.init(Lvl = "debug") +# arg <- c("DirIn=~/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/24/nitrate_HOPB112100", +# "DirOut=~/pfs/out", +# "DirErr=~/pfs/out/errored_datums") +#' rm(list=setdiff(ls(),c('arg','log'))) + +#' @seealso None currently + +# changelog and author contributions / copyrights +#' Bobby Hensley (2025-08-30) +#' Initial creation. +#' +#' Bobby Hensley (2025-09-18) +#' Updated so that measurements prior to lamp stabilization (never intended to be +#' used in downstream pipeline) are removed. +#' +#' Nora Catolico (2025-09-22) +#' combined input df and updated error logging +# + +############################################################################################## +options(digits.secs = 3) +library(foreach) +library(doParallel) +library(lubridate) +library(dplyr) + +# Source the wrapper function. Assume it is in the working directory +source("./wrap.sunav2.quality.flags.R") + +# Pull in command line arguments (parameters) +arg <- base::commandArgs(trailingOnly = TRUE) + +# Start logging +log <- NEONprocIS.base::def.log.init() + +# Use environment variable to specify how many cores to run on +numCoreUse <- base::as.numeric(Sys.getenv('PARALLELIZATION_INTERNAL')) +numCoreAvail <- parallel::detectCores() +if (base::is.na(numCoreUse)){ + numCoreUse <- 1 +} +if(numCoreUse > numCoreAvail){ + numCoreUse <- numCoreAvail +} +log$debug(paste0(numCoreUse, ' of ',numCoreAvail, ' available cores will be used for internal parallelization.')) + +# Parse the input arguments into parameters +Para <- NEONprocIS.base::def.arg.pars(arg = arg,NameParaReqd = c("DirIn","DirOut","DirErr"), + NameParaOptn = c("FileSchmData","FileSchmQf"),log = log) + +# Echo arguments +log$debug(base::paste0('Input data directory: ', Para$DirIn)) +log$debug(base::paste0('Output directory: ', Para$DirOut)) +log$debug(base::paste0('Error directory: ', Para$DirErr)) +log$debug(base::paste0('Schema for output data: ', Para$FileSchmData)) +log$debug(base::paste0('Schema for output flags: ', Para$FileSchmQf)) + +# Read in the schemas so we only have to do it once and not every time in the avro writer. +if(base::is.null(Para$FileSchmData) || Para$FileSchmData == 'NA'){ + SchmDataOut <- NULL +} else { + SchmDataOut <- base::paste0(base::readLines(Para$FileSchmData),collapse='') +} +if(base::is.null(Para$FileSchmQf) || Para$FileSchmQf == 'NA'){ + SchmFlagsOut <- NULL +} else { + SchmFlagsOut <- base::paste0(base::readLines(Para$FileSchmQf),collapse='') +} + + +# Find all the input paths (datums). We will process each one. +DirIn <- + NEONprocIS.base::def.dir.in(DirBgn = Para$DirIn, + nameDirSub = c('data','flags'), + log = log) + +# Process each datum path +doParallel::registerDoParallel(numCoreUse) +foreach::foreach(idxFileIn = DirIn) %dopar% { + log$info(base::paste0('Processing path to file: ', idxFileIn)) + # Run the wrapper function for each datum, with error routing + tryCatch( + withCallingHandlers( + wrap.sunav2.quality.flags( + DirIn=idxFileIn, + DirOutBase=Para$DirOut, + SchmDataOut=SchmDataOut, + SchmFlagsOut=SchmFlagsOut, + log=log + ), + error = function(err) { + call.stack <- base::sys.calls() # is like a traceback within "withCallingHandlers" + + # Re-route the failed datum + NEONprocIS.base::def.err.datm( + err=err, + call.stack=call.stack, + DirDatm=idxDirIn, + DirErrBase=Para$DirErr, + RmvDatmOut=TRUE, + DirOutBase=Para$DirOut, + log=log + ) + } + ), + # This simply to avoid returning the error + error=function(err) {} + ) + + return() +} + + + + diff --git a/flow/flow.sunav2.quality.flags/renv.lock b/flow/flow.sunav2.quality.flags/renv.lock new file mode 100644 index 000000000..dd613294d --- /dev/null +++ b/flow/flow.sunav2.quality.flags/renv.lock @@ -0,0 +1,182 @@ +{ + "R": { + "Version": "4.1.3", + "Repositories": [ + { + "Name": "CRAN", + "URL": "https://cran.rstudio.com" + } + ] + }, + "Packages": { + "cli": { + "Package": "cli", + "Version": "3.6.5", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "16850760556401a2eeb27d39bd11c9cb", + "Requirements": [] + }, + "codetools": { + "Package": "codetools", + "Version": "0.2-18", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "019388fc48e48b3da0d3a76ff94608a8", + "Requirements": [] + }, + "cpp11": { + "Package": "cpp11", + "Version": "0.5.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "2720e3fd3dad08f34b19b56b3d6f073d", + "Requirements": [] + }, + "doParallel": { + "Package": "doParallel", + "Version": "1.0.17", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "451e5edf411987991ab6a5410c45011f", + "Requirements": [ + "foreach", + "iterators" + ] + }, + "foreach": { + "Package": "foreach", + "Version": "1.5.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "618609b42c9406731ead03adf5379850", + "Requirements": [ + "codetools", + "iterators" + ] + }, + "generics": { + "Package": "generics", + "Version": "0.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "4b29bf698d0c7bdb9f1e4976e7ade41d", + "Requirements": [] + }, + "glue": { + "Package": "glue", + "Version": "1.8.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "5899f1eaa825580172bb56c08266f37c", + "Requirements": [] + }, + "iterators": { + "Package": "iterators", + "Version": "1.0.14", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "8954069286b4b2b0d023d1b288dce978", + "Requirements": [] + }, + "lifecycle": { + "Package": "lifecycle", + "Version": "1.0.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "b8552d117e1b808b09a832f589b79035", + "Requirements": [ + "cli", + "glue", + "rlang" + ] + }, + "lubridate": { + "Package": "lubridate", + "Version": "1.9.3", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "680ad542fbcf801442c83a6ac5a2126c", + "Requirements": [ + "generics", + "timechange" + ] + }, + "magrittr": { + "Package": "magrittr", + "Version": "2.0.3", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "7ce2733a9826b3aeb1775d56fd305472", + "Requirements": [] + }, + "renv": { + "Package": "renv", + "Version": "0.16.0", + "Source": "GitHub", + "RemoteType": "github", + "RemoteHost": "api.github.com", + "RemoteRepo": "renv", + "RemoteUsername": "rstudio", + "RemoteRef": "0.16.0", + "RemoteSha": "0e3aab27a928eb261819a3fc45a3ee2b4ba902a5", + "Hash": "9e5e2246d73254a29a4182f4e8257c09", + "Requirements": [] + }, + "rlang": { + "Package": "rlang", + "Version": "1.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "3eec01f8b1dee337674b2e34ab1f9bc1", + "Requirements": [] + }, + "stringi": { + "Package": "stringi", + "Version": "1.7.6", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "bba431031d30789535745a9627ac9271", + "Requirements": [] + }, + "stringr": { + "Package": "stringr", + "Version": "1.5.1", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "960e2ae9e09656611e0b8214ad543207", + "Requirements": [ + "cli", + "glue", + "lifecycle", + "magrittr", + "rlang", + "stringi", + "vctrs" + ] + }, + "timechange": { + "Package": "timechange", + "Version": "0.2.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "8548b44f79a35ba1791308b61e6012d7", + "Requirements": [ + "cpp11" + ] + }, + "vctrs": { + "Package": "vctrs", + "Version": "0.6.5", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "c03fa420630029418f7e6da3667aac4a", + "Requirements": [ + "cli", + "glue", + "lifecycle", + "rlang" + ] + } + } +} diff --git a/flow/flow.sunav2.quality.flags/wrap.sunav2.quality.flags.R b/flow/flow.sunav2.quality.flags/wrap.sunav2.quality.flags.R new file mode 100644 index 000000000..168d473cf --- /dev/null +++ b/flow/flow.sunav2.quality.flags/wrap.sunav2.quality.flags.R @@ -0,0 +1,268 @@ +############################################################################################## +#' @title Wrapper for SUNA sensor-specific quality flagging + +#' @author +#' Bobby Hensley \email{hensley@battelleecology.org} +#' +#' @description Wrapper function. Uses thresholds to apply sensor-specific quality flags to SUNA data. +#' Measurements where the lamp has not had enough time to stabilize (nitrateLampStabilizeQF=1) are removed. +#' +#' @param DirIn Character value. The base file path to the input data, QA/QC plausibility flags and quality flag thresholds. +#' +#' @param DirOut Character value. The base file path for the output data. +#' +#' @param SchmDataOut (optional), A json-formatted character string containing the schema for the data file. +#' This should be the same for the input as the output. Only the number of rows of measurements should change. +#' +#' @param SchmFlagsOut (optional), A json-formatted character string containing the schema for the output flags. +#' +#' @param log A logger object as produced by NEONprocIS.base::def.log.init to produce structured log +#' output. Defaults to NULL, in which the logger will be created and used within the function. See NEONprocIS.base::def.log.init +#' for more details. +#' +#' @return SUNA data file and combined flag file in daily parquets. +#' +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 +#' +#' @keywords Currently none +#' +#' @examples +#' # Not run +# DirIn<-"~/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/01/nitrate-surfacewater_CRAM103100/sunav2/CFGLOC110733" +# DirOut<-"~/pfs/nitrate_sensor_flag_and_remove/2025/06/01/nitrate-surfacewater_CRAM103100/sunav2/CFGLOC110733" +# SchmDataOut<-base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2_logfilled.avsc'),collapse='') +# SchmFlagsOut<-base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2_all_flags.avsc'),collapse='') +# log <- NEONprocIS.base::def.log.init(Lvl = "debug") +#' +#' +#' @changelog +#' Bobby Hensley (2025-08-30) +#' Initial creation. +#' +#' Bobby Hensley (2025-09-18) +#' Updated so that measurements prior to lamp stabilization (never intended to be +#' used in downstream pipeline) are removed. +#' +#' Bobby Hensley (2025-09-22) +#' Updated to use single input directory and added check that data and flag file +#' have same number of measurements. +#' +#' Bobby Hensley (2025-10-30) +#' Updated to revert over-flagged measurements at end of burst. +#' +#' Bobby Hensley (2025-12-10) +#' Updated lamp stabilization to pass added null "filler" for completely missing bursts. +#' +#' Bobby Hensley (2025-12-16) +#' Updated so that dark measurements caused by lamp temperature cutoff are still counted as part of same burst. +#' Updated so that any low transmittance error codes ("-1") are always flagged and set to NA. +#' +#' Bobby Hensley (2025-12-18) +#' Updated so lamp stabilization test sets failed values to NA rather than removing entire line. +############################################################################################## +wrap.sunav2.quality.flags <- function(DirIn, + DirOutBase, + SchmDataOut=NULL, + SchmFlagsOut=NULL, + log=NULL +){ + + #' Start logging if not already. + if(base::is.null(log)){ + log <- NEONprocIS.base::def.log.init() + } + + InfoDirIn <- NEONprocIS.base::def.dir.splt.pach.time(DirIn) + DirInData <- paste0(DirIn,"/data") + DirInFlags <- paste0(DirIn,"/flags") + DirInThresholds <- paste0(DirIn,"/threshold") + DirOut <- base::paste0(DirOutBase,InfoDirIn$dirRepo) + DirOutData <- base::paste0(DirOut,"/data") + base::dir.create(DirOutData,recursive=TRUE) + DirOutFlags <- base::paste0(DirOut,"/flags") + base::dir.create(DirOutFlags,recursive=TRUE) + + #' Read in parquet file of SUNA data. + dataFileName<-base::list.files(DirInData,full.names=FALSE) + if(length(dataFileName)==0){ + log$error(base::paste0('Data file not found in ', DirInData)) + stop() + } else { + sunaData<-base::try(NEONprocIS.base::def.read.parq(NameFile = base::paste0(DirInData, '/', dataFileName), + log = log),silent = FALSE) + log$debug(base::paste0('Successfully read in file: ',dataFileName)) + } + + #' Read in parquet file of QAQC plausibility flags. + plausFileName<-grep("flagsPlaus",base::list.files(DirInFlags,full.names=FALSE),value=TRUE) + if(length(plausFileName)==0){ + log$error(base::paste0('Plausibility flags not found in ', DirInFlags)) + stop() + } else { + plausFlags<-base::try(NEONprocIS.base::def.read.parq(NameFile = base::paste0(DirInFlags, '/', plausFileName), + log = log),silent = FALSE) + log$debug(base::paste0('Successfully read in file: ',plausFileName)) + } + + #' Read in parquet file of calibration flags. + calFileName<-grep("flagsCal",base::list.files(DirInFlags,full.names=FALSE),value=TRUE) + if(length(calFileName)==0){ + log$error(base::paste0('Calibration flags not found in ', DirInFlags)) + stop() + } else { + calFlags<-base::try(NEONprocIS.base::def.read.parq(NameFile = base::paste0(DirInFlags, '/', calFileName), + log = log),silent = FALSE) + log$debug(base::paste0('Successfully read in file: ',calFileName)) + } + + #' Read in parquet file of logged file flags. + logFileName<-grep("logFlags",base::list.files(DirInFlags,full.names=FALSE),value=TRUE) + if(length(calFileName)==0){ + log$error(base::paste0('Log flags not found in ', DirInFlags)) + stop() + } else { + logFlags<-base::try(NEONprocIS.base::def.read.parq(NameFile = base::paste0(DirInFlags, '/', logFileName), + log = log),silent = FALSE) + log$debug(base::paste0('Successfully read in file: ',logFileName)) + } + + #' Convert measurements to be tested from class character to numeric. + sunaData$relative_humidity<-as.numeric(sunaData$relative_humidity) + sunaData$lamp_temperature<-as.numeric(sunaData$lamp_temperature) + sunaData$spec_average<-as.numeric(sunaData$spec_average) + sunaData$dark_signal_average<-as.numeric(sunaData$dark_signal_average) + + #' Create data frame of input data file readout_times to serve as basis of sensor specific flag file. + sensorFlags<-as.data.frame(sunaData$readout_time) + colnames(sensorFlags)<-c("readout_time") + + #' Read in json file of quality flag thresholds. + thresholdFileName<-base::list.files(DirInThresholds,full.names=FALSE) + sunaThresholds<-base::try(NEONprocIS.qaqc::def.read.thsh.qaqc.df(NameFile = base::paste0(DirInThresholds, '/', thresholdFileName)),silent = FALSE) + + #' Perform internal humidity test. + humidityThreshold<-sunaThresholds[(sunaThresholds$threshold_name=="Nitrates Maximum Internal humidity"),] + maxHumidity<-humidityThreshold$number_value + sensorFlags$nitrateHumidityQF<-NA + sensorFlags[['nitrateHumidityQF']] <- ifelse( + is.na(sunaData[['relative_humidity']]), + -1, + ifelse(sunaData[['relative_humidity']] > maxHumidity, 1, 0) + ) + + #' Perform lamp temperature test (New condition need to be created. Using default for now). + # lampTempThreshold<-sunaThresholds[(sunaThresholds$threshold_name=="Nitrates Maximum Lamp Temperature"),] + # maxLampTemp<-lampTempThreshold$number_value + maxLampTemp=35 #' Hard-coded until thresholds are updated. + sensorFlags$nitrateLampTempQF<-NA + sensorFlags[['nitrateLampTempQF']] <- ifelse( + is.na(sunaData[['lamp_temperature']]), + -1, + ifelse(sunaData[['lamp_temperature']] > maxLampTemp, 1, 0) + ) + + #' Perform light to dark spectral ratio test. + spectralRatioThreshold<-sunaThresholds[(sunaThresholds$threshold_name=="Nitrates Minimum Light to Dark Spec Average Ratio"),] + minLightDarkRatio<-spectralRatioThreshold$number_value + sensorFlags$nitrateLightDarkRatioQF<-NA + sensorFlags[['nitrateLightDarkRatioQF']] <- case_when( + is.na(sunaData[['dark_signal_average']]) | is.na(sunaData[['spec_average']]) ~ -1, + sunaData[['light_dark_frame']] == 0 ~ -1, + sunaData[['spec_average']] / sunaData[['dark_signal_average']] < minLightDarkRatio ~ 1, + TRUE ~ 0 + ) + #' Extra test so that low transmittance error codes (-1) always trigger spectral ratio test regardless of threshold + sensorFlags[!is.na(sunaData[['nitrate']]) & !is.na(sunaData[['nitrogen_in_nitrate']]) & + sunaData[['nitrate']] == -1 & sunaData[['nitrogen_in_nitrate']] == -1, + 'nitrateLightDarkRatioQF'] <- 1 + + #' Identifies light measurement number within burst and performs lamp stabilization test. + # lampStabilizeThreshold<-sunaThresholds[(sunaThresholds$threshold_name=="Nitrates Lamp Stabilization Points"),] + # lampStabilizePoints<-lampStabilizeThreshold$number_value + lampStabilizePoints=9 #' Hard-coded until thresholds are updated. + sensorFlags$burstNumber<-0 #' Assumes each burst starts with a dark measurement. + #' If measurement is a light frame, or if the lamp temp caused a dark measurement, it is counted as the next measuremnt in a burst. + for(i in 2:nrow(sunaData)){ + if(!is.na(sunaData[i,which(colnames(sunaData)=='light_dark_frame')])){ + if(sunaData[i,which(colnames(sunaData)=='light_dark_frame')]==1|sensorFlags[i,which(colnames(sensorFlags)=='nitrateLampTempQF')]==1){ + sensorFlags[i,which(colnames(sensorFlags)=='burstNumber')]=sensorFlags[i-1,which(colnames(sensorFlags)=='burstNumber')]+1} + else{sensorFlags[i,which(colnames(sensorFlags)=='burstNumber')]=0}} + } + #' If light dark header is missing, assumes value was added null "filler" for a missing burst that needs to be passed. + sensorFlags[is.na(sunaData[['light_dark_frame']]), 'burstNumber'] <- 9999 + sensorFlags$nitrateLampStabilizeQF<-0 + sensorFlags[sensorFlags[['burstNumber']] <= lampStabilizePoints, 'nitrateLampStabilizeQF'] <- 1 + + #' Combines all flags into a single file. + allFlags<-base::merge(plausFlags,sensorFlags) + allFlags<-base::merge(allFlags,calFlags) + allFlags<-base::merge(allFlags,logFlags) + + #' Revert plausibility flags for last measurement of each burst to prevent over-flagging. + #' (Plausibility tests were run across bursts, where the time step is much larger than between measurements within bursts) + for(i in 3:nrow(allFlags)){ + if((allFlags[i,which(colnames(allFlags)=='burstNumber')]==0)&(allFlags[i-2,which(colnames(allFlags)=='nitrateStepQF')]==0)){ + allFlags[i-1,which(colnames(allFlags)=='nitrateStepQF')]=0} + } + for(i in 3:nrow(allFlags)){ + if((allFlags[i,which(colnames(allFlags)=='burstNumber')]==0)&(allFlags[i-2,which(colnames(allFlags)=='nitratePersistenceQF')]==0)){ + allFlags[i-1,which(colnames(allFlags)=='nitratePersistenceQF')]=0} + } + + #' Drops burst number column since it's no longer needed. + allFlags<-allFlags[,-which(colnames(allFlags)=='burstNumber')] + + #' Removes measurements where lamp has not stabilized from data and flag files. + #lampStabilizeFlagsOnly<-sensorFlags[,c("readout_time","nitrateLampStabilizeQF")] + #sunaData<-base::merge(sunaData,lampStabilizeFlagsOnly) #' Adds lamp stabilize QF to data file + #sunaData<-sunaData[(sunaData$nitrateLampStabilizeQF==0),] + #allFlags<-allFlags[(allFlags$nitrateLampStabilizeQF==0),] + #sunaData<-sunaData[,-which(colnames(sunaData)=='nitrateLampStabilizeQF')] + #sunaData<-sunaData[,c(2,3,1,4:37)] + + #' Checks that data file and flag file have same number of measurements + if(nrow(sunaData) != nrow(allFlags)){ + log$error(base::paste0('Error: Data and flags have different number of measuremnts')) + stop() + } else { + log$debug(base::paste0('Data and flags have same number of measurements')) + } + + #' Replace with NA's so that flagged data is excluded from averaging + dataOut<-merge(sunaData,allFlags,by='readout_time') + dataOut$nitrate[dataOut$light_dark_frame==0]<-NA #' Set any dark measurements to NA (just in case) + dataOut$nitrate[dataOut$nitrateHumidityQF==1]<-NA + dataOut$nitrate[dataOut$nitrateLampTempQF==1]<-NA + dataOut$nitrate[dataOut$nitrateLightDarkRatioQF==1]<-NA + dataOut$nitrate[dataOut$nitrateLampStabilizeQF==1]<-NA + dataOut<-dataOut[,which(colnames(dataOut)%in%colnames(sunaData))] + + #' Write out data file. + rptOutData <- try(NEONprocIS.base::def.wrte.parq(data = dataOut, + NameFile = base::paste0(DirOutData,'/',dataFileName), + Schm = SchmDataOut),silent=TRUE) + if(class(rptOutData)[1] == 'try-error'){ + log$error(base::paste0('Cannot write Data to ',base::paste0(DirOutData,'/',dataFileName),'. ',attr(rptOutData, "condition"))) + stop() + } else { + log$info(base::paste0('Data written successfully in ', base::paste0(DirOutData,'/',dataFileName))) + } + + #' Write out flags file. + allFlagFileName<-paste0(stringr::str_remove(dataFileName,".parquet"),'_all_flags') + + rptOutFlags <- try(NEONprocIS.base::def.wrte.parq(data = allFlags, + NameFile = base::paste0(DirOutFlags,'/',allFlagFileName,".parquet"), + Schm = SchmFlagsOut),silent=TRUE) + if(class(rptOutFlags)[1] == 'try-error'){ + log$error(base::paste0('Cannot write Flags to ',base::paste0(DirOutFlags,'/',allFlagFileName,".parquet"),'. ',attr(rptOutFlags, "condition"))) + stop() + } else { + log$info(base::paste0('Flags written successfully in ', base::paste0(DirOutFlags,'/',allFlagFileName,".parquet"))) + } + +} + + + diff --git a/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/data/sunav2_CFGLOC113620_2025-06-24.parquet b/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/data/sunav2_CFGLOC113620_2025-06-24.parquet new file mode 100644 index 000000000..fcf1ef960 Binary files /dev/null and b/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/data/sunav2_CFGLOC113620_2025-06-24.parquet differ diff --git a/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/flags/sunav2_CFGLOC113620_2025-06-24_flagsCal.parquet b/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/flags/sunav2_CFGLOC113620_2025-06-24_flagsCal.parquet new file mode 100644 index 000000000..91938623c Binary files /dev/null and b/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/flags/sunav2_CFGLOC113620_2025-06-24_flagsCal.parquet differ diff --git a/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/flags/sunav2_CFGLOC113620_2025-06-24_flagsPlausibility.parquet b/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/flags/sunav2_CFGLOC113620_2025-06-24_flagsPlausibility.parquet new file mode 100644 index 000000000..7efcaa431 Binary files /dev/null and b/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/flags/sunav2_CFGLOC113620_2025-06-24_flagsPlausibility.parquet differ diff --git a/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/flags/sunav2_CFGLOC113620_2025-06-24_logFlags.parquet b/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/flags/sunav2_CFGLOC113620_2025-06-24_logFlags.parquet new file mode 100644 index 000000000..453e1ef77 Binary files /dev/null and b/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/flags/sunav2_CFGLOC113620_2025-06-24_logFlags.parquet differ diff --git a/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/threshold/thresholds.json b/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/threshold/thresholds.json new file mode 100644 index 000000000..dd7d018c8 --- /dev/null +++ b/flow/tests/testthat/pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620/threshold/thresholds.json @@ -0,0 +1,199 @@ +{ + "thresholds":[ + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 7, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Despiking MAD" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 11, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Despiking maximum consecutive points (n)" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 60, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Despiking maximum (%) missing points per window" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value":null, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":"A", + "term_name":"nitrate", + "threshold_name":"Despiking Method" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 11, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Despiking window size - points" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 1, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Despiking window step - points." + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 5, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Gap Test value - # missing points" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 35, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Maximum Lamp Temperature" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 40, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Nitrates Maximum Internal humidity" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 2, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Nitrates Minimum Light to Dark Spec Average Ratio" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 0.01, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Persistence (change)" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 75, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Persistence (time - seconds)" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 1000, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Range Threshold Hard Max" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": -2, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Range Threshold Hard Min" + }, + { + "context":"nitrate", + "end_date":null, + "end_day_of_year":null, + "is_date_constrained":"N", + "location_name":"HOPB", + "number_value": 2, + "start_date":"2000-01-01T00:00:00Z", + "start_day_of_year":null, + "string_value":null, + "term_name":"nitrate", + "threshold_name":"Step Test value" + } + ] +} diff --git a/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/group/CFGLOC101686.json b/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/group/CFGLOC101686.json new file mode 100644 index 000000000..d9ec49073 --- /dev/null +++ b/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/group/CFGLOC101686.json @@ -0,0 +1,27 @@ +{ + "features": [ + { + "domain": "D02", + "geometry": null, + "HOR": "102", + "properties": { + "active_periods": [ + { + "start_date": "2019-11-18T00:00:00Z", + "end_date": "2019-11-19T00:00:00Z" + } + ], + "data_product_ID": [ + "DP1.20033.001" + ], + "group": "nitrate-surfacewater_POSE102100", + "name": "CFGLOC101686" + }, + "site": "POSE", + "type": "Feature", + "VER": "100", + "visibility_code": "public" + } + ], + "type": "FeatureCollection" +} \ No newline at end of file diff --git a/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/CFGLOC101686.json b/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/CFGLOC101686.json new file mode 120000 index 000000000..c1bd8b802 --- /dev/null +++ b/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/CFGLOC101686.json @@ -0,0 +1 @@ +/home/NEON/ncatolico/R/NEON-IS-data-processing/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/CFGLOC101686.json \ No newline at end of file diff --git a/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/sunav2_raw_23354_locations.json b/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/sunav2_raw_23354_locations.json new file mode 120000 index 000000000..adb84ce9e --- /dev/null +++ b/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/sunav2_raw_23354_locations.json @@ -0,0 +1 @@ +/home/NEON/ncatolico/R/NEON-IS-data-processing/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/sunav2_raw_23354_locations.json \ No newline at end of file diff --git a/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/quality_metrics/sunav2_CFGLOC101686_2019-11-18_all_qualityMetrics_015.parquet b/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/quality_metrics/sunav2_CFGLOC101686_2019-11-18_all_qualityMetrics_015.parquet new file mode 100644 index 000000000..e1f629f0a Binary files /dev/null and b/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/quality_metrics/sunav2_CFGLOC101686_2019-11-18_all_qualityMetrics_015.parquet differ diff --git a/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/stats/sunav2_CFGLOC101686_2019-11-18_basicStats_015.parquet b/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/stats/sunav2_CFGLOC101686_2019-11-18_basicStats_015.parquet new file mode 100644 index 000000000..970154d41 Binary files /dev/null and b/flow/tests/testthat/pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/stats/sunav2_CFGLOC101686_2019-11-18_basicStats_015.parquet differ diff --git a/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/group/CFGLOC101686.json b/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/group/CFGLOC101686.json new file mode 100644 index 000000000..d9ec49073 --- /dev/null +++ b/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/group/CFGLOC101686.json @@ -0,0 +1,27 @@ +{ + "features": [ + { + "domain": "D02", + "geometry": null, + "HOR": "102", + "properties": { + "active_periods": [ + { + "start_date": "2019-11-18T00:00:00Z", + "end_date": "2019-11-19T00:00:00Z" + } + ], + "data_product_ID": [ + "DP1.20033.001" + ], + "group": "nitrate-surfacewater_POSE102100", + "name": "CFGLOC101686" + }, + "site": "POSE", + "type": "Feature", + "VER": "100", + "visibility_code": "public" + } + ], + "type": "FeatureCollection" +} \ No newline at end of file diff --git a/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/CFGLOC101686.json b/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/CFGLOC101686.json new file mode 100644 index 000000000..8e1d1050e --- /dev/null +++ b/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/CFGLOC101686.json @@ -0,0 +1,22 @@ +{ + "features":[ + { + "Data Rate":"0.0166666666667", + "geometry":null, + "HOR":"102", + "properties":{ + "active_periods":[ + { + "start_date":"2019-11-18T00:00:00Z", + "end_date":"2019-11-19T00:00:00Z" + } + ], + "description":"Posey Creek Nitrate Analyzer S2", + "name":"CFGLOC101686", + "site":"POSE" + }, + "VER":"100" + } + ], + "type":"FeatureCollection" +} diff --git a/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/sunav2_raw_23354_locations.json b/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/sunav2_raw_23354_locations.json new file mode 100644 index 000000000..eb36d85d0 --- /dev/null +++ b/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/location/sunav2_raw_23354_locations.json @@ -0,0 +1,19 @@ +{ + "features":[ + { + "Data Rate":"0.0166666666667", + "geometry":null, + "HOR":"102", + "properties":{ + "install_date":"2019-11-18T00:00:00Z", + "name":"CFGLOC101686", + "remove_date":"2019-11-19T00:00:00Z", + "site":"POSE" + }, + "VER":"100" + } + ], + "source_id": 23354, + "source_type":"sunav2_raw", + "type":"FeatureCollection" +} diff --git a/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/quality_metrics/sunav2_CFGLOC101686_2019-11-18_all_qualityMetrics_015.parquet b/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/quality_metrics/sunav2_CFGLOC101686_2019-11-18_all_qualityMetrics_015.parquet new file mode 100644 index 000000000..e1f629f0a Binary files /dev/null and b/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/quality_metrics/sunav2_CFGLOC101686_2019-11-18_all_qualityMetrics_015.parquet differ diff --git a/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/stats/sunav2_CFGLOC101686_2019-11-18_basicStats_015.parquet b/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/stats/sunav2_CFGLOC101686_2019-11-18_basicStats_015.parquet new file mode 100644 index 000000000..d5984b76e Binary files /dev/null and b/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/stats/sunav2_CFGLOC101686_2019-11-18_basicStats_015.parquet differ diff --git a/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/uncertainty_coef/sunav2_CFGLOC101686_2019-11-18_uncertaintyCoef.json b/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/uncertainty_coef/sunav2_CFGLOC101686_2019-11-18_uncertaintyCoef.json new file mode 100644 index 000000000..170e825d8 --- /dev/null +++ b/flow/tests/testthat/pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686/uncertainty_coef/sunav2_CFGLOC101686_2019-11-18_uncertaintyCoef.json @@ -0,0 +1,62 @@ +[ + { + "calibration_id": 206313, + "term":"serial_output", + "start_date":"2019-11-18T00:00:00.000Z", + "end_date":"2019-11-19T00:00:00.000Z", + "expired": false, + "Name":"U_CVALD3", + "Value":"0", + ".attrs":"mg/L" + }, + { + "calibration_id": 206313, + "term":"serial_output", + "start_date":"2019-11-18T00:00:00.000Z", + "end_date":"2019-11-19T00:00:00.000Z", + "expired": false, + "Name":"U_CVALD2", + "Value":"0", + ".attrs":"mg/L" + }, + { + "calibration_id": 206313, + "term":"serial_output", + "start_date":"2019-11-18T00:00:00.000Z", + "end_date":"2019-11-19T00:00:00.000Z", + "expired": false, + "Name":"U_CVALD1", + "Value":"0", + ".attrs":"mg/L" + }, + { + "calibration_id": 206313, + "term":"serial_output", + "start_date":"2019-11-18T00:00:00.000Z", + "end_date":"2019-11-19T00:00:00.000Z", + "expired": false, + "Name":"U_CVALA3", + "Value":"0.0333", + ".attrs":"mg/L" + }, + { + "calibration_id": 206313, + "term":"serial_output", + "start_date":"2019-11-18T00:00:00.000Z", + "end_date":"2019-11-19T00:00:00.000Z", + "expired": false, + "Name":"U_CVALA2", + "Value":"0.3", + ".attrs":"mg/L" + }, + { + "calibration_id": 206313, + "term":"serial_output", + "start_date":"2019-11-18T00:00:00.000Z", + "end_date":"2019-11-19T00:00:00.000Z", + "expired": false, + "Name":"U_CVALA1", + "Value":"0.666", + ".attrs":"mg/L" + } +] diff --git a/flow/tests/testthat/pfs/out/sunav2/2024/09/02/20349/data/sunav2_20349_2024-09-02_log.parquet b/flow/tests/testthat/pfs/out/sunav2/2024/09/02/20349/data/sunav2_20349_2024-09-02_log.parquet new file mode 100644 index 000000000..62e0d9452 Binary files /dev/null and b/flow/tests/testthat/pfs/out/sunav2/2024/09/02/20349/data/sunav2_20349_2024-09-02_log.parquet differ diff --git a/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_all_flags.avsc b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_all_flags.avsc new file mode 100644 index 000000000..7443d0380 --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_all_flags.avsc @@ -0,0 +1,128 @@ +{ + "type": "record", + "name": "nitrate_all_flags", + "namespace": "org.neonscience.schema.device", + "doc": "Combined flags for nitrate in surfacewater", + "__version": "1.0", + "fields": [ + { + "name": "readout_time", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Timestamp of readout expressed in milliseconds since epoch", + "__neon_units": "millisecond" + }, + { + "name": "nitrateRangeQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna range plausibility test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "nitrateStepQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna step plausibility test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "nitratePersistenceQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna persistence plausibility test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "nitrateSpikeQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna spike plausibility test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "nitrateHumidityQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna internal humidity test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "nitrateLampTempQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna lamp temperature test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "nitrateLightDarkRatioQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna light to dark spectral ratio test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "nitrateLampStabilizeQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna number of light measurments for the lamp to stabilize test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "validCalQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Indicator flag for the suna valid calibration test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "suspectCalQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Indicator flag for the suna suspect calibration test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "sunaLogDataQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Indicator flag for the suna logged data (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + } + ] +} diff --git a/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_insufficient_data.avsc b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_insufficient_data.avsc new file mode 100644 index 000000000..0980617d0 --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_insufficient_data.avsc @@ -0,0 +1,396 @@ +{ + "type": "record", + "name": "nitrate_insufficient_data", + "namespace": "org.neonscience.schema.dp01", + "doc": "L1 statistics for nitrate in surfacewater", + "__version": "1.0", + "fields": [ + { + "name": "startDateTime", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Date and time at which a sampling is initiated (inclusive)" + }, + { + "name": "endDateTime", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Date and time at which a sampling is completed (exclusive)" + }, + { + "name": "rangePassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the range test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "rangeFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the range test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "rangeNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the range test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "stepPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the step test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "stepFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the step test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "stepNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the step test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "persistencePassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the persistence test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "persistenceFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the persistence test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "persistenceNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the persistence test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "spikePassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the spike test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "spikeFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the spike test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "spikeNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the spike test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateInternalHumidityPassQM +", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the internal humidity test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateInternalHumidityFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the internal humidity test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateInternalHumidityNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the internal humidity test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLampTempPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the lamp temperature test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLampTempFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the lamp temperature test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLampTempNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the lamp temperature test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLightDarkSpectralRatioPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the light to dark ratio test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLightDarkSpectralRatioFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the light to dark test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLightDarkSpectralRatioNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the light to dark test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLampStabilizeQFPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the lamp stabilization test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLampStabilizeQFFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the lamp stabilization test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLampStabilizeQFNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the lamp stabilization test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "validCalPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the valid calibration test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "validCalFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the valid calibration test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "validCalNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the valid calibration test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "suspectCalPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the suspect calibration test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "suspectCalFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the suspect calibration test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "suspectCalNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the suspect calibration test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLogDataPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Indicator metric that summarizes when logged data was included within the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLogDataFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Indicator metric that summarizes when logged data was not included within the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLogDataNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when logged data test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "alphaQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric detailing the outcomes of the alpha quality flag over the averaging period, as a percent and detailed in NEON.DOC.001113", + "__neon_units": "percent" + }, + { + "name": "betaQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric detailing the outcomes of the beta quality flag over the averaging period, as a percent and detailed in NEON.DOC.001113", + "__neon_units": "percent" + }, + { + "name": "insufficientDataQF", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality flag indicating whether less than the required number of data points were available during the averaging period (1=fail, 0=pass)", + "__neon_units": "NA" + }, + { + "name": "finalQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag indicating whether a data product has passed or failed an overall assessment of its quality, detailed in NEON.DOC.001113 (1=fail, 0=pass)", + "__neon_units": "NA" + } + ] +} diff --git a/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_plausibility_flags.avsc b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_plausibility_flags.avsc new file mode 100644 index 000000000..b16d33537 --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_plausibility_flags.avsc @@ -0,0 +1,53 @@ +{ + "type": "record", + "name": "nitrate_all_flags", + "namespace": "org.neonscience.schema.device", + "doc": "Plausibility flags for nitrate in surfacewater", + "__version": "1.0", + "__neon_parts": [ + "0329950000", + "0329950100", + "0329950005" + ], + "fields": [ + { + "name": "readout_time", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Timestamp of readout expressed in milliseconds since epoch", + "__neon_units": "millisecond" + }, + { + "name": "nitrateRangeQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna range plausibility test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "nitrateStepQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna step plausibility test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "nitratePersistenceQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna persistence plausibility test (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + } + ] +} diff --git a/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_quality_metrics.avsc b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_quality_metrics.avsc new file mode 100644 index 000000000..583cb27e8 --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_quality_metrics.avsc @@ -0,0 +1,385 @@ +{ + "type": "record", + "name": "nitrate_quality_metrics", + "namespace": "org.neonscience.schema.dp01", + "doc": "L1 statistics for nitrate in surfacewater", + "__version": "1.0", + "fields": [ + { + "name": "startDateTime", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Date and time at which a sampling is initiated (inclusive)" + }, + { + "name": "endDateTime", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Date and time at which a sampling is completed (exclusive)" + }, + { + "name": "nitrateRangePassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the range test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateRangeFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the range test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateRangeNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the range test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateStepPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the step test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateStepFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the step test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateStepNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the step test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitratePersistencePassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the persistence test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitratePersistenceFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the persistence test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitratePersistenceNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the persistence test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateSpikePassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the spike test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateSpikeFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the spike test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateSpikeNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the spike test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateHumidityPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the internal humidity test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateHumidityFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the internal humidity test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateHumidityNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the internal humidity test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLampTempPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the lamp temperature test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLampTempFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the lamp temperature test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLampTempNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the lamp temperature test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLightDarkRatioPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the light to dark ratio test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLightDarkRatioFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the light to dark test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLightDarkNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the light to dark test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLampStabilizeQFPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the lamp stabilization test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLampStabilizeQFFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the lamp stabilization test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLampStabilizeQFNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the lamp stabilization test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "validCalPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the valid calibration test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "validCalFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the valid calibration test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "validCalNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the valid calibration test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "suspectCalPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the passed outcomes of the suspect calibration test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "suspectCalFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes the failed outcomes of the suspect calibration test over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "suspectCalNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when the suspect calibration test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLogDataPassQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Indicator metric that summarizes when logged data was included within the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLogDataFailQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Indicator metric that summarizes when logged data was not included within the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateLogDataNAQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric that summarizes when logged data test could not be run over the averaging period, as a percent", + "__neon_units": "percent" + }, + { + "name": "nitrateAlphaQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric detailing the outcomes of the alpha quality flag over the averaging period, as a percent and detailed in NEON.DOC.001113", + "__neon_units": "percent" + }, + { + "name": "nitrateBetaQM", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Quality metric detailing the outcomes of the beta quality flag over the averaging period, as a percent and detailed in NEON.DOC.001113", + "__neon_units": "percent" + }, + { + "name": "nitrateFinalQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag indicating whether a data product has passed or failed an overall assessment of its quality, detailed in NEON.DOC.001113 (1=fail, 0=pass)", + "__neon_units": "NA" + } + ] +} diff --git a/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_specific_flags.avsc b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_specific_flags.avsc new file mode 100644 index 000000000..b925b657c --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_specific_flags.avsc @@ -0,0 +1,63 @@ +{ + "type": "record", + "name": "nitrate_specific_flags", + "namespace": "org.neonscience.schema.device", + "doc": "Flags nitrate in surfacewater", + "__version": "1.0", + "__neon_parts": [ + "0329950000", + "0329950100", + "0329950005" + ], + "fields": [ + { + "name": "readout_time", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Timestamp of readout expressed in milliseconds since epoch", + "__neon_units": "millisecond" + }, + { + "name": "nitrateHumidityQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna internal humidity (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "nitrateLampTempQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna lamp temperature (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "nitrateLightDarkRatioQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna light to dark spectral ratio (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "nitrateLampStabilizeQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna number of light measurments for the lamp to stabilize (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + } + ] +} diff --git a/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_stats.avsc b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_stats.avsc new file mode 100644 index 000000000..7deec2ba5 --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_stats.avsc @@ -0,0 +1,86 @@ +{ + "type": "record", + "name": "nitrate_stats", + "namespace": "org.neonscience.schema.dp01", + "doc": "L1 statistics for nitrate in surfacewater", + "__version": "1.0", + "fields": [ + { + "name": "startDateTime", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Date and time at which a sampling is initiated (inclusive)" + }, + { + "name": "endDateTime", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Date and time at which a sampling is completed (exclusive)" + }, + { + "name": "surfWaterNitrateMean", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Arithmetic mean of nitrate-N", + "__neon_units": "micromolesPerLiter" + }, + { + "name": "surfWaterNitrateMinimum", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Minimum nitrate-N", + "__neon_units": "micromolesPerLiter" + }, + { + "name": "surfWaterNitrateMaximum", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Maximum nitrate-N", + "__neon_units": "micromolesPerLiter" + }, + { + "name": "surfWaterNitrateVariance", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Variance in nitrate-N", + "__neon_units": "micromolesPerLiterSquared" + }, + { + "name": "surfWaterNitrateNumPts", + "type": [ + "null", + "int16" + ], + "default": null, + "doc": "Number of points used to calculate the arithmetic mean of nitrate-N", + "__neon_units": "number" + }, + { + "name": "surfWaterNitrateStdErMean", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Standard error of the mean for nitrate-N", + "__neon_units": "micromolesPerLiter" + } + ] +} + diff --git a/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_ucrt.avsc b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_ucrt.avsc new file mode 100644 index 000000000..27e19b7d6 --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_avro_schemas/nitrate/nitrate_ucrt.avsc @@ -0,0 +1,96 @@ +{ + "type": "record", + "name": "nitrate_ucrt", + "namespace": "org.neonscience.schema.dp01", + "doc": "L1 stats plus uncertainty for nitrate in surfacewater", + "__version": "1.0", + "fields": [ + { + "name": "startDateTime", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Date and time at which a sampling is initiated (inclusive)" + }, + { + "name": "endDateTime", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Date and time at which a sampling is completed (exclusive)" + }, + { + "name": "surfWaterNitrateMean", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Arithmetic mean of nitrate-N", + "__neon_units": "micromolesPerLiter" + }, + { + "name": "surfWaterNitrateMinimum", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Minimum nitrate-N", + "__neon_units": "micromolesPerLiter" + }, + { + "name": "surfWaterNitrateMaximum", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Maximum nitrate-N", + "__neon_units": "micromolesPerLiter" + }, + { + "name": "surfWaterNitrateVariance", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Variance in nitrate-N", + "__neon_units": "micromolesPerLiterSquared" + }, + { + "name": "surfWaterNitrateNumPts", + "type": [ + "null", + "int16" + ], + "default": null, + "doc": "Number of points used to calculate the arithmetic mean of nitrate-N", + "__neon_units": "number" + }, + { + "name": "surfWaterNitrateStdErMean", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Standard error of the mean for nitrate-N", + "__neon_units": "micromolesPerLiter" + }, + { + "name": "surfWaterNitrateExpUncert", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Expanded uncertainty for nitrate-N", + "__neon_units": "micromolesPerLiter" + } + ] +} + diff --git a/flow/tests/testthat/pfs/sunav2_avro_schemas/sunav2_calibration_flags.avsc b/flow/tests/testthat/pfs/sunav2_avro_schemas/sunav2_calibration_flags.avsc new file mode 100644 index 000000000..ea6d6eddf --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_avro_schemas/sunav2_calibration_flags.avsc @@ -0,0 +1,36 @@ +{ + "type": "record", + "name": "sunav2_calibration_flags", + "namespace": "org.neonscience.schema.dp0p", + "doc": "Calibration flags for the SUNA V2 sensor", + "fields": [ + { + "name": "readout_time", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Timestamp of readout expressed in milliseconds since epoch" + }, + { + "name": "validCalQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the valid calibration check detailed in NEON.DOC.002181 (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + }, + { + "name": "suspectCalQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suspect calibration check detailed in NEON.DOC.002181 (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + } + ] +} diff --git a/flow/tests/testthat/pfs/sunav2_avro_schemas/sunav2_log_flags.avsc b/flow/tests/testthat/pfs/sunav2_avro_schemas/sunav2_log_flags.avsc new file mode 100644 index 000000000..839259afe --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_avro_schemas/sunav2_log_flags.avsc @@ -0,0 +1,33 @@ +{ + "type": "record", + "name": "sunav2_log_flags", + "namespace": "org.neonscience.schema.device", + "doc": "Seabird Scientific SUNA V2 UV Nitrate Analyzer", + "__version": "1.0", + "__neon_parts": [ + "0329950000", + "0329950100", + "0329950005" + ], + "fields": [ + { + "name": "readout_time", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Timestamp of readout expressed in milliseconds since epoch", + "__neon_units": "millisecond" + }, + { + "name": "sunaLogDataQF", + "type": [ + "null", + "int8" + ], + "default": null, + "doc": "Quality flag for the suna log data (1=fail, 0=pass, -1=NA (i.e., could not be run))", + "__neon_units": "NA" + } + ] +} diff --git a/flow/tests/testthat/pfs/sunav2_avro_schemas/sunav2_logfilled.avsc b/flow/tests/testthat/pfs/sunav2_avro_schemas/sunav2_logfilled.avsc new file mode 100644 index 000000000..96ce86669 --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_avro_schemas/sunav2_logfilled.avsc @@ -0,0 +1,379 @@ +{ + "type": "record", + "name": "sunav2_logfilled", + "namespace": "org.neonscience.schema.dp0p", + "doc": "Calibrated sunav2 Data.", + "fields": [ + { + "name": "source_id", + "type": "string", + "doc": "Source serial number or MAC address" + }, + { + "name": "site_id", + "type": [ + "null", + "string" + ], + "doc": "NEON site identifier" + }, + { + "name": "readout_time", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + }, + "doc": "Timestamp of readout expressed in milliseconds since epoch", + "__neon_units": "millisecond" + }, + { + "name": "header_manufacturer", + "type": [ + "null", + "string" + ], + "doc": "header_manufacturer" + }, + { + "name": "header_serial_number", + "type": [ + "null", + "string" + ], + "doc": "header_serial_number" + }, + { + "name": "light_dark_frame", + "type": [ + "null", + "int" + ], + "default": null, + "doc": "Light or dark frame flag" + }, + { + "name": "year_and_day", + "type": [ + "null", + "int" + ], + "default": null, + "doc": "year_and_day", + "__neon_stream_id": "1" + }, + { + "name": "time", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Time", + "__neon_stream_id": "2" + }, + { + "name": "nitrate", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Nitrate concentration as micromoler", + "__neon_units": "micromolesPerLiter", + "__neon_stream_id": "3" + }, + { + "name": "nitrogen_in_nitrate", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Nitrate concentration as micromoler", + "__neon_units": "milligramsPerLiter", + "__neon_stream_id": "4" + }, + { + "name": "absorbance_254", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Absorbance at 254 nm", + "__neon_stream_id": "5" + }, + { + "name": "absorbance_350", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Absorbance at 350 nm", + "__neon_stream_id": "6" + }, + { + "name": "bromide_trace", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Bromide trace", + "__neon_stream_id": "7" + }, + { + "name": "spec_average", + "type": [ + "null", + "int" + ], + "default": null, + "doc": "Spec Average or SW Average(Dark Correction Method)", + "__neon_stream_id": "8" + }, + { + "name": "dark_signal_average", + "type": [ + "null", + "int" + ], + "default": null, + "doc": "Dark Signal Average (average dark intensity)", + "__neon_stream_id": "9" + }, + { + "name": "integration_time_factor", + "type": [ + "null", + "int" + ], + "default": null, + "doc": "Integration Time Factor", + "__neon_stream_id": "10" + }, + { + "name": "spectrum_channels", + "type": [ + "null", + "string" + ], + "default": null, + "doc": "256 different measurements of spectrometer intensity at a wavelength number defined by the array index plus one" + }, + { + "name": "sensor_temperature", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Temperature of sensor", + "__neon_units": "celsius", + "__neon_stream_id": "267" + }, + { + "name": "spectrometer_temperature", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Temperature of spectrometer", + "__neon_units": "celsius", + "__neon_stream_id": "268" + }, + { + "name": "lamp_temperature", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Lamp temperature", + "__neon_units": "celsius", + "__neon_stream_id": "269" + }, + { + "name": "lamp_time", + "type": [ + "null", + "int" + ], + "default": null, + "doc": "Cumulative lamp time", + "__neon_units": "second", + "__neon_stream_id": "270" + }, + { + "name": "relative_humidity", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Relative humidity", + "__neon_units": "percent", + "__neon_stream_id": "271" + }, + { + "name": "main_voltage", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Main Voltage", + "__neon_units": "volt", + "__neon_stream_id": "272" + }, + { + "name": "lamp_voltage", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Lamp Voltage", + "__neon_units": "volt", + "__neon_stream_id": "273" + }, + { + "name": "internal_voltage", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Internal Voltage", + "__neon_units": "volt", + "__neon_stream_id": "274" + }, + { + "name": "main_current", + "type": [ + "null", + "int" + ], + "default": null, + "doc": "Main current", + "__neon_units": "milliampere", + "__neon_stream_id": "275" + }, + { + "name": "fit_aux_1", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Fit Aux 1", + "__neon_stream_id": "276" + }, + { + "name": "fit_aux_2", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Fit Aux 2", + "__neon_stream_id": "277" + }, + { + "name": "fit_base_1", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Fit Base 1", + "__neon_stream_id": "278" + }, + { + "name": "fit_base_2", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Fit Base 2", + "__neon_stream_id": "279" + }, + { + "name": "fit_rmse", + "type": [ + "null", + "float" + ], + "default": null, + "doc": "Fit RMSE", + "__neon_stream_id": "280" + }, + { + "name": "ctd_time", + "type": [ + "null", + "int" + ], + "default": null, + "doc": "CTD time", + "__neon_units": "second", + "__neon_stream_id": "281" + }, + { + "name": "ctd_salinity", + "type": [ + "null", + "int" + ], + "default": null, + "doc": "CTD salinity", + "__neon_units": "practicalSalinityUnit", + "__neon_stream_id": "282" + }, + { + "name": "ctd_temperature", + "type": [ + "null", + "int" + ], + "default": null, + "doc": "CTD temperature", + "__neon_units": "celsius", + "__neon_stream_id": "283" + }, + { + "name": "ctd_pressure", + "type": [ + "null", + "int" + ], + "default": null, + "doc": "CTD pressure", + "__neon_units": "decibar", + "__neon_stream_id": "284" + }, + { + "name": "crc", + "type": [ + "null", + "int" + ], + "default": null, + "doc": "Data crc", + "__neon_stream_id": "285" + }, + { + "name": "block_of_data_complete", + "type": [ + "null", + "boolean" + ], + "default": null, + "doc": "Flag that indicates if this data belongs to a complete set of 21 readouts", + "__neon_stream_id": "286" + } + ] +} diff --git a/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/data/sunav2_CFGLOC110819_2025-06-23.parquet b/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/data/sunav2_CFGLOC110819_2025-06-23.parquet new file mode 100644 index 000000000..423a5d968 Binary files /dev/null and b/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/data/sunav2_CFGLOC110819_2025-06-23.parquet differ diff --git a/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/flags/sunav2_CFGLOC110819_2025-06-23_flagsCal.parquet b/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/flags/sunav2_CFGLOC110819_2025-06-23_flagsCal.parquet new file mode 100644 index 000000000..d655ee494 Binary files /dev/null and b/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/flags/sunav2_CFGLOC110819_2025-06-23_flagsCal.parquet differ diff --git a/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/flags/sunav2_CFGLOC110819_2025-06-23_logFlags.parquet b/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/flags/sunav2_CFGLOC110819_2025-06-23_logFlags.parquet new file mode 100644 index 000000000..ea58d9bf4 Binary files /dev/null and b/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/flags/sunav2_CFGLOC110819_2025-06-23_logFlags.parquet differ diff --git a/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/location/CFGLOC110819.json b/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/location/CFGLOC110819.json new file mode 100644 index 000000000..836db421b --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/location/CFGLOC110819.json @@ -0,0 +1,22 @@ +{ + "features":[ + { + "Data Rate":"0.0033333333333", + "geometry":null, + "HOR":"103", + "properties":{ + "active_periods":[ + { + "start_date":"2025-06-23T00:00:00Z", + "end_date":"2025-06-24T00:00:00Z" + } + ], + "description":"Suggs Lake Nitrate Analyzer Buoy", + "name":"CFGLOC110819", + "site":"SUGG" + }, + "VER":"100" + } + ], + "type":"FeatureCollection" +} diff --git a/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/location/sunav2_raw_49259_locations.json b/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/location/sunav2_raw_49259_locations.json new file mode 100644 index 000000000..69c575665 --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/location/sunav2_raw_49259_locations.json @@ -0,0 +1,19 @@ +{ + "features":[ + { + "Data Rate":"0.0033333333333", + "geometry":null, + "HOR":"103", + "properties":{ + "install_date":"2025-06-23T00:00:00Z", + "name":"CFGLOC110819", + "remove_date":"2025-06-24T00:00:00Z", + "site":"SUGG" + }, + "VER":"100" + } + ], + "source_id": 49259, + "source_type":"sunav2_raw", + "type":"FeatureCollection" +} diff --git a/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/uncertainty_coef/sunav2_CFGLOC110819_2025-06-23_uncertaintyCoef.json b/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/uncertainty_coef/sunav2_CFGLOC110819_2025-06-23_uncertaintyCoef.json new file mode 100644 index 000000000..48c2e46bd --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819/uncertainty_coef/sunav2_CFGLOC110819_2025-06-23_uncertaintyCoef.json @@ -0,0 +1,62 @@ +[ + { + "calibration_id": 399098, + "term":"serial_output", + "start_date":"2025-06-23T00:00:00.000Z", + "end_date":"2025-06-24T00:00:00.000Z", + "expired": false, + "Name":"U_CVALD3", + "Value":"0", + ".attrs":"mg/L" + }, + { + "calibration_id": 399098, + "term":"serial_output", + "start_date":"2025-06-23T00:00:00.000Z", + "end_date":"2025-06-24T00:00:00.000Z", + "expired": false, + "Name":"U_CVALD2", + "Value":"0", + ".attrs":"mg/L" + }, + { + "calibration_id": 399098, + "term":"serial_output", + "start_date":"2025-06-23T00:00:00.000Z", + "end_date":"2025-06-24T00:00:00.000Z", + "expired": false, + "Name":"U_CVALD1", + "Value":"0", + ".attrs":"mg/L" + }, + { + "calibration_id": 399098, + "term":"serial_output", + "start_date":"2025-06-23T00:00:00.000Z", + "end_date":"2025-06-24T00:00:00.000Z", + "expired": false, + "Name":"U_CVALA3", + "Value":"0.0333", + ".attrs":"mg/L" + }, + { + "calibration_id": 399098, + "term":"serial_output", + "start_date":"2025-06-23T00:00:00.000Z", + "end_date":"2025-06-24T00:00:00.000Z", + "expired": false, + "Name":"U_CVALA2", + "Value":"0.3", + ".attrs":"mg/L" + }, + { + "calibration_id": 399098, + "term":"serial_output", + "start_date":"2025-06-23T00:00:00.000Z", + "end_date":"2025-06-24T00:00:00.000Z", + "expired": false, + "Name":"U_CVALA1", + "Value":"0.666", + ".attrs":"mg/L" + } +] diff --git a/flow/tests/testthat/pfs/sunav2_logjam_assign_clean_files/sunav2/2024/09/10/20349/data/sunav2_20349_2024-09-10_log.parquet b/flow/tests/testthat/pfs/sunav2_logjam_assign_clean_files/sunav2/2024/09/10/20349/data/sunav2_20349_2024-09-10_log.parquet new file mode 100644 index 000000000..d3a60243d Binary files /dev/null and b/flow/tests/testthat/pfs/sunav2_logjam_assign_clean_files/sunav2/2024/09/10/20349/data/sunav2_20349_2024-09-10_log.parquet differ diff --git a/flow/tests/testthat/pfs/sunav2_logjam_load_files/20349/logjam_prod_20349.csv b/flow/tests/testthat/pfs/sunav2_logjam_load_files/20349/logjam_prod_20349.csv new file mode 100644 index 000000000..88acc3bea --- /dev/null +++ b/flow/tests/testthat/pfs/sunav2_logjam_load_files/20349/logjam_prod_20349.csv @@ -0,0 +1,2030 @@ +SATFHR,SUNA Serial Number , SN:0720 +SATFHR,Application Name , SUNA-V2 +SATFHR,Firmware Version , 2.5.1 +SATFHR,App Build Date , Feb 5 2015, 10:10:30 +SATFHR,Operating Mode , Periodic +SATFHR,Calibration File , SNA0720F.cal +SATFHR,Spec Integration Time , 250 +SATFHR,Wavelength Fit Range , 217.00 <-> 240.00 +SATFHR,Fitted Concentrations , 1 +SATFHR,Baseline Model , 1 +SATFHR,Br Temp Compensation , Off +SATFHR,Bromide Term in Model , will be FIXED (to external CTD value) +SATFHR,Absorbance Cutoff , 1.300000 +SATFHR,Zeiss Coefficient Vals, 1.882160e+02, 8.012860e-01, 1.245480e-04, -3.178670e-07 +SATSDF0720,2024246,0.009138,0.00,0.0000,0.0000,0.0000,0.00,652,0,1,647,634,629,629,629,631,633,625,631,625,617,625,624,619,615,623,631,640,643,629,645,645,641,661,665,650,671,655,657,647,657,661,656,657,663,651,663,648,670,656,672,656,655,651,653,653,660,666,662,657,657,659,656,668,653,647,647,645,663,660,654,645,655,663,664,661,667,651,658,641,663,654,667,665,660,651,661,669,657,662,660,658,667,653,659,651,646,659,649,665,656,661,651,642,642,651,645,641,645,640,648,647,662,665,663,669,673,670,660,649,647,641,647,637,651,656,661,651,659,661,657,653,658,673,649,667,657,654,652,653,656,643,651,648,641,649,643,635,638,642,654,652,657,661,661,659,656,655,643,658,653,651,653,648,651,652,655,658,663,658,657,643,645,645,649,640,651,645,663,665,670,662,657,647,663,663,668,668,652,640,637,635,655,650,653,637,645,654,647,652,659,649,645,644,644,647,655,669,663,657,653,672,658,658,657,655,650,651,651,642,645,640,642,642,635,655,649,650,658,661,656,651,646,631,630,650,657,649,659,661,663,652,655,647,649,653,649,649,661,660,660,653,648,640,645,646,660,653,672,666,663,656,659,669,657,483,0.0,0.0,0.0,1567391,0.2,13.1,0.1,5.0,58,0.00,0.00,0.0000,0.000000,0.000000,,,,,241 +SATSLF0720,2024246,0.009711,3.97,0.0556,0.1000,0.0168,0.00,16222,652,1,705,709,703,708,713,713,722,727,724,727,727,738,753,887,1207,1940,3121,4518,5787,6722,7368,7841,8272,8709,9240,9872,10622,11501,12489,13619,14792,15972,17090,18045,18795,19219,19354,19165,18789,18245,17664,17079,16625,16258,16025,15946,16032,16265,16677,17268,18022,18937,20008,21244,22549,24009,25493,26990,28424,29676,30706,31451,31843,31846,31509,30858,29941,28872,27626,26446,25273,24178,23188,22324,21593,20971,20501,20116,19833,19677,19576,19590,19672,19864,20134,20476,20912,21431,22011,22632,23313,23955,24575,25148,25623,25995,26260,26283,26176,25885,25405,24765,24052,23254,22373,21483,20631,19854,19146,18491,17931,17459,17052,16714,16473,16300,16197,16145,16173,16249,16416,16640,16948,17316,17753,18248,18808,19417,20050,20740,21476,22218,22970,23675,24391,25045,25645,26233,26658,26982,27227,27333,27341,27239,27025,26690,26294,25800,25220,24640,23994,23354,22689,22016,21377,20775,20176,19608,19113,18638,18222,17874,17537,17244,16972,16739,16521,16312,16117,15928,15737,15593,15432,15332,15221,15152,15081,15037,15021,15013,15017,15040,15049,15103,15137,15164,15217,15273,15280,15297,15313,15304,15329,15331,15344,15328,15279,15221,15166,15099,15011,14920,14781,14629,14452,14253,14046,13832,13588,13311,13073,12773,12485,12188,11901,11605,11325,11083,10837,10597,10342,10029,9712,9394,9099,8855,8651,8474,8315,8193,8096,8007,7939,7905,7843,7749,7594,7423,7272,7127,7022,6929,6832,6765,6708,6674,6657,6653,6635,6633,6652,6658,6492,6201,5752,5137,21.9,21.9,22.2,1567393,0.5,12.6,11.9,5.0,581,-1.00,-1.00,57.4076,-18.996559,0.000537,,,,,172 +SATSLF0720,2024246,0.009896,3.89,0.0545,0.1008,0.0170,0.00,16200,652,1,701,701,724,721,713,704,710,717,728,724,733,735,765,883,1207,1936,3115,4505,5761,6695,7349,7828,8239,8701,9208,9847,10593,11464,12477,13579,14763,15930,17037,17998,18730,19169,19308,19125,18744,18208,17602,17053,16586,16206,15979,15895,15991,16233,16642,17219,17980,18889,19947,21182,22509,23957,25454,26933,28355,29620,30626,31367,31771,31776,31463,30800,29865,28816,27569,26397,25218,24150,23157,22297,21564,20934,20446,20080,19790,19622,19541,19544,19643,19837,20101,20434,20868,21389,21952,22583,23259,23919,24532,25109,25581,25952,26222,26261,26130,25860,25378,24737,24009,23204,22327,21437,20608,19826,19117,18461,17896,17431,17027,16709,16459,16279,16174,16126,16144,16242,16389,16615,16925,17291,17726,18211,18795,19406,20052,20732,21447,22208,22946,23675,24357,25040,25612,26176,26626,26933,27179,27301,27320,27201,27001,26675,26272,25765,25201,24608,23978,23328,22666,21997,21349,20736,20143,19591,19090,18609,18212,17848,17515,17221,16954,16709,16505,16317,16121,15925,15731,15559,15431,15314,15198,15121,15065,15026,15008,15002,15002,15025,15043,15091,15118,15169,15205,15268,15276,15274,15302,15302,15316,15350,15330,15337,15278,15225,15161,15085,14988,14898,14769,14625,14442,14263,14042,13823,13581,13335,13060,12773,12476,12184,11880,11597,11345,11081,10833,10604,10329,10041,9706,9395,9116,8858,8641,8475,8295,8187,8092,8000,7943,7889,7833,7749,7586,7419,7258,7129,7024,6915,6843,6769,6723,6679,6673,6673,6643,6652,6653,6647,6498,6173,5752,5124,21.9,21.9,22.4,1567393,0.0,12.6,11.9,5.0,474,-1.00,-1.00,58.0516,-19.225360,0.000562,,,,,151 +SATSLF0720,2024246,0.010151,4.02,0.0563,0.1011,0.0176,0.00,16198,652,1,710,715,713,702,711,709,712,727,730,747,742,747,777,900,1216,1947,3118,4504,5775,6708,7355,7845,8269,8718,9232,9862,10602,11484,12498,13612,14793,15958,17076,18032,18753,19195,19317,19145,18755,18217,17637,17069,16609,16245,15992,15925,16014,16249,16667,17258,17993,18907,19979,21190,22533,23978,25469,26954,28373,29636,30640,31381,31795,31780,31477,30818,29890,28836,27593,26405,25241,24165,23141,22301,21559,20949,20455,20072,19781,19634,19529,19549,19637,19833,20096,20443,20899,21408,21981,22585,23262,23909,24531,25101,25587,25942,26216,26260,26133,25853,25377,24743,24002,23208,22322,21456,20592,19835,19129,18459,17891,17418,17004,16680,16428,16261,16167,16121,16140,16247,16396,16635,16929,17306,17731,18218,18782,19382,20035,20722,21465,22188,22930,23639,24347,25013,25618,26172,26601,26921,27148,27261,27281,27193,26985,26662,26257,25762,25189,24604,23957,23303,22626,21979,21336,20741,20141,19585,19092,18613,18197,17824,17490,17195,16933,16684,16501,16302,16101,15905,15725,15553,15413,15301,15181,15113,15043,14992,14992,14997,15000,15022,15042,15074,15120,15152,15193,15248,15254,15258,15296,15278,15297,15312,15310,15320,15265,15192,15139,15077,14970,14879,14727,14623,14419,14235,14025,13817,13575,13317,13046,12753,12472,12184,11875,11592,11297,11044,10816,10554,10304,10014,9697,9398,9104,8849,8661,8471,8329,8164,8075,8001,7930,7885,7812,7731,7589,7413,7267,7134,7009,6913,6841,6761,6726,6688,6673,6652,6643,6610,6647,6628,6471,6179,5750,5137,21.9,21.9,22.4,1567394,0.0,12.6,12.0,5.0,465,-1.00,-1.00,57.1931,-18.879423,0.000480,,,,,159 +SATSLF0720,2024246,0.010403,3.97,0.0556,0.1018,0.0183,0.00,16171,652,1,705,736,706,699,701,691,711,723,725,725,724,752,773,900,1222,1945,3109,4508,5743,6673,7319,7803,8245,8691,9213,9833,10585,11449,12453,13569,14752,15917,17040,17993,18717,19150,19282,19086,18711,18176,17581,17016,16541,16183,15957,15897,15958,16221,16629,17209,17954,18860,19936,21144,22477,23917,25411,26910,28321,29591,30581,31330,31732,31730,31418,30740,29831,28778,27545,26353,25183,24115,23117,22261,21509,20893,20407,20025,19754,19585,19499,19509,19629,19821,20065,20417,20851,21365,21910,22535,23202,23859,24452,25063,25534,25897,26160,26203,26093,25821,25337,24693,23981,23169,22297,21404,20568,19797,19075,18433,17864,17390,16971,16653,16416,16253,16149,16096,16129,16229,16384,16622,16898,17253,17682,18179,18740,19369,19997,20672,21409,22153,22894,23609,24320,24983,25576,26140,26557,26888,27133,27226,27232,27159,26933,26601,26209,25704,25155,24550,23922,23281,22616,21940,21318,20702,20090,19555,19053,18578,18185,17809,17475,17195,16922,16683,16466,16276,16072,15888,15688,15527,15384,15277,15176,15110,15024,14999,14981,14976,14983,15009,15021,15053,15101,15128,15187,15242,15250,15269,15274,15273,15303,15302,15303,15293,15239,15185,15117,15050,14961,14866,14738,14581,14413,14221,14023,13803,13561,13293,13027,12747,12445,12155,11863,11582,11306,11049,10808,10557,10295,10000,9678,9367,9089,8843,8638,8461,8306,8180,8082,7993,7942,7877,7813,7730,7577,7399,7239,7111,6997,6905,6816,6758,6701,6667,6652,6642,6636,6617,6651,6634,6486,6185,5741,5120,21.9,21.9,22.4,1567395,0.1,12.6,12.0,5.0,462,-1.00,-1.00,57.9120,-19.142938,0.000544,,,,,123 +SATSLF0720,2024246,0.010653,3.87,0.0542,0.1030,0.0186,0.00,16146,652,1,709,712,717,707,713,722,731,710,741,720,721,736,773,877,1209,1931,3101,4481,5741,6658,7308,7790,8209,8663,9175,9793,10546,11414,12417,13529,14706,15879,16984,17941,18645,19099,19224,19037,18663,18130,17533,16972,16505,16144,15924,15842,15925,16170,16577,17149,17897,18816,19873,21099,22426,23865,25352,26846,28258,29498,30499,31251,31634,31643,31341,30678,29773,28720,27483,26308,25130,24059,23054,22201,21462,20860,20349,19972,19702,19537,19448,19450,19562,19752,20021,20369,20804,21334,21896,22523,23186,23842,24438,25013,25507,25857,26124,26180,26054,25771,25290,24657,23940,23122,22255,21377,20547,19782,19057,18414,17834,17373,16965,16643,16402,16225,16118,16085,16093,16171,16343,16562,16858,17240,17677,18164,18742,19355,19974,20661,21388,22135,22861,23572,24282,24949,25537,26106,26543,26853,27100,27207,27221,27125,26909,26568,26182,25694,25128,24537,23905,23262,22597,21943,21305,20689,20090,19529,19044,18581,18164,17789,17466,17182,16901,16664,16454,16247,16053,15863,15685,15516,15385,15265,15159,15098,15014,14971,14957,14946,14972,14992,15013,15034,15090,15116,15168,15209,15239,15240,15245,15270,15293,15304,15296,15297,15241,15173,15108,15035,14960,14865,14742,14588,14411,14217,14010,13786,13546,13289,13016,12739,12435,12146,11842,11561,11289,11045,10801,10567,10293,9998,9673,9377,9076,8857,8629,8461,8301,8165,8055,7993,7917,7869,7804,7712,7576,7409,7258,7128,6997,6919,6829,6769,6705,6683,6650,6621,6624,6605,6630,6620,6471,6174,5745,5131,21.9,21.9,22.5,1567396,0.0,12.7,12.0,5.0,461,-1.00,-1.00,58.6117,-19.390701,0.000523,,,,,151 +SATSLF0720,2024246,0.010908,3.87,0.0542,0.1027,0.0181,0.00,16156,652,1,707,713,701,705,709,699,715,713,729,721,725,743,779,887,1216,1941,3102,4481,5710,6659,7303,7776,8189,8659,9175,9803,10554,11417,12417,13525,14712,15890,16981,17959,18686,19113,19249,19045,18673,18152,17548,16981,16513,16148,15919,15848,15931,16185,16589,17165,17912,18825,19899,21099,22435,23876,25358,26846,28277,29529,30541,31266,31687,31691,31345,30699,29772,28715,27490,26313,25153,24080,23083,22219,21485,20878,20394,19996,19720,19570,19462,19466,19571,19767,20032,20372,20812,21347,21917,22526,23180,23827,24435,25031,25517,25870,26147,26197,26076,25778,25311,24672,23941,23146,22277,21421,20557,19781,19074,18415,17849,17379,16957,16656,16403,16223,16134,16089,16121,16198,16360,16589,16880,17251,17675,18167,18733,19346,19971,20675,21409,22138,22897,23617,24329,24986,25570,26131,26548,26862,27115,27200,27228,27127,26921,26597,26199,25707,25142,24570,23895,23271,22600,21933,21309,20697,20106,19550,19059,18581,18178,17801,17473,17174,16907,16680,16476,16261,16071,15889,15709,15537,15387,15269,15174,15115,15033,14992,14973,14971,14987,15010,15013,15065,15097,15136,15178,15241,15247,15254,15285,15282,15291,15309,15317,15302,15257,15179,15122,15038,14960,14861,14722,14585,14417,14224,14014,13795,13567,13292,13021,12749,12445,12153,11860,11573,11300,11059,10814,10582,10309,10006,9691,9370,9090,8837,8635,8475,8306,8165,8069,8001,7915,7877,7809,7709,7581,7403,7251,7117,7014,6909,6826,6769,6709,6662,6636,6652,6630,6621,6645,6626,6468,6164,5732,5115,21.9,21.9,22.5,1567397,0.0,12.6,11.9,5.0,463,-1.00,-1.00,58.5013,-19.354437,0.000598,,,,,32 +SATSLF0720,2024246,0.011160,4.08,0.0571,0.1037,0.0187,0.00,16130,652,1,697,713,717,726,721,718,726,729,726,729,721,727,767,887,1196,1940,3093,4483,5726,6663,7309,7785,8202,8648,9167,9791,10537,11415,12411,13523,14697,15853,16987,17930,18658,19091,19214,19027,18647,18115,17529,16970,16495,16139,15917,15834,15931,16161,16584,17161,17913,18805,19873,21088,22409,23860,25309,26819,28241,29481,30481,31222,31620,31626,31291,30647,29728,28672,27457,26280,25114,24039,23044,22174,21463,20841,20363,19959,19690,19522,19419,19455,19550,19762,20013,20346,20790,21290,21858,22486,23146,23816,24420,25002,25472,25835,26101,26140,26025,25745,25267,24616,23895,23101,22230,21360,20505,19735,19042,18394,17834,17355,16946,16635,16375,16217,16118,16069,16099,16174,16338,16563,16857,17228,17656,18139,18701,19314,19949,20638,21358,22098,22833,23548,24259,24905,25515,26088,26505,26821,27061,27159,27179,27080,26870,26534,26153,25645,25098,24498,23875,23213,22563,21902,21254,20650,20054,19494,18999,18537,18132,17765,17442,17149,16891,16649,16443,16253,16040,15851,15661,15494,15355,15232,15148,15078,15000,14959,14957,14953,14957,14970,14992,15025,15069,15105,15142,15210,15214,15231,15244,15246,15259,15267,15275,15269,15223,15168,15103,15044,14933,14841,14708,14562,14395,14204,13989,13777,13532,13271,12997,12720,12426,12142,11852,11561,11289,11027,10799,10556,10273,9969,9661,9333,9059,8829,8623,8445,8295,8154,8067,7989,7923,7873,7809,7721,7581,7396,7245,7108,6992,6889,6818,6750,6691,6657,6637,6633,6617,6613,6628,6626,6470,6157,5726,5107,21.9,21.9,22.6,1567398,0.0,12.6,11.9,5.0,463,-1.00,-1.00,57.5074,-18.913487,0.000486,,,,,91 +SATSLF0720,2024246,0.011415,4.14,0.0579,0.1020,0.0179,0.00,16171,652,1,711,710,713,719,713,707,713,725,722,731,740,757,774,903,1214,1931,3107,4484,5746,6692,7326,7810,8229,8663,9185,9802,10561,11437,12434,13553,14726,15893,17005,17963,18688,19109,19259,19065,18689,18161,17571,17004,16539,16177,15954,15891,15968,16205,16619,17198,17942,18852,19921,21140,22466,23901,25371,26875,28295,29553,30545,31298,31693,31709,31376,30736,29817,28753,27520,26327,25163,24091,23080,22234,21499,20889,20405,20024,19737,19587,19491,19501,19600,19780,20048,20391,20816,21351,21925,22536,23191,23859,24470,25052,25525,25892,26158,26213,26087,25814,25318,24702,23978,23173,22304,21416,20560,19790,19093,18433,17875,17401,16997,16665,16410,16255,16141,16103,16125,16209,16384,16603,16891,17271,17700,18189,18761,19379,19989,20675,21413,22142,22894,23609,24327,24985,25581,26145,26573,26880,27126,27245,27236,27143,26941,26626,26226,25737,25179,24577,23937,23285,22632,21952,21315,20705,20114,19549,19062,18592,18192,17809,17476,17192,16928,16691,16498,16290,16082,15907,15717,15541,15397,15279,15197,15130,15053,15019,14998,14981,14993,15012,15037,15065,15112,15145,15189,15250,15252,15262,15283,15285,15301,15333,15334,15317,15254,15201,15131,15058,14978,14888,14748,14602,14439,14246,14017,13827,13573,13324,13042,12760,12459,12163,11867,11585,11301,11059,10806,10583,10318,10017,9690,9387,9113,8866,8657,8475,8311,8181,8079,8009,7933,7878,7805,7725,7582,7419,7257,7127,7027,6922,6846,6765,6727,6678,6658,6635,6629,6625,6645,6632,6488,6188,5765,5133,21.9,21.9,22.6,1567399,0.0,12.6,12.0,5.0,457,-1.00,-1.00,57.2857,-18.866140,0.000441,,,,,97 +SATSLF0720,2024246,0.011669,3.92,0.0549,0.1027,0.0183,0.00,16151,652,1,707,714,709,739,722,713,729,734,725,733,733,741,773,892,1220,1937,3094,4481,5737,6665,7319,7802,8220,8677,9188,9815,10557,11424,12425,13527,14710,15875,16982,17938,18665,19088,19233,19049,18691,18149,17557,16986,16522,16160,15925,15858,15947,16176,16586,17173,17909,18813,19889,21101,22423,23869,25345,26839,28247,29493,30496,31238,31654,31665,31332,30694,29770,28723,27482,26305,25129,24050,23045,22197,21462,20859,20373,19995,19712,19555,19462,19465,19565,19760,20027,20374,20806,21340,21890,22523,23195,23837,24456,25017,25490,25857,26130,26167,26065,25778,25300,24661,23938,23136,22269,21387,20541,19769,19057,18405,17837,17370,16969,16654,16402,16247,16118,16091,16108,16189,16358,16580,16878,17241,17671,18165,18724,19344,19984,20666,21390,22134,22885,23594,24293,24960,25548,26114,26533,26855,27115,27205,27222,27131,26916,26586,26185,25691,25120,24520,23895,23249,22608,21922,21276,20680,20086,19527,19036,18561,18169,17786,17464,17154,16889,16667,16464,16280,16077,15873,15699,15513,15369,15272,15166,15090,15028,14988,14958,14969,14964,14994,15010,15034,15090,15110,15163,15218,15242,15252,15271,15274,15281,15291,15315,15277,15255,15172,15118,15065,14961,14875,14734,14589,14418,14217,13998,13787,13549,13285,13010,12744,12459,12161,11850,11569,11300,11059,10809,10580,10314,10014,9693,9378,9098,8836,8633,8464,8297,8166,8080,7986,7921,7873,7823,7725,7590,7412,7255,7132,7003,6903,6833,6766,6710,6666,6642,6621,6623,6608,6632,6627,6475,6174,5746,5130,21.9,22.0,22.6,1567400,0.0,12.6,11.9,5.0,454,-1.00,-1.00,58.0280,-19.148129,0.000446,,,,,21 +SATSLF0720,2024246,0.011924,4.04,0.0566,0.1033,0.0180,0.00,16142,652,1,695,701,709,717,709,715,723,714,727,733,738,740,778,882,1212,1948,3106,4485,5739,6666,7321,7789,8205,8642,9162,9807,10537,11409,12411,13520,14701,15866,16968,17917,18641,19076,19210,19011,18643,18105,17511,16955,16505,16118,15896,15824,15911,16168,16566,17151,17911,18810,19874,21082,22400,23840,25333,26813,28228,29489,30469,31225,31620,31635,31306,30645,29745,28695,27451,26272,25122,24043,23040,22184,21453,20840,20356,19964,19677,19533,19433,19449,19548,19739,20005,20361,20793,21332,21874,22490,23158,23821,24425,24992,25472,25857,26113,26157,26055,25768,25303,24656,23942,23124,22257,21386,20518,19767,19060,18404,17838,17365,16965,16640,16393,16224,16114,16073,16097,16187,16361,16581,16877,17244,17677,18154,18722,19334,19958,20649,21387,22129,22860,23582,24294,24936,25532,26117,26537,26853,27088,27196,27208,27106,26887,26583,26174,25696,25124,24535,23896,23243,22583,21911,21291,20672,20087,19533,19043,18554,18151,17778,17454,17158,16915,16665,16459,16261,16081,15876,15690,15514,15378,15255,15149,15096,15005,14983,14969,14961,14964,14992,15013,15045,15089,15111,15163,15223,15234,15252,15236,15255,15269,15289,15291,15289,15243,15179,15126,15053,14964,14866,14725,14592,14417,14219,14032,13797,13568,13301,13025,12734,12443,12153,11856,11563,11301,11035,10807,10579,10299,10006,9686,9377,9098,8854,8629,8459,8296,8169,8071,8002,7930,7873,7812,7719,7577,7400,7243,7110,7006,6905,6816,6763,6703,6678,6664,6635,6633,6621,6631,6626,6464,6163,5739,5119,21.9,22.0,22.6,1567401,0.1,12.6,12.0,5.0,462,-1.00,-1.00,58.0459,-19.139440,0.000535,,,,,154 +SATSLF0720,2024246,0.012179,3.96,0.0555,0.1041,0.0184,0.00,16118,652,1,709,706,711,691,715,713,724,721,719,727,729,736,773,883,1218,1945,3108,4472,5727,6656,7301,7765,8195,8644,9161,9779,10526,11414,12386,13495,14679,15834,16932,17906,18617,19046,19195,19011,18634,18086,17496,16933,16474,16116,15888,15818,15880,16134,16545,17133,17877,18779,19835,21062,22381,23824,25285,26779,28197,29453,30441,31192,31586,31595,31275,30613,29696,28641,27429,26234,25081,23989,23001,22137,21411,20812,20331,19941,19672,19517,19402,19424,19509,19696,19973,20320,20736,21274,21848,22472,23133,23793,24405,24980,25467,25828,26077,26129,26011,25730,25240,24608,23873,23094,22229,21363,20509,19753,19030,18371,17818,17339,16942,16613,16358,16192,16089,16065,16087,16181,16330,16562,16846,17217,17635,18123,18705,19307,19959,20626,21349,22091,22827,23558,24266,24912,25499,26053,26487,26797,27047,27152,27163,27069,26861,26537,26128,25637,25072,24493,23872,23216,22561,21900,21253,20645,20043,19488,19000,18533,18113,17757,17424,17130,16884,16635,16445,16250,16040,15851,15654,15494,15356,15237,15132,15070,14983,14957,14941,14935,14946,14961,14991,15025,15049,15107,15137,15185,15211,15220,15234,15237,15266,15281,15282,15266,15232,15168,15112,15028,14928,14837,14706,14556,14373,14198,13982,13773,13543,13272,13004,12736,12429,12132,11833,11548,11275,11021,10786,10548,10295,9990,9665,9368,9061,8819,8611,8446,8290,8154,8061,7987,7913,7874,7794,7714,7564,7393,7234,7109,6999,6904,6816,6750,6694,6656,6654,6638,6608,6597,6609,6603,6472,6154,5735,5114,21.9,22.0,22.6,1567402,0.3,12.6,11.9,5.0,461,-1.00,-1.00,58.2773,-19.212196,0.000563,,,,,130 +SATSLF0720,2024246,0.012433,4.07,0.0569,0.1040,0.0193,0.00,16102,652,1,697,699,703,706,717,712,723,717,724,729,732,758,772,898,1207,1939,3096,4459,5717,6641,7298,7771,8186,8637,9152,9765,10526,11381,12379,13493,14650,15824,16921,17873,18595,19024,19169,18981,18602,18056,17467,16903,16444,16093,15872,15784,15869,16119,16532,17117,17860,18755,19811,21036,22347,23779,25257,26721,28148,29403,30402,31141,31533,31523,31202,30553,29652,28605,27373,26189,25025,23956,22965,22112,21382,20762,20315,19921,19645,19490,19403,19408,19496,19690,19947,20288,20727,21242,21814,22433,23099,23737,24366,24949,25421,25792,26046,26103,25974,25696,25210,24576,23862,23059,22186,21322,20477,19710,19006,18354,17790,17320,16904,16599,16346,16174,16090,16040,16040,16155,16317,16529,16818,17194,17617,18109,18675,19287,19908,20617,21346,22077,22804,23534,24237,24872,25475,26024,26465,26777,27024,27130,27141,27053,26829,26513,26123,25620,25074,24481,23845,23187,22529,21861,21253,20625,20055,19488,18985,18504,18109,17737,17410,17115,16869,16617,16407,16203,16040,15842,15657,15478,15349,15239,15136,15050,14983,14952,14933,14934,14926,14943,14980,15026,15053,15097,15138,15191,15201,15218,15221,15235,15246,15271,15273,15266,15206,15152,15085,15015,14912,14833,14706,14570,14397,14217,14005,13769,13527,13261,12992,12710,12403,12135,11831,11548,11259,11015,10789,10550,10274,9983,9669,9349,9087,8837,8610,8446,8286,8155,8054,7977,7914,7858,7798,7719,7549,7403,7233,7105,6998,6899,6809,6743,6685,6651,6634,6621,6614,6593,6629,6622,6464,6140,5735,5114,21.9,22.1,22.7,1567403,0.0,12.6,12.0,5.0,452,-1.00,-1.00,57.7806,-18.973782,0.000533,,,,,173 +SATSLF0720,2024246,0.012686,4.10,0.0575,0.1045,0.0191,0.00,16109,652,1,705,713,721,725,724,710,727,735,721,736,734,736,769,899,1213,1947,3112,4494,5725,6655,7307,7780,8193,8633,9153,9773,10498,11383,12370,13487,14669,15844,16933,17893,18601,19041,19158,18970,18597,18076,17477,16928,16454,16116,15878,15803,15882,16129,16529,17105,17861,18762,19834,21042,22347,23805,25281,26757,28173,29422,30425,31169,31568,31572,31242,30601,29682,28614,27377,26202,25057,23978,22995,22135,21391,20790,20313,19925,19643,19474,19381,19410,19504,19684,19959,20311,20741,21253,21832,22444,23104,23753,24375,24958,25426,25796,26061,26103,25990,25706,25228,24601,23877,23077,22203,21345,20489,19737,19019,18354,17789,17317,16917,16611,16350,16180,16091,16049,16077,16161,16321,16541,16830,17205,17626,18121,18685,19284,19922,20601,21341,22083,22816,23522,24222,24885,25481,26050,26468,26785,27019,27137,27159,27062,26848,26512,26117,25618,25044,24465,23845,23190,22540,21865,21226,20641,20041,19485,18998,18519,18107,17736,17416,17126,16868,16617,16425,16220,16042,15849,15662,15492,15349,15232,15147,15057,14992,14950,14921,14924,14927,14959,14978,15021,15066,15089,15128,15195,15204,15222,15232,15238,15269,15282,15267,15249,15212,15163,15091,15018,14929,14832,14696,14552,14386,14202,13986,13760,13538,13259,13001,12718,12421,12132,11837,11562,11293,11046,10791,10555,10301,9981,9672,9366,9076,8832,8608,8443,8304,8168,8053,7968,7919,7858,7796,7715,7575,7390,7251,7123,6999,6900,6839,6765,6708,6659,6641,6635,6614,6608,6617,6623,6476,6174,5751,5128,21.9,22.1,22.7,1567404,0.4,12.6,12.0,5.0,459,-1.00,-1.00,57.8319,-19.010713,0.000584,,,,,181 +SATSLF0720,2024246,0.012942,4.00,0.0560,0.1047,0.0195,0.00,16091,652,1,729,713,712,727,729,723,733,730,730,735,733,745,779,901,1230,1941,3106,4477,5725,6644,7290,7765,8192,8634,9138,9771,10501,11379,12369,13470,14647,15808,16916,17845,18581,19010,19156,18961,18600,18072,17469,16912,16448,16085,15872,15777,15867,16099,16505,17088,17838,18741,19792,21013,22315,23777,25251,26722,28144,29386,30379,31129,31517,31522,31182,30539,29623,28567,27349,26173,25018,23949,22949,22100,21372,20775,20286,19908,19626,19461,19374,19396,19484,19687,19949,20277,20711,21237,21806,22409,23085,23724,24333,24921,25392,25755,26011,26057,25965,25669,25204,24554,23851,23044,22180,21323,20458,19697,18996,18355,17797,17329,16913,16610,16348,16178,16069,16018,16039,16134,16309,16523,16820,17200,17612,18093,18664,19266,19910,20585,21310,22049,22765,23507,24198,24856,25461,26014,26446,26756,27003,27104,27120,27017,26788,26467,26056,25577,25026,24452,23824,23161,22524,21853,21229,20606,20021,19476,18965,18493,18092,17729,17401,17114,16847,16609,16407,16215,16030,15826,15661,15470,15330,15211,15113,15049,14970,14930,14907,14907,14922,14937,14965,14993,15033,15072,15122,15170,15184,15206,15213,15219,15232,15250,15243,15240,15198,15146,15077,15019,14916,14824,14683,14523,14369,14181,13969,13747,13513,13264,12994,12715,12426,12124,11828,11552,11269,11020,10786,10545,10270,9976,9653,9344,9072,8821,8602,8434,8287,8167,8050,7979,7906,7841,7789,7699,7572,7390,7235,7088,6989,6891,6805,6751,6685,6653,6632,6625,6602,6599,6627,6617,6453,6152,5709,5111,21.9,22.1,22.7,1567404,0.1,12.6,12.0,5.0,460,-1.00,-1.00,57.8998,-19.010737,0.000590,,,,,203 +SATSLF0720,2024246,0.013195,3.99,0.0559,0.1048,0.0191,0.00,16098,652,1,714,709,725,714,708,709,717,705,734,733,733,738,766,894,1211,1933,3105,4470,5707,6647,7293,7774,8192,8625,9138,9766,10518,11389,12372,13488,14656,15815,16922,17865,18576,19016,19161,18972,18597,18065,17469,16906,16433,16075,15862,15797,15865,16113,16516,17115,17860,18741,19801,21034,22336,23782,25252,26725,28155,29385,30387,31141,31521,31534,31222,30566,29652,28608,27382,26189,25026,23975,22969,22112,21380,20761,20278,19902,19625,19466,19371,19390,19501,19677,19946,20298,20725,21253,21814,22437,23094,23730,24360,24934,25422,25776,26040,26089,25972,25696,25208,24578,23861,23065,22196,21325,20486,19712,19017,18362,17794,17321,16909,16597,16360,16176,16081,16033,16041,16135,16311,16526,16821,17195,17617,18101,18671,19289,19929,20609,21340,22070,22803,23527,24225,24875,25479,26033,26459,26761,27000,27115,27128,27040,26825,26505,26094,25614,25034,24454,23819,23178,22516,21850,21218,20624,20030,19479,18979,18513,18108,17730,17403,17125,16859,16625,16412,16223,16023,15843,15651,15481,15342,15225,15104,15056,14973,14933,14923,14930,14941,14962,14978,15013,15060,15077,15125,15182,15197,15227,15222,15225,15251,15266,15272,15253,15203,15144,15089,15025,14928,14841,14707,14542,14380,14192,13982,13756,13513,13246,12992,12707,12422,12119,11810,11537,11273,11030,10787,10556,10290,9987,9665,9353,9060,8825,8601,8432,8262,8141,8053,7981,7921,7866,7800,7715,7563,7389,7227,7083,6974,6878,6809,6729,6679,6631,6635,6617,6612,6596,6609,6607,6454,6156,5739,5104,21.9,22.1,22.7,1567405,0.0,12.7,12.0,5.0,453,-1.00,-1.00,58.2588,-19.173645,0.000534,,,,,238 +SATSLF0720,2024246,0.013446,4.13,0.0578,0.1060,0.0201,0.00,16056,652,1,707,696,703,720,726,714,719,723,726,725,730,741,783,908,1220,1946,3095,4469,5713,6628,7257,7734,8152,8582,9090,9727,10470,11329,12335,13445,14622,15762,16868,17803,18520,18944,19085,18902,18517,17997,17413,16848,16393,16045,15829,15747,15829,16062,16464,17045,17781,18692,19744,20970,22262,23709,25172,26658,28056,29309,30305,31053,31446,31447,31126,30460,29563,28500,27300,26116,24967,23893,22874,22048,21298,20707,20230,19849,19570,19400,19320,19332,19438,19623,19885,20225,20669,21185,21746,22377,23030,23689,24277,24875,25350,25709,25965,26034,25897,25612,25153,24510,23804,22996,22145,21264,20443,19673,18972,18313,17744,17278,16881,16561,16301,16128,16027,15984,16004,16107,16275,16477,16785,17150,17565,18061,18615,19227,19869,20537,21271,22003,22756,23463,24151,24808,25403,25957,26392,26706,26958,27066,27085,26982,26772,26443,26046,25545,24988,24416,23774,23121,22476,21817,21175,20586,19981,19431,18942,18476,18071,17699,17379,17080,16811,16573,16369,16165,15986,15783,15616,15447,15301,15194,15104,15021,14946,14916,14889,14876,14883,14906,14921,14965,15026,15033,15104,15149,15154,15172,15191,15193,15221,15233,15240,15223,15165,15120,15056,14968,14894,14789,14659,14521,14336,14146,13945,13735,13499,13245,12973,12691,12385,12102,11789,11505,11247,10982,10763,10531,10257,9967,9642,9330,9035,8801,8600,8429,8278,8141,8049,7960,7877,7831,7762,7678,7555,7370,7216,7103,6989,6876,6804,6741,6664,6635,6610,6601,6584,6593,6618,6608,6451,6149,5722,5105,22.0,22.1,22.8,1567406,0.3,12.6,11.9,5.0,460,-1.00,-1.00,58.1010,-19.052342,0.000526,,,,,173 +SATSLF0720,2024246,0.013701,3.98,0.0557,0.1052,0.0203,0.00,16069,652,1,698,703,703,694,715,716,724,721,728,720,735,734,767,892,1213,1929,3108,4471,5701,6632,7278,7743,8158,8601,9128,9749,10500,11360,12337,13474,14621,15793,16890,17832,18551,18981,19111,18935,18557,18026,17445,16873,16423,16045,15816,15753,15830,16073,16486,17079,17801,18720,19774,20996,22304,23752,25212,26679,28093,29337,30341,31065,31467,31474,31160,30515,29601,28554,27329,26154,24989,23907,22913,22054,21341,20727,20249,19873,19600,19429,19354,19365,19460,19659,19922,20266,20703,21216,21769,22391,23049,23701,24323,24897,25380,25716,25998,26042,25931,25665,25193,24546,23813,23040,22157,21285,20441,19665,18962,18314,17766,17297,16887,16568,16315,16165,16058,15993,16007,16113,16269,16497,16789,17171,17592,18073,18646,19253,19893,20560,21294,22020,22769,23473,24171,24833,25411,25981,26405,26731,26964,27064,27096,26993,26777,26443,26053,25563,25005,24421,23768,23126,22475,21827,21203,20575,19995,19438,18951,18477,18062,17703,17387,17085,16825,16593,16388,16183,15993,15793,15618,15447,15307,15196,15105,15034,14960,14921,14900,14909,14909,14922,14947,14977,15028,15054,15109,15170,15173,15194,15194,15209,15205,15226,15228,15226,15178,15109,15050,14979,14893,14802,14681,14532,14362,14153,13958,13739,13489,13252,12968,12677,12395,12106,11809,11520,11256,11002,10772,10529,10260,9966,9634,9329,9053,8808,8608,8432,8280,8139,8050,7971,7903,7852,7784,7685,7543,7370,7206,7099,6972,6887,6802,6736,6691,6644,6632,6621,6593,6591,6606,6602,6444,6155,5722,5121,21.9,22.1,22.8,1567407,0.0,12.6,11.9,5.0,457,-1.00,-1.00,58.5506,-19.262405,0.000556,,,,,131 +SATSLF0720,2024246,0.013954,4.20,0.0588,0.1059,0.0203,0.00,16063,652,1,705,716,720,713,715,719,716,726,725,727,727,738,775,903,1227,1942,3106,4485,5725,6644,7280,7763,8162,8616,9132,9745,10497,11361,12335,13449,14616,15772,16871,17812,18530,18965,19098,18902,18545,18012,17408,16858,16416,16058,15820,15741,15833,16074,16472,17060,17801,18688,19771,20970,22288,23737,25194,26666,28081,29317,30302,31063,31447,31460,31121,30468,29550,28496,27293,26117,24961,23904,22894,22052,21319,20714,20239,19853,19563,19422,19322,19341,19450,19637,19920,20246,20689,21188,21737,22370,23017,23678,24286,24873,25352,25717,25978,26039,25921,25641,25173,24547,23812,23009,22147,21261,20435,19661,18973,18309,17755,17293,16886,16555,16321,16154,16049,16001,16029,16124,16290,16496,16787,17159,17573,18061,18615,19243,19873,20546,21286,22009,22749,23464,24157,24807,25408,25965,26397,26732,26973,27065,27084,26983,26779,26459,26060,25563,25025,24422,23783,23134,22489,21798,21191,20572,19992,19434,18953,18469,18075,17717,17397,17096,16825,16582,16384,16170,15990,15799,15613,15441,15306,15191,15104,15032,14961,14933,14907,14901,14905,14925,14939,14967,15019,15053,15098,15152,15171,15181,15195,15205,15239,15258,15242,15232,15179,15121,15049,14989,14885,14807,14680,14521,14347,14157,13959,13730,13490,13239,12975,12689,12386,12113,11797,11515,11246,11003,10771,10530,10267,9964,9632,9331,9039,8804,8588,8410,8267,8144,8041,7963,7909,7864,7787,7697,7557,7374,7217,7089,6977,6875,6804,6736,6677,6646,6614,6615,6602,6585,6618,6617,6446,6139,5719,5114,21.9,22.2,22.8,1567408,0.0,12.7,11.9,5.0,457,-1.00,-1.00,57.5283,-18.816894,0.000580,,,,,59 +SATSLF0720,2024246,0.014205,4.13,0.0578,0.1063,0.0200,0.00,16060,652,1,718,724,711,721,739,724,733,723,733,737,745,769,795,909,1221,1932,3093,4448,5696,6622,7272,7749,8158,8597,9122,9747,10492,11346,12324,13425,14608,15752,16859,17796,18515,18939,19067,18881,18522,17986,17405,16845,16390,16030,15821,15725,15818,16066,16461,17049,17769,18683,19739,20960,22263,23714,25173,26629,28067,29313,30290,31029,31420,31425,31105,30461,29569,28514,27299,26112,24971,23887,22907,22064,21321,20714,20246,19850,19571,19409,19307,19333,19442,19621,19895,20244,20667,21181,21738,22347,23024,23668,24296,24865,25351,25706,25979,26023,25898,25620,25165,24509,23784,23008,22152,21277,20441,19672,18953,18304,17753,17272,16883,16565,16307,16158,16045,16000,16030,16122,16269,16503,16807,17158,17592,18070,18637,19262,19884,20561,21281,22011,22749,23445,24155,24816,25400,25981,26402,26714,26960,27070,27073,26987,26758,26451,26034,25558,24997,24410,23765,23109,22465,21815,21177,20576,19985,19431,18952,18465,18069,17681,17383,17086,16829,16588,16397,16195,16005,15811,15637,15457,15313,15194,15101,15022,14957,14919,14913,14896,14899,14923,14929,14973,15014,15047,15108,15164,15181,15185,15190,15207,15233,15248,15232,15243,15193,15125,15062,14986,14904,14817,14669,14521,14359,14162,13954,13745,13504,13237,12960,12677,12400,12097,11809,11524,11264,11018,10770,10542,10262,9963,9635,9354,9060,8813,8610,8445,8277,8152,8053,7977,7903,7844,7781,7676,7547,7367,7209,7105,6983,6896,6813,6753,6699,6649,6629,6610,6602,6589,6609,6602,6457,6155,5733,5121,21.9,22.2,22.8,1567409,0.0,12.6,11.9,5.0,460,-1.00,-1.00,58.2825,-19.124447,0.000501,,,,,164 +SATSLF0720,2024246,0.014459,4.03,0.0564,0.1061,0.0203,0.00,16049,652,1,705,711,727,717,721,720,733,725,732,721,731,753,784,908,1229,1943,3109,4457,5703,6626,7265,7739,8171,8605,9129,9731,10479,11348,12334,13442,14590,15758,16866,17814,18521,18945,19095,18905,18533,18001,17416,16854,16395,16042,15801,15733,15810,16049,16466,17040,17779,18676,19746,20946,22258,23692,25165,26644,28049,29300,30278,31019,31418,31424,31090,30445,29532,28497,27257,26094,24953,23889,22881,22027,21293,20695,20215,19837,19569,19421,19314,19326,19436,19622,19872,20211,20659,21166,21744,22357,23032,23673,24270,24846,25317,25691,25945,26001,25885,25602,25132,24494,23797,22992,22134,21265,20422,19659,18946,18314,17738,17276,16871,16545,16287,16127,16022,15983,16006,16102,16266,16493,16770,17140,17558,18043,18609,19221,19845,20539,21261,21998,22729,23445,24144,24791,25383,25943,26368,26682,26933,27021,27042,26950,26746,26413,26026,25534,24969,24386,23757,23096,22464,21801,21178,20578,19978,19432,18933,18450,18061,17677,17353,17073,16803,16571,16379,16169,15976,15799,15609,15437,15303,15187,15081,15005,14933,14889,14877,14883,14888,14918,14932,14967,15015,15053,15104,15158,15165,15174,15169,15183,15202,15220,15223,15213,15169,15107,15051,14985,14891,14798,14661,14513,14337,14148,13939,13732,13496,13233,12964,12677,12385,12088,11803,11509,11255,10997,10771,10534,10261,9954,9626,9331,9041,8807,8595,8430,8273,8151,8033,7962,7902,7849,7776,7677,7527,7367,7207,7079,6965,6876,6795,6733,6677,6646,6632,6611,6589,6594,6605,6583,6439,6147,5719,5111,22.0,22.2,22.8,1567410,0.1,12.6,11.9,5.0,460,-1.00,-1.00,58.0811,-19.029363,0.000558,,,,,100 +SATSDF0720,2024246,0.259138,0.00,0.0000,0.0000,0.0000,0.00,653,0,1,647,645,644,633,641,628,639,627,622,627,628,625,632,636,629,634,636,633,635,635,626,637,661,653,656,659,659,659,665,661,663,649,654,668,661,658,658,653,667,665,661,652,662,660,671,649,663,669,658,663,659,672,673,665,657,664,661,675,656,659,661,648,653,652,657,670,662,658,665,663,661,663,658,652,663,659,655,651,642,637,643,641,654,661,646,657,657,660,659,667,667,657,667,659,669,658,657,643,641,654,649,649,657,663,662,667,661,666,662,666,644,659,656,653,655,648,642,639,640,641,641,645,645,644,635,643,652,640,660,652,658,646,652,642,660,645,651,658,647,659,677,661,666,667,668,652,648,648,652,647,630,651,663,654,647,651,656,661,653,658,650,657,653,649,654,657,655,659,656,649,652,655,654,654,663,673,656,654,667,658,645,641,645,647,651,646,652,653,658,663,662,659,657,647,647,647,642,651,661,649,645,644,647,645,641,641,643,644,646,651,646,648,652,653,653,657,645,660,660,663,667,656,659,651,653,658,657,658,641,655,652,645,653,640,651,645,651,653,649,655,665,669,650,647,656,648,646,647,650,660,653,663,653,659,664,487,0.0,0.0,0.0,1567409,0.3,13.0,0.1,5.0,58,0.00,0.00,0.0000,0.000000,0.000000,,,,,146 +SATSLF0720,2024246,0.259695,3.85,0.0539,0.1003,0.0167,0.00,16228,653,1,709,705,698,719,704,712,714,702,704,721,716,739,772,884,1197,1947,3117,4514,5763,6711,7368,7847,8277,8722,9242,9871,10615,11497,12499,13630,14808,15991,17105,18069,18805,19229,19362,19186,18807,18282,17668,17101,16608,16259,16028,15955,16036,16285,16682,17256,18011,18941,20012,21255,22568,24026,25529,27010,28442,29693,30708,31460,31863,31867,31537,30875,29956,28888,27648,26458,25289,24230,23212,22354,21612,20990,20516,20101,19827,19660,19565,19561,19671,19863,20128,20488,20922,21445,22028,22644,23314,23957,24573,25160,25626,25984,26263,26309,26188,25896,25415,24779,24057,23242,22365,21493,20634,19858,19149,18480,17919,17453,17036,16721,16466,16311,16210,16165,16173,16264,16433,16661,16960,17326,17763,18243,18815,19421,20061,20731,21479,22230,22974,23702,24401,25074,25658,26227,26668,26986,27243,27342,27341,27252,27035,26704,26314,25806,25238,24644,23997,23363,22713,22026,21399,20788,20181,19621,19126,18637,18248,17869,17544,17255,16987,16729,16544,16330,16147,15929,15761,15597,15433,15315,15209,15145,15081,15033,15021,15009,15031,15039,15063,15104,15154,15173,15241,15274,15291,15293,15298,15315,15330,15333,15340,15350,15281,15223,15171,15102,15016,14917,14777,14621,14467,14264,14053,13832,13589,13329,13056,12786,12488,12183,11895,11605,11327,11087,10855,10621,10337,10026,9708,9391,9104,8864,8646,8471,8333,8204,8101,8023,7953,7907,7824,7743,7596,7417,7257,7140,7010,6923,6836,6775,6725,6682,6658,6660,6638,6641,6653,6653,6476,6172,5754,5124,21.8,21.9,22.2,1567410,0.5,12.5,12.0,5.0,584,-1.00,-1.00,57.8699,-19.198808,0.000604,,,,,170 +SATSLF0720,2024246,0.259880,3.97,0.0556,0.1023,0.0181,0.00,16164,653,1,714,711,730,726,717,721,714,715,724,723,737,738,773,887,1202,1948,3106,4494,5748,6658,7311,7799,8216,8658,9177,9797,10537,11403,12413,13528,14709,15876,16993,17958,18691,19126,19245,19067,18685,18129,17536,16988,16518,16157,15936,15865,15949,16198,16606,17184,17938,18837,19916,21110,22447,23904,25392,26870,28284,29526,30533,31291,31701,31693,31387,30725,29810,28736,27521,26334,25156,24103,23080,22231,21505,20890,20413,20024,19737,19585,19481,19506,19592,19790,20044,20405,20845,21365,21933,22544,23213,23861,24467,25044,25515,25872,26147,26205,26075,25794,25316,24680,23954,23146,22272,21399,20567,19789,19084,18422,17870,17381,16980,16657,16400,16224,16139,16088,16102,16203,16383,16601,16899,17275,17686,18182,18749,19360,19989,20675,21412,22159,22891,23618,24320,24987,25568,26133,26583,26880,27136,27245,27251,27169,26936,26619,26217,25728,25169,24582,23938,23287,22613,21950,21322,20700,20111,19563,19060,18595,18174,17824,17482,17189,16919,16677,16487,16266,16090,15893,15693,15532,15387,15280,15193,15120,15030,15006,14986,14969,14976,15010,15016,15071,15092,15136,15169,15234,15245,15253,15256,15271,15288,15317,15321,15309,15265,15191,15125,15063,14972,14869,14745,14589,14423,14225,14023,13810,13568,13301,13030,12753,12437,12153,11845,11569,11287,11043,10816,10576,10304,10009,9681,9372,9096,8857,8640,8451,8311,8173,8085,7995,7935,7869,7813,7729,7586,7413,7241,7115,7005,6898,6818,6750,6695,6655,6645,6628,6603,6615,6642,6637,6493,6175,5763,5124,21.9,21.8,22.4,1567411,0.8,12.5,11.9,5.0,482,-1.00,-1.00,58.2982,-19.283607,0.000542,,,,,46 +SATSLF0720,2024246,0.260135,4.02,0.0563,0.1014,0.0172,0.00,16192,653,1,694,705,697,695,703,705,715,719,718,721,726,733,764,880,1203,1932,3109,4487,5742,6689,7328,7815,8246,8688,9228,9837,10592,11464,12459,13584,14765,15925,17043,18002,18717,19158,19290,19127,18762,18200,17619,17045,16581,16208,15985,15908,15983,16246,16629,17220,17977,18893,19976,21193,22521,23961,25452,26941,28363,29628,30625,31370,31764,31776,31448,30791,29863,28819,27573,26398,25223,24141,23141,22266,21547,20938,20448,20064,19799,19629,19517,19556,19649,19821,20084,20432,20868,21396,21972,22585,23255,23902,24509,25099,25578,25943,26210,26262,26130,25847,25357,24716,23997,23202,22325,21451,20613,19824,19125,18457,17893,17416,17010,16693,16433,16253,16168,16124,16142,16220,16397,16625,16930,17281,17723,18218,18778,19385,20028,20712,21445,22206,22929,23656,24365,25016,25616,26165,26607,26926,27170,27298,27313,27202,26978,26653,26242,25748,25169,24598,23947,23307,22637,21975,21342,20733,20126,19579,19101,18597,18215,17851,17507,17216,16945,16708,16508,16285,16103,15905,15724,15560,15405,15298,15189,15114,15062,15017,14998,15000,14999,15022,15047,15083,15121,15149,15198,15251,15268,15266,15296,15284,15303,15333,15325,15321,15272,15198,15155,15093,14993,14901,14759,14598,14427,14235,14036,13818,13571,13300,13048,12756,12454,12169,11871,11572,11313,11062,10827,10606,10328,10018,9697,9394,9105,8846,8635,8464,8307,8180,8074,8007,7925,7867,7817,7717,7589,7408,7246,7129,7005,6914,6833,6763,6709,6679,6652,6641,6629,6619,6624,6630,6487,6166,5751,5134,21.9,21.9,22.4,1567412,0.1,12.4,11.9,5.0,472,-1.00,-1.00,57.5892,-19.033164,0.000561,,,,,78 +SATSLF0720,2024246,0.260388,3.89,0.0545,0.1018,0.0189,0.00,16163,653,1,689,685,694,703,712,701,710,717,731,725,739,739,769,888,1206,1937,3116,4500,5751,6699,7353,7839,8242,8691,9207,9827,10575,11453,12442,13554,14755,15913,17035,18004,18735,19172,19313,19108,18723,18181,17586,17017,16545,16197,15953,15887,15964,16227,16620,17211,17952,18859,19944,21145,22500,23934,25413,26892,28325,29578,30587,31338,31725,31725,31392,30745,29815,28763,27517,26344,25186,24103,23101,22240,21507,20897,20416,20027,19741,19586,19502,19499,19598,19788,20037,20391,20810,21349,21931,22545,23215,23861,24480,25040,25531,25885,26155,26209,26089,25804,25314,24691,23957,23153,22294,21408,20552,19784,19080,18416,17859,17397,16973,16651,16421,16232,16129,16097,16105,16201,16373,16592,16886,17253,17682,18178,18749,19345,19978,20661,21398,22133,22891,23600,24299,24966,25545,26116,26537,26864,27112,27235,27246,27141,26922,26593,26196,25700,25131,24548,23914,23272,22614,21934,21303,20688,20087,19534,19034,18571,18177,17810,17472,17170,16909,16657,16450,16248,16058,15868,15697,15518,15395,15272,15165,15082,15001,14965,14952,14967,14968,14984,15001,15055,15080,15116,15149,15215,15228,15230,15255,15257,15287,15305,15300,15296,15225,15171,15098,15035,14963,14865,14727,14573,14397,14203,13992,13770,13547,13284,13015,12728,12438,12154,11861,11557,11288,11032,10803,10563,10297,9997,9676,9370,9086,8840,8634,8452,8293,8169,8062,7990,7921,7845,7795,7707,7561,7397,7252,7125,7009,6907,6810,6755,6705,6653,6651,6630,6610,6611,6622,6614,6469,6165,5737,5112,21.9,21.9,22.4,1567413,0.3,12.4,11.9,5.0,460,-1.00,-1.00,57.7463,-19.068123,0.000637,,,,,135 +SATSLF0720,2024246,0.260641,3.95,0.0554,0.1022,0.0171,0.00,16174,653,1,701,697,711,710,725,722,727,721,721,719,721,722,753,887,1209,1950,3117,4491,5758,6699,7342,7826,8260,8685,9206,9830,10560,11430,12439,13557,14744,15901,17024,17984,18698,19141,19280,19098,18720,18178,17568,17010,16539,16186,15957,15882,15968,16210,16634,17197,17945,18859,19934,21156,22477,23927,25422,26896,28317,29570,30573,31322,31725,31738,31405,30740,29826,28765,27542,26357,25192,24109,23108,22242,21507,20896,20405,20008,19742,19581,19483,19504,19609,19818,20061,20427,20840,21359,21953,22560,23223,23856,24477,25045,25521,25893,26156,26216,26072,25815,25344,24690,23979,23179,22297,21426,20573,19799,19085,18433,17880,17389,16979,16666,16410,16247,16145,16109,16126,16213,16385,16610,16898,17265,17699,18200,18758,19364,20020,20692,21419,22163,22915,23629,24336,24997,25582,26135,26573,26885,27137,27243,27264,27172,26956,26614,26214,25705,25134,24546,23915,23250,22599,21944,21312,20714,20126,19572,19065,18589,18179,17819,17490,17197,16914,16673,16461,16266,16082,15893,15707,15542,15411,15286,15197,15130,15045,14989,14971,14979,14989,15015,15045,15085,15114,15159,15189,15252,15252,15257,15277,15277,15287,15318,15319,15314,15272,15194,15157,15063,14987,14884,14732,14582,14433,14234,14021,13805,13553,13293,13031,12757,12448,12158,11851,11576,11297,11053,10820,10585,10333,10009,9691,9374,9095,8835,8623,8464,8297,8181,8077,7993,7931,7881,7824,7732,7600,7418,7264,7122,7018,6919,6813,6762,6709,6664,6654,6651,6636,6618,6641,6647,6487,6173,5751,5127,21.9,21.9,22.4,1567414,0.1,12.5,11.9,5.0,469,-1.00,-1.00,57.9659,-19.162229,0.000556,,,,,33 +SATSLF0720,2024246,0.260896,4.18,0.0586,0.1030,0.0184,0.00,16142,653,1,697,697,710,705,711,716,725,726,736,726,726,734,783,877,1196,1932,3109,4489,5720,6647,7312,7785,8219,8660,9188,9801,10541,11405,12413,13514,14685,15854,16954,17919,18657,19079,19213,19025,18658,18117,17533,16967,16508,16146,15922,15850,15933,16166,16591,17162,17916,18823,19883,21111,22413,23861,25329,26810,28224,29490,30499,31240,31645,31637,31303,30653,29736,28672,27459,26293,25125,24040,23041,22199,21458,20849,20373,19980,19694,19541,19447,19449,19562,19753,20005,20357,20802,21322,21876,22509,23168,23822,24432,25000,25469,25849,26117,26161,26027,25755,25283,24625,23916,23112,22235,21349,20515,19749,19040,18392,17834,17365,16951,16638,16385,16231,16137,16078,16091,16193,16356,16562,16871,17234,17677,18160,18717,19339,19978,20651,21381,22114,22866,23578,24277,24947,25524,26090,26535,26852,27092,27204,27227,27136,26900,26577,26176,25681,25106,24528,23882,23251,22572,21918,21290,20677,20100,19528,19026,18567,18165,17788,17458,17175,16897,16667,16475,16246,16067,15871,15697,15516,15371,15259,15152,15083,15013,14970,14942,14937,14954,14989,15015,15046,15088,15120,15163,15222,15232,15243,15264,15270,15277,15321,15314,15285,15247,15174,15114,15049,14968,14858,14720,14592,14405,14224,14001,13789,13550,13303,13031,12741,12443,12147,11854,11574,11308,11053,10813,10571,10299,9993,9669,9360,9090,8837,8621,8457,8304,8165,8071,7982,7914,7873,7805,7698,7575,7409,7253,7120,7005,6913,6824,6761,6707,6677,6654,6659,6618,6603,6643,6626,6486,6181,5763,5134,21.9,21.9,22.5,1567415,0.0,12.5,11.9,5.0,471,-1.00,-1.00,57.1703,-18.778340,0.000459,,,,,159 +SATSLF0720,2024246,0.261148,4.06,0.0568,0.1030,0.0187,0.00,16149,653,1,725,722,730,725,724,715,717,729,725,731,741,745,786,882,1221,1957,3120,4501,5748,6684,7329,7800,8221,8681,9215,9829,10561,11426,12422,13523,14725,15889,17010,17942,18679,19118,19228,19048,18672,18126,17538,16978,16522,16149,15941,15866,15952,16196,16590,17167,17920,18832,19892,21109,22442,23885,25364,26837,28271,29517,30517,31275,31656,31667,31329,30685,29772,28718,27505,26306,25146,24073,23065,22209,21474,20861,20375,19978,19707,19537,19448,19464,19568,19752,20022,20364,20795,21328,21896,22502,23186,23828,24436,25024,25497,25869,26139,26180,26062,25786,25293,24653,23929,23124,22251,21385,20538,19772,19060,18415,17853,17370,16961,16640,16391,16227,16125,16076,16098,16195,16354,16571,16865,17236,17665,18162,18726,19347,19976,20653,21376,22130,22877,23584,24289,24941,25537,26094,26512,26851,27095,27191,27209,27106,26885,26549,26172,25681,25099,24523,23894,23241,22582,21914,21271,20679,20085,19509,19043,18571,18167,17786,17461,17176,16904,16653,16453,16267,16070,15870,15690,15509,15373,15265,15168,15077,15019,14974,14959,14957,14946,14980,14985,15039,15086,15117,15173,15221,15230,15233,15249,15241,15280,15285,15286,15291,15236,15178,15105,15044,14956,14861,14718,14583,14394,14215,13995,13787,13537,13278,13006,12729,12426,12143,11851,11576,11301,11050,10809,10576,10302,9998,9691,9375,9073,8839,8633,8457,8305,8167,8073,8005,7929,7875,7827,7721,7584,7410,7250,7114,7002,6915,6833,6762,6702,6683,6656,6638,6627,6622,6645,6633,6481,6183,5741,5121,21.9,21.9,22.5,1567416,0.3,12.5,12.0,5.0,467,-1.00,-1.00,57.6901,-19.013314,0.000496,,,,,78 +SATSLF0720,2024246,0.261404,4.13,0.0579,0.1035,0.0189,0.00,16124,653,1,715,713,717,720,717,720,717,717,716,721,718,730,771,893,1214,1935,3099,4475,5735,6665,7307,7792,8208,8649,9162,9803,10530,11401,12402,13508,14689,15846,16961,17905,18619,19054,19185,19001,18643,18106,17509,16945,16487,16129,15901,15831,15901,16150,16555,17152,17881,18797,19860,21074,22390,23846,25325,26814,28233,29477,30466,31232,31604,31607,31288,30645,29715,28667,27437,26256,25085,24014,23017,22166,21432,20816,20325,19955,19669,19511,19427,19433,19538,19725,19981,20339,20768,21289,21864,22472,23144,23802,24401,24973,25451,25833,26085,26144,26018,25744,25257,24612,23895,23097,22222,21363,20513,19729,19032,18382,17813,17360,16937,16631,16373,16201,16086,16055,16075,16165,16329,16569,16846,17209,17648,18117,18699,19306,19942,20628,21359,22083,22837,23560,24248,24899,25499,26049,26475,26807,27058,27157,27165,27085,26865,26533,26140,25649,25081,24499,23866,23218,22546,21891,21264,20653,20054,19488,19005,18540,18132,17757,17434,17152,16885,16648,16433,16231,16042,15852,15666,15491,15357,15229,15147,15080,14999,14965,14942,14944,14950,14971,14992,15029,15072,15102,15146,15197,15217,15235,15237,15255,15274,15288,15282,15269,15216,15150,15099,15009,14937,14837,14714,14565,14400,14197,13998,13769,13531,13277,12998,12714,12424,12130,11831,11543,11285,11030,10782,10559,10294,9993,9666,9357,9070,8826,8620,8439,8293,8164,8069,7985,7912,7867,7797,7712,7563,7400,7229,7095,6995,6893,6826,6747,6697,6645,6630,6621,6614,6611,6633,6624,6459,6148,5734,5111,21.9,21.9,22.5,1567417,0.1,12.4,12.0,5.0,469,-1.00,-1.00,57.7310,-18.999239,0.000559,,,,,77 +SATSLF0720,2024246,0.261658,4.08,0.0571,0.1042,0.0195,0.00,16106,653,1,699,708,704,695,706,713,725,721,720,732,725,739,782,887,1214,1937,3094,4480,5717,6641,7303,7772,8196,8643,9160,9794,10517,11399,12393,13488,14679,15821,16951,17903,18618,19051,19176,18995,18633,18090,17499,16947,16476,16121,15898,15819,15904,16154,16553,17120,17866,18779,19837,21059,22362,23808,25277,26771,28184,29438,30436,31184,31575,31586,31258,30601,29689,28627,27400,26229,25057,23994,23000,22141,21411,20788,20315,19925,19655,19479,19395,19419,19526,19713,19972,20316,20736,21271,21821,22430,23115,23761,24354,24957,25417,25799,26048,26113,25993,25712,25225,24583,23865,23072,22213,21328,20488,19722,19013,18356,17805,17333,16906,16608,16349,16183,16086,16037,16059,16155,16328,16530,16832,17192,17635,18105,18661,19272,19917,20610,21341,22082,22813,23552,24244,24903,25484,26040,26465,26777,27016,27117,27132,27053,26821,26506,26103,25624,25066,24465,23829,23195,22513,21875,21236,20637,20036,19493,18999,18526,18114,17749,17409,17127,16855,16622,16420,16201,16011,15812,15643,15472,15346,15215,15114,15056,14990,14954,14918,14913,14904,14935,14955,14999,15036,15071,15114,15174,15202,15211,15220,15227,15229,15267,15266,15253,15193,15136,15078,15017,14913,14827,14695,14540,14364,14178,13975,13754,13517,13256,12990,12697,12420,12128,11821,11543,11265,11015,10787,10538,10284,9992,9669,9360,9067,8833,8613,8429,8266,8151,8041,7974,7909,7860,7795,7705,7552,7384,7232,7113,6986,6889,6810,6741,6695,6659,6642,6631,6609,6610,6617,6612,6449,6133,5723,5104,21.9,21.9,22.6,1567418,0.0,12.5,11.9,5.0,466,-1.00,-1.00,57.5706,-18.909512,0.000485,,,,,166 +SATSLF0720,2024246,0.261910,3.94,0.0552,0.1043,0.0191,0.00,16103,653,1,695,695,696,703,709,707,723,727,733,737,736,741,772,883,1198,1934,3081,4475,5721,6647,7299,7783,8211,8640,9171,9771,10510,11361,12359,13470,14625,15812,16918,17879,18612,19056,19153,18999,18613,18071,17478,16914,16450,16089,15859,15800,15884,16133,16525,17121,17850,18762,19819,21039,22340,23782,25255,26760,28169,29421,30439,31181,31585,31561,31236,30573,29665,28605,27380,26214,25057,23981,22976,22141,21416,20797,20313,19927,19637,19492,19393,19419,19503,19698,19969,20301,20746,21277,21837,22441,23111,23757,24364,24955,25428,25768,26043,26084,25985,25704,25224,24586,23878,23085,22222,21342,20484,19709,19004,18353,17793,17326,16925,16608,16360,16184,16085,16009,16035,16137,16302,16530,16815,17211,17622,18116,18684,19291,19913,20586,21317,22057,22803,23521,24232,24869,25476,26027,26475,26797,27035,27152,27154,27040,26837,26514,26105,25634,25061,24468,23834,23198,22530,21867,21229,20629,20037,19474,18989,18509,18119,17754,17417,17133,16851,16629,16432,16209,16021,15818,15652,15484,15349,15217,15131,15041,14971,14941,14933,14929,14930,14958,14973,15011,15048,15077,15133,15193,15198,15225,15214,15221,15233,15269,15271,15240,15211,15153,15090,15019,14932,14836,14709,14560,14385,14187,13965,13761,13514,13258,12996,12709,12416,12121,11820,11547,11262,11015,10779,10549,10261,9970,9651,9329,9055,8817,8608,8437,8284,8154,8051,7976,7901,7854,7795,7700,7562,7385,7227,7112,6994,6905,6806,6753,6699,6665,6644,6626,6613,6589,6606,6607,6452,6141,5724,5104,21.9,22.0,22.6,1567419,0.0,12.5,12.0,5.0,467,-1.00,-1.00,58.4077,-19.247041,0.000626,,,,,203 +SATSLF0720,2024246,0.262167,4.14,0.0581,0.1045,0.0194,0.00,16096,653,1,706,698,710,708,717,710,714,725,730,736,738,745,768,879,1203,1939,3105,4474,5718,6626,7281,7766,8186,8629,9153,9765,10501,11367,12369,13472,14636,15802,16903,17854,18573,18998,19152,18954,18577,18071,17462,16920,16456,16102,15869,15798,15860,16119,16517,17095,17851,18756,19813,21026,22338,23789,25259,26746,28139,29394,30398,31128,31537,31537,31232,30570,29641,28596,27386,26193,25024,23958,22957,22112,21389,20793,20301,19920,19629,19465,19384,19381,19504,19690,19956,20308,20730,21254,21813,22439,23111,23749,24359,24936,25418,25782,26037,26091,25968,25697,25209,24567,23847,23053,22197,21314,20467,19701,19001,18365,17790,17323,16925,16605,16349,16166,16081,16032,16045,16128,16301,16523,16825,17192,17626,18106,18676,19277,19914,20598,21322,22068,22800,23514,24221,24869,25459,26036,26448,26774,27013,27125,27125,27037,26813,26477,26091,25601,25041,24453,23824,23165,22515,21856,21229,20622,20032,19489,18984,18508,18099,17736,17407,17138,16849,16612,16408,16216,16030,15837,15666,15485,15349,15222,15121,15048,14970,14932,14913,14898,14921,14955,14971,15017,15050,15080,15120,15175,15195,15208,15211,15223,15242,15259,15266,15254,15203,15138,15082,15011,14921,14833,14689,14547,14357,14175,13963,13752,13522,13261,12994,12698,12416,12133,11816,11521,11266,11014,10763,10551,10261,9970,9672,9346,9073,8817,8608,8439,8281,8141,8059,7967,7895,7844,7786,7694,7553,7373,7223,7110,6993,6893,6823,6744,6692,6654,6640,6630,6609,6599,6628,6609,6472,6165,5740,5114,21.9,22.0,22.6,1567420,0.0,12.4,12.0,5.0,465,-1.00,-1.00,57.7627,-18.967891,0.000515,,,,,143 +SATSLF0720,2024246,0.262420,3.95,0.0554,0.1046,0.0195,0.00,16097,653,1,705,707,717,709,724,717,728,721,725,741,735,747,777,901,1222,1957,3108,4480,5719,6650,7302,7766,8194,8637,9159,9772,10516,11375,12374,13471,14637,15809,16925,17856,18595,19016,19157,18966,18599,18057,17457,16909,16444,16077,15853,15774,15872,16104,16513,17093,17825,18755,19818,21029,22337,23774,25241,26716,28140,29389,30378,31144,31546,31537,31223,30552,29639,28580,27376,26189,25024,23968,22965,22119,21370,20775,20304,19908,19627,19470,19380,19381,19481,19671,19944,20291,20725,21253,21805,22431,23088,23738,24357,24933,25414,25781,26050,26090,25971,25694,25210,24575,23849,23057,22190,21322,20465,19707,19009,18358,17798,17313,16923,16608,16346,16165,16073,16032,16055,16150,16292,16535,16834,17188,17624,18096,18680,19277,19910,20585,21313,22067,22805,23511,24221,24883,25469,26027,26466,26763,27025,27130,27141,27045,26824,26485,26087,25601,25044,24451,23818,23193,22534,21869,21244,20630,20037,19476,18982,18510,18110,17725,17410,17129,16857,16628,16414,16211,16030,15837,15639,15476,15346,15224,15116,15047,14985,14950,14931,14940,14930,14965,14983,14999,15043,15069,15115,15182,15208,15213,15223,15230,15260,15261,15261,15254,15197,15134,15078,15003,14916,14829,14705,14552,14381,14177,13972,13759,13502,13255,12983,12702,12424,12117,11819,11533,11264,11029,10794,10549,10287,9977,9655,9350,9054,8811,8613,8445,8276,8151,8069,7978,7908,7855,7799,7708,7553,7390,7233,7110,6990,6895,6813,6750,6693,6652,6632,6618,6599,6594,6617,6602,6471,6161,5732,5120,21.9,22.0,22.6,1567421,0.1,12.5,12.0,5.0,465,-1.00,-1.00,58.4514,-19.249631,0.000584,,,,,187 +SATSLF0720,2024246,0.262672,4.10,0.0574,0.1053,0.0198,0.00,16078,653,1,702,712,714,716,724,722,722,715,731,741,745,746,788,897,1218,1937,3086,4457,5700,6611,7259,7717,8155,8598,9106,9713,10467,11326,12313,13429,14600,15740,16844,17795,18521,18950,19107,18917,18541,18014,17416,16862,16397,16029,15819,15739,15835,16088,16488,17074,17796,18709,19761,20980,22288,23730,25205,26677,28084,29323,30324,31065,31460,31479,31157,30506,29590,28538,27315,26141,24992,23924,22928,22094,21361,20757,20268,19886,19592,19447,19348,19361,19461,19645,19930,20281,20712,21233,21785,22416,23066,23707,24323,24901,25387,25730,25997,26049,25930,25661,25197,24554,23840,23030,22155,21291,20444,19675,18961,18315,17765,17293,16899,16581,16333,16158,16060,16016,16045,16125,16296,16517,16814,17180,17602,18090,18667,19268,19897,20581,21312,22038,22785,23505,24209,24864,25450,26005,26434,26744,26990,27095,27117,27013,26808,26481,26104,25589,25029,24459,23802,23165,22506,21846,21213,20592,20009,19452,18967,18491,18105,17730,17411,17117,16857,16614,16406,16209,16014,15820,15637,15469,15333,15214,15113,15051,14955,14929,14906,14900,14901,14941,14970,15010,15045,15076,15127,15173,15181,15208,15220,15209,15240,15269,15284,15262,15209,15149,15069,15015,14908,14818,14680,14544,14374,14194,13981,13761,13501,13249,12980,12703,12406,12110,11826,11540,11269,11027,10781,10530,10288,9977,9659,9348,9061,8827,8614,8444,8287,8161,8068,7979,7910,7855,7786,7689,7540,7389,7219,7107,6989,6907,6802,6753,6699,6662,6647,6634,6609,6602,6621,6605,6455,6159,5732,5117,21.9,22.1,22.6,1567421,0.0,12.5,11.9,5.0,465,-1.00,-1.00,58.3585,-19.175880,0.000543,,,,,204 +SATSLF0720,2024246,0.262928,4.01,0.0562,0.1049,0.0190,0.00,16090,653,1,706,714,713,704,719,717,720,717,731,731,739,749,787,893,1219,1935,3106,4456,5700,6647,7277,7763,8188,8645,9140,9762,10505,11371,12353,13475,14634,15800,16910,17849,18571,19002,19138,18965,18597,18046,17481,16905,16441,16084,15853,15788,15861,16099,16503,17091,17837,18746,19799,21016,22341,23768,25229,26717,28133,29357,30366,31114,31517,31520,31213,30538,29639,28585,27351,26181,25021,23937,22956,22098,21366,20759,20283,19896,19617,19465,19367,19383,19479,19684,19941,20289,20713,21237,21799,22424,23089,23730,24339,24925,25393,25778,26034,26097,25968,25681,25198,24576,23841,23035,22169,21301,20466,19691,19011,18353,17769,17302,16899,16579,16344,16169,16069,16024,16047,16138,16290,16512,16802,17178,17611,18117,18677,19274,19908,20588,21328,22051,22800,23502,24210,24854,25449,26021,26458,26773,27017,27112,27128,27041,26808,26485,26092,25583,25040,24438,23803,23158,22521,21846,21209,20612,20022,19475,18987,18505,18110,17741,17416,17110,16842,16601,16408,16211,16017,15826,15648,15477,15330,15219,15127,15053,14992,14942,14912,14920,14916,14932,14965,15003,15042,15077,15127,15185,15197,15205,15218,15227,15229,15262,15245,15249,15201,15150,15094,15010,14926,14820,14686,14533,14375,14180,13964,13760,13517,13253,12989,12718,12422,12129,11829,11533,11259,11018,10785,10550,10264,9963,9641,9330,9051,8805,8597,8451,8288,8157,8050,7977,7901,7849,7775,7691,7557,7371,7221,7111,6982,6908,6825,6743,6689,6656,6621,6632,6618,6589,6627,6601,6450,6152,5741,5110,21.9,22.1,22.7,1567422,0.1,12.4,12.0,5.0,465,-1.00,-1.00,58.0913,-19.091654,0.000516,,,,,229 +SATSLF0720,2024246,0.263181,4.02,0.0563,0.1062,0.0203,0.00,16047,653,1,682,697,696,711,723,727,729,723,728,730,733,730,771,874,1195,1915,3084,4455,5706,6627,7257,7745,8161,8613,9112,9748,10485,11338,12315,13415,14595,15753,16864,17793,18525,18977,19097,18896,18531,18000,17406,16855,16390,16029,15809,15741,15814,16075,16465,17042,17790,18694,19738,20955,22268,23705,25170,26644,28061,29309,30305,31037,31448,31421,31095,30453,29561,28500,27283,26097,24948,23883,22890,22029,21319,20705,20235,19853,19573,19413,19309,19333,19442,19617,19879,20228,20668,21170,21744,22357,23021,23680,24295,24854,25344,25700,25949,26000,25872,25602,25137,24493,23796,23000,22119,21253,20403,19633,18935,18293,17739,17281,16884,16561,16304,16129,16030,15985,16001,16102,16265,16472,16779,17138,17563,18044,18619,19209,19842,20547,21256,21989,22727,23434,24142,24801,25398,25942,26375,26722,26941,27046,27050,26960,26743,26425,26028,25537,24981,24373,23750,23105,22449,21789,21159,20557,19961,19413,18922,18451,18056,17689,17376,17065,16798,16564,16365,16169,15973,15781,15602,15431,15305,15184,15076,14992,14927,14888,14874,14875,14873,14905,14920,14963,14992,15020,15068,15129,15143,15165,15174,15184,15205,15241,15230,15213,15166,15104,15050,14970,14882,14785,14649,14489,14331,14142,13937,13710,13475,13230,12959,12677,12386,12091,11798,11514,11250,10994,10763,10514,10239,9954,9629,9323,9039,8797,8604,8413,8269,8139,8033,7961,7883,7835,7758,7673,7541,7369,7205,7073,6963,6857,6788,6713,6663,6639,6609,6613,6590,6580,6601,6593,6435,6138,5721,5094,21.9,22.1,22.7,1567423,0.0,12.5,11.9,5.0,464,-1.00,-1.00,58.2541,-19.109047,0.000584,,,,,134 +SATSLF0720,2024246,0.263433,4.07,0.0570,0.1059,0.0209,0.00,16043,653,1,699,708,711,711,727,731,729,731,727,734,717,731,771,891,1206,1931,3097,4480,5705,6623,7291,7763,8183,8621,9142,9748,10481,11349,12330,13425,14606,15767,16863,17828,18549,18977,19108,18917,18542,18011,17425,16870,16416,16064,15826,15749,15819,16062,16471,17055,17785,18697,19745,20965,22293,23729,25201,26665,28066,29305,30304,31050,31441,31417,31105,30461,29550,28507,27265,26115,24948,23897,22890,22052,21329,20701,20235,19848,19561,19401,19323,19325,19419,19616,19892,20237,20682,21172,21744,22362,23022,23664,24265,24842,25315,25681,25952,25985,25880,25600,25139,24505,23782,22980,22118,21255,20421,19648,18944,18292,17738,17253,16859,16548,16293,16119,16020,15969,15980,16067,16244,16473,16766,17129,17550,18038,18589,19205,19830,20508,21232,21985,22728,23440,24146,24789,25362,25925,26341,26656,26901,27013,27040,26952,26742,26405,26020,25516,24951,24366,23720,23074,22429,21763,21143,20536,19947,19409,18913,18439,18049,17682,17349,17058,16801,16553,16351,16147,15970,15778,15585,15416,15301,15178,15062,14987,14914,14885,14864,14865,14875,14889,14913,14965,14985,15030,15066,15118,15154,15153,15171,15173,15200,15221,15213,15191,15149,15099,15030,14978,14866,14795,14637,14496,14324,14128,13915,13702,13466,13197,12932,12651,12360,12077,11779,11497,11229,10977,10739,10509,10249,9951,9625,9329,9041,8795,8599,8418,8251,8109,8027,7948,7876,7832,7753,7679,7548,7349,7213,7079,6967,6861,6786,6721,6662,6613,6611,6577,6567,6569,6587,6589,6420,6138,5717,5098,21.9,22.1,22.7,1567424,0.0,12.4,12.0,5.0,465,-1.00,-1.00,57.7000,-18.881204,0.000595,,,,,102 +SATSLF0720,2024246,0.263688,4.17,0.0584,0.1051,0.0196,0.00,16087,653,1,715,730,729,721,720,725,730,726,715,731,729,733,769,891,1217,1957,3109,4493,5729,6657,7301,7771,8192,8628,9143,9749,10503,11361,12343,13449,14632,15780,16908,17845,18583,19003,19145,18941,18561,18036,17444,16873,16422,16064,15842,15783,15849,16111,16532,17101,17836,18735,19805,21008,22319,23754,25221,26707,28126,29358,30361,31093,31488,31499,31165,30525,29629,28566,27341,26168,25009,23933,22941,22096,21362,20755,20279,19899,19629,19451,19356,19371,19463,19677,19928,20283,20701,21214,21783,22411,23053,23719,24329,24904,25390,25753,26027,26078,25941,25673,25201,24561,23829,23038,22171,21308,20465,19706,18994,18337,17777,17313,16896,16587,16322,16171,16080,16021,16043,16145,16290,16520,16813,17170,17593,18084,18654,19258,19882,20581,21308,22055,22789,23495,24217,24848,25441,26010,26434,26748,26989,27095,27109,27029,26805,26474,26086,25594,25034,24455,23826,23172,22515,21853,21214,20596,20014,19454,18957,18499,18088,17725,17405,17121,16851,16603,16393,16187,16020,15824,15632,15455,15319,15221,15112,15040,14976,14928,14920,14909,14920,14941,14979,15008,15046,15090,15137,15186,15197,15213,15226,15222,15245,15258,15265,15254,15195,15139,15076,14996,14922,14826,14691,14540,14373,14181,13970,13769,13513,13246,12987,12706,12413,12132,11833,11538,11274,11034,10794,10565,10277,9984,9667,9354,9075,8821,8623,8461,8281,8146,8051,7968,7907,7857,7800,7698,7565,7387,7226,7103,6988,6897,6812,6749,6692,6650,6642,6617,6625,6598,6633,6618,6465,6156,5743,5119,21.9,22.1,22.8,1567425,0.1,12.4,12.0,5.0,466,-1.00,-1.00,57.6073,-18.881451,0.000514,,,,,145 +SATSLF0720,2024246,0.263941,3.99,0.0559,0.1051,0.0198,0.00,16079,653,1,708,711,711,711,725,729,733,726,738,724,727,742,767,884,1197,1928,3099,4471,5729,6642,7287,7767,8184,8629,9136,9765,10494,11365,12356,13466,14632,15791,16891,17847,18570,19005,19142,18961,18579,18051,17457,16890,16433,16070,15857,15761,15840,16100,16497,17077,17821,18741,19801,21008,22323,23762,25225,26706,28114,29355,30364,31102,31490,31490,31174,30512,29609,28560,27332,26168,25006,23940,22934,22083,21344,20745,20254,19875,19598,19442,19357,19368,19458,19653,19928,20273,20714,21218,21792,22409,23056,23709,24334,24893,25370,25726,25997,26052,25915,25661,25176,24538,23828,23020,22155,21290,20454,19690,18990,18338,17783,17305,16896,16582,16333,16141,16049,15998,16018,16112,16276,16514,16813,17185,17601,18086,18665,19249,19899,20576,21294,22034,22777,23488,24193,24842,25427,25989,26418,26741,26970,27077,27108,26995,26802,26472,26088,25581,25016,24408,23779,23141,22489,21840,21206,20601,20009,19447,18971,18496,18090,17716,17386,17107,16840,16609,16404,16194,16001,15806,15621,15464,15313,15217,15118,15039,14961,14925,14909,14902,14912,14942,14967,15004,15024,15051,15112,15165,15169,15191,15208,15225,15245,15258,15248,15243,15197,15138,15069,14993,14903,14820,14678,14539,14363,14176,13970,13761,13511,13246,12997,12692,12404,12122,11810,11531,11265,11017,10777,10544,10269,9973,9653,9345,9057,8805,8603,8442,8273,8148,8055,7981,7908,7858,7777,7689,7545,7370,7215,7095,6971,6885,6797,6743,6685,6657,6634,6608,6605,6581,6605,6593,6441,6139,5730,5109,21.9,22.1,22.8,1567426,0.1,12.5,12.0,5.0,458,-1.00,-1.00,58.0616,-19.067056,0.000572,,,,,97 +SATSLF0720,2024246,0.264192,4.05,0.0567,0.1067,0.0210,0.00,16035,653,1,705,697,705,706,713,721,724,721,731,745,746,764,786,884,1219,1917,3090,4452,5696,6626,7264,7741,8164,8596,9114,9719,10456,11322,12298,13413,14581,15733,16822,17783,18489,18922,19050,18877,18505,17985,17393,16821,16362,16010,15785,15714,15793,16033,16440,17031,17751,18667,19714,20928,22247,23682,25141,26609,28027,29266,30253,31015,31389,31387,31065,30432,29520,28466,27239,26088,24941,23861,22869,22009,21289,20682,20201,19814,19534,19378,19289,19305,19396,19593,19851,20214,20636,21145,21719,22326,22989,23629,24244,24823,25299,25678,25924,25996,25861,25578,25111,24462,23763,22965,22101,21242,20396,19633,18930,18277,17707,17248,16839,16519,16289,16109,16013,15978,16006,16092,16255,16461,16756,17114,17539,18025,18596,19209,19841,20519,21257,21992,22738,23434,24138,24785,25364,25909,26345,26674,26908,27024,27040,26945,26715,26393,26000,25521,24940,24355,23725,23087,22442,21796,21162,20566,19976,19405,18910,18444,18025,17659,17341,17064,16812,16582,16377,16160,15983,15787,15613,15450,15277,15159,15056,14995,14922,14900,14881,14892,14888,14915,14932,14965,15011,15035,15067,15125,15139,15159,15173,15170,15197,15215,15228,15217,15161,15099,15029,14970,14882,14779,14646,14493,14331,14133,13936,13726,13496,13227,12965,12691,12385,12096,11789,11498,11235,10993,10752,10504,10247,9936,9630,9322,9041,8791,8577,8411,8265,8125,8043,7948,7889,7832,7755,7687,7533,7367,7211,7088,6974,6874,6784,6711,6654,6626,6612,6609,6594,6594,6610,6597,6453,6146,5717,5104,21.9,22.1,22.8,1567427,0.0,12.4,12.0,5.0,464,-1.00,-1.00,58.4937,-19.187554,0.000568,,,,,47 +SATSLF0720,2024246,0.264449,4.13,0.0579,0.1060,0.0206,0.00,16051,653,1,709,714,702,707,710,705,729,733,741,738,726,743,765,877,1194,1925,3077,4455,5707,6629,7278,7737,8174,8605,9114,9722,10470,11345,12333,13434,14604,15755,16866,17795,18525,18945,19075,18902,18535,18011,17417,16858,16388,16035,15808,15720,15815,16061,16473,17049,17781,18681,19747,20971,22280,23712,25178,26640,28064,29300,30304,31030,31443,31429,31101,30462,29538,28503,27272,26101,24962,23874,22891,22038,21309,20702,20227,19835,19546,19394,19321,19333,19429,19610,19886,20230,20672,21178,21741,22369,23017,23664,24264,24859,25342,25704,25965,26008,25890,25618,25141,24502,23788,22981,22115,21266,20423,19653,18954,18301,17736,17259,16859,16548,16312,16132,16033,15990,16008,16099,16265,16496,16776,17146,17580,18058,18617,19227,19850,20541,21269,21987,22736,23450,24149,24809,25387,25959,26392,26697,26949,27058,27059,26980,26754,26432,26033,25536,24984,24394,23749,23108,22473,21814,21178,20584,20000,19425,18937,18462,18049,17681,17369,17060,16800,16565,16365,16161,15994,15794,15607,15434,15303,15176,15076,15000,14935,14892,14874,14878,14888,14905,14929,14966,15015,15041,15086,15146,15168,15181,15182,15191,15202,15230,15232,15224,15169,15091,15043,14964,14869,14791,14661,14506,14340,14139,13946,13721,13484,13225,12945,12678,12387,12105,11801,11522,11248,11001,10769,10517,10244,9953,9627,9333,9042,8786,8589,8428,8264,8133,8050,7961,7892,7838,7766,7669,7543,7369,7215,7095,6982,6873,6793,6725,6666,6626,6619,6617,6589,6588,6614,6613,6446,6147,5717,5099,21.9,22.2,22.8,1567428,0.0,12.5,12.0,5.0,447,-1.00,-1.00,57.9174,-18.968735,0.000586,,,,,102 +SATSDF0720,2024246,0.509138,0.00,0.0000,0.0000,0.0000,0.00,652,0,1,635,620,631,627,629,626,635,622,617,623,641,633,643,637,636,637,638,641,634,637,646,640,669,659,656,667,670,658,661,659,657,657,647,663,661,657,658,656,651,659,654,651,653,654,650,651,659,661,672,664,668,661,672,663,663,664,663,664,657,660,649,659,642,651,643,646,644,651,651,667,658,663,676,668,665,665,655,653,649,659,660,669,653,649,658,641,658,653,659,665,663,657,648,663,648,658,650,647,658,655,664,662,655,654,653,661,645,647,650,649,653,642,645,656,648,663,661,651,639,633,628,640,636,651,644,647,661,646,655,645,643,651,637,645,647,654,662,657,661,664,666,656,661,646,653,660,669,676,661,646,647,648,646,651,648,643,642,651,653,668,657,664,659,652,659,656,635,647,634,647,649,651,646,651,649,659,663,657,647,655,649,658,656,642,658,654,656,661,659,660,674,653,657,649,647,634,645,645,645,653,653,660,650,661,654,661,662,658,659,648,663,646,656,653,633,643,641,638,643,638,649,647,646,647,663,665,649,661,662,646,648,650,654,652,645,641,635,647,652,643,644,644,661,660,650,657,654,659,657,660,665,657,672,658,655,491,0.0,0.0,0.0,1567427,0.1,12.8,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,161 +SATSLF0720,2024246,0.509693,4.02,0.0564,0.1008,0.0169,0.00,16220,652,1,697,705,713,717,727,731,725,722,721,731,727,723,763,870,1202,1939,3109,4508,5761,6706,7361,7831,8256,8716,9230,9857,10597,11481,12483,13616,14794,15971,17099,18049,18775,19209,19341,19161,18765,18240,17648,17073,16627,16256,16020,15949,16016,16267,16673,17271,18013,18930,20005,21237,22546,24016,25494,26986,28403,29677,30687,31440,31828,31831,31498,30841,29934,28861,27637,26456,25274,24188,23189,22327,21585,20978,20477,20088,19792,19652,19544,19578,19681,19857,20124,20483,20907,21434,21997,22608,23269,23928,24538,25139,25604,25977,26241,26287,26173,25885,25397,24750,24036,23241,22356,21479,20624,19858,19163,18493,17929,17451,17040,16723,16461,16288,16183,16138,16157,16263,16418,16641,16950,17324,17753,18237,18807,19420,20071,20761,21474,22225,22978,23689,24391,25045,25635,26222,26653,26973,27224,27341,27345,27241,27035,26708,26297,25801,25229,24631,23993,23341,22692,22014,21389,20770,20182,19618,19136,18656,18236,17863,17543,17248,16976,16714,16509,16320,16123,15933,15741,15592,15442,15325,15242,15148,15079,15036,15017,15025,15029,15056,15065,15094,15128,15163,15209,15281,15281,15291,15311,15316,15336,15357,15363,15353,15293,15230,15164,15094,15001,14915,14774,14626,14458,14256,14056,13837,13584,13335,13062,12765,12471,12190,11886,11602,11338,11083,10851,10613,10345,10033,9707,9389,9105,8858,8645,8477,8310,8187,8103,8025,7958,7896,7830,7728,7594,7409,7271,7126,7022,6922,6825,6779,6721,6688,6669,6641,6652,6637,6647,6645,6495,6190,5765,5133,21.8,21.8,22.2,1567428,0.6,12.4,11.9,5.0,591,-1.00,-1.00,57.3606,-18.973611,0.000489,,,,,97 +SATSLF0720,2024246,0.509877,3.99,0.0559,0.1008,0.0169,0.00,16210,652,1,706,716,709,708,713,697,705,713,714,723,715,731,771,862,1191,1943,3118,4501,5763,6709,7374,7853,8266,8710,9226,9853,10597,11469,12483,13609,14794,15962,17074,18037,18768,19205,19329,19157,18752,18243,17633,17074,16608,16247,16019,15933,16027,16260,16666,17248,18002,18903,19994,21217,22529,24002,25484,26962,28408,29653,30653,31402,31805,31815,31480,30835,29920,28857,27601,26424,25257,24169,23145,22294,21562,20945,20479,20087,19790,19639,19542,19568,19659,19846,20113,20465,20900,21417,21987,22610,23269,23930,24528,25122,25594,25968,26226,26281,26167,25869,25399,24754,24021,23205,22343,21464,20618,19846,19128,18466,17908,17434,17030,16700,16441,16277,16181,16117,16142,16229,16400,16624,16930,17298,17724,18234,18797,19413,20053,20747,21481,22225,22969,23672,24391,25037,25641,26199,26619,26955,27193,27301,27306,27231,27002,26683,26265,25783,25205,24619,23989,23334,22677,22001,21379,20761,20176,19589,19093,18629,18229,17850,17515,17224,16981,16726,16524,16315,16126,15927,15740,15573,15435,15315,15213,15138,15061,15025,15009,15005,15018,15037,15058,15097,15125,15171,15218,15283,15284,15285,15299,15303,15319,15354,15337,15334,15293,15229,15162,15089,14993,14888,14760,14615,14439,14246,14044,13833,13594,13330,13059,12773,12467,12179,11874,11593,11330,11072,10826,10605,10327,10031,9683,9387,9104,8855,8651,8475,8323,8200,8100,8018,7935,7888,7815,7739,7595,7419,7273,7129,7023,6917,6838,6768,6717,6682,6658,6652,6639,6629,6656,6637,6493,6180,5757,5127,21.8,21.8,22.4,1567429,0.3,12.4,12.0,5.0,488,-1.00,-1.00,57.3741,-18.965935,0.000512,,,,,104 +SATSLF0720,2024246,0.510132,4.03,0.0564,0.1008,0.0174,0.00,16214,652,1,701,696,701,702,717,726,718,721,716,718,729,727,778,884,1224,1949,3114,4509,5763,6689,7338,7815,8251,8704,9223,9859,10612,11482,12478,13606,14809,15973,17081,18054,18774,19209,19346,19163,18787,18229,17649,17083,16608,16242,16011,15949,16025,16269,16688,17261,18016,18933,20003,21237,22554,24000,25486,26977,28398,29675,30661,31423,31837,31810,31505,30857,29914,28873,27620,26428,25245,24184,23170,22312,21580,20977,20476,20080,19793,19645,19541,19547,19655,19858,20113,20473,20905,21429,22004,22617,23287,23931,24544,25113,25592,25965,26230,26274,26170,25894,25397,24757,24048,23222,22357,21465,20631,19837,19143,18485,17929,17432,17022,16724,16462,16287,16177,16135,16166,16249,16405,16632,16941,17309,17733,18237,18786,19408,20039,20727,21473,22216,22961,23677,24381,25051,25643,26217,26633,26954,27200,27302,27309,27219,27005,26678,26267,25773,25216,24625,23997,23333,22672,22006,21377,20769,20168,19618,19117,18637,18216,17849,17501,17215,16960,16710,16509,16310,16113,15925,15760,15597,15448,15313,15209,15130,15053,15006,15005,15001,15008,15049,15074,15105,15159,15172,15229,15277,15279,15288,15287,15299,15316,15333,15329,15319,15277,15214,15147,15085,15002,14913,14765,14634,14444,14250,14038,13816,13579,13318,13034,12768,12477,12174,11890,11597,11330,11075,10844,10609,10333,10033,9712,9409,9116,8861,8656,8469,8315,8187,8090,8018,7944,7885,7827,7748,7600,7424,7269,7141,7021,6926,6848,6789,6717,6683,6667,6655,6640,6629,6637,6644,6493,6179,5757,5133,21.9,21.8,22.4,1567430,0.4,12.3,12.0,5.0,472,-1.00,-1.00,57.1802,-18.893607,0.000493,,,,,180 +SATSLF0720,2024246,0.510385,4.06,0.0569,0.1013,0.0183,0.00,16182,652,1,711,717,714,718,712,701,725,725,721,731,722,743,780,885,1210,1955,3121,4509,5756,6695,7358,7829,8248,8695,9213,9843,10590,11473,12457,13584,14765,15926,17061,18026,18734,19178,19306,19114,18734,18193,17610,17044,16575,16209,15985,15915,15991,16237,16645,17242,17988,18890,19962,21173,22505,23950,25442,26914,28337,29597,30590,31361,31745,31748,31451,30792,29856,28790,27558,26371,25220,24139,23132,22269,21527,20915,20434,20057,19761,19602,19522,19513,19620,19810,20072,20416,20852,21363,21934,22560,23226,23884,24494,25069,25562,25925,26185,26224,26117,25826,25348,24701,23975,23166,22285,21414,20572,19811,19099,18449,17888,17415,17006,16677,16418,16249,16146,16100,16127,16214,16391,16617,16910,17274,17706,18192,18765,19369,19992,20691,21417,22168,22912,23616,24322,24987,25573,26159,26581,26896,27158,27259,27272,27181,26957,26627,26235,25738,25173,24565,23944,23280,22637,21968,21322,20710,20113,19554,19063,18588,18176,17822,17485,17199,16939,16685,16487,16293,16093,15890,15707,15540,15397,15292,15179,15112,15034,14997,14982,14970,14969,15015,15030,15082,15101,15141,15202,15251,15261,15260,15281,15273,15291,15324,15303,15295,15245,15186,15117,15049,14961,14858,14733,14587,14415,14236,14032,13810,13572,13289,13031,12753,12456,12169,11865,11577,11315,11054,10809,10586,10312,10021,9685,9376,9101,8853,8646,8470,8325,8189,8090,8018,7938,7875,7829,7732,7588,7404,7238,7123,7001,6907,6834,6752,6703,6665,6647,6649,6628,6629,6630,6643,6485,6183,5748,5123,21.9,21.9,22.4,1567431,0.4,12.3,11.9,5.0,464,-1.00,-1.00,57.1056,-18.821477,0.000480,,,,,117 +SATSLF0720,2024246,0.510638,4.08,0.0571,0.1021,0.0178,0.00,16172,652,1,703,710,727,725,725,705,719,716,721,725,731,739,766,877,1198,1933,3109,4470,5728,6668,7317,7796,8214,8665,9184,9806,10545,11415,12417,13542,14709,15875,16995,17953,18683,19109,19255,19057,18689,18142,17562,17013,16553,16165,15945,15884,15958,16206,16605,17178,17943,18843,19923,21137,22461,23906,25397,26896,28312,29560,30555,31316,31712,31720,31388,30736,29817,28754,27531,26346,25188,24105,23093,22240,21497,20887,20406,20022,19734,19569,19488,19497,19594,19777,20049,20404,20833,21369,21934,22534,23213,23879,24489,25075,25544,25892,26150,26208,26072,25811,25322,24709,23970,23157,22297,21419,20571,19803,19090,18431,17870,17401,16984,16648,16423,16252,16164,16106,16147,16235,16394,16614,16913,17266,17693,18183,18752,19378,20005,20693,21415,22167,22919,23634,24333,25009,25576,26154,26583,26901,27142,27239,27272,27172,26961,26618,26215,25721,25172,24573,23940,23290,22613,21960,21338,20717,20115,19575,19070,18589,18181,17827,17478,17199,16926,16693,16491,16278,16081,15892,15705,15541,15410,15302,15197,15127,15053,15018,14973,14966,14970,15014,15025,15067,15102,15143,15196,15245,15250,15274,15277,15274,15308,15319,15322,15314,15277,15201,15133,15065,14990,14901,14757,14617,14425,14242,14022,13809,13558,13312,13044,12760,12466,12165,11873,11578,11309,11060,10823,10579,10311,10023,9706,9385,9108,8844,8656,8465,8320,8176,8088,8010,7926,7891,7825,7725,7584,7406,7253,7125,7005,6925,6835,6785,6736,6685,6656,6633,6631,6618,6645,6623,6488,6173,5741,5117,21.9,21.9,22.4,1567432,0.2,12.3,12.0,5.0,464,-1.00,-1.00,57.8520,-19.108089,0.000530,,,,,172 +SATSLF0720,2024246,0.510895,4.00,0.0560,0.1033,0.0182,0.00,16138,652,1,699,706,705,702,697,695,713,713,723,730,734,742,781,889,1200,1935,3094,4477,5713,6637,7281,7773,8185,8633,9156,9781,10533,11393,12390,13494,14662,15830,16940,17895,18619,19054,19193,19001,18628,18096,17502,16937,16488,16133,15890,15820,15899,16145,16554,17135,17874,18788,19864,21077,22401,23838,25328,26805,28247,29486,30491,31217,31622,31627,31307,30653,29739,28688,27450,26278,25114,24026,23040,22182,21454,20834,20351,19964,19675,19528,19436,19443,19545,19732,19994,20347,20790,21313,21876,22498,23172,23808,24445,25009,25485,25852,26121,26154,26037,25757,25282,24647,23915,23109,22241,21383,20530,19757,19059,18400,17845,17357,16947,16639,16389,16221,16115,16083,16104,16179,16343,16570,16871,17243,17655,18150,18712,19341,19969,20650,21379,22129,22869,23581,24281,24951,25537,26115,26541,26857,27100,27208,27228,27138,26916,26585,26187,25685,25111,24539,23910,23253,22585,21917,21297,20678,20085,19532,19037,18560,18168,17791,17457,17170,16903,16679,16458,16274,16076,15881,15678,15513,15369,15264,15161,15089,15011,14997,14981,14974,14973,14989,15013,15030,15086,15110,15170,15234,15236,15243,15269,15257,15287,15293,15297,15279,15241,15177,15121,15042,14965,14873,14737,14589,14408,14221,14010,13782,13540,13279,13021,12733,12440,12139,11845,11559,11296,11059,10813,10580,10306,9996,9672,9357,9081,8852,8650,8465,8301,8177,8075,7987,7923,7868,7808,7705,7572,7399,7246,7119,6998,6916,6822,6757,6698,6659,6625,6619,6621,6617,6633,6631,6482,6161,5749,5121,21.9,21.9,22.4,1567433,0.6,12.3,12.0,5.0,474,-1.00,-1.00,58.6400,-19.386320,0.000583,,,,,73 +SATSLF0720,2024246,0.511148,4.15,0.0582,0.1032,0.0186,0.00,16134,652,1,696,692,707,709,712,715,711,715,718,720,737,726,767,889,1206,1931,3096,4480,5733,6666,7309,7795,8212,8663,9173,9794,10545,11408,12411,13540,14685,15871,16970,17901,18647,19072,19211,19030,18645,18105,17516,16953,16498,16139,15917,15855,15934,16169,16569,17147,17904,18793,19869,21099,22426,23882,25353,26838,28257,29488,30501,31254,31640,31634,31319,30666,29733,28705,27461,26276,25127,24038,23040,22179,21440,20840,20365,19974,19682,19542,19437,19453,19560,19750,20000,20355,20781,21296,21875,22489,23157,23805,24413,24994,25462,25843,26105,26144,26048,25758,25282,24641,23916,23108,22242,21363,20526,19749,19040,18397,17828,17353,16947,16621,16366,16198,16093,16064,16084,16171,16341,16568,16864,17220,17654,18128,18712,19324,19963,20637,21378,22114,22869,23578,24280,24930,25523,26083,26507,26849,27080,27188,27209,27118,26882,26568,26173,25680,25104,24529,23861,23227,22577,21913,21253,20667,20081,19509,19030,18564,18152,17771,17447,17156,16889,16659,16450,16245,16047,15866,15681,15510,15365,15252,15147,15063,14999,14947,14937,14953,14946,14978,15017,15050,15073,15094,15148,15188,15222,15221,15232,15244,15265,15279,15277,15264,15222,15176,15107,15042,14948,14853,14726,14553,14394,14189,13990,13753,13520,13265,13003,12727,12440,12136,11847,11561,11277,11031,10790,10554,10285,9992,9669,9358,9075,8821,8609,8441,8281,8139,8049,7991,7920,7861,7801,7706,7568,7400,7238,7105,6981,6889,6821,6746,6699,6670,6642,6631,6615,6613,6629,6620,6471,6154,5728,5110,21.9,21.9,22.5,1567434,0.0,12.4,12.0,5.0,469,-1.00,-1.00,57.6448,-18.980761,0.000589,,,,,116 +SATSLF0720,2024246,0.511404,4.13,0.0578,0.1036,0.0184,0.00,16130,652,1,709,703,708,711,707,712,733,721,730,729,736,729,775,887,1198,1922,3093,4485,5742,6682,7325,7796,8222,8653,9172,9790,10539,11403,12401,13526,14682,15847,16955,17927,18642,19088,19214,19031,18633,18116,17511,16951,16489,16129,15904,15844,15932,16160,16573,17164,17905,18810,19866,21094,22409,23857,25314,26803,28228,29469,30469,31223,31629,31637,31291,30635,29725,28677,27432,26257,25097,24038,23021,22179,21445,20836,20362,19965,19665,19515,19420,19446,19537,19729,19997,20346,20795,21312,21877,22485,23158,23802,24407,24985,25467,25815,26097,26136,26016,25728,25253,24612,23901,23115,22224,21367,20524,19753,19050,18390,17825,17345,16929,16626,16373,16193,16103,16044,16080,16183,16343,16563,16867,17233,17649,18138,18696,19308,19950,20630,21371,22109,22844,23563,24268,24914,25511,26081,26513,26824,27077,27188,27178,27085,26871,26541,26155,25664,25097,24509,23873,23227,22579,21902,21272,20648,20052,19499,19008,18525,18125,17752,17436,17138,16890,16637,16461,16245,16051,15868,15657,15505,15359,15251,15143,15081,15001,14969,14941,14949,14963,14988,15009,15025,15074,15097,15155,15213,15217,15239,15260,15251,15273,15277,15271,15265,15217,15169,15112,15021,14947,14850,14704,14549,14379,14196,13981,13777,13527,13269,13003,12727,12438,12155,11841,11557,11285,11016,10788,10563,10286,9981,9675,9341,9080,8832,8626,8453,8294,8153,8059,7982,7916,7864,7797,7722,7565,7391,7249,7125,6998,6910,6822,6745,6707,6661,6636,6622,6609,6604,6627,6627,6473,6160,5731,5111,21.9,21.9,22.6,1567435,0.3,12.4,12.0,5.0,464,-1.00,-1.00,57.3762,-18.854975,0.000548,,,,,124 +SATSLF0720,2024246,0.511658,3.96,0.0555,0.1037,0.0183,0.00,16122,652,1,707,705,713,711,713,721,727,725,737,728,737,739,781,889,1208,1946,3106,4471,5724,6653,7293,7783,8202,8661,9169,9786,10531,11392,12395,13498,14658,15828,16951,17902,18618,19064,19181,19006,18634,18099,17518,16962,16488,16115,15883,15819,15891,16141,16546,17130,17872,18792,19849,21073,22400,23845,25305,26790,28194,29445,30440,31192,31589,31593,31270,30640,29719,28661,27433,26251,25093,24020,23016,22164,21419,20827,20329,19957,19677,19507,19418,19422,19527,19717,19987,20333,20761,21287,21856,22469,23140,23780,24397,24965,25444,25815,26065,26111,25996,25729,25246,24619,23896,23093,22224,21345,20488,19714,19019,18360,17812,17333,16928,16629,16378,16202,16099,16050,16078,16157,16325,16551,16841,17209,17648,18120,18692,19296,19949,20627,21349,22091,22827,23551,24257,24900,25496,26073,26490,26810,27069,27168,27181,27065,26882,26549,26136,25651,25089,24485,23845,23206,22544,21895,21258,20633,20049,19501,19009,18538,18133,17760,17434,17159,16889,16658,16443,16239,16032,15855,15658,15491,15367,15235,15139,15068,14995,14961,14943,14948,14946,14973,14998,15028,15061,15094,15141,15204,15221,15212,15233,15244,15266,15294,15281,15271,15229,15157,15116,15034,14946,14838,14713,14555,14385,14211,13981,13772,13538,13281,13025,12725,12433,12141,11842,11562,11290,11040,10797,10562,10295,9984,9666,9354,9076,8832,8610,8439,8304,8165,8065,7985,7931,7861,7795,7697,7555,7394,7233,7108,7000,6906,6819,6766,6704,6669,6645,6629,6609,6609,6621,6624,6477,6160,5735,5122,21.9,21.9,22.6,1567436,0.0,12.4,11.9,5.0,468,-1.00,-1.00,58.2442,-19.204717,0.000538,,,,,71 +SATSLF0720,2024246,0.511910,4.13,0.0579,0.1037,0.0187,0.00,16127,652,1,700,713,694,715,714,711,727,725,724,728,727,733,785,889,1215,1929,3095,4466,5717,6653,7289,7783,8192,8637,9156,9782,10530,11397,12393,13499,14679,15847,16950,17893,18612,19045,19175,18998,18637,18088,17510,16945,16487,16121,15891,15829,15905,16150,16554,17137,17877,18765,19851,21066,22391,23837,25316,26784,28213,29453,30447,31191,31589,31584,31284,30629,29713,28651,27419,26241,25077,24016,23009,22154,21429,20808,20336,19945,19667,19513,19418,19449,19538,19717,19991,20333,20771,21292,21852,22480,23143,23782,24402,24970,25447,25811,26097,26128,26019,25722,25263,24621,23887,23098,22241,21365,20520,19748,19040,18382,17821,17360,16957,16634,16385,16217,16109,16069,16088,16187,16341,16567,16862,17232,17657,18150,18707,19315,19959,20645,21359,22104,22838,23556,24258,24918,25517,26078,26519,26818,27073,27176,27192,27096,26877,26546,26149,25652,25089,24509,23861,23226,22567,21894,21269,20666,20055,19510,19020,18540,18142,17781,17444,17161,16894,16657,16452,16244,16049,15850,15680,15492,15362,15251,15148,15079,14995,14957,14949,14939,14945,14989,15002,15047,15085,15103,15165,15226,15221,15247,15248,15247,15269,15282,15302,15277,15223,15174,15104,15041,14951,14848,14702,14563,14394,14204,13986,13785,13536,13268,12997,12729,12434,12137,11847,11562,11284,11037,10807,10555,10302,10012,9677,9361,9082,8851,8633,8457,8296,8165,8063,7983,7915,7862,7800,7709,7588,7398,7245,7121,7013,6901,6818,6745,6697,6658,6636,6632,6610,6615,6634,6643,6482,6182,5737,5120,21.9,21.9,22.6,1567437,0.0,12.4,11.9,5.0,469,-1.00,-1.00,57.6092,-18.938553,0.000517,,,,,236 +SATSLF0720,2024246,0.512166,4.12,0.0578,0.1035,0.0187,0.00,16122,652,1,718,712,702,713,705,702,726,713,716,716,736,743,777,895,1221,1944,3094,4483,5730,6650,7288,7771,8190,8640,9168,9789,10517,11378,12391,13493,14664,15835,16934,17896,18610,19047,19174,18993,18613,18087,17481,16939,16481,16115,15894,15825,15902,16147,16558,17129,17884,18765,19843,21077,22381,23816,25291,26787,28202,29442,30429,31203,31587,31600,31273,30635,29716,28650,27421,26240,25078,24002,23017,22157,21405,20800,20320,19937,19654,19511,19425,19450,19531,19731,19993,20335,20772,21293,21854,22475,23130,23799,24392,24981,25450,25818,26085,26113,25997,25720,25248,24601,23884,23092,22227,21356,20509,19741,19027,18389,17821,17344,16947,16610,16367,16215,16108,16066,16082,16173,16343,16561,16859,17232,17639,18125,18705,19310,19938,20621,21355,22106,22842,23549,24274,24925,25502,26066,26487,26809,27065,27168,27173,27088,26886,26553,26149,25648,25105,24496,23850,23215,22547,21891,21259,20651,20065,19513,19029,18546,18148,17768,17442,17152,16877,16635,16440,16242,16041,15852,15674,15496,15359,15252,15138,15077,15003,14966,14940,14935,14944,14983,14990,15031,15070,15101,15153,15209,15223,15232,15234,15248,15266,15285,15284,15273,15227,15170,15105,15023,14951,14848,14712,14567,14404,14212,13985,13793,13541,13285,13005,12733,12416,12133,11832,11557,11288,11040,10800,10570,10282,9995,9665,9352,9072,8832,8613,8440,8282,8156,8056,7993,7929,7880,7805,7722,7569,7383,7229,7104,6984,6890,6816,6747,6695,6665,6645,6627,6627,6605,6632,6620,6458,6164,5726,5118,21.9,22.0,22.6,1567438,0.1,12.3,11.9,5.0,471,-1.00,-1.00,57.8247,-19.027237,0.000498,,,,,211 +SATSLF0720,2024246,0.512419,4.04,0.0566,0.1036,0.0183,0.00,16126,652,1,695,699,699,704,714,711,715,723,727,727,733,733,762,883,1204,1923,3095,4475,5729,6665,7309,7773,8200,8639,9145,9794,10533,11392,12379,13495,14694,15839,16955,17910,18620,19061,19193,19010,18621,18088,17490,16939,16478,16117,15879,15827,15899,16144,16555,17146,17872,18784,19863,21077,22390,23819,25305,26777,28211,29452,30465,31193,31595,31607,31296,30645,29718,28661,27420,26234,25082,24003,23006,22152,21422,20813,20336,19965,19682,19501,19422,19442,19532,19732,19993,20340,20775,21289,21841,22479,23133,23785,24403,24977,25460,25802,26087,26157,26018,25744,25277,24629,23909,23105,22245,21364,20520,19741,19043,18380,17829,17365,16947,16626,16373,16216,16113,16059,16077,16168,16326,16550,16857,17226,17664,18156,18731,19322,19975,20649,21357,22093,22837,23559,24273,24920,25517,26077,26507,26837,27074,27157,27188,27086,26869,26555,26153,25664,25092,24517,23872,23227,22566,21905,21277,20663,20066,19518,19021,18533,18135,17769,17438,17162,16884,16643,16443,16247,16058,15867,15661,15513,15357,15243,15149,15080,15005,14960,14933,14933,14944,14964,14986,15041,15077,15104,15152,15199,15221,15217,15233,15245,15266,15291,15280,15259,15223,15166,15118,15046,14961,14865,14720,14583,14405,14196,13976,13771,13529,13281,13010,12733,12432,12141,11845,11563,11281,11026,10797,10542,10281,9983,9680,9365,9084,8843,8629,8449,8291,8159,8060,8000,7912,7875,7800,7706,7579,7401,7241,7109,6994,6908,6817,6760,6696,6656,6629,6622,6620,6593,6617,6623,6472,6154,5719,5107,21.9,22.0,22.6,1567439,0.0,12.3,11.9,5.0,469,-1.00,-1.00,58.0695,-19.133345,0.000574,,,,,128 +SATSLF0720,2024246,0.512671,4.10,0.0574,0.1033,0.0183,0.00,16133,652,1,706,691,711,715,704,716,711,727,722,729,733,741,775,880,1207,1935,3105,4489,5717,6659,7312,7787,8215,8664,9173,9802,10546,11418,12413,13525,14690,15857,16966,17915,18643,19084,19217,19033,18661,18121,17534,16964,16500,16144,15915,15841,15920,16182,16582,17152,17902,18813,19880,21077,22391,23840,25333,26813,28233,29474,30487,31222,31620,31633,31293,30661,29717,28662,27435,26253,25101,24018,23023,22165,21426,20819,20352,19966,19677,19523,19435,19450,19529,19718,19994,20340,20777,21293,21855,22485,23152,23808,24413,24998,25473,25842,26102,26151,26023,25757,25269,24622,23895,23105,22231,21366,20529,19757,19053,18384,17835,17360,16955,16648,16392,16211,16103,16069,16098,16181,16329,16549,16845,17203,17637,18144,18711,19317,19953,20649,21377,22125,22866,23576,24261,24923,25513,26068,26498,26814,27063,27169,27179,27093,26889,26557,26164,25653,25095,24512,23862,23226,22570,21915,21287,20668,20074,19529,19025,18547,18145,17776,17440,17158,16881,16646,16451,16229,16046,15856,15670,15500,15356,15263,15156,15080,14995,14951,14942,14928,14949,14968,14981,15030,15079,15127,15162,15209,15228,15237,15236,15254,15258,15286,15282,15273,15232,15173,15118,15035,14957,14869,14706,14567,14401,14207,13995,13780,13533,13278,13000,12728,12435,12155,11866,11580,11302,11060,10809,10577,10298,9992,9680,9365,9078,8842,8628,8466,8293,8153,8075,7984,7915,7857,7794,7721,7570,7383,7234,7112,6997,6901,6818,6754,6680,6668,6633,6635,6624,6615,6625,6615,6459,6155,5740,5120,21.9,22.0,22.6,1567439,0.4,12.4,12.0,5.0,467,-1.00,-1.00,57.2320,-18.794530,0.000523,,,,,174 +SATSLF0720,2024246,0.512927,4.07,0.0570,0.1060,0.0221,0.00,16032,652,1,705,719,718,705,720,718,723,726,734,735,734,758,784,905,1217,1939,3100,4461,5723,6628,7284,7752,8186,8628,9142,9766,10502,11358,12361,13466,14630,15794,16887,17835,18545,18972,19097,18920,18550,18029,17436,16884,16421,16060,15841,15753,15829,16081,16472,17045,17794,18697,19760,20974,22290,23729,25193,26658,28065,29318,30301,31045,31431,31451,31121,30465,29559,28525,27282,26129,24969,23893,22917,22066,21326,20725,20233,19850,19561,19420,19318,19326,19433,19622,19878,20224,20660,21173,21733,22341,23025,23661,24279,24846,25322,25668,25955,25998,25865,25584,25128,24490,23768,22972,22105,21236,20403,19625,18939,18286,17736,17273,16861,16525,16289,16117,16003,15975,15997,16089,16231,16463,16747,17115,17543,18024,18577,19198,19825,20491,21242,21962,22692,23408,24110,24748,25346,25908,26326,26645,26892,27001,27000,26901,26691,26353,25968,25485,24918,24343,23712,23073,22417,21751,21113,20508,19929,19368,18886,18406,18007,17658,17331,17042,16765,16539,16339,16137,15944,15758,15568,15401,15255,15147,15050,14952,14890,14856,14845,14835,14849,14862,14880,14921,14955,14982,15020,15080,15111,15125,15140,15141,15158,15176,15173,15159,15120,15042,14992,14912,14834,14742,14605,14453,14277,14103,13885,13671,13433,13176,12912,12635,12343,12042,11760,11475,11208,10949,10717,10490,10205,9911,9595,9284,9015,8769,8556,8398,8246,8123,8005,7935,7871,7820,7748,7661,7518,7337,7189,7049,6951,6853,6772,6709,6661,6618,6599,6593,6569,6567,6583,6574,6423,6119,5701,5094,21.9,22.0,22.6,1567440,0.3,12.3,12.0,5.0,468,-1.00,-1.00,57.7001,-18.887138,0.000507,,,,,158 +SATSLF0720,2024246,0.513180,4.25,0.0595,0.1046,0.0194,0.00,16101,652,1,715,718,721,711,720,712,714,725,718,738,744,740,783,896,1219,1941,3108,4487,5730,6663,7297,7769,8181,8643,9156,9778,10511,11387,12381,13477,14657,15802,16912,17849,18567,19009,19153,18966,18585,18065,17485,16922,16475,16098,15877,15810,15881,16123,16530,17120,17849,18749,19824,21030,22357,23798,25261,26739,28157,29399,30409,31147,31545,31538,31208,30570,29651,28602,27373,26187,25044,23969,22978,22130,21403,20788,20305,19900,19623,19467,19380,19398,19504,19686,19956,20305,20725,21251,21805,22435,23080,23726,24359,24932,25411,25804,26056,26108,25989,25696,25225,24574,23857,23051,22182,21321,20473,19700,18997,18346,17794,17313,16926,16605,16349,16176,16072,16027,16061,16151,16301,16521,16817,17189,17617,18100,18660,19272,19911,20609,21322,22061,22793,23517,24215,24888,25473,26034,26468,26774,27019,27128,27136,27045,26839,26496,26093,25616,25058,24473,23828,23184,22547,21866,21234,20624,20034,19473,18992,18501,18111,17749,17409,17128,16857,16628,16426,16237,16025,15834,15646,15469,15339,15224,15142,15056,14982,14948,14930,14917,14926,14953,14980,15013,15069,15084,15138,15193,15201,15208,15215,15232,15261,15257,15257,15252,15223,15145,15079,15031,14923,14831,14695,14560,14378,14185,13978,13757,13523,13261,12988,12718,12423,12134,11837,11543,11272,11015,10784,10556,10280,9986,9661,9340,9063,8818,8619,8445,8286,8158,8067,7978,7907,7860,7802,7698,7559,7387,7209,7099,6974,6873,6807,6739,6705,6672,6634,6637,6609,6595,6625,6612,6474,6150,5731,5116,21.9,22.1,22.7,1567441,0.2,12.3,11.9,5.0,461,-1.00,-1.00,57.0900,-18.689745,0.000493,,,,,109 +SATSLF0720,2024246,0.513432,4.07,0.0570,0.1051,0.0202,0.00,16069,652,1,698,695,715,716,717,728,721,731,734,731,747,740,767,887,1213,1925,3077,4453,5685,6619,7277,7750,8180,8621,9120,9743,10491,11337,12344,13437,14611,15761,16867,17814,18529,18963,19097,18906,18536,18003,17414,16864,16402,16043,15827,15746,15811,16067,16469,17049,17786,18702,19766,20985,22293,23754,25208,26675,28093,29329,30322,31069,31461,31453,31123,30505,29592,28545,27311,26135,24987,23927,22912,22066,21332,20724,20235,19873,19593,19445,19357,19346,19450,19633,19899,20242,20682,21205,21758,22371,23053,23691,24322,24898,25376,25738,25995,26038,25920,25637,25156,24523,23811,23013,22145,21280,20441,19668,18970,18336,17781,17301,16888,16573,16312,16147,16047,16012,16016,16109,16277,16497,16793,17168,17602,18082,18652,19258,19880,20562,21298,22026,22775,23469,24183,24834,25428,26003,26422,26760,26986,27080,27088,27003,26791,26459,26069,25582,25016,24418,23771,23149,22488,21817,21197,20590,19998,19447,18946,18471,18077,17705,17386,17083,16845,16600,16389,16187,15994,15803,15618,15458,15325,15213,15111,15037,14968,14922,14915,14897,14907,14941,14952,14983,15031,15068,15113,15165,15187,15200,15197,15211,15232,15246,15240,15229,15173,15122,15054,14983,14897,14820,14689,14522,14366,14166,13950,13741,13500,13242,12981,12685,12406,12118,11827,11530,11263,11013,10770,10537,10261,9972,9649,9338,9063,8803,8611,8434,8281,8130,8039,7959,7899,7849,7786,7692,7553,7368,7217,7093,6978,6888,6812,6763,6698,6643,6623,6614,6592,6582,6602,6589,6437,6138,5731,5120,21.9,22.1,22.7,1567442,0.0,12.3,11.9,5.0,468,-1.00,-1.00,58.5118,-19.238385,0.000610,,,,,121 +SATSLF0720,2024246,0.513687,4.05,0.0567,0.1063,0.0203,0.00,16044,652,1,706,705,695,711,704,707,715,725,728,723,727,732,765,867,1195,1917,3072,4449,5685,6601,7246,7730,8141,8589,9107,9727,10471,11328,12308,13396,14566,15719,16828,17777,18493,18930,19076,18858,18503,17970,17384,16829,16374,16013,15785,15721,15797,16046,16439,17019,17753,18671,19717,20939,22250,23670,25152,26632,28042,29267,30261,31001,31405,31407,31077,30427,29535,28471,27249,26092,24931,23864,22861,22018,21282,20685,20205,19821,19556,19401,19304,19321,19428,19613,19868,20216,20648,21155,21739,22339,23017,23661,24273,24841,25314,25677,25940,26011,25872,25598,25127,24483,23765,22978,22121,21264,20422,19649,18944,18291,17725,17253,16861,16560,16288,16133,16023,15983,15991,16089,16253,16481,16776,17155,17570,18055,18616,19224,19850,20544,21265,22002,22739,23453,24166,24817,25401,25965,26381,26698,26944,27030,27054,26953,26741,26411,26018,25536,24988,24409,23765,23130,22481,21811,21181,20568,19984,19424,18936,18471,18056,17692,17361,17070,16814,16577,16380,16167,15977,15772,15607,15437,15303,15192,15099,15012,14935,14901,14901,14893,14894,14928,14941,14976,15011,15037,15085,15140,15138,15169,15172,15185,15196,15221,15225,15215,15178,15115,15051,14993,14901,14814,14662,14498,14332,14139,13930,13719,13487,13232,12973,12681,12394,12096,11803,11519,11241,10987,10756,10528,10251,9956,9639,9319,9049,8801,8593,8405,8263,8134,8050,7965,7903,7850,7778,7690,7541,7366,7208,7073,6971,6884,6801,6739,6684,6641,6628,6602,6587,6587,6611,6613,6446,6143,5717,5094,21.9,22.1,22.8,1567443,0.0,12.4,12.0,5.0,467,-1.00,-1.00,58.5569,-19.219263,0.000580,,,,,166 +SATSLF0720,2024246,0.513941,4.14,0.0580,0.1058,0.0200,0.00,16062,652,1,714,713,725,731,722,727,732,732,729,729,740,749,778,888,1222,1949,3099,4471,5711,6645,7293,7757,8174,8619,9141,9741,10496,11345,12333,13428,14598,15764,16870,17833,18566,18989,19105,18919,18544,18018,17437,16866,16417,16053,15830,15744,15843,16080,16491,17067,17800,18699,19767,20986,22299,23729,25213,26677,28082,29334,30322,31056,31463,31461,31143,30482,29572,28533,27285,26113,24966,23891,22899,22043,21329,20725,20237,19837,19559,19410,19328,19342,19445,19646,19889,20234,20682,21185,21745,22361,23048,23676,24299,24865,25346,25698,25955,26025,25883,25622,25140,24512,23798,23011,22162,21277,20440,19657,18956,18321,17761,17285,16884,16570,16312,16139,16031,15991,16021,16110,16276,16490,16779,17144,17582,18068,18630,19245,19873,20548,21276,22021,22748,23463,24167,24822,25404,25962,26379,26682,26947,27048,27072,26978,26757,26443,26041,25559,24989,24402,23760,23128,22466,21824,21177,20567,19995,19444,18944,18488,18072,17693,17357,17075,16807,16585,16385,16193,15988,15805,15621,15461,15314,15194,15106,15037,14949,14926,14909,14894,14898,14925,14939,14992,15017,15051,15099,15141,15164,15177,15191,15195,15202,15227,15222,15218,15159,15114,15061,14986,14902,14820,14677,14517,14345,14169,13938,13731,13497,13256,12981,12685,12391,12106,11806,11517,11260,10997,10765,10542,10262,9964,9647,9338,9060,8818,8600,8436,8272,8139,8042,7956,7883,7829,7780,7682,7543,7383,7226,7094,6981,6863,6791,6735,6669,6648,6618,6599,6595,6587,6611,6612,6445,6143,5717,5102,21.9,22.1,22.8,1567444,0.5,12.4,11.9,5.0,469,-1.00,-1.00,57.6138,-18.858973,0.000588,,,,,205 +SATSLF0720,2024246,0.514193,4.16,0.0583,0.1058,0.0200,0.00,16063,652,1,722,714,717,721,732,726,727,739,740,734,734,730,773,878,1196,1931,3100,4478,5709,6638,7265,7755,8170,8614,9140,9753,10482,11351,12344,13441,14619,15767,16866,17813,18528,18963,19101,18912,18533,18007,17421,16852,16410,16041,15824,15757,15842,16085,16481,17067,17798,18698,19756,20963,22265,23709,25189,26676,28078,29326,30320,31062,31453,31445,31123,30475,29577,28505,27298,26116,24962,23905,22909,22058,21331,20723,20228,19852,19568,19413,19327,19354,19432,19627,19886,20247,20673,21200,21758,22374,23041,23683,24289,24885,25342,25701,25988,26005,25902,25632,25154,24520,23808,23013,22144,21289,20437,19677,18969,18331,17764,17293,16892,16569,16321,16136,16062,16009,16021,16121,16275,16507,16797,17173,17586,18071,18638,19243,19872,20549,21278,22013,22768,23461,24164,24830,25392,25963,26393,26717,26944,27064,27066,26978,26765,26445,26033,25561,24993,24405,23778,23128,22482,21820,21200,20577,19980,19436,18935,18480,18080,17701,17375,17085,16828,16589,16384,16185,15994,15794,15608,15432,15306,15196,15108,15035,14972,14924,14893,14889,14901,14928,14951,14979,15035,15064,15105,15165,15185,15184,15194,15205,15220,15239,15232,15216,15175,15109,15060,14977,14903,14817,14670,14519,14344,14183,13954,13745,13509,13237,12984,12677,12389,12105,11797,11528,11259,11001,10763,10519,10260,9962,9654,9334,9050,8818,8605,8431,8271,8149,8049,7970,7913,7856,7775,7687,7561,7369,7221,7102,6978,6885,6803,6736,6670,6655,6617,6614,6585,6599,6605,6615,6453,6145,5715,5095,21.9,22.1,22.8,1567445,0.0,12.3,12.0,5.0,459,-1.00,-1.00,57.7015,-18.890827,0.000526,,,,,112 +SATSLF0720,2024246,0.514450,4.16,0.0583,0.1056,0.0201,0.00,16069,652,1,715,715,731,724,733,721,722,713,726,733,738,757,787,897,1214,1936,3100,4469,5704,6648,7289,7760,8180,8626,9136,9761,10493,11348,12343,13449,14627,15789,16886,17819,18538,18965,19098,18933,18545,18011,17435,16885,16417,16054,15835,15761,15830,16085,16488,17067,17815,18724,19789,20992,22302,23738,25202,26675,28086,29318,30327,31069,31459,31458,31159,30504,29595,28546,27324,26146,24983,23906,22916,22071,21342,20740,20245,19868,19580,19443,19334,19340,19445,19642,19908,20250,20707,21210,21773,22389,23057,23682,24307,24882,25353,25715,25993,26037,25897,25643,25153,24537,23816,23032,22170,21298,20450,19691,18976,18322,17765,17275,16877,16560,16313,16157,16056,15997,16023,16122,16271,16485,16781,17149,17582,18069,18617,19239,19881,20566,21293,22029,22761,23473,24173,24824,25410,25976,26384,26720,26958,27072,27086,26995,26781,26452,26066,25573,24994,24407,23773,23121,22476,21815,21192,20585,19995,19447,18957,18481,18076,17707,17389,17098,16821,16601,16396,16197,16002,15801,15611,15441,15309,15193,15097,15027,14949,14918,14910,14902,14918,14921,14951,14979,15033,15048,15108,15165,15174,15181,15197,15198,15223,15237,15232,15238,15186,15127,15058,14999,14907,14809,14683,14524,14352,14158,13949,13740,13493,13246,12983,12692,12409,12114,11813,11510,11258,11005,10773,10537,10267,9964,9644,9325,9050,8810,8596,8447,8284,8153,8060,7977,7907,7845,7776,7687,7543,7383,7223,7090,6971,6875,6795,6739,6673,6644,6613,6611,6600,6585,6623,6611,6449,6151,5725,5113,21.9,22.1,22.8,1567446,0.1,12.3,11.9,5.0,467,-1.00,-1.00,57.7859,-18.939905,0.000460,,,,,16 +SATSDF0720,2024246,0.759138,0.00,0.0000,0.0000,0.0000,0.00,653,0,1,641,617,633,637,637,641,641,643,637,641,629,622,629,618,641,630,628,635,644,649,642,658,677,677,670,654,643,647,640,656,657,650,647,663,667,657,662,658,657,663,650,651,663,661,662,675,657,653,654,665,668,662,666,663,666,667,650,651,661,654,661,659,663,666,665,654,646,653,646,659,659,663,673,681,661,657,663,661,642,651,654,673,665,665,661,666,658,662,648,651,653,659,663,652,658,661,658,653,659,668,655,663,659,646,650,646,655,654,646,648,651,649,648,640,656,664,650,647,649,647,653,657,653,659,649,648,658,657,651,655,647,633,639,647,659,649,658,653,654,657,645,635,647,653,641,656,653,663,661,666,656,663,668,670,658,653,650,665,659,650,667,657,646,656,649,650,649,649,651,651,654,648,651,655,656,647,651,638,651,653,651,658,664,657,658,655,665,661,644,647,637,649,659,644,651,643,645,655,651,653,675,666,664,669,670,661,659,657,661,644,642,641,645,633,646,662,645,663,648,647,663,648,641,639,653,644,667,660,669,661,664,666,659,649,647,647,655,642,647,645,635,647,646,653,653,647,652,645,661,656,653,663,656,650,663,494,0.0,0.0,0.0,1567445,0.2,12.8,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,116 +SATSLF0720,2024246,0.759692,4.03,0.0565,0.1008,0.0169,0.00,16211,653,1,687,698,707,707,710,709,714,727,729,736,729,733,770,890,1212,1944,3113,4493,5751,6699,7347,7827,8256,8698,9217,9859,10603,11469,12468,13588,14776,15954,17069,18036,18752,19191,19331,19148,18752,18223,17609,17051,16594,16218,16003,15930,16013,16264,16676,17272,18002,18909,19977,21207,22545,23986,25474,26973,28397,29643,30653,31419,31817,31813,31481,30834,29911,28859,27626,26413,25259,24170,23160,22319,21572,20957,20482,20096,19801,19639,19545,19564,19667,19856,20109,20462,20888,21409,21981,22603,23283,23942,24558,25137,25607,25953,26227,26274,26152,25863,25378,24741,24013,23209,22341,21462,20603,19844,19133,18477,17907,17449,17026,16712,16456,16285,16190,16149,16162,16254,16416,16649,16949,17309,17735,18216,18796,19409,20045,20731,21469,22222,22970,23688,24395,25049,25632,26203,26637,26965,27202,27309,27331,27236,27040,26673,26288,25785,25226,24617,23989,23329,22664,22013,21374,20779,20178,19621,19117,18661,18240,17865,17512,17227,16969,16714,16513,16313,16113,15923,15741,15581,15440,15312,15221,15145,15073,15035,15005,15024,15009,15035,15069,15100,15132,15171,15213,15269,15296,15305,15313,15317,15332,15359,15339,15325,15286,15225,15165,15090,14995,14907,14760,14613,14429,14251,14050,13829,13582,13328,13060,12772,12469,12185,11893,11593,11325,11081,10834,10597,10321,10014,9702,9387,9112,8864,8663,8480,8317,8181,8097,8002,7935,7886,7821,7723,7580,7421,7264,7147,7026,6935,6845,6781,6725,6688,6677,6657,6626,6622,6658,6637,6469,6178,5749,5124,21.8,21.8,22.2,1567446,0.2,12.3,11.9,5.0,591,-1.00,-1.00,57.5863,-19.055066,0.000523,,,,,119 +SATSLF0720,2024246,0.759874,4.09,0.0573,0.1010,0.0173,0.00,16206,653,1,707,689,703,702,710,727,725,720,743,737,738,756,773,887,1209,1938,3130,4514,5761,6695,7339,7827,8253,8709,9227,9872,10602,11484,12477,13600,14773,15949,17053,18023,18761,19181,19333,19140,18756,18213,17617,17052,16584,16224,15995,15940,16004,16248,16665,17261,18009,18917,19981,21221,22532,23988,25480,26979,28394,29634,30645,31412,31802,31786,31488,30834,29898,28838,27594,26429,25250,24164,23175,22301,21565,20955,20471,20075,19785,19621,19537,19553,19644,19822,20096,20453,20869,21405,21972,22592,23254,23899,24521,25101,25572,25953,26212,26267,26148,25865,25379,24752,24022,23205,22339,21445,20612,19834,19130,18461,17901,17424,17033,16690,16451,16279,16173,16139,16149,16231,16405,16633,16922,17291,17732,18218,18801,19414,20051,20726,21449,22205,22949,23664,24365,25035,25635,26205,26624,26950,27184,27307,27314,27216,26993,26677,26277,25774,25195,24616,23978,23337,22672,22005,21383,20756,20174,19598,19111,18631,18228,17855,17522,17229,16956,16713,16516,16312,16118,15910,15734,15561,15427,15330,15214,15146,15053,15011,14998,14998,15011,15037,15057,15097,15150,15169,15219,15285,15278,15287,15298,15298,15322,15340,15339,15321,15274,15214,15152,15095,15009,14909,14775,14619,14445,14235,14027,13831,13581,13321,13058,12792,12486,12189,11885,11593,11327,11058,10827,10593,10334,10029,9706,9395,9102,8857,8654,8482,8325,8189,8098,8021,7950,7898,7817,7737,7579,7417,7249,7131,7016,6927,6841,6775,6731,6693,6661,6641,6622,6613,6635,6632,6482,6179,5748,5129,21.8,21.9,22.4,1567447,0.0,12.3,11.9,5.0,493,-1.00,-1.00,57.3224,-18.940859,0.000534,,,,,119 +SATSLF0720,2024246,0.760133,3.90,0.0546,0.1007,0.0168,0.00,16213,653,1,702,706,711,716,699,703,719,710,717,713,727,718,756,872,1206,1941,3109,4493,5771,6708,7354,7845,8267,8707,9223,9845,10594,11481,12473,13601,14780,15947,17063,18034,18776,19204,19339,19168,18775,18237,17642,17065,16597,16237,16002,15929,16013,16267,16667,17248,18016,18921,19991,21220,22536,24005,25465,26971,28401,29653,30667,31418,31819,31821,31496,30851,29921,28857,27619,26421,25242,24153,23165,22312,21576,20969,20484,20089,19796,19639,19548,19564,19652,19851,20106,20458,20893,21418,21986,22614,23300,23936,24557,25129,25605,25977,26229,26277,26164,25885,25392,24756,24021,23203,22330,21465,20618,19828,19127,18461,17912,17444,17040,16703,16451,16293,16183,16128,16154,16245,16416,16656,16946,17321,17750,18244,18800,19410,20063,20730,21450,22211,22954,23680,24398,25045,25653,26213,26653,26964,27200,27298,27323,27229,27021,26708,26300,25789,25234,24630,23998,23340,22675,22004,21387,20754,20166,19609,19110,18635,18231,17849,17530,17232,16958,16715,16517,16302,16113,15924,15735,15577,15435,15313,15228,15141,15058,15043,15017,15001,15013,15047,15067,15104,15142,15164,15211,15275,15277,15287,15306,15309,15325,15342,15351,15352,15290,15226,15168,15088,15000,14927,14778,14631,14454,14251,14053,13831,13579,13321,13053,12780,12491,12178,11891,11604,11335,11082,10835,10589,10329,10034,9701,9393,9121,8866,8653,8484,8306,8183,8096,8001,7942,7872,7821,7733,7592,7418,7270,7136,7031,6921,6837,6784,6715,6672,6665,6650,6630,6632,6638,6647,6485,6187,5755,5139,21.9,21.8,22.4,1567448,0.0,12.3,12.0,5.0,476,-1.00,-1.00,57.8345,-19.161134,0.000540,,,,,49 +SATSLF0720,2024246,0.760385,4.18,0.0585,0.1016,0.0175,0.00,16185,653,1,697,694,706,710,718,719,729,713,713,707,735,740,772,880,1215,1943,3118,4494,5742,6672,7324,7811,8240,8677,9215,9836,10573,11464,12466,13578,14749,15920,17031,17993,18717,19159,19297,19108,18715,18179,17591,17020,16561,16191,15990,15912,15982,16237,16642,17235,17969,18886,19961,21193,22500,23958,25445,26929,28360,29608,30614,31373,31765,31756,31430,30789,29861,28790,27555,26368,25213,24134,23121,22263,21540,20922,20425,20051,19772,19604,19511,19517,19610,19809,20075,20413,20854,21384,21954,22576,23241,23889,24498,25073,25558,25901,26179,26233,26109,25828,25354,24709,23997,23186,22312,21443,20599,19817,19107,18446,17874,17415,16985,16667,16427,16244,16151,16106,16126,16225,16388,16625,16916,17288,17720,18219,18770,19383,19997,20701,21425,22173,22912,23629,24333,25003,25614,26170,26600,26907,27156,27256,27257,27188,26980,26645,26251,25762,25177,24599,23949,23298,22647,21982,21329,20727,20110,19563,19064,18601,18199,17835,17492,17219,16930,16704,16507,16305,16113,15902,15712,15552,15400,15293,15198,15117,15037,15003,14990,14985,14993,15033,15048,15071,15117,15136,15190,15255,15257,15269,15273,15288,15296,15325,15337,15309,15259,15199,15145,15082,14982,14903,14748,14599,14429,14237,14039,13801,13570,13306,13040,12749,12456,12165,11865,11579,11315,11063,10817,10581,10315,9997,9675,9371,9093,8850,8630,8475,8312,8194,8081,8002,7934,7885,7813,7725,7592,7409,7249,7123,7012,6916,6836,6781,6724,6675,6667,6646,6631,6608,6639,6633,6482,6174,5761,5130,21.9,21.9,22.4,1567449,0.2,12.3,12.0,5.0,476,-1.00,-1.00,57.1312,-18.834831,0.000579,,,,,113 +SATSLF0720,2024246,0.760636,4.01,0.0562,0.1021,0.0174,0.00,16179,653,1,707,703,705,706,716,717,722,713,725,730,737,743,775,884,1214,1941,3104,4494,5746,6677,7326,7813,8253,8693,9215,9842,10577,11448,12437,13549,14735,15915,17026,17984,18712,19159,19291,19094,18723,18182,17579,17016,16556,16191,15966,15909,15965,16213,16641,17214,17961,18873,19943,21157,22485,23926,25408,26905,28333,29590,30590,31328,31737,31744,31421,30756,29837,28776,27537,26347,25196,24122,23117,22258,21515,20900,20421,20030,19735,19588,19486,19514,19614,19803,20049,20402,20848,21358,21936,22554,23238,23872,24490,25072,25534,25890,26160,26206,26105,25812,25340,24701,23976,23165,22285,21423,20563,19801,19080,18443,17883,17402,16999,16680,16430,16249,16132,16107,16119,16231,16384,16599,16903,17269,17698,18189,18768,19369,20003,20702,21425,22158,22912,23625,24336,25009,25597,26165,26586,26898,27155,27261,27281,27176,26949,26622,26221,25721,25160,24576,23926,23282,22621,21975,21329,20724,20114,19561,19066,18604,18185,17805,17499,17185,16931,16693,16503,16293,16102,15908,15715,15538,15397,15281,15172,15106,15031,14998,14979,14995,15005,15033,15040,15080,15120,15146,15181,15243,15254,15261,15287,15282,15314,15321,15334,15318,15259,15218,15149,15084,14986,14893,14745,14604,14421,14235,14030,13804,13565,13303,13032,12755,12451,12179,11866,11595,11315,11065,10825,10585,10326,10005,9702,9378,9093,8843,8636,8464,8310,8180,8085,8003,7921,7887,7827,7735,7585,7429,7253,7139,7016,6914,6823,6773,6709,6681,6659,6646,6637,6637,6633,6643,6490,6181,5738,5121,21.9,21.9,22.4,1567450,0.5,12.4,11.9,5.0,467,-1.00,-1.00,57.5825,-19.007099,0.000559,,,,,170 +SATSLF0720,2024246,0.760893,4.11,0.0576,0.1018,0.0178,0.00,16184,653,1,721,705,715,705,727,714,721,722,740,728,741,745,779,893,1208,1931,3111,4491,5752,6689,7365,7817,8252,8693,9207,9831,10577,11463,12461,13561,14763,15925,17044,17995,18722,19156,19285,19093,18714,18181,17593,17028,16553,16203,15984,15892,15982,16229,16634,17222,17963,18875,19952,21153,22481,23943,25429,26901,28339,29587,30596,31349,31738,31744,31419,30747,29840,28773,27543,26354,25195,24109,23119,22275,21524,20917,20435,20045,19764,19593,19499,19506,19605,19808,20071,20421,20846,21368,21941,22547,23224,23873,24496,25058,25544,25908,26176,26213,26098,25818,25350,24701,23971,23176,22293,21426,20579,19804,19105,18440,17897,17413,16999,16679,16425,16256,16150,16092,16129,16210,16384,16609,16906,17280,17713,18192,18763,19376,20020,20699,21433,22178,22914,23622,24334,25007,25597,26161,26587,26890,27147,27265,27272,27182,26965,26648,26244,25764,25173,24585,23946,23305,22640,21977,21336,20727,20124,19578,19078,18599,18198,17826,17499,17224,16949,16715,16500,16295,16103,15898,15717,15543,15400,15275,15195,15129,15048,15010,14993,14997,14993,15017,15042,15065,15112,15146,15209,15275,15271,15291,15290,15287,15308,15318,15307,15289,15265,15197,15136,15085,14998,14891,14762,14613,14442,14240,14033,13817,13573,13303,13043,12765,12475,12181,11887,11605,11332,11078,10825,10587,10314,10009,9696,9365,9089,8839,8633,8467,8289,8179,8087,8009,7923,7891,7814,7741,7586,7415,7271,7137,7017,6910,6833,6768,6718,6677,6663,6655,6629,6629,6655,6625,6494,6189,5776,5150,21.9,21.9,22.5,1567451,0.0,12.3,11.9,5.0,473,-1.00,-1.00,57.1697,-18.837557,0.000529,,,,,214 +SATSLF0720,2024246,0.761145,4.16,0.0583,0.1026,0.0184,0.00,16153,653,1,711,723,716,717,722,715,725,724,727,731,733,749,786,889,1213,1942,3106,4482,5739,6656,7310,7786,8231,8679,9197,9810,10571,11434,12418,13534,14718,15886,16994,17944,18665,19112,19243,19052,18667,18125,17551,17002,16530,16157,15936,15875,15946,16197,16593,17181,17922,18846,19914,21136,22441,23906,25376,26860,28269,29529,30517,31265,31683,31668,31342,30702,29774,28739,27492,26304,25138,24070,23073,22209,21463,20864,20391,19989,19705,19555,19466,19477,19578,19761,20039,20392,20810,21328,21899,22509,23165,23813,24433,25022,25492,25866,26129,26171,26053,25780,25299,24669,23953,23146,22271,21393,20525,19755,19061,18400,17842,17385,16976,16643,16403,16224,16120,16075,16109,16197,16349,16577,16884,17250,17684,18169,18722,19340,19965,20651,21383,22125,22874,23582,24285,24946,25545,26093,26533,26869,27114,27213,27243,27146,26924,26589,26192,25681,25112,24529,23877,23239,22594,21933,21298,20698,20116,19529,19049,18554,18165,17793,17467,17169,16908,16679,16471,16275,16084,15877,15702,15529,15381,15271,15177,15093,15018,14976,14976,14965,14967,14995,15003,15048,15098,15126,15174,15225,15235,15252,15254,15267,15280,15301,15290,15277,15220,15161,15113,15033,14960,14857,14727,14586,14424,14230,14023,13793,13565,13293,13023,12733,12449,12152,11861,11589,11297,11047,10806,10568,10311,10000,9683,9364,9085,8840,8628,8450,8315,8165,8083,7993,7923,7884,7809,7718,7575,7409,7241,7117,7005,6901,6825,6754,6710,6685,6657,6653,6619,6631,6616,6614,6466,6167,5737,5126,21.9,21.9,22.5,1567452,0.2,12.3,12.0,5.0,471,-1.00,-1.00,57.2420,-18.831819,0.000516,,,,,50 +SATSLF0720,2024246,0.761401,4.02,0.0563,0.1031,0.0180,0.00,16145,653,1,714,701,698,703,716,698,719,715,719,721,723,740,767,891,1210,1930,3096,4464,5717,6661,7309,7786,8195,8653,9173,9797,10544,11409,12402,13508,14693,15853,16972,17913,18638,19075,19217,19026,18670,18135,17544,16985,16522,16157,15925,15845,15925,16176,16577,17165,17913,18813,19885,21105,22406,23862,25332,26827,28246,29504,30505,31259,31645,31639,31317,30677,29754,28713,27482,26306,25125,24055,23045,22194,21445,20847,20357,19981,19692,19525,19443,19460,19563,19764,20021,20370,20793,21318,21864,22480,23158,23819,24443,25021,25488,25849,26106,26166,26048,25772,25291,24647,23930,23133,22245,21387,20528,19768,19057,18398,17838,17355,16956,16627,16386,16223,16106,16069,16093,16190,16369,16581,16887,17248,17689,18166,18729,19341,19973,20652,21380,22127,22862,23573,24289,24954,25556,26120,26556,26868,27105,27201,27211,27116,26888,26565,26167,25682,25147,24525,23895,23253,22589,21923,21307,20697,20100,19538,19033,18561,18164,17803,17470,17173,16908,16673,16472,16264,16070,15893,15701,15517,15389,15268,15172,15085,15014,14986,14957,14961,14969,14998,15010,15054,15093,15109,15166,15218,15239,15262,15253,15267,15290,15298,15293,15280,15239,15186,15129,15059,14967,14874,14736,14584,14414,14219,14018,13799,13562,13298,13025,12742,12446,12149,11847,11562,11294,11037,10806,10564,10306,10008,9673,9367,9086,8839,8613,8447,8309,8169,8078,7986,7923,7869,7801,7710,7575,7403,7249,7106,7009,6909,6818,6758,6714,6663,6654,6641,6629,6627,6632,6631,6472,6162,5745,5129,21.9,21.9,22.6,1567453,0.0,12.4,12.0,5.0,473,-1.00,-1.00,57.9104,-19.095130,0.000450,,,,,23 +SATSLF0720,2024246,0.761655,4.09,0.0572,0.1037,0.0189,0.00,16128,653,1,706,706,711,715,721,709,726,736,726,727,733,733,755,871,1202,1939,3093,4475,5742,6674,7305,7799,8228,8673,9176,9798,10542,11399,12392,13517,14682,15843,16960,17915,18644,19072,19207,19023,18644,18116,17540,16980,16506,16135,15912,15835,15930,16173,16571,17143,17893,18809,19859,21089,22409,23840,25335,26826,28237,29478,30475,31227,31620,31627,31301,30654,29733,28689,27458,26247,25094,24030,23021,22165,21440,20847,20342,19975,19674,19510,19419,19421,19522,19709,19986,20338,20765,21291,21867,22468,23137,23801,24409,24980,25466,25830,26090,26128,26009,25719,25264,24617,23892,23104,22224,21358,20505,19749,19046,18381,17815,17351,16939,16628,16365,16188,16100,16053,16092,16186,16316,16548,16849,17214,17640,18129,18699,19311,19947,20644,21362,22103,22853,23549,24256,24903,25501,26075,26500,26821,27049,27171,27178,27090,26871,26552,26141,25659,25096,24519,23862,23223,22565,21905,21262,20667,20073,19501,19020,18528,18134,17760,17432,17151,16880,16638,16437,16228,16037,15842,15656,15488,15366,15248,15140,15078,15002,14972,14942,14933,14947,14962,14990,15037,15077,15106,15148,15204,15200,15227,15245,15246,15261,15289,15290,15275,15220,15159,15097,15021,14934,14855,14710,14559,14398,14203,13993,13769,13531,13270,12996,12709,12435,12132,11846,11563,11291,11025,10798,10566,10292,9995,9661,9356,9069,8829,8616,8448,8296,8155,8056,7985,7913,7868,7797,7715,7570,7393,7248,7116,7001,6903,6825,6748,6712,6658,6634,6632,6610,6593,6627,6617,6457,6147,5731,5114,21.9,21.9,22.6,1567454,0.6,12.3,12.0,5.0,470,-1.00,-1.00,57.5459,-18.928197,0.000528,,,,,132 +SATSLF0720,2024246,0.761908,4.13,0.0578,0.1030,0.0185,0.00,16148,653,1,692,707,710,704,702,713,702,715,729,729,734,737,778,878,1209,1938,3109,4505,5745,6669,7324,7797,8216,8662,9174,9794,10546,11414,12408,13518,14704,15876,16976,17939,18657,19086,19224,19041,18665,18128,17558,16985,16533,16157,15921,15857,15924,16172,16582,17175,17906,18817,19889,21113,22437,23899,25363,26845,28256,29506,30505,31259,31643,31651,31318,30661,29755,28705,27466,26301,25110,24043,23047,22185,21469,20842,20366,19974,19703,19538,19447,19450,19545,19735,19993,20360,20793,21313,21891,22494,23170,23810,24430,25005,25485,25842,26120,26160,26053,25764,25297,24648,23926,23124,22255,21376,20529,19753,19051,18398,17847,17361,16961,16644,16381,16231,16137,16095,16121,16206,16359,16575,16871,17229,17659,18149,18710,19341,19977,20678,21402,22146,22874,23592,24297,24949,25527,26112,26529,26852,27106,27221,27221,27142,26914,26587,26195,25697,25138,24541,23897,23235,22600,21923,21290,20676,20089,19533,19041,18569,18169,17794,17463,17185,16921,16666,16465,16256,16073,15876,15699,15514,15379,15252,15168,15088,15035,14986,14965,14957,14969,15005,15017,15063,15104,15127,15187,15222,15255,15250,15268,15271,15282,15303,15301,15293,15246,15185,15111,15057,14965,14862,14722,14584,14426,14226,14017,13804,13565,13288,13027,12741,12435,12151,11848,11569,11294,11049,10814,10579,10309,10018,9690,9377,9088,8849,8638,8465,8301,8167,8082,8004,7929,7871,7815,7715,7595,7413,7244,7123,6999,6922,6834,6769,6712,6681,6645,6642,6624,6623,6640,6625,6481,6176,5741,5125,21.9,22.0,22.6,1567455,0.3,12.3,12.0,5.0,469,-1.00,-1.00,57.3479,-18.862176,0.000543,,,,,26 +SATSLF0720,2024246,0.762163,4.25,0.0595,0.1051,0.0191,0.00,16096,653,1,713,722,714,708,710,715,726,730,734,740,739,743,778,897,1197,1931,3103,4475,5725,6658,7297,7774,8200,8637,9153,9753,10515,11389,12381,13486,14680,15832,16936,17875,18596,19024,19144,18961,18600,18074,17477,16918,16452,16089,15879,15794,15866,16119,16531,17109,17860,18773,19821,21031,22359,23789,25271,26741,28157,29402,30404,31141,31545,31540,31201,30551,29648,28590,27353,26183,25012,23959,22965,22114,21381,20794,20304,19914,19623,19457,19358,19389,19481,19673,19947,20296,20730,21234,21787,22423,23085,23735,24352,24928,25415,25757,26029,26098,25966,25688,25190,24563,23848,23041,22176,21303,20466,19689,18995,18336,17787,17325,16912,16599,16348,16166,16083,16026,16050,16161,16306,16534,16832,17184,17604,18091,18651,19280,19909,20594,21329,22075,22813,23520,24210,24869,25453,26023,26432,26769,26998,27112,27117,27042,26821,26493,26112,25616,25053,24461,23821,23169,22513,21856,21231,20615,20022,19484,18970,18499,18106,17751,17418,17119,16855,16610,16407,16203,16028,15828,15637,15488,15334,15231,15136,15048,14980,14935,14913,14914,14921,14950,14979,14999,15039,15069,15122,15169,15187,15202,15217,15221,15238,15257,15259,15252,15202,15147,15093,15020,14915,14827,14681,14516,14352,14166,13950,13755,13520,13251,13013,12712,12405,12127,11828,11532,11264,11008,10781,10549,10281,9986,9656,9356,9057,8803,8593,8410,8279,8151,8058,7977,7901,7853,7788,7706,7557,7383,7230,7106,7001,6891,6821,6747,6697,6658,6625,6624,6612,6599,6622,6612,6471,6162,5728,5109,21.9,22.0,22.6,1567456,0.1,12.3,11.9,5.0,472,-1.00,-1.00,57.0607,-18.673716,0.000563,,,,,194 +SATSLF0720,2024246,0.762417,4.13,0.0579,0.1047,0.0191,0.00,16103,653,1,706,714,722,711,725,730,734,732,728,738,729,747,777,893,1219,1927,3098,4467,5707,6637,7290,7771,8192,8645,9141,9760,10509,11382,12357,13461,14631,15805,16916,17872,18577,19024,19140,18964,18581,18057,17461,16909,16465,16085,15874,15792,15875,16120,16518,17109,17850,18746,19820,21020,22347,23784,25252,26734,28149,29404,30388,31143,31546,31541,31218,30570,29653,28598,27361,26194,25040,23968,22965,22114,21390,20784,20297,19920,19636,19483,19374,19394,19490,19684,19955,20285,20717,21237,21805,22425,23098,23761,24372,24948,25421,25774,26041,26080,25962,25675,25211,24567,23849,23056,22187,21321,20482,19717,19014,18361,17803,17349,16910,16601,16353,16160,16075,16024,16059,16145,16306,16536,16835,17200,17630,18116,18685,19289,19937,20608,21333,22077,22812,23525,24229,24885,25465,26037,26455,26793,27029,27132,27158,27058,26843,26492,26107,25616,25061,24469,23826,23187,22538,21873,21243,20640,20040,19485,19003,18541,18129,17742,17427,17128,16868,16632,16422,16217,16021,15844,15657,15485,15370,15238,15141,15065,15005,14952,14926,14925,14945,14953,14995,15018,15066,15093,15137,15203,15212,15231,15229,15244,15258,15271,15288,15273,15211,15159,15091,15013,14929,14842,14706,14569,14384,14187,13987,13765,13523,13258,12987,12707,12417,12133,11819,11539,11268,11025,10789,10552,10281,9983,9671,9357,9077,8842,8632,8450,8298,8171,8062,7986,7920,7870,7790,7700,7564,7383,7239,7114,6996,6896,6826,6751,6711,6658,6646,6638,6613,6594,6631,6612,6462,6167,5741,5131,21.9,22.0,22.6,1567457,0.2,12.3,12.0,5.0,462,-1.00,-1.00,57.7451,-18.960050,0.000527,,,,,177 +SATSLF0720,2024246,0.762672,4.02,0.0563,0.1055,0.0201,0.00,16078,653,1,689,689,697,696,701,712,718,711,715,723,731,730,767,889,1206,1933,3081,4478,5716,6632,7284,7758,8163,8608,9138,9742,10487,11355,12351,13466,14645,15797,16914,17858,18577,19009,19141,18965,18578,18057,17444,16897,16444,16067,15861,15789,15861,16111,16514,17101,17835,18721,19799,21008,22318,23769,25237,26709,28120,29380,30368,31112,31501,31516,31202,30553,29633,28578,27357,26173,25013,23952,22957,22096,21366,20749,20275,19875,19595,19441,19339,19367,19459,19655,19927,20272,20705,21210,21776,22373,23051,23692,24320,24897,25379,25739,26016,26068,25934,25655,25184,24542,23822,23029,22150,21277,20443,19674,18965,18323,17771,17309,16893,16586,16333,16167,16055,16012,16029,16128,16276,16503,16789,17172,17593,18083,18635,19267,19880,20565,21287,22043,22773,23485,24185,24845,25423,25997,26421,26727,26992,27078,27102,26997,26789,26459,26064,25577,25010,24426,23795,23132,22507,21829,21210,20604,19994,19453,18961,18477,18077,17724,17394,17108,16832,16592,16396,16181,15995,15805,15635,15465,15329,15210,15115,15036,14957,14909,14890,14887,14925,14941,14952,14998,15029,15069,15106,15162,15172,15186,15188,15203,15217,15246,15254,15241,15182,15115,15059,15000,14896,14807,14676,14513,14346,14149,13953,13730,13490,13235,12969,12689,12409,12105,11819,11532,11261,11022,10784,10557,10274,9971,9648,9329,9056,8813,8611,8425,8282,8137,8055,7988,7899,7841,7776,7689,7549,7385,7218,7095,6984,6890,6797,6740,6685,6650,6629,6633,6610,6599,6605,6590,6435,6134,5731,5111,21.9,22.1,22.6,1567457,0.4,12.3,11.9,5.0,472,-1.00,-1.00,58.1162,-19.100473,0.000512,,,,,10 +SATSLF0720,2024246,0.762928,4.22,0.0591,0.1058,0.0199,0.00,16062,653,1,711,710,730,718,715,721,718,723,727,730,741,745,778,893,1217,1943,3101,4464,5693,6615,7252,7734,8153,8580,9108,9725,10482,11329,12328,13437,14611,15766,16867,17816,18524,18962,19084,18901,18525,18011,17412,16861,16402,16042,15814,15745,15827,16071,16490,17065,17800,18713,19764,20978,22290,23735,25186,26668,28078,29323,30317,31064,31461,31450,31132,30489,29577,28533,27300,26124,24976,23916,22918,22058,21325,20730,20250,19857,19569,19425,19329,19341,19442,19633,19899,20242,20681,21200,21760,22394,23045,23689,24303,24861,25350,25712,25972,26020,25895,25617,25153,24517,23799,22999,22134,21281,20420,19653,18943,18311,17752,17291,16883,16567,16323,16137,16033,15990,16010,16092,16256,16499,16797,17163,17584,18067,18628,19235,19865,20557,21272,22033,22762,23479,24171,24825,25416,25978,26401,26727,26962,27055,27079,26985,26781,26445,26052,25553,24999,24404,23769,23137,22477,21815,21181,20581,19986,19449,18944,18488,18077,17709,17379,17089,16819,16602,16381,16187,15981,15815,15617,15458,15319,15197,15098,15031,14939,14917,14897,14902,14902,14932,14949,14976,15010,15048,15097,15165,15173,15189,15192,15201,15233,15250,15233,15237,15192,15136,15065,14993,14906,14813,14672,14523,14344,14147,13948,13744,13498,13221,12961,12682,12391,12111,11806,11536,11265,11017,10761,10532,10261,9955,9610,9327,9031,8805,8592,8424,8269,8141,8051,7977,7897,7855,7777,7699,7550,7362,7202,7082,6961,6880,6793,6730,6695,6656,6635,6621,6603,6594,6608,6597,6452,6149,5720,5108,21.9,22.0,22.6,1567458,0.0,12.3,11.9,5.0,470,-1.00,-1.00,57.8291,-18.948756,0.000530,,,,,112 +SATSLF0720,2024246,0.763181,4.15,0.0581,0.1052,0.0191,0.00,16092,653,1,703,712,723,714,723,713,719,723,729,737,749,749,784,905,1206,1931,3107,4473,5717,6629,7280,7757,8177,8633,9141,9768,10501,11368,12347,13467,14639,15786,16898,17861,18561,18994,19133,18957,18565,18048,17450,16899,16437,16075,15837,15781,15869,16114,16505,17095,17836,18745,19797,21019,22333,23784,25256,26716,28123,29383,30360,31124,31525,31525,31200,30540,29627,28596,27365,26174,25021,23946,22934,22083,21361,20765,20281,19893,19594,19459,19354,19383,19477,19670,19929,20274,20721,21238,21801,22421,23082,23725,24350,24909,25393,25749,26003,26065,25955,25666,25191,24569,23854,23046,22179,21312,20465,19693,19003,18344,17789,17289,16903,16594,16326,16167,16052,16025,16045,16133,16296,16525,16817,17178,17601,18085,18657,19280,19914,20594,21318,22076,22809,23523,24225,24865,25453,26015,26443,26772,26998,27105,27129,27035,26819,26493,26101,25604,25041,24464,23806,23177,22505,21851,21213,20592,20023,19461,18980,18515,18109,17751,17413,17112,16843,16612,16403,16210,16019,15819,15655,15480,15335,15217,15125,15054,14983,14945,14932,14926,14931,14959,14961,15008,15058,15081,15126,15179,15192,15206,15223,15241,15241,15275,15261,15251,15200,15130,15090,14996,14929,14837,14701,14560,14377,14187,13974,13762,13528,13261,13000,12711,12422,12125,11838,11542,11285,11030,10785,10561,10285,9985,9668,9364,9073,8823,8602,8441,8276,8148,8043,7979,7908,7857,7798,7717,7561,7396,7234,7099,6990,6881,6799,6753,6706,6661,6633,6637,6621,6607,6613,6614,6454,6152,5732,5114,21.9,22.1,22.7,1567459,0.4,12.3,11.9,5.0,466,-1.00,-1.00,57.8965,-19.013353,0.000535,,,,,183 +SATSLF0720,2024246,0.763432,4.24,0.0594,0.1058,0.0199,0.00,16070,653,1,723,717,723,718,724,727,721,726,725,733,739,726,775,880,1201,1915,3081,4461,5706,6633,7284,7761,8162,8610,9122,9741,10478,11339,12337,13442,14594,15767,16861,17810,18519,18963,19094,18920,18549,18005,17424,16866,16404,16058,15827,15760,15837,16084,16485,17066,17817,18708,19773,20973,22295,23718,25197,26666,28080,29325,30317,31074,31446,31463,31124,30474,29561,28522,27304,26122,24965,23909,22921,22059,21333,20736,20247,19864,19569,19414,19326,19354,19442,19648,19898,20250,20689,21206,21780,22394,23049,23712,24309,24882,25357,25720,25991,26044,25916,25645,25160,24535,23828,23018,22167,21282,20439,19667,18961,18315,17757,17298,16877,16576,16308,16147,16040,15994,16002,16116,16277,16501,16801,17165,17584,18077,18652,19256,19890,20576,21301,22039,22778,23494,24169,24835,25409,25975,26402,26740,26969,27074,27101,26995,26795,26454,26050,25571,25004,24408,23789,23148,22489,21833,21203,20593,19997,19455,18964,18487,18083,17713,17401,17117,16837,16603,16389,16199,16010,15812,15625,15458,15336,15209,15106,15041,14963,14928,14897,14897,14907,14939,14954,14997,15042,15059,15125,15175,15191,15194,15201,15198,15229,15242,15239,15245,15191,15124,15066,14995,14910,14817,14682,14536,14353,14167,13937,13739,13509,13238,12995,12709,12421,12125,11826,11533,11258,11014,10758,10535,10278,9970,9641,9333,9046,8806,8605,8445,8283,8146,8060,7973,7913,7841,7786,7686,7551,7369,7225,7101,6981,6890,6816,6752,6691,6657,6638,6617,6596,6603,6617,6612,6457,6151,5726,5119,21.9,22.1,22.7,1567460,0.0,12.4,12.0,5.0,470,-1.00,-1.00,57.3687,-18.754828,0.000496,,,,,55 +SATSLF0720,2024246,0.763687,4.27,0.0598,0.1059,0.0201,0.00,16060,653,1,701,702,706,709,720,730,737,741,735,741,743,748,779,895,1210,1945,3090,4459,5696,6611,7252,7737,8136,8595,9105,9717,10446,11336,12309,13422,14592,15736,16851,17785,18507,18944,19074,18893,18514,17995,17399,16855,16400,16039,15809,15751,15821,16073,16477,17047,17780,18695,19749,20968,22278,23711,25181,26656,28053,29309,30294,31050,31445,31437,31121,30458,29547,28515,27266,26108,24951,23901,22890,22054,21317,20714,20243,19846,19571,19412,19324,19321,19425,19624,19886,20218,20660,21166,21755,22349,23043,23701,24293,24896,25352,25714,25975,26029,25896,25606,25140,24509,23801,22996,22131,21267,20424,19652,18949,18298,17741,17275,16862,16558,16313,16139,16039,15992,16023,16108,16272,16501,16795,17168,17585,18077,18651,19242,19878,20560,21275,22013,22733,23463,24165,24813,25405,25965,26417,26714,26967,27074,27085,26987,26773,26442,26061,25574,24990,24410,23773,23125,22472,21817,21192,20581,19984,19426,18951,18468,18075,17715,17392,17104,16841,16597,16394,16183,15985,15811,15617,15434,15300,15181,15092,15012,14955,14903,14899,14903,14902,14921,14951,14986,15028,15060,15103,15149,15164,15185,15200,15204,15223,15243,15259,15242,15191,15127,15057,14989,14913,14812,14667,14532,14349,14165,13950,13746,13511,13245,12985,12694,12401,12116,11815,11530,11269,11015,10776,10538,10263,9980,9654,9351,9065,8813,8604,8430,8272,8136,8043,7955,7891,7848,7773,7683,7559,7386,7229,7090,6983,6885,6805,6737,6680,6655,6626,6617,6601,6596,6621,6615,6455,6141,5723,5105,21.9,22.1,22.7,1567461,0.6,12.3,12.0,5.0,461,-1.00,-1.00,57.5559,-18.821937,0.000530,,,,,159 +SATSLF0720,2024246,0.763943,4.20,0.0589,0.1063,0.0199,0.00,16052,653,1,712,709,706,707,719,711,727,726,728,739,729,727,775,882,1191,1931,3093,4456,5691,6615,7262,7733,8142,8573,9107,9718,10470,11330,12315,13425,14603,15750,16854,17797,18496,18940,19060,18880,18516,17981,17408,16841,16384,16023,15809,15725,15796,16045,16455,17036,17788,18688,19746,20960,22260,23696,25162,26637,28049,29296,30296,31033,31418,31417,31097,30445,29525,28490,27264,26087,24952,23868,22881,22034,21313,20693,20225,19844,19562,19412,19306,19322,19424,19605,19879,20226,20650,21173,21729,22342,23011,23658,24274,24832,25335,25689,25960,26018,25898,25609,25144,24498,23793,22989,22115,21256,20405,19637,18955,18293,17747,17263,16882,16537,16295,16138,16035,15981,16003,16107,16266,16488,16797,17149,17579,18062,18636,19250,19878,20553,21266,22006,22753,23444,24151,24808,25395,25965,26400,26709,26946,27045,27048,26976,26757,26425,26042,25569,24984,24390,23737,23107,22480,21805,21192,20576,19992,19422,18933,18454,18061,17705,17383,17094,16828,16585,16385,16176,15994,15809,15618,15456,15323,15201,15097,15026,14945,14914,14889,14897,14903,14917,14949,14997,15021,15055,15117,15165,15171,15195,15197,15202,15221,15240,15253,15238,15185,15120,15066,14971,14890,14800,14665,14517,14353,14152,13947,13729,13490,13227,12969,12680,12392,12117,11811,11529,11254,11001,10768,10522,10259,9966,9630,9347,9050,8803,8592,8435,8282,8148,8054,7969,7898,7844,7757,7681,7537,7356,7215,7108,6985,6897,6814,6750,6678,6642,6609,6605,6600,6582,6609,6607,6449,6141,5726,5115,21.9,22.1,22.8,1567462,0.0,12.3,11.9,5.0,471,-1.00,-1.00,57.8556,-18.936220,0.000592,,,,,32 +SATSLF0720,2024246,0.764195,4.26,0.0596,0.1063,0.0202,0.00,16050,653,1,716,717,724,721,722,706,719,721,725,721,736,734,774,893,1222,1925,3085,4466,5685,6619,7263,7738,8151,8597,9102,9738,10462,11335,12331,13418,14587,15740,16841,17787,18498,18934,19072,18894,18510,17992,17387,16845,16381,16027,15808,15729,15811,16066,16470,17048,17795,18688,19749,20956,22274,23708,25192,26649,28052,29290,30278,31041,31433,31429,31085,30455,29537,28489,27284,26114,24930,23881,22876,22027,21307,20704,20216,19844,19553,19396,19307,19320,19422,19620,19880,20203,20666,21178,21745,22363,23006,23662,24268,24858,25330,25697,25963,26013,25883,25620,25130,24503,23778,22990,22124,21242,20413,19645,18930,18291,17740,17271,16881,16563,16309,16142,16035,15976,16008,16085,16258,16476,16778,17145,17562,18055,18632,19237,19883,20554,21269,22005,22737,23451,24150,24811,25388,25938,26376,26689,26935,27044,27058,26969,26749,26424,26025,25543,24972,24391,23761,23115,22465,21808,21163,20567,19957,19427,18929,18458,18057,17691,17367,17090,16816,16576,16377,16161,15983,15774,15600,15431,15287,15188,15091,15017,14955,14923,14901,14901,14900,14921,14942,14974,15022,15042,15084,15144,15156,15172,15178,15189,15205,15240,15241,15224,15184,15123,15056,14978,14888,14811,14672,14501,14347,14153,13939,13719,13478,13231,12957,12681,12392,12100,11789,11515,11244,11001,10784,10546,10269,9964,9640,9317,9035,8804,8587,8427,8266,8135,8046,7963,7890,7836,7767,7675,7535,7360,7221,7084,6973,6881,6784,6729,6676,6632,6632,6618,6611,6601,6615,6604,6453,6147,5713,5098,21.9,22.1,22.8,1567463,0.0,12.3,11.9,5.0,468,-1.00,-1.00,57.7130,-18.883167,0.000531,,,,,127 +SATSLF0720,2024246,0.764450,4.18,0.0585,0.1064,0.0206,0.00,16043,653,1,727,719,722,716,736,717,729,723,724,723,734,745,772,889,1229,1945,3101,4471,5685,6624,7260,7736,8161,8599,9101,9726,10459,11331,12323,13431,14603,15763,16857,17787,18522,18947,19072,18888,18532,17981,17385,16849,16384,16019,15799,15728,15816,16055,16465,17040,17783,18685,19746,20964,22261,23681,25163,26635,28037,29271,30267,31008,31395,31405,31078,30442,29529,28475,27266,26085,24940,23860,22888,22021,21287,20673,20191,19817,19536,19392,19300,19309,19409,19609,19863,20203,20638,21174,21737,22349,23013,23664,24253,24843,25324,25674,25948,25997,25879,25605,25121,24483,23758,22969,22114,21257,20402,19648,18925,18286,17734,17259,16855,16537,16292,16123,16029,15978,16013,16105,16254,16485,16765,17124,17559,18021,18613,19217,19834,20535,21261,21994,22732,23434,24145,24780,25395,25940,26371,26692,26915,27041,27040,26938,26736,26409,26022,25525,24961,24378,23749,23104,22453,21810,21161,20551,19957,19406,18909,18448,18057,17689,17353,17074,16796,16565,16349,16157,15975,15797,15600,15434,15293,15175,15075,15013,14953,14901,14871,14871,14883,14898,14920,14973,15011,15034,15092,15156,15161,15168,15175,15190,15206,15229,15223,15202,15166,15097,15041,14959,14875,14785,14647,14495,14335,14140,13921,13721,13488,13220,12958,12672,12383,12084,11799,11517,11255,11005,10765,10529,10255,9943,9633,9324,9027,8790,8587,8422,8272,8149,8044,7961,7885,7841,7771,7690,7518,7367,7213,7078,6973,6871,6788,6720,6674,6632,6616,6597,6596,6584,6600,6595,6445,6143,5720,5109,21.9,22.1,22.8,1567464,0.3,12.3,12.0,5.0,458,-1.00,-1.00,57.6566,-18.847257,0.000519,,,,,59 +SATSDF0720,2024246,1.009138,0.00,0.0000,0.0000,0.0000,0.00,652,0,1,644,622,617,635,625,612,627,627,627,634,631,629,633,631,640,643,644,629,635,642,636,650,637,651,650,662,652,650,653,657,651,659,660,666,658,663,670,662,653,656,655,645,664,649,655,663,676,660,659,658,643,641,641,662,654,673,673,665,661,654,652,655,661,661,661,661,660,651,661,661,661,669,657,666,651,658,651,648,648,647,651,650,651,656,647,660,653,643,645,655,661,649,657,665,656,654,641,647,647,650,652,650,649,637,651,654,645,650,645,661,649,653,667,658,653,648,657,654,656,637,643,651,648,665,653,658,647,659,674,668,651,653,666,650,653,647,653,652,659,668,653,651,648,651,650,647,663,657,659,660,655,651,661,658,638,658,667,665,653,649,658,652,653,667,661,659,655,649,660,650,657,657,649,641,647,652,645,651,645,647,655,657,657,658,650,649,649,661,657,664,665,655,658,658,646,636,643,649,642,652,650,656,657,651,653,656,641,648,648,655,641,655,661,650,645,646,650,660,656,657,662,657,656,640,640,647,643,644,656,653,666,666,669,652,643,651,643,647,645,647,632,640,641,644,652,651,666,661,664,658,645,649,653,661,660,490,0.0,0.0,0.0,1567463,0.1,12.8,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,13 +SATSLF0720,2024246,1.009689,4.13,0.0578,0.1012,0.0178,0.00,16193,652,1,689,699,712,709,710,721,724,715,717,730,718,729,760,865,1189,1928,3114,4487,5768,6693,7347,7813,8247,8703,9217,9839,10592,11476,12473,13601,14787,15955,17072,18052,18757,19196,19333,19117,18740,18194,17618,17044,16584,16213,16003,15941,16018,16265,16667,17255,17992,18901,19966,21192,22511,23969,25449,26941,28376,29634,30628,31385,31782,31781,31451,30811,29878,28821,27573,26385,25229,24144,23144,22288,21552,20944,20448,20065,19773,19618,19524,19534,19632,19832,20085,20453,20880,21388,21955,22566,23243,23889,24494,25105,25566,25942,26219,26261,26149,25861,25362,24723,23995,23191,22301,21454,20590,19825,19120,18464,17913,17433,17015,16695,16428,16270,16161,16109,16145,16218,16396,16616,16921,17285,17708,18195,18762,19379,20010,20705,21450,22184,22942,23650,24359,25019,25616,26197,26606,26935,27191,27296,27304,27213,26973,26669,26258,25749,25180,24592,23953,23317,22660,21988,21361,20749,20146,19582,19093,18612,18203,17832,17500,17212,16944,16693,16505,16300,16109,15911,15734,15558,15420,15305,15214,15129,15057,15017,14996,14994,15005,15022,15046,15078,15112,15138,15171,15243,15269,15274,15289,15289,15315,15326,15324,15301,15258,15193,15133,15058,14963,14871,14747,14589,14422,14228,14017,13805,13568,13297,13033,12761,12465,12179,11868,11589,11308,11056,10816,10583,10318,10019,9690,9381,9101,8849,8633,8464,8304,8179,8087,7989,7911,7875,7809,7714,7572,7410,7264,7125,7015,6926,6844,6769,6711,6661,6659,6648,6631,6617,6621,6611,6461,6158,5733,5106,21.8,21.8,22.2,1567464,0.4,12.2,12.0,5.0,593,-1.00,-1.00,56.8469,-18.728293,0.000517,,,,,88 +SATSLF0720,2024246,1.009871,3.94,0.0552,0.1023,0.0187,0.00,16154,652,1,708,694,704,701,714,708,705,699,719,719,716,732,770,886,1225,1940,3123,4504,5761,6694,7345,7817,8224,8679,9219,9842,10587,11470,12460,13587,14768,15917,17032,17995,18726,19152,19291,19109,18723,18173,17589,17022,16541,16178,15962,15882,15965,16205,16614,17196,17956,18861,19920,21145,22459,23906,25396,26885,28298,29557,30541,31296,31691,31693,31377,30713,29792,28738,27501,26314,25164,24077,23092,22220,21480,20871,20398,20010,19726,19565,19478,19486,19569,19763,20025,20357,20807,21334,21892,22515,23185,23830,24448,25027,25496,25869,26122,26170,26045,25763,25286,24642,23914,23114,22227,21376,20513,19761,19057,18405,17854,17357,16963,16625,16394,16213,16122,16069,16099,16186,16344,16568,16868,17233,17662,18154,18713,19335,19972,20669,21381,22130,22867,23581,24298,24955,25551,26107,26530,26856,27101,27216,27210,27127,26901,26571,26178,25690,25117,24536,23891,23243,22584,21923,21299,20692,20085,19538,19049,18553,18157,17789,17457,17153,16896,16661,16456,16257,16053,15871,15696,15522,15381,15270,15170,15110,15021,14966,14963,14946,14961,14981,15001,15041,15088,15121,15161,15221,15226,15241,15244,15253,15258,15297,15294,15279,15234,15178,15105,15044,14950,14840,14714,14567,14396,14214,14004,13782,13547,13299,13027,12744,12443,12150,11843,11554,11277,11035,10792,10557,10306,10004,9687,9382,9085,8839,8627,8460,8297,8167,8066,7979,7928,7865,7809,7713,7566,7397,7243,7111,7004,6913,6829,6749,6707,6666,6648,6640,6605,6615,6623,6617,6461,6168,5732,5119,21.8,21.8,22.3,1567465,0.0,12.2,11.9,5.0,484,-1.00,-1.00,57.2915,-18.862558,0.000557,,,,,58 +SATSLF0720,2024246,1.010128,4.10,0.0574,0.1008,0.0169,0.00,16211,652,1,709,686,695,699,710,695,707,713,712,717,722,717,763,874,1209,1946,3121,4512,5764,6697,7353,7831,8250,8701,9233,9861,10606,11477,12475,13598,14786,15949,17075,18019,18750,19189,19313,19139,18760,18226,17637,17061,16612,16242,16005,15919,16013,16257,16663,17259,18013,18905,19989,21222,22538,23989,25479,26970,28402,29682,30669,31421,31829,31816,31486,30833,29898,28861,27600,26424,25248,24193,23193,22325,21578,20980,20470,20075,19792,19638,19542,19565,19650,19851,20110,20468,20896,21414,21985,22600,23286,23925,24542,25115,25597,25966,26228,26275,26150,25867,25393,24752,24016,23216,22347,21466,20630,19848,19136,18468,17917,17435,17035,16712,16459,16286,16184,16135,16167,16249,16410,16635,16936,17309,17728,18231,18800,19405,20043,20733,21460,22209,22957,23687,24390,25050,25641,26214,26641,26948,27194,27293,27319,27221,27012,26681,26279,25788,25202,24619,23989,23350,22680,22011,21379,20757,20161,19604,19106,18637,18231,17850,17549,17237,16967,16733,16521,16306,16123,15921,15725,15568,15429,15322,15213,15155,15073,15045,15034,15017,15011,15031,15043,15088,15119,15154,15216,15277,15284,15298,15289,15306,15322,15338,15341,15329,15281,15223,15163,15087,14999,14906,14763,14620,14437,14251,14055,13832,13594,13322,13045,12775,12487,12181,11895,11605,11328,11081,10818,10603,10329,10012,9699,9393,9117,8862,8656,8482,8324,8196,8101,8013,7939,7890,7809,7724,7563,7413,7269,7133,7019,6933,6842,6773,6721,6693,6669,6653,6645,6621,6631,6640,6487,6176,5765,5130,21.8,21.8,22.4,1567466,0.0,12.3,11.9,5.0,479,-1.00,-1.00,57.2719,-18.926021,0.000556,,,,,174 +SATSLF0720,2024246,1.010381,4.09,0.0573,0.1021,0.0173,0.00,16180,652,1,705,697,699,705,701,696,701,711,725,730,738,735,771,885,1201,1921,3094,4467,5719,6667,7319,7792,8219,8669,9198,9823,10570,11444,12434,13552,14739,15896,17008,17977,18704,19136,19267,19085,18720,18168,17580,17019,16549,16205,15965,15892,15973,16208,16630,17197,17957,18859,19937,21158,22484,23941,25429,26914,28343,29605,30574,31319,31743,31733,31418,30745,29837,28774,27556,26352,25179,24112,23116,22257,21513,20921,20417,20037,19746,19591,19485,19505,19605,19807,20058,20412,20855,21389,21950,22566,23213,23879,24482,25070,25550,25894,26184,26216,26111,25825,25352,24712,23985,23174,22299,21419,20577,19803,19079,18423,17876,17399,17003,16690,16436,16262,16146,16105,16125,16215,16372,16598,16896,17269,17698,18197,18754,19371,20010,20706,21441,22176,22930,23641,24340,25002,25605,26154,26578,26915,27169,27268,27280,27189,26971,26633,26244,25745,25173,24578,23958,23300,22637,21978,21347,20726,20134,19566,19076,18598,18208,17826,17513,17216,16945,16695,16502,16289,16100,15897,15722,15544,15403,15295,15200,15122,15051,15021,14990,14980,15011,15021,15046,15077,15106,15147,15186,15249,15269,15272,15277,15284,15321,15338,15340,15317,15272,15209,15149,15065,14984,14900,14760,14614,14437,14245,14041,13817,13565,13315,13037,12771,12465,12185,11887,11595,11305,11067,10824,10593,10317,10021,9694,9370,9093,8841,8631,8464,8317,8189,8103,8016,7945,7889,7812,7732,7577,7399,7250,7129,7013,6901,6831,6758,6715,6680,6671,6651,6639,6624,6641,6633,6474,6182,5749,5129,21.8,21.9,22.4,1567467,0.3,12.3,11.9,5.0,467,-1.00,-1.00,57.5385,-18.990853,0.000562,,,,,98 +SATSLF0720,2024246,1.010637,4.08,0.0571,0.1034,0.0188,0.00,16128,652,1,710,714,709,701,715,726,725,725,724,723,727,728,773,881,1217,1937,3109,4497,5740,6669,7321,7785,8224,8670,9186,9818,10556,11436,12429,13544,14715,15876,16994,17956,18662,19095,19232,19043,18664,18137,17555,16992,16530,16161,15931,15867,15927,16183,16592,17170,17915,18822,19896,21118,22425,23877,25369,26830,28245,29509,30497,31245,31651,31645,31329,30699,29781,28705,27480,26289,25120,24043,23052,22197,21467,20858,20370,19973,19686,19520,19431,19444,19544,19744,19992,20363,20789,21293,21872,22485,23144,23793,24408,24993,25460,25831,26090,26134,26016,25739,25249,24620,23902,23095,22217,21350,20501,19734,19030,18371,17803,17348,16929,16608,16370,16202,16109,16057,16081,16169,16328,16533,16832,17200,17634,18117,18698,19298,19930,20604,21342,22080,22813,23544,24245,24905,25493,26049,26485,26793,27047,27150,27157,27072,26858,26532,26134,25643,25081,24486,23847,23201,22546,21898,21262,20658,20074,19504,19001,18519,18118,17751,17427,17130,16870,16625,16425,16217,16035,15837,15666,15506,15359,15244,15141,15085,14993,14961,14933,14940,14939,14959,14985,15017,15052,15092,15137,15194,15200,15217,15229,15236,15248,15275,15274,15261,15223,15144,15099,15029,14922,14839,14695,14541,14378,14179,13988,13762,13529,13268,13006,12719,12427,12137,11818,11523,11263,11018,10776,10557,10283,9978,9683,9356,9069,8831,8610,8439,8285,8149,8067,7984,7906,7859,7794,7717,7562,7395,7229,7102,6986,6877,6811,6733,6680,6664,6633,6628,6612,6599,6619,6620,6467,6160,5724,5105,21.9,21.9,22.4,1567468,0.6,12.3,11.9,5.0,478,-1.00,-1.00,57.4359,-18.901406,0.000472,,,,,81 +SATSLF0720,2024246,1.010891,4.03,0.0565,0.1027,0.0185,0.00,16152,652,1,709,710,718,720,714,727,730,728,728,727,735,753,788,903,1229,1946,3134,4497,5755,6689,7338,7824,8229,8688,9197,9844,10585,11456,12459,13578,14757,15933,17041,18005,18717,19154,19291,19081,18711,18177,17585,17012,16558,16183,15954,15895,15965,16222,16625,17215,17949,18867,19936,21142,22473,23917,25381,26861,28289,29562,30565,31314,31717,31717,31387,30734,29809,28737,27517,26321,25157,24081,23080,22238,21504,20885,20420,20022,19718,19559,19462,19477,19573,19773,20029,20380,20814,21341,21892,22527,23177,23824,24425,25001,25496,25845,26110,26166,26044,25779,25294,24660,23928,23142,22266,21386,20529,19763,19036,18393,17843,17370,16965,16642,16395,16228,16122,16081,16082,16176,16347,16586,16865,17234,17664,18148,18714,19325,19966,20646,21348,22101,22849,23572,24278,24934,25520,26082,26509,26822,27085,27189,27216,27110,26885,26573,26160,25680,25105,24501,23869,23233,22585,21925,21296,20681,20096,19530,19041,18549,18151,17786,17437,17160,16901,16653,16451,16255,16061,15890,15682,15506,15355,15245,15147,15073,15009,14961,14939,14939,14954,14965,14995,15038,15081,15109,15153,15208,15213,15223,15243,15243,15264,15297,15285,15269,15218,15176,15111,15041,14960,14858,14713,14570,14397,14205,13992,13768,13539,13266,13005,12708,12439,12148,11855,11577,11305,11053,10820,10564,10307,9992,9657,9358,9078,8841,8616,8448,8297,8167,8058,7989,7922,7861,7790,7712,7581,7396,7245,7123,6995,6909,6814,6754,6696,6667,6648,6626,6616,6594,6617,6625,6454,6157,5734,5114,21.9,21.9,22.4,1567469,0.4,12.3,12.0,5.0,473,-1.00,-1.00,57.1617,-18.815657,0.000522,,,,,58 +SATSLF0720,2024246,1.011144,4.08,0.0572,0.1028,0.0181,0.00,16153,652,1,701,721,708,710,717,710,709,727,736,736,745,746,776,890,1219,1931,3127,4501,5737,6662,7303,7799,8213,8642,9175,9793,10535,11400,12401,13521,14706,15872,16968,17913,18658,19097,19229,19042,18672,18130,17531,16969,16521,16157,15921,15857,15925,16189,16594,17170,17915,18816,19905,21121,22426,23874,25368,26853,28270,29520,30508,31260,31666,31665,31338,30689,29772,28710,27487,26302,25152,24066,23047,22187,21457,20853,20375,20007,19718,19562,19457,19482,19574,19767,20023,20369,20811,21308,21895,22517,23181,23829,24448,25012,25495,25859,26124,26173,26046,25778,25277,24651,23930,23137,22251,21371,20541,19770,19065,18418,17854,17386,16980,16640,16390,16236,16115,16088,16102,16201,16362,16586,16893,17266,17677,18171,18741,19348,19976,20672,21394,22151,22882,23589,24303,24964,25545,26120,26530,26871,27106,27213,27209,27131,26903,26597,26184,25691,25125,24549,23909,23259,22594,21931,21305,20677,20103,19538,19051,18586,18178,17790,17470,17187,16925,16657,16464,16268,16057,15882,15702,15533,15401,15281,15173,15092,15024,14983,14971,14965,14968,14998,15015,15065,15101,15127,15187,15234,15251,15255,15264,15274,15301,15312,15326,15313,15260,15187,15125,15051,14956,14870,14733,14581,14418,14235,14023,13812,13564,13292,13038,12741,12437,12166,11863,11575,11300,11055,10819,10587,10317,10005,9687,9377,9079,8829,8627,8454,8305,8197,8081,8004,7930,7865,7800,7717,7581,7403,7240,7112,7014,6921,6860,6773,6717,6681,6653,6641,6621,6625,6639,6625,6475,6169,5734,5115,21.9,21.9,22.5,1567470,0.0,12.3,11.9,5.0,474,-1.00,-1.00,57.7321,-19.030056,0.000531,,,,,236 +SATSLF0720,2024246,1.011401,3.95,0.0554,0.1028,0.0181,0.00,16151,652,1,698,690,707,708,713,709,723,725,734,727,729,751,781,891,1209,1947,3112,4477,5732,6665,7321,7799,8229,8686,9193,9815,10564,11434,12427,13540,14725,15885,16989,17946,18673,19097,19242,19060,18685,18157,17557,16997,16521,16142,15914,15858,15941,16181,16589,17172,17921,18832,19890,21123,22440,23899,25365,26855,28276,29513,30523,31273,31674,31683,31352,30705,29773,28718,27500,26308,25143,24077,23083,22217,21473,20851,20379,19995,19713,19557,19455,19476,19571,19755,20021,20358,20791,21317,21888,22505,23161,23819,24433,25004,25495,25834,26123,26162,26051,25783,25293,24665,23941,23127,22267,21383,20523,19761,19058,18404,17850,17385,16965,16654,16405,16245,16137,16077,16102,16185,16346,16577,16869,17232,17668,18163,18738,19332,19969,20666,21392,22133,22869,23590,24289,24956,25556,26108,26525,26849,27091,27200,27225,27101,26908,26589,26181,25691,25127,24536,23894,23255,22589,21929,21301,20691,20093,19534,19035,18565,18153,17789,17452,17165,16898,16663,16461,16270,16073,15882,15691,15514,15373,15270,15176,15098,15019,15000,14968,14959,14965,14987,15009,15053,15098,15121,15171,15233,15255,15265,15274,15273,15293,15288,15287,15276,15234,15181,15125,15063,14972,14877,14743,14592,14418,14226,14000,13784,13545,13286,13017,12737,12429,12147,11856,11575,11316,11048,10817,10571,10302,9996,9680,9352,9071,8837,8637,8465,8308,8170,8080,7991,7914,7864,7790,7710,7572,7407,7246,7122,6997,6907,6802,6756,6696,6665,6650,6633,6621,6601,6623,6626,6470,6174,5747,5129,21.9,21.9,22.5,1567471,0.6,12.2,11.9,5.0,474,-1.00,-1.00,58.0926,-19.185207,0.000571,,,,,53 +SATSLF0720,2024246,1.011655,4.12,0.0577,0.1028,0.0179,0.00,16144,652,1,710,712,722,716,722,709,727,712,713,726,714,734,775,885,1216,1938,3094,4484,5725,6661,7310,7793,8207,8645,9170,9788,10533,11408,12411,13529,14698,15853,16971,17932,18647,19073,19202,19038,18664,18123,17530,16965,16512,16145,15915,15846,15927,16173,16565,17159,17910,18817,19895,21101,22438,23865,25339,26832,28251,29499,30490,31251,31651,31657,31322,30669,29755,28690,27483,26282,25124,24051,23034,22196,21451,20842,20357,19976,19704,19533,19455,19462,19544,19735,20005,20366,20773,21319,21888,22506,23162,23822,24429,25015,25482,25834,26102,26155,26043,25757,25275,24649,23922,23127,22246,21366,20523,19751,19041,18393,17826,17369,16966,16634,16389,16236,16137,16091,16110,16193,16348,16585,16876,17239,17661,18163,18723,19331,19984,20665,21399,22145,22875,23590,24299,24955,25550,26125,26528,26850,27092,27205,27202,27121,26915,26577,26189,25692,25125,24533,23901,23266,22594,21933,21291,20695,20081,19534,19029,18546,18148,17779,17451,17163,16900,16661,16464,16241,16055,15866,15693,15512,15385,15260,15163,15099,15018,14978,14965,14967,14989,14994,15017,15054,15085,15117,15157,15227,15236,15243,15253,15268,15268,15287,15298,15301,15242,15177,15131,15059,14958,14871,14731,14593,14409,14225,14002,13783,13555,13271,13023,12729,12448,12155,11852,11570,11315,11065,10817,10574,10306,9992,9668,9367,9089,8836,8626,8456,8298,8172,8066,7983,7924,7854,7801,7712,7570,7402,7248,7129,7000,6899,6821,6757,6696,6663,6651,6632,6629,6623,6632,6617,6459,6157,5723,5105,21.9,21.9,22.5,1567472,0.2,12.3,12.0,5.0,464,-1.00,-1.00,57.6525,-18.987161,0.000526,,,,,128 +SATSLF0720,2024246,1.011909,4.17,0.0584,0.1030,0.0181,0.00,16148,652,1,709,711,708,715,718,709,711,710,715,732,725,730,758,889,1204,1935,3111,4489,5722,6671,7320,7801,8216,8679,9196,9829,10570,11437,12432,13538,14715,15878,16987,17938,18669,19096,19230,19053,18679,18133,17529,16973,16514,16147,15943,15858,15956,16181,16595,17177,17917,18829,19897,21120,22439,23892,25376,26865,28288,29527,30539,31281,31675,31675,31350,30717,29773,28713,27484,26285,25139,24053,23049,22208,21450,20837,20371,19968,19702,19540,19447,19460,19561,19746,20023,20360,20797,21313,21885,22504,23172,23810,24429,25031,25505,25875,26121,26182,26058,25774,25297,24662,23925,23133,22245,21381,20529,19781,19065,18409,17847,17384,16965,16666,16405,16246,16138,16071,16093,16183,16357,16577,16869,17245,17680,18173,18738,19342,19971,20657,21387,22130,22861,23585,24287,24941,25525,26080,26512,26850,27101,27201,27232,27117,26894,26576,26176,25683,25117,24534,23893,23244,22585,21922,21278,20665,20088,19526,19037,18561,18167,17789,17463,17185,16909,16669,16458,16253,16061,15867,15677,15527,15373,15277,15169,15095,15005,14981,14953,14965,14967,14993,15008,15037,15089,15112,15163,15226,15242,15254,15269,15257,15287,15287,15291,15282,15235,15181,15124,15045,14953,14853,14723,14583,14406,14213,14007,13799,13549,13288,13027,12729,12450,12133,11841,11563,11292,11039,10807,10579,10304,10001,9670,9349,9078,8834,8617,8446,8307,8169,8076,7985,7933,7885,7818,7729,7582,7399,7235,7114,6995,6894,6831,6757,6703,6662,6647,6631,6625,6612,6631,6613,6471,6164,5737,5121,21.9,21.9,22.6,1567473,0.6,12.3,11.9,5.0,460,-1.00,-1.00,57.4164,-18.903723,0.000613,,,,,254 +SATSLF0720,2024246,1.012168,4.19,0.0587,0.1033,0.0176,0.00,16145,652,1,695,709,709,701,719,721,716,715,730,732,743,754,767,891,1211,1939,3112,4509,5753,6684,7326,7803,8228,8660,9195,9810,10551,11417,12419,13522,14693,15867,16967,17923,18647,19084,19220,19033,18658,18120,17530,16979,16531,16152,15922,15851,15936,16186,16581,17164,17921,18821,19877,21083,22417,23876,25349,26832,28242,29492,30489,31230,31629,31623,31306,30656,29746,28682,27466,26270,25109,24036,23036,22170,21445,20833,20360,19968,19691,19534,19435,19460,19553,19730,20000,20360,20793,21302,21859,22478,23155,23801,24417,24992,25476,25845,26105,26147,26038,25760,25281,24645,23937,23130,22254,21381,20541,19767,19068,18394,17831,17363,16954,16644,16383,16231,16126,16082,16101,16196,16357,16569,16875,17238,17671,18166,18732,19345,19968,20659,21394,22120,22861,23573,24265,24930,25521,26092,26517,26849,27088,27188,27209,27120,26896,26569,26188,25681,25111,24523,23890,23237,22572,21911,21291,20665,20082,19527,19033,18548,18159,17780,17448,17168,16904,16658,16471,16253,16073,15879,15685,15520,15369,15255,15175,15101,15023,14983,14973,14965,14965,14999,15024,15057,15090,15109,15166,15221,15225,15248,15274,15272,15293,15309,15320,15293,15255,15184,15139,15054,14963,14865,14741,14577,14420,14220,14017,13800,13559,13303,13050,12765,12458,12168,11848,11565,11301,11045,10805,10581,10313,10013,9693,9383,9081,8844,8645,8458,8311,8179,8081,8004,7942,7874,7807,7723,7573,7389,7248,7110,7025,6913,6831,6769,6706,6679,6652,6637,6633,6625,6626,6615,6479,6170,5741,5120,21.9,21.9,22.6,1567474,0.1,12.2,11.9,5.0,474,-1.00,-1.00,56.9322,-18.679488,0.000471,,,,,148 +SATSLF0720,2024246,1.012422,4.27,0.0598,0.1045,0.0189,0.00,16102,652,1,704,711,737,725,738,733,734,717,719,720,721,757,768,880,1219,1941,3104,4468,5710,6638,7292,7763,8173,8622,9141,9761,10496,11363,12342,13448,14629,15787,16909,17849,18573,18998,19111,18950,18571,18033,17422,16887,16437,16064,15844,15787,15866,16114,16517,17104,17832,18734,19799,20997,22323,23769,25237,26729,28137,29378,30389,31125,31511,31525,31193,30541,29621,28565,27341,26166,25004,23939,22937,22111,21384,20784,20305,19917,19643,19464,19384,19388,19476,19672,19933,20295,20733,21248,21816,22439,23097,23738,24341,24920,25404,25755,26036,26080,25963,25660,25202,24568,23853,23058,22205,21325,20475,19712,19013,18353,17786,17329,16913,16599,16359,16178,16084,16037,16057,16151,16320,16547,16841,17196,17623,18112,18677,19284,19928,20605,21343,22085,22826,23537,24247,24906,25472,26051,26467,26780,27030,27130,27147,27066,26841,26530,26133,25626,25070,24477,23842,23198,22549,21880,21245,20632,20037,19495,18997,18518,18127,17766,17433,17137,16873,16624,16423,16225,16041,15845,15648,15494,15349,15232,15138,15068,14993,14956,14952,14948,14949,14974,14984,15024,15072,15107,15155,15204,15220,15232,15239,15232,15258,15272,15279,15261,15216,15157,15097,15037,14940,14855,14725,14578,14410,14205,14007,13786,13540,13272,13010,12726,12432,12137,11847,11561,11293,11042,10800,10561,10276,9978,9658,9361,9081,8848,8625,8453,8305,8169,8058,8004,7925,7877,7809,7705,7557,7392,7239,7114,7001,6914,6827,6764,6688,6651,6639,6616,6602,6603,6625,6633,6488,6173,5741,5121,21.9,22.0,22.6,1567475,0.1,12.2,12.0,5.0,473,-1.00,-1.00,57.4645,-18.829880,0.000574,,,,,165 +SATSLF0720,2024246,1.012673,4.14,0.0580,0.1051,0.0194,0.00,16079,652,1,694,709,709,698,720,709,716,726,728,734,727,747,772,895,1203,1923,3072,4455,5690,6617,7255,7738,8149,8592,9116,9733,10469,11345,12336,13428,14601,15760,16861,17811,18529,18977,19104,18914,18551,18002,17418,16861,16395,16026,15813,15741,15841,16083,16501,17079,17816,18728,19762,20981,22298,23745,25218,26697,28109,29346,30337,31078,31481,31469,31143,30502,29597,28549,27317,26164,24982,23912,22922,22088,21337,20750,20254,19875,19598,19441,19357,19362,19464,19651,19927,20269,20693,21218,21773,22391,23049,23705,24311,24885,25378,25749,26014,26069,25947,25673,25194,24560,23833,23025,22144,21291,20445,19680,18989,18341,17773,17303,16893,16580,16324,16155,16061,16017,16037,16138,16289,16506,16829,17177,17613,18108,18684,19289,19896,20583,21303,22039,22780,23501,24195,24869,25465,26014,26434,26763,27006,27101,27120,27040,26809,26485,26095,25593,25029,24445,23808,23166,22509,21836,21224,20593,20012,19453,18955,18501,18105,17745,17405,17119,16855,16622,16416,16208,16007,15832,15649,15465,15343,15227,15125,15052,14981,14949,14920,14919,14919,14945,14970,15005,15049,15071,15130,15175,15201,15201,15215,15222,15248,15277,15265,15250,15201,15129,15079,15002,14903,14821,14679,14527,14373,14184,13970,13752,13524,13253,12976,12699,12413,12129,11807,11539,11271,11018,10778,10549,10269,9979,9655,9337,9050,8814,8617,8445,8288,8149,8067,7984,7896,7861,7793,7686,7553,7378,7229,7103,6974,6887,6809,6740,6678,6654,6635,6626,6612,6610,6622,6614,6456,6150,5730,5101,21.9,22.0,22.6,1567475,0.2,12.3,12.0,5.0,472,-1.00,-1.00,58.2625,-19.143156,0.000597,,,,,158 +SATSLF0720,2024246,1.012929,4.17,0.0584,0.1056,0.0196,0.00,16071,652,1,706,715,706,711,712,711,706,711,720,710,735,722,773,874,1211,1933,3093,4471,5713,6633,7273,7734,8157,8597,9097,9737,10477,11368,12340,13445,14601,15770,16860,17820,18520,18965,19107,18914,18533,18009,17428,16861,16420,16049,15817,15776,15841,16094,16493,17068,17813,18712,19773,20982,22295,23733,25205,26690,28093,29349,30342,31085,31482,31479,31152,30520,29609,28557,27322,26144,24981,23911,22928,22068,21354,20744,20265,19874,19593,19431,19335,19345,19463,19639,19913,20265,20701,21217,21794,22397,23063,23701,24331,24905,25369,25729,25987,26033,25920,25642,25169,24532,23817,23021,22144,21291,20441,19670,18973,18321,17754,17272,16872,16567,16324,16153,16040,16010,16025,16125,16266,16514,16789,17170,17578,18074,18645,19253,19901,20564,21293,22038,22764,23472,24181,24836,25435,25997,26423,26741,26972,27081,27104,27003,26779,26452,26061,25568,25005,24413,23785,23150,22491,21829,21191,20587,19996,19451,18964,18490,18085,17711,17377,17095,16835,16595,16414,16201,16022,15804,15621,15454,15315,15201,15104,15034,14960,14925,14907,14912,14912,14949,14950,14991,15015,15059,15104,15168,15181,15192,15205,15209,15234,15228,15247,15234,15187,15139,15073,14994,14904,14811,14675,14522,14363,14160,13959,13746,13497,13242,12974,12696,12404,12109,11805,11515,11264,11014,10785,10541,10275,9980,9652,9341,9052,8806,8597,8430,8272,8143,8049,7970,7914,7862,7798,7689,7543,7372,7217,7091,6979,6889,6810,6737,6683,6637,6633,6609,6587,6579,6601,6591,6439,6131,5705,5095,21.9,22.0,22.6,1567476,0.2,12.3,11.9,5.0,473,-1.00,-1.00,58.0519,-19.055955,0.000515,,,,,242 +SATSLF0720,2024246,1.013183,4.11,0.0575,0.1056,0.0203,0.00,16064,652,1,699,713,705,718,720,698,719,723,730,730,732,756,769,887,1204,1925,3083,4473,5701,6633,7281,7751,8168,8617,9124,9729,10480,11334,12336,13441,14615,15773,16874,17831,18532,18964,19095,18922,18549,18006,17419,16863,16412,16040,15829,15757,15833,16074,16478,17069,17794,18704,19769,20991,22283,23727,25198,26665,28064,29328,30308,31061,31469,31467,31141,30505,29585,28537,27301,26123,24980,23903,22912,22056,21340,20721,20244,19857,19590,19421,19336,19351,19454,19652,19909,20253,20676,21202,21767,22375,23040,23688,24298,24870,25344,25713,25985,26024,25898,25625,25161,24509,23801,23010,22140,21280,20431,19671,18971,18329,17762,17291,16871,16571,16318,16138,16030,15986,16011,16109,16282,16499,16796,17177,17573,18065,18633,19229,19875,20553,21278,22027,22757,23467,24174,24829,25409,25979,26397,26724,26962,27057,27079,26996,26769,26445,26065,25554,25013,24410,23773,23146,22480,21825,21203,20576,19983,19430,18947,18473,18077,17712,17381,17091,16825,16585,16376,16195,16005,15826,15630,15457,15331,15207,15101,15032,14944,14912,14891,14891,14914,14937,14949,14987,15019,15048,15106,15155,15173,15184,15193,15207,15219,15244,15236,15232,15165,15110,15049,14983,14910,14805,14675,14517,14362,14160,13953,13741,13504,13226,12967,12686,12401,12109,11809,11517,11251,11005,10773,10531,10266,9969,9651,9337,9050,8793,8581,8420,8265,8142,8045,7975,7909,7835,7783,7684,7545,7360,7218,7093,6979,6889,6805,6746,6683,6651,6625,6615,6605,6586,6608,6605,6445,6151,5721,5111,21.9,22.1,22.7,1567477,0.2,12.3,11.9,5.0,464,-1.00,-1.00,58.0559,-19.045382,0.000530,,,,,171 +SATSLF0720,2024246,1.013434,4.13,0.0579,0.1062,0.0200,0.00,16056,652,1,707,703,711,700,707,716,727,733,720,727,731,744,783,909,1226,1948,3104,4483,5720,6641,7272,7754,8154,8608,9099,9719,10461,11332,12308,13418,14599,15735,16839,17787,18500,18939,19078,18881,18516,17985,17406,16837,16388,16037,15797,15740,15805,16061,16469,17028,17778,18677,19747,20951,22268,23700,25149,26629,28055,29318,30289,31045,31432,31437,31106,30454,29538,28487,27265,26112,24949,23882,22883,22032,21309,20697,20215,19845,19563,19410,19309,19341,19437,19620,19895,20224,20653,21170,21745,22344,23015,23672,24281,24864,25333,25706,25965,26013,25889,25624,25134,24501,23789,22981,22122,21257,20418,19660,18970,18301,17750,17269,16871,16553,16311,16142,16034,15981,16005,16098,16265,16486,16793,17145,17578,18058,18627,19234,19875,20551,21275,22009,22744,23473,24171,24818,25403,25966,26389,26709,26945,27047,27076,26985,26777,26442,26051,25562,25000,24397,23773,23129,22477,21813,21193,20569,19979,19419,18947,18486,18077,17713,17377,17074,16823,16579,16384,16177,15996,15812,15621,15461,15317,15217,15098,15029,14962,14921,14906,14898,14919,14945,14960,14993,15026,15038,15104,15153,15177,15181,15197,15201,15217,15240,15244,15235,15197,15130,15061,14985,14894,14820,14669,14516,14347,14154,13945,13736,13488,13237,12971,12685,12397,12109,11824,11532,11242,10999,10757,10531,10259,9967,9640,9338,9055,8799,8595,8421,8264,8141,8042,7953,7896,7845,7791,7700,7554,7386,7221,7087,6986,6877,6792,6745,6683,6655,6632,6630,6613,6582,6603,6601,6440,6133,5711,5093,21.9,22.1,22.7,1567478,0.0,12.3,11.9,5.0,473,-1.00,-1.00,58.1480,-19.063189,0.000567,,,,,60 +SATSLF0720,2024246,1.013689,3.96,0.0554,0.1050,0.0196,0.00,16072,652,1,718,714,725,702,718,720,723,726,737,742,736,749,788,893,1214,1930,3103,4472,5719,6645,7291,7767,8199,8636,9156,9776,10519,11369,12361,13456,14632,15802,16893,17856,18572,19009,19149,18955,18573,18049,17440,16891,16426,16073,15848,15757,15859,16105,16512,17084,17828,18723,19782,20993,22298,23745,25213,26689,28096,29338,30338,31082,31474,31474,31165,30528,29620,28557,27340,26133,24985,23893,22929,22058,21325,20732,20267,19878,19589,19440,19360,19357,19455,19653,19893,20243,20681,21207,21767,22381,23052,23691,24305,24890,25358,25728,25986,26040,25913,25638,25154,24530,23805,23001,22139,21284,20445,19677,18961,18309,17766,17288,16886,16568,16327,16149,16057,16008,16017,16125,16273,16498,16807,17175,17581,18077,18640,19242,19868,20541,21271,22008,22739,23465,24165,24832,25418,25965,26392,26710,26946,27064,27075,26999,26778,26466,26073,25582,25005,24427,23782,23141,22487,21809,21181,20578,19982,19426,18939,18476,18073,17705,17386,17090,16830,16597,16395,16184,15986,15799,15601,15457,15311,15189,15107,15032,14957,14924,14894,14900,14905,14922,14944,14986,15016,15053,15106,15157,15176,15192,15198,15222,15211,15243,15237,15225,15201,15129,15073,14997,14898,14809,14662,14530,14356,14163,13946,13755,13490,13255,12974,12691,12398,12110,11819,11531,11271,11005,10768,10545,10273,9963,9659,9343,9067,8818,8608,8425,8262,8135,8045,7963,7892,7844,7784,7701,7546,7385,7237,7093,6986,6899,6818,6750,6691,6651,6629,6605,6603,6586,6609,6613,6456,6152,5743,5122,21.9,22.1,22.7,1567479,0.0,12.2,12.0,5.0,471,-1.00,-1.00,58.0365,-19.050252,0.000505,,,,,249 +SATSLF0720,2024246,1.013943,4.20,0.0589,0.1055,0.0200,0.00,16084,652,1,697,702,704,709,725,716,727,735,731,722,730,750,781,885,1215,1944,3109,4475,5720,6633,7303,7776,8181,8621,9121,9755,10493,11360,12349,13457,14650,15801,16898,17861,18566,18992,19118,18940,18574,18033,17443,16898,16432,16088,15853,15765,15855,16097,16492,17085,17833,18746,19816,21010,22324,23773,25229,26711,28118,29387,30365,31133,31517,31513,31179,30551,29624,28567,27340,26160,25001,23925,22935,22077,21367,20738,20263,19886,19592,19439,19341,19369,19461,19654,19925,20273,20701,21201,21794,22421,23081,23730,24332,24907,25397,25740,26022,26069,25953,25681,25170,24545,23827,23024,22171,21292,20462,19691,18996,18328,17778,17291,16887,16586,16341,16162,16071,16032,16038,16135,16289,16512,16802,17173,17603,18099,18651,19271,19901,20584,21297,22034,22775,23499,24201,24873,25448,26009,26428,26737,26983,27096,27100,27012,26797,26465,26065,25597,25025,24432,23794,23152,22500,21834,21194,20592,20001,19463,18977,18500,18090,17728,17414,17117,16854,16611,16404,16205,16006,15815,15625,15476,15334,15220,15109,15034,14957,14933,14915,14906,14912,14937,14963,15004,15053,15082,15126,15170,15186,15201,15205,15216,15235,15253,15246,15236,15195,15142,15062,15003,14912,14818,14691,14544,14373,14181,13970,13764,13514,13253,12986,12706,12406,12110,11829,11536,11265,11031,10784,10541,10277,9986,9650,9362,9065,8813,8591,8438,8276,8149,8045,7969,7901,7852,7796,7699,7551,7380,7224,7096,6988,6873,6810,6741,6683,6642,6635,6623,6594,6595,6614,6613,6469,6164,5735,5121,21.9,22.1,22.8,1567480,0.5,12.3,12.0,5.0,472,-1.00,-1.00,57.6578,-18.908461,0.000586,,,,,10 +SATSLF0720,2024246,1.014194,4.09,0.0573,0.1057,0.0202,0.00,16061,652,1,695,698,709,705,719,709,722,713,721,705,727,730,763,882,1204,1927,3095,4460,5691,6623,7267,7742,8157,8611,9134,9740,10474,11360,12325,13431,14610,15769,16858,17821,18525,18981,19100,18929,18541,18010,17429,16861,16407,16065,15814,15758,15821,16080,16483,17059,17803,18706,19748,20972,22282,23712,25201,26674,28077,29321,30327,31073,31469,31470,31126,30475,29556,28518,27286,26110,24952,23901,22894,22050,21321,20718,20243,19860,19580,19419,19329,19330,19433,19623,19880,20232,20668,21184,21755,22378,23039,23675,24305,24862,25339,25707,25976,26020,25905,25628,25157,24533,23813,23005,22151,21274,20432,19659,18958,18321,17749,17292,16885,16567,16315,16137,16041,15993,16016,16096,16275,16499,16789,17166,17594,18072,18640,19245,19874,20563,21278,22010,22762,23469,24151,24825,25416,25988,26402,26724,26973,27059,27069,26984,26761,26442,26041,25566,24992,24405,23780,23146,22485,21828,21181,20587,20012,19449,18949,18481,18072,17700,17378,17098,16832,16582,16392,16181,15993,15805,15609,15440,15306,15189,15110,15029,14943,14903,14897,14905,14906,14944,14938,14983,15024,15058,15099,15154,15166,15188,15201,15196,15219,15229,15243,15233,15170,15112,15054,14973,14903,14813,14677,14517,14349,14174,13950,13728,13498,13233,12953,12689,12392,12097,11818,11510,11259,11013,10745,10541,10268,9979,9632,9323,9044,8797,8592,8417,8267,8147,8045,7969,7910,7843,7780,7681,7539,7361,7198,7073,6961,6879,6803,6744,6692,6649,6636,6629,6604,6581,6603,6593,6461,6146,5721,5105,21.9,22.1,22.8,1567481,0.5,12.3,12.0,5.0,471,-1.00,-1.00,57.8433,-18.950799,0.000606,,,,,146 +SATSLF0720,2024246,1.014450,4.06,0.0568,0.1062,0.0207,0.00,16045,652,1,703,695,713,710,714,713,701,715,726,725,730,728,759,876,1201,1931,3101,4466,5701,6637,7269,7747,8171,8603,9139,9746,10487,11331,12343,13447,14606,15779,16884,17830,18541,18990,19104,18931,18549,18001,17430,16861,16402,16048,15826,15756,15833,16077,16482,17062,17793,18691,19756,20964,22272,23705,25182,26657,28055,29305,30301,31036,31450,31438,31112,30468,29554,28506,27277,26082,24951,23870,22891,22045,21302,20714,20229,19834,19565,19412,19309,19328,19420,19602,19877,20231,20649,21167,21726,22337,23013,23660,24274,24853,25330,25702,25949,26002,25883,25607,25123,24496,23781,22985,22126,21254,20400,19635,18946,18282,17739,17277,16857,16541,16288,16123,16026,15973,15995,16087,16257,16467,16771,17133,17556,18052,18606,19208,19838,20521,21249,21993,22738,23440,24140,24800,25362,25936,26364,26671,26915,27017,27043,26933,26727,26423,26016,25508,24947,24359,23746,23085,22437,21784,21157,20552,19977,19409,18935,18452,18041,17671,17341,17064,16784,16538,16359,16148,15977,15770,15598,15441,15281,15175,15077,15014,14924,14893,14868,14853,14864,14877,14919,14957,14997,15029,15076,15136,15149,15162,15181,15184,15207,15221,15221,15223,15154,15088,15037,14969,14869,14787,14652,14485,14327,14133,13931,13717,13486,13224,12968,12670,12380,12096,11786,11507,11229,10998,10754,10519,10249,9937,9619,9309,9026,8783,8576,8414,8261,8129,8037,7954,7891,7829,7767,7679,7533,7350,7191,7099,6977,6873,6795,6741,6664,6647,6619,6603,6584,6583,6607,6597,6436,6135,5718,5093,21.9,22.1,22.8,1567482,0.4,12.3,12.0,5.0,471,-1.00,-1.00,57.6432,-18.856474,0.000558,,,,,88 +SATSDF0720,2024246,1.259138,0.00,0.0000,0.0000,0.0000,0.00,652,0,1,645,638,630,632,633,629,625,629,615,619,632,633,622,627,632,630,635,635,631,636,641,645,657,666,652,652,648,655,661,660,659,653,658,658,683,665,669,656,650,649,648,659,662,666,658,647,659,661,663,660,650,657,658,653,659,661,663,669,669,658,649,647,650,661,660,676,663,652,657,649,646,657,640,648,657,656,665,670,656,655,659,658,652,662,676,660,653,659,648,657,638,651,636,647,652,649,650,647,656,660,650,660,657,657,649,651,649,659,651,647,651,653,657,649,645,659,651,667,645,653,648,660,653,646,668,654,654,654,642,650,641,651,646,637,640,646,660,652,665,662,669,642,657,661,657,657,663,658,667,652,651,647,650,641,635,635,641,646,654,658,648,657,642,654,658,657,664,651,659,661,653,647,656,660,658,651,665,670,649,659,657,651,649,658,642,646,643,647,647,651,650,647,642,658,653,650,652,658,662,659,657,652,641,640,653,641,648,653,654,646,652,657,645,658,653,647,647,653,650,649,651,647,657,642,652,661,651,651,664,661,649,655,645,640,646,649,644,648,653,659,649,648,653,648,647,647,647,657,654,660,659,649,662,664,653,489,0.0,0.0,0.0,1567481,0.2,12.8,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,157 +SATSLF0720,2024246,1.259692,4.07,0.0570,0.1008,0.0171,0.00,16205,652,1,706,711,715,723,717,728,725,717,737,717,714,728,771,874,1220,1945,3123,4521,5769,6712,7358,7828,8259,8717,9225,9853,10615,11488,12491,13600,14786,15968,17073,18043,18761,19189,19319,19139,18761,18213,17635,17062,16608,16229,16004,15926,16004,16245,16663,17257,18017,18910,19985,21214,22537,23981,25475,26944,28377,29628,30641,31390,31790,31805,31474,30814,29895,28836,27599,26413,25244,24168,23168,22312,21576,20949,20459,20066,19788,19633,19542,19548,19665,19845,20091,20451,20877,21401,21962,22583,23257,23925,24542,25111,25590,25960,26222,26258,26133,25857,25380,24737,23992,23223,22332,21452,20600,19825,19112,18461,17906,17422,17019,16708,16461,16293,16189,16123,16151,16245,16404,16622,16923,17294,17736,18214,18785,19401,20040,20733,21460,22209,22961,23669,24374,25025,25622,26194,26624,26945,27194,27307,27321,27220,26997,26669,26265,25776,25202,24619,23957,23325,22664,22006,21362,20768,20139,19591,19104,18616,18202,17841,17512,17223,16964,16714,16504,16311,16112,15915,15717,15547,15403,15311,15201,15128,15061,15021,14999,15003,15009,15030,15048,15094,15129,15157,15202,15255,15278,15284,15290,15296,15316,15336,15345,15334,15275,15222,15157,15089,14996,14892,14754,14612,14429,14241,14027,13831,13581,13326,13046,12771,12477,12180,11892,11591,11317,11079,10830,10616,10334,10024,9703,9385,9097,8865,8656,8484,8306,8186,8084,8007,7926,7879,7818,7721,7579,7404,7269,7152,7021,6931,6852,6782,6716,6691,6661,6650,6651,6632,6655,6634,6485,6178,5750,5138,21.8,21.8,22.2,1567482,0.7,12.4,11.9,5.0,591,-1.00,-1.00,57.1256,-18.854230,0.000480,,,,,228 +SATSLF0720,2024246,1.259874,4.03,0.0565,0.1008,0.0176,0.00,16196,652,1,697,693,711,714,709,713,718,722,717,721,722,728,768,883,1203,1927,3102,4496,5751,6683,7331,7820,8253,8690,9223,9855,10589,11465,12461,13587,14772,15956,17069,18010,18731,19185,19305,19118,18750,18204,17626,17062,16598,16226,15985,15917,15990,16240,16656,17248,17991,18896,19972,21192,22524,23984,25460,26955,28385,29643,30641,31367,31779,31791,31451,30814,29885,28824,27589,26416,25242,24152,23132,22279,21545,20937,20466,20081,19788,19632,19541,19536,19649,19838,20089,20441,20887,21413,21965,22592,23241,23902,24517,25093,25579,25949,26213,26262,26128,25862,25378,24710,24002,23200,22325,21447,20601,19822,19122,18457,17901,17430,17026,16678,16427,16249,16147,16113,16150,16221,16399,16622,16925,17289,17719,18210,18771,19375,20030,20699,21442,22197,22929,23653,24366,25018,25613,26173,26613,26921,27193,27284,27304,27204,26978,26656,26254,25775,25193,24615,23977,23323,22660,22007,21364,20756,20157,19600,19110,18618,18212,17842,17501,17221,16925,16688,16488,16294,16107,15910,15751,15569,15427,15301,15208,15125,15035,15008,14979,15000,14995,15027,15056,15081,15122,15163,15193,15266,15265,15275,15299,15294,15317,15339,15330,15325,15273,15200,15139,15079,14980,14895,14753,14605,14423,14247,14029,13813,13573,13311,13047,12761,12465,12166,11878,11600,11314,11066,10836,10589,10336,10020,9693,9391,9088,8855,8642,8466,8313,8181,8082,8013,7931,7868,7799,7731,7582,7409,7254,7122,7010,6930,6836,6775,6713,6682,6649,6641,6618,6615,6643,6617,6479,6178,5739,5122,21.8,21.8,22.3,1567483,0.3,12.3,12.0,5.0,490,-1.00,-1.00,57.4857,-18.999401,0.000520,,,,,155 +SATSLF0720,2024246,1.260129,4.03,0.0564,0.1022,0.0178,0.00,16162,652,1,700,706,715,697,714,705,717,719,727,725,722,728,759,874,1202,1926,3109,4485,5742,6675,7317,7807,8226,8678,9189,9816,10547,11427,12426,13544,14713,15895,17002,17952,18677,19112,19241,19059,18692,18153,17573,16997,16535,16180,15960,15877,15954,16190,16605,17173,17933,18829,19901,21130,22457,23906,25389,26880,28293,29546,30531,31290,31681,31688,31368,30720,29801,28745,27524,26331,25172,24082,23077,22218,21480,20868,20390,19999,19726,19586,19481,19491,19589,19773,20045,20391,20826,21341,21922,22534,23202,23850,24469,25037,25511,25866,26145,26202,26069,25810,25317,24674,23952,23139,22277,21400,20534,19773,19066,18419,17861,17383,16971,16667,16417,16235,16129,16092,16102,16205,16370,16603,16886,17265,17696,18169,18747,19364,19978,20679,21410,22154,22897,23617,24327,24983,25569,26141,26558,26875,27138,27245,27250,27157,26938,26618,26218,25709,25146,24557,23917,23274,22594,21935,21305,20689,20100,19559,19072,18589,18182,17824,17492,17192,16923,16691,16469,16267,16085,15879,15703,15553,15401,15273,15159,15103,15026,14994,14980,14985,14989,15013,15012,15054,15095,15120,15177,15222,15249,15245,15255,15269,15295,15308,15306,15293,15251,15189,15132,15056,14962,14880,14730,14579,14409,14213,14011,13796,13549,13300,13034,12740,12456,12155,11858,11578,11307,11053,10821,10573,10306,10009,9680,9376,9077,8830,8632,8453,8311,8177,8081,8004,7930,7873,7803,7709,7560,7382,7234,7113,7005,6910,6827,6761,6698,6667,6651,6620,6619,6611,6633,6628,6495,6178,5762,5133,21.8,21.8,22.4,1567484,0.1,12.3,12.0,5.0,477,-1.00,-1.00,57.7822,-19.068011,0.000500,,,,,112 +SATSLF0720,2024246,1.260382,4.22,0.0591,0.1047,0.0193,0.00,16096,652,1,703,705,700,711,717,718,720,730,733,733,734,738,767,875,1202,1920,3069,4446,5677,6606,7259,7739,8151,8604,9114,9733,10461,11338,12326,13435,14601,15769,16858,17803,18538,18972,19101,18924,18556,18025,17442,16860,16411,16051,15835,15773,15844,16101,16497,17083,17822,18742,19797,21020,22318,23760,25244,26713,28125,29381,30362,31115,31511,31514,31195,30532,29634,28589,27357,26179,25043,23961,22957,22116,21382,20778,20296,19904,19632,19469,19373,19392,19484,19687,19954,20305,20742,21272,21833,22453,23110,23758,24355,24935,25409,25782,26031,26091,25957,25673,25197,24574,23851,23054,22180,21319,20469,19703,18994,18350,17808,17321,16913,16614,16341,16182,16086,16037,16049,16139,16309,16532,16829,17202,17625,18103,18691,19297,19916,20610,21341,22077,22817,23533,24246,24901,25479,26037,26464,26800,27045,27121,27164,27053,26857,26505,26118,25628,25049,24486,23834,23207,22548,21895,21253,20645,20043,19490,19000,18513,18131,17761,17424,17134,16886,16641,16442,16230,16037,15840,15656,15482,15350,15227,15140,15057,15000,14953,14939,14938,14948,14970,14997,15022,15061,15095,15141,15200,15220,15221,15227,15224,15261,15281,15272,15264,15205,15143,15083,15003,14925,14845,14708,14557,14382,14185,13980,13761,13525,13260,13004,12722,12424,12136,11829,11552,11274,11020,10778,10555,10281,9997,9665,9357,9065,8825,8599,8436,8282,8151,8061,7986,7914,7863,7789,7715,7571,7394,7246,7113,7003,6902,6817,6740,6679,6651,6645,6628,6618,6601,6606,6613,6455,6157,5725,5115,21.8,21.8,22.4,1567485,0.0,12.3,11.9,5.0,475,-1.00,-1.00,58.1999,-19.137860,0.000546,,,,,75 +SATSLF0720,2024246,1.260636,4.22,0.0591,0.1017,0.0175,0.00,16190,652,1,725,709,714,696,703,714,705,716,734,734,720,742,774,880,1205,1946,3115,4511,5766,6698,7358,7836,8258,8712,9229,9853,10599,11482,12482,13596,14784,15947,17056,18015,18733,19174,19305,19126,18733,18203,17628,17059,16593,16232,16002,15929,16009,16254,16670,17244,17984,18900,19956,21189,22517,23970,25463,26945,28360,29624,30621,31369,31764,31771,31445,30790,29861,28794,27561,26392,25217,24139,23134,22272,21542,20925,20457,20052,19760,19616,19503,19528,19629,19828,20080,20433,20858,21381,21954,22568,23241,23884,24498,25084,25559,25925,26188,26228,26113,25834,25338,24717,23988,23188,22306,21440,20598,19822,19110,18450,17891,17413,16998,16683,16438,16258,16168,16105,16139,16202,16403,16597,16907,17274,17708,18186,18758,19371,20009,20697,21426,22183,22929,23643,24349,24998,25593,26163,26578,26908,27157,27270,27275,27184,26962,26631,26263,25753,25173,24588,23954,23291,22634,21977,21344,20731,20134,19570,19077,18610,18203,17833,17501,17211,16944,16701,16483,16299,16090,15896,15715,15556,15410,15290,15195,15113,15051,15004,14980,14981,14977,15015,15040,15073,15123,15161,15201,15260,15270,15278,15276,15294,15311,15329,15323,15313,15277,15205,15144,15074,14999,14901,14760,14610,14433,14229,14023,13819,13558,13311,13048,12761,12459,12166,11876,11588,11307,11056,10821,10593,10327,10016,9695,9383,9098,8861,8644,8471,8322,8196,8098,8012,7935,7881,7819,7731,7589,7410,7257,7123,7021,6915,6831,6761,6715,6673,6664,6638,6630,6612,6629,6632,6489,6185,5756,5138,21.8,21.9,22.4,1567486,0.5,12.3,12.0,5.0,477,-1.00,-1.00,56.3702,-18.523570,0.000461,,,,,127 +SATSLF0720,2024246,1.260890,3.93,0.0550,0.1027,0.0178,0.00,16158,652,1,702,707,703,695,703,702,725,715,731,734,733,741,770,895,1225,1953,3126,4501,5755,6680,7323,7787,8223,8668,9194,9829,10564,11443,12449,13549,14731,15899,17014,17965,18698,19128,19261,19069,18693,18146,17553,16988,16529,16169,15933,15879,15948,16192,16595,17177,17927,18850,19898,21127,22449,23895,25370,26858,28290,29541,30542,31298,31699,31696,31373,30720,29793,28732,27499,26316,25145,24072,23079,22221,21493,20872,20395,20005,19714,19562,19461,19476,19577,19783,20040,20389,20841,21330,21894,22523,23194,23827,24443,25019,25505,25868,26129,26181,26061,25773,25293,24668,23932,23136,22272,21395,20554,19782,19086,18408,17854,17396,16966,16635,16396,16231,16116,16082,16104,16193,16361,16588,16873,17235,17670,18168,18729,19341,19969,20665,21399,22137,22896,23605,24305,24941,25542,26120,26534,26871,27121,27214,27225,27137,26926,26601,26200,25703,25153,24565,23913,23269,22609,21929,21303,20683,20085,19538,19049,18568,18180,17805,17473,17187,16920,16686,16480,16260,16083,15882,15701,15532,15399,15288,15188,15098,15024,14976,14971,14966,14958,14997,15012,15054,15104,15125,15182,15221,15239,15253,15258,15268,15291,15303,15307,15303,15249,15188,15135,15050,14964,14865,14737,14592,14424,14225,14007,13802,13561,13293,13028,12744,12456,12150,11850,11579,11293,11063,10809,10586,10301,10006,9682,9365,9095,8846,8654,8458,8301,8171,8080,8000,7924,7873,7800,7706,7571,7406,7244,7113,7010,6897,6839,6762,6704,6669,6646,6640,6615,6620,6644,6627,6474,6160,5735,5115,21.8,21.9,22.4,1567487,0.4,12.3,12.0,5.0,474,-1.00,-1.00,58.0922,-19.193573,0.000575,,,,,59 +SATSLF0720,2024246,1.261143,4.00,0.0561,0.1034,0.0186,0.00,16129,652,1,701,697,697,688,695,711,705,715,725,721,729,738,780,878,1207,1929,3107,4489,5746,6672,7313,7795,8210,8659,9173,9801,10542,11419,12410,13515,14691,15871,16970,17909,18647,19077,19214,19031,18678,18126,17540,16974,16501,16148,15913,15831,15912,16153,16561,17153,17910,18813,19883,21083,22405,23849,25337,26817,28245,29486,30489,31234,31643,31632,31293,30651,29725,28680,27447,26269,25109,24037,23048,22189,21441,20834,20358,19970,19674,19521,19429,19443,19530,19733,19993,20334,20769,21288,21853,22473,23142,23788,24393,24987,25450,25815,26078,26135,26022,25723,25242,24612,23896,23102,22226,21353,20520,19744,19042,18378,17811,17348,16947,16619,16367,16203,16092,16048,16075,16154,16337,16560,16844,17216,17640,18122,18711,19305,19947,20629,21365,22089,22857,23568,24277,24930,25509,26074,26498,26810,27053,27165,27168,27083,26873,26543,26158,25653,25091,24514,23868,23240,22565,21914,21285,20668,20073,19509,19020,18542,18137,17760,17449,17133,16891,16649,16453,16230,16048,15851,15661,15489,15359,15255,15149,15083,15004,14965,14937,14941,14937,14976,14997,15031,15061,15099,15140,15199,15208,15223,15247,15261,15270,15291,15300,15282,15213,15163,15106,15028,14945,14846,14704,14561,14391,14212,14013,13781,13538,13278,13002,12725,12421,12119,11827,11545,11279,11034,10793,10557,10275,9977,9671,9352,9059,8816,8613,8448,8282,8157,8074,7981,7927,7861,7796,7705,7565,7389,7237,7109,7003,6913,6822,6764,6708,6672,6645,6625,6615,6602,6621,6612,6467,6168,5738,5118,21.9,21.9,22.5,1567488,0.3,12.3,11.9,5.0,475,-1.00,-1.00,57.7602,-19.019694,0.000584,,,,,159 +SATSLF0720,2024246,1.261399,4.01,0.0561,0.1028,0.0187,0.00,16146,652,1,685,701,707,717,715,714,714,717,735,718,732,745,787,887,1213,1938,3117,4485,5733,6653,7321,7796,8207,8654,9189,9803,10551,11427,12418,13525,14720,15874,16993,17933,18656,19088,19233,19057,18680,18154,17544,16991,16521,16153,15924,15842,15926,16185,16592,17181,17916,18833,19883,21116,22437,23894,25357,26840,28246,29495,30509,31277,31657,31667,31330,30688,29770,28709,27483,26309,25140,24053,23037,22186,21450,20843,20362,19995,19700,19553,19456,19468,19577,19762,20027,20363,20820,21317,21884,22506,23177,23830,24433,25011,25504,25858,26123,26156,26050,25765,25283,24650,23931,23139,22244,21409,20546,19757,19063,18407,17840,17349,16979,16656,16402,16237,16128,16085,16101,16187,16357,16592,16873,17239,17668,18155,18739,19337,19989,20658,21387,22150,22873,23592,24296,24941,25546,26114,26530,26859,27095,27196,27204,27117,26897,26571,26182,25684,25132,24541,23885,23243,22578,21922,21280,20670,20075,19521,19025,18560,18146,17781,17438,17170,16909,16664,16465,16251,16055,15863,15665,15491,15347,15251,15145,15074,15011,14978,14951,14965,14958,14992,15003,15051,15101,15120,15187,15221,15233,15248,15253,15255,15283,15294,15301,15285,15242,15184,15102,15042,14954,14860,14709,14567,14411,14213,13999,13781,13551,13298,13028,12737,12437,12157,11846,11563,11300,11040,10802,10569,10308,10002,9675,9367,9084,8836,8631,8450,8293,8168,8069,7989,7927,7866,7809,7720,7573,7394,7230,7109,6997,6899,6810,6761,6703,6671,6658,6645,6641,6617,6629,6619,6464,6154,5737,5122,21.9,21.9,22.5,1567489,0.3,12.3,11.9,5.0,464,-1.00,-1.00,57.7985,-19.055788,0.000517,,,,,49 +SATSLF0720,2024246,1.261656,4.13,0.0579,0.1044,0.0188,0.00,16104,652,1,727,728,714,700,715,709,720,723,734,737,749,750,775,879,1211,1926,3099,4469,5721,6650,7285,7763,8182,8612,9139,9750,10484,11359,12347,13465,14642,15799,16906,17862,18584,19018,19139,18965,18569,18037,17451,16898,16437,16081,15863,15788,15870,16111,16512,17103,17827,18748,19823,21045,22342,23789,25262,26737,28143,29389,30391,31156,31555,31555,31229,30561,29654,28597,27367,26192,25029,23957,22961,22102,21384,20791,20306,19911,19637,19496,19385,19392,19490,19700,19941,20299,20739,21258,21824,22437,23112,23746,24355,24945,25417,25783,26037,26091,25973,25696,25213,24581,23850,23061,22193,21318,20475,19706,18997,18334,17795,17329,16920,16597,16357,16184,16098,16053,16061,16141,16303,16533,16833,17197,17629,18125,18682,19293,19924,20598,21340,22074,22803,23528,24237,24906,25489,26048,26457,26779,27009,27129,27157,27061,26845,26509,26124,25636,25061,24485,23845,23197,22526,21879,21246,20624,20042,19483,18997,18526,18129,17762,17419,17142,16869,16639,16441,16237,16041,15845,15665,15503,15357,15236,15130,15051,14995,14935,14923,14925,14950,14977,14999,15029,15073,15108,15146,15205,15216,15221,15231,15255,15277,15276,15275,15261,15207,15144,15101,15010,14941,14841,14700,14559,14384,14200,13989,13756,13524,13266,12996,12707,12433,12133,11847,11542,11288,11041,10790,10557,10297,9989,9669,9370,9077,8832,8621,8442,8294,8159,8071,7989,7914,7854,7799,7706,7574,7394,7239,7114,7001,6901,6817,6748,6709,6662,6635,6631,6608,6597,6610,6619,6456,6153,5734,5123,21.9,21.9,22.5,1567490,0.2,12.2,12.0,5.0,474,-1.00,-1.00,58.0838,-19.103811,0.000603,,,,,59 +SATSLF0720,2024246,1.261908,4.18,0.0585,0.1029,0.0180,0.00,16148,652,1,709,708,713,713,715,715,724,706,727,753,750,743,767,895,1225,1957,3106,4489,5751,6682,7336,7805,8229,8673,9208,9828,10554,11415,12411,13533,14704,15870,16985,17940,18650,19096,19232,19042,18655,18129,17544,16976,16509,16153,15919,15863,15945,16186,16599,17185,17929,18825,19902,21109,22413,23859,25355,26837,28261,29505,30517,31265,31643,31650,31318,30668,29746,28701,27494,26286,25129,24058,23037,22208,21463,20873,20385,19973,19701,19538,19450,19452,19549,19733,19997,20355,20782,21319,21882,22501,23172,23810,24421,24996,25478,25854,26116,26171,26058,25764,25290,24640,23924,23125,22247,21373,20541,19763,19065,18413,17841,17377,16952,16640,16376,16202,16103,16071,16110,16189,16361,16569,16874,17238,17670,18152,18741,19345,19977,20656,21383,22126,22862,23586,24278,24934,25521,26083,26528,26848,27101,27188,27227,27130,26916,26585,26194,25685,25118,24535,23898,23242,22578,21928,21281,20672,20088,19554,19034,18569,18181,17796,17463,17167,16897,16662,16451,16247,16067,15879,15687,15531,15390,15274,15181,15086,15019,14982,14944,14958,14961,14973,15008,15039,15079,15100,15155,15223,15248,15266,15276,15285,15302,15312,15294,15287,15234,15170,15128,15050,14952,14865,14733,14594,14405,14237,14013,13800,13562,13290,13032,12753,12457,12164,11873,11586,11301,11046,10803,10563,10297,10007,9674,9371,9090,8842,8645,8465,8313,8183,8083,8007,7944,7877,7807,7720,7573,7399,7249,7117,7006,6910,6830,6758,6708,6677,6655,6645,6635,6605,6626,6626,6476,6167,5750,5133,21.9,21.9,22.6,1567491,0.1,12.3,12.0,5.0,471,-1.00,-1.00,57.1202,-18.768278,0.000475,,,,,59 +SATSLF0720,2024246,1.262164,3.92,0.0549,0.1035,0.0188,0.00,16123,652,1,720,705,712,715,720,703,715,723,720,731,723,741,777,874,1201,1922,3092,4481,5718,6653,7319,7793,8205,8659,9166,9786,10525,11384,12381,13492,14669,15837,16943,17898,18617,19051,19197,19025,18645,18099,17515,16948,16491,16119,15891,15805,15881,16139,16548,17133,17883,18790,19866,21079,22388,23826,25302,26784,28192,29453,30437,31214,31598,31600,31281,30629,29717,28663,27430,26245,25088,24013,23014,22154,21423,20825,20341,19945,19671,19517,19428,19433,19544,19712,19976,20329,20756,21268,21847,22473,23130,23775,24398,24980,25453,25805,26077,26132,26013,25712,25250,24610,23891,23097,22226,21357,20501,19741,19029,18369,17815,17357,16932,16616,16373,16201,16107,16060,16070,16163,16325,16551,16845,17208,17642,18130,18708,19317,19949,20626,21367,22118,22853,23564,24269,24919,25501,26069,26493,26825,27053,27172,27169,27085,26864,26539,26150,25644,25076,24497,23875,23208,22563,21897,21264,20645,20059,19499,19003,18526,18135,17771,17434,17160,16885,16645,16443,16247,16053,15867,15677,15494,15367,15242,15151,15070,15001,14974,14949,14945,14945,14970,15002,15030,15072,15100,15153,15221,15225,15235,15240,15245,15273,15277,15286,15269,15227,15165,15099,15044,14944,14853,14708,14557,14373,14195,13988,13773,13542,13277,13011,12725,12427,12139,11829,11537,11276,11027,10778,10563,10285,9989,9680,9357,9085,8833,8621,8444,8291,8161,8061,7978,7913,7862,7789,7711,7564,7383,7247,7121,7001,6913,6834,6765,6697,6659,6645,6633,6617,6612,6617,6599,6469,6165,5726,5120,21.9,21.9,22.6,1567492,0.3,12.3,11.9,5.0,471,-1.00,-1.00,58.3462,-19.247406,0.000573,,,,,143 +SATSLF0720,2024246,1.262417,4.16,0.0582,0.1037,0.0188,0.00,16124,652,1,711,704,721,729,725,712,711,722,715,718,729,742,777,891,1218,1947,3113,4493,5733,6665,7313,7795,8217,8661,9170,9792,10552,11397,12386,13502,14679,15851,16958,17925,18640,19065,19208,19014,18632,18093,17498,16945,16482,16119,15881,15820,15914,16157,16565,17149,17885,18806,19864,21072,22385,23843,25325,26805,28244,29481,30461,31223,31616,31609,31274,30649,29706,28646,27421,26234,25070,24013,23005,22162,21438,20830,20336,19948,19657,19509,19417,19421,19528,19718,19973,20328,20762,21288,21840,22461,23129,23777,24392,24973,25454,25811,26080,26125,26020,25736,25243,24612,23895,23089,22217,21342,20507,19729,19029,18378,17825,17355,16944,16622,16363,16187,16101,16055,16077,16154,16323,16561,16858,17226,17637,18123,18697,19304,19933,20634,21354,22093,22826,23551,24245,24912,25501,26069,26501,26812,27040,27156,27149,27057,26853,26517,26131,25655,25083,24485,23859,23211,22550,21888,21254,20641,20051,19495,19005,18537,18133,17783,17449,17158,16889,16641,16446,16229,16038,15844,15657,15482,15355,15243,15139,15087,15001,14955,14945,14946,14945,14973,14989,15024,15072,15104,15139,15211,15200,15226,15236,15234,15266,15278,15274,15267,15209,15156,15101,15021,14939,14859,14717,14577,14389,14208,13985,13764,13536,13271,13006,12731,12425,12138,11838,11545,11281,11029,10789,10562,10297,9993,9678,9364,9073,8836,8608,8435,8279,8158,8065,7991,7944,7883,7817,7714,7571,7394,7243,7109,6999,6897,6823,6769,6708,6667,6650,6637,6630,6610,6629,6626,6473,6155,5745,5114,21.9,22.0,22.6,1567493,0.0,12.3,12.0,5.0,463,-1.00,-1.00,57.4775,-18.890288,0.000642,,,,,135 +SATSLF0720,2024246,1.262671,4.11,0.0575,0.1046,0.0191,0.00,16093,652,1,705,716,706,715,713,714,717,723,727,729,737,736,767,887,1205,1930,3109,4468,5705,6629,7275,7745,8185,8630,9155,9773,10520,11370,12374,13465,14635,15804,16901,17869,18580,19005,19138,18956,18580,18037,17463,16893,16442,16074,15843,15776,15865,16117,16510,17086,17821,18743,19805,21025,22338,23775,25239,26726,28137,29397,30381,31133,31530,31517,31208,30552,29630,28585,27344,26176,25031,23957,22955,22108,21394,20781,20285,19906,19620,19461,19378,19382,19464,19667,19917,20264,20711,21233,21803,22423,23093,23744,24353,24930,25401,25751,26017,26062,25944,25681,25181,24550,23838,23035,22169,21308,20465,19699,18997,18352,17787,17323,16906,16588,16353,16171,16076,16020,16043,16137,16297,16516,16819,17185,17618,18101,18683,19284,19909,20590,21310,22045,22786,23504,24201,24869,25457,26019,26432,26755,27011,27116,27125,27038,26824,26496,26106,25608,25061,24465,23825,23165,22522,21858,21223,20610,20023,19473,18985,18525,18116,17749,17428,17119,16854,16618,16424,16201,16017,15831,15622,15467,15330,15235,15121,15063,14981,14952,14940,14938,14933,14957,14969,15011,15056,15086,15131,15190,15197,15217,15229,15221,15240,15246,15255,15261,15209,15141,15092,15017,14920,14829,14696,14549,14372,14192,13975,13761,13517,13265,12993,12713,12417,12121,11822,11540,11277,11025,10787,10545,10298,9978,9662,9352,9073,8820,8601,8438,8286,8149,8071,7985,7914,7855,7785,7689,7559,7376,7237,7101,6988,6892,6811,6746,6686,6658,6641,6622,6619,6598,6626,6609,6461,6154,5729,5111,21.9,22.0,22.6,1567493,0.4,12.3,11.9,5.0,469,-1.00,-1.00,57.9733,-19.046424,0.000591,,,,,201 +SATSLF0720,2024246,1.262927,4.19,0.0587,0.1051,0.0193,0.00,16089,652,1,723,709,715,720,722,719,734,730,729,739,733,747,777,890,1213,1928,3097,4469,5710,6647,7281,7753,8165,8623,9129,9752,10498,11359,12365,13466,14645,15790,16884,17842,18549,18977,19114,18930,18582,18034,17451,16902,16421,16073,15846,15773,15841,16099,16501,17088,17812,18734,19805,21014,22324,23755,25241,26710,28119,29371,30377,31115,31508,31506,31173,30530,29621,28572,27338,26162,25001,23936,22948,22087,21366,20763,20280,19887,19610,19457,19357,19368,19479,19670,19917,20282,20702,21225,21785,22416,23078,23722,24338,24921,25393,25761,26021,26067,25957,25685,25193,24557,23827,23034,22171,21289,20452,19688,18981,18342,17774,17313,16910,16582,16329,16160,16056,16026,16041,16130,16295,16514,16813,17179,17610,18087,18670,19258,19905,20581,21306,22057,22800,23520,24228,24874,25467,26034,26450,26768,26995,27115,27120,27021,26817,26474,26093,25600,25040,24465,23826,23187,22537,21881,21242,20630,20036,19474,18991,18510,18110,17726,17405,17105,16851,16601,16412,16211,16019,15832,15645,15478,15349,15221,15131,15045,14968,14939,14927,14919,14932,14958,14977,15013,15057,15090,15137,15186,15193,15202,15217,15233,15252,15261,15271,15260,15217,15145,15083,15021,14934,14849,14705,14533,14361,14176,13966,13754,13520,13266,13001,12724,12413,12122,11835,11549,11276,11032,10785,10545,10274,9977,9661,9345,9067,8813,8602,8445,8273,8159,8069,7990,7917,7856,7801,7710,7561,7372,7242,7094,6986,6893,6817,6758,6688,6659,6629,6614,6597,6595,6611,6605,6452,6164,5742,5107,21.9,22.0,22.6,1567494,0.3,12.3,11.9,5.0,471,-1.00,-1.00,57.7315,-18.936295,0.000562,,,,,235 +SATSLF0720,2024246,1.263181,4.12,0.0577,0.1061,0.0195,0.00,16054,652,1,709,722,720,727,728,734,735,739,730,723,739,736,765,893,1208,1943,3102,4478,5721,6625,7269,7743,8158,8611,9128,9733,10475,11345,12326,13429,14597,15737,16856,17802,18524,18949,19072,18901,18512,17991,17413,16849,16398,16026,15797,15732,15807,16054,16467,17045,17771,18690,19746,20961,22258,23690,25161,26642,28069,29300,30295,31020,31432,31414,31093,30437,29551,28493,27265,26098,24950,23878,22881,22045,21306,20689,20226,19829,19563,19410,19312,19346,19424,19600,19879,20220,20663,21180,21749,22356,23027,23669,24277,24838,25323,25696,25954,25992,25877,25608,25130,24495,23795,22995,22130,21261,20416,19639,18940,18299,17738,17269,16861,16561,16294,16139,16036,15986,16007,16097,16261,16497,16786,17143,17549,18043,18627,19217,19860,20531,21275,22005,22742,23465,24162,24803,25404,25956,26381,26692,26950,27048,27065,26978,26753,26423,26036,25538,24979,24405,23765,23126,22466,21810,21176,20566,19980,19421,18928,18470,18066,17702,17362,17083,16820,16577,16384,16170,15982,15797,15619,15461,15310,15202,15105,15034,14952,14912,14897,14884,14899,14906,14944,14978,15034,15037,15095,15154,15165,15188,15187,15199,15208,15244,15249,15221,15180,15124,15076,14998,14902,14802,14664,14510,14339,14149,13938,13730,13505,13241,12978,12695,12406,12118,11818,11518,11244,10985,10758,10538,10257,9965,9648,9336,9054,8814,8605,8424,8273,8141,8029,7963,7893,7847,7782,7689,7546,7371,7213,7099,6989,6885,6809,6751,6689,6641,6631,6609,6608,6597,6601,6608,6457,6157,5728,5122,21.9,22.1,22.6,1567495,0.0,12.3,11.9,5.0,469,-1.00,-1.00,57.9876,-18.993730,0.000562,,,,,251 +SATSLF0720,2024246,1.263432,4.34,0.0608,0.1053,0.0193,0.00,16083,652,1,711,702,711,701,715,703,720,704,719,722,736,741,793,904,1220,1933,3111,4484,5705,6631,7271,7755,8170,8619,9122,9739,10495,11351,12365,13463,14626,15787,16890,17831,18544,18976,19099,18929,18556,18027,17436,16882,16421,16072,15858,15766,15852,16105,16500,17080,17833,18732,19798,21002,22309,23749,25219,26704,28115,29373,30346,31094,31495,31501,31162,30520,29605,28550,27317,26153,24998,23941,22948,22096,21357,20762,20267,19883,19608,19442,19347,19368,19465,19643,19918,20246,20689,21218,21770,22395,23067,23707,24329,24896,25381,25741,26001,26061,25933,25646,25168,24551,23822,23035,22167,21276,20439,19675,18971,18333,17778,17301,16897,16589,16342,16164,16065,16019,16037,16133,16291,16523,16819,17180,17605,18095,18669,19285,19898,20585,21313,22038,22775,23499,24196,24853,25445,26014,26440,26761,27009,27115,27131,27037,26800,26470,26083,25589,25021,24432,23786,23150,22515,21853,21227,20613,20013,19455,18967,18498,18097,17730,17410,17114,16859,16610,16416,16201,16029,15829,15636,15466,15331,15213,15118,15048,14981,14942,14925,14919,14921,14951,14985,15017,15041,15063,15119,15174,15185,15194,15207,15221,15246,15256,15255,15253,15208,15136,15083,15002,14919,14823,14698,14547,14373,14182,13981,13758,13517,13255,12983,12708,12418,12116,11818,11538,11272,11017,10785,10560,10298,9976,9657,9349,9080,8826,8610,8453,8304,8168,8061,7978,7905,7850,7788,7696,7559,7390,7238,7118,7015,6907,6822,6754,6688,6659,6639,6626,6614,6605,6609,6598,6452,6155,5723,5107,21.9,22.1,22.7,1567496,0.1,12.2,12.0,5.0,472,-1.00,-1.00,57.1197,-18.673498,0.000507,,,,,185 +SATSLF0720,2024246,1.263688,4.14,0.0579,0.1067,0.0209,0.00,16031,652,1,721,722,727,716,719,705,711,715,720,734,733,752,789,901,1213,1929,3085,4451,5695,6613,7253,7729,8150,8589,9091,9728,10454,11320,12309,13410,14583,15728,16833,17774,18496,18926,19047,18880,18501,17977,17381,16835,16361,16005,15781,15722,15796,16041,16449,17017,17772,18654,19719,20925,22237,23666,25140,26625,28013,29265,30249,30999,31385,31393,31066,30432,29508,28463,27229,26050,24913,23837,22846,22000,21274,20661,20203,19805,19525,19387,19290,19293,19401,19595,19850,20198,20628,21149,21721,22326,22994,23621,24235,24821,25289,25640,25906,25960,25845,25570,25096,24459,23763,22948,22087,21224,20372,19631,18917,18273,17723,17229,16826,16516,16273,16108,16004,15966,15983,16071,16235,16471,16746,17120,17537,18020,18595,19201,19838,20518,21235,21991,22704,23413,24119,24764,25361,25930,26340,26673,26896,27009,27028,26938,26726,26397,26007,25526,24949,24369,23737,23093,22420,21780,21152,20544,19955,19394,18911,18429,18049,17683,17352,17059,16803,16576,16356,16155,15959,15774,15590,15425,15293,15172,15079,14997,14931,14888,14880,14869,14868,14898,14919,14970,14994,15022,15083,15133,15162,15165,15179,15177,15197,15209,15207,15218,15156,15094,15031,14959,14888,14786,14642,14489,14338,14142,13932,13713,13475,13223,12949,12678,12386,12094,11799,11498,11227,10987,10746,10501,10237,9931,9621,9321,9028,8781,8588,8422,8256,8135,8043,7953,7895,7838,7765,7686,7532,7367,7197,7087,6973,6873,6781,6725,6675,6629,6593,6607,6590,6579,6599,6601,6453,6136,5723,5104,21.9,22.1,22.7,1567497,0.5,12.3,11.9,5.0,469,-1.00,-1.00,57.9841,-18.971027,0.000583,,,,,250 +SATSLF0720,2024246,1.263942,4.22,0.0591,0.1079,0.0222,0.00,15996,652,1,711,706,713,718,717,718,713,711,717,736,724,747,766,892,1217,1941,3094,4457,5702,6613,7242,7719,8121,8567,9085,9713,10446,11298,12309,13406,14552,15716,16800,17753,18462,18890,19015,18855,18470,17936,17354,16807,16346,15982,15751,15678,15758,16013,16412,17006,17740,18626,19693,20889,22205,23636,25090,26559,27959,29200,30184,30917,31315,31317,30984,30355,29445,28386,27161,26003,24855,23785,22804,21956,21226,20638,20149,19768,19490,19325,19235,19255,19357,19531,19806,20153,20581,21088,21656,22259,22935,23584,24189,24759,25238,25593,25847,25897,25797,25522,25042,24413,23693,22905,22048,21175,20317,19571,18867,18235,17690,17204,16806,16488,16245,16081,15976,15932,15950,16042,16215,16418,16731,17088,17513,17997,18563,19152,19782,20477,21195,21925,22666,23360,24058,24706,25290,25858,26277,26589,26835,26958,26965,26871,26673,26352,25956,25448,24882,24308,23675,23040,22382,21726,21090,20484,19907,19350,18866,18398,17993,17645,17317,17035,16765,16510,16343,16121,15938,15742,15562,15396,15250,15137,15040,14965,14892,14856,14827,14831,14825,14859,14875,14929,14965,14996,15029,15095,15094,15127,15137,15143,15157,15178,15186,15173,15122,15061,14989,14930,14820,14736,14596,14459,14299,14105,13897,13690,13449,13195,12921,12654,12344,12043,11766,11486,11213,10963,10727,10483,10231,9915,9585,9293,9024,8769,8575,8401,8256,8124,8021,7956,7885,7816,7742,7669,7505,7340,7181,7059,6950,6844,6766,6698,6652,6617,6601,6596,6573,6565,6583,6575,6414,6116,5698,5085,21.9,22.1,22.8,1567498,0.4,12.3,12.0,5.0,469,-1.00,-1.00,57.4643,-18.713206,0.000571,,,,,227 +SATSLF0720,2024246,1.264192,4.13,0.0578,0.1065,0.0205,0.00,16040,652,1,713,705,703,711,716,713,725,729,733,722,735,737,791,895,1223,1943,3096,4454,5695,6622,7268,7728,8145,8595,9109,9725,10473,11330,12321,13421,14586,15735,16840,17787,18489,18934,19068,18888,18516,17978,17388,16827,16372,16012,15794,15733,15798,16053,16454,17030,17764,18664,19745,20933,22241,23687,25157,26631,28038,29270,30272,31009,31410,31386,31075,30429,29520,28481,27241,26076,24932,23853,22861,22006,21283,20684,20214,19831,19549,19406,19298,19298,19398,19590,19859,20211,20632,21162,21725,22338,23013,23654,24264,24846,25306,25677,25940,25994,25853,25580,25116,24469,23763,22970,22112,21244,20406,19623,18931,18276,17718,17241,16849,16525,16294,16116,16010,15971,15996,16090,16263,16493,16762,17123,17536,18039,18600,19202,19840,20529,21243,21993,22724,23457,24148,24789,25385,25938,26341,26674,26916,27029,27040,26957,26729,26403,26011,25517,24961,24373,23741,23092,22447,21779,21170,20562,19972,19413,18930,18452,18069,17689,17363,17081,16801,16560,16371,16162,15979,15782,15593,15432,15307,15198,15088,15018,14933,14900,14868,14875,14877,14900,14921,14959,15012,15049,15083,15131,15143,15159,15165,15166,15211,15225,15214,15227,15178,15113,15044,14972,14883,14777,14644,14493,14327,14144,13926,13737,13490,13216,12957,12675,12371,12071,11785,11501,11229,11004,10753,10547,10265,9961,9639,9339,9036,8791,8574,8423,8266,8141,8039,7968,7902,7851,7773,7681,7548,7357,7197,7078,6969,6871,6786,6738,6695,6633,6616,6614,6602,6588,6605,6594,6437,6146,5729,5117,21.9,22.1,22.8,1567499,0.3,12.3,12.0,5.0,470,-1.00,-1.00,57.9863,-18.980586,0.000576,,,,,92 +SATSLF0720,2024246,1.264448,4.16,0.0582,0.1068,0.0210,0.00,16029,652,1,737,718,731,716,733,710,734,722,728,731,735,771,785,899,1213,1941,3098,4465,5708,6633,7261,7732,8141,8595,9109,9720,10458,11314,12301,13399,14557,15717,16810,17761,18482,18907,19035,18856,18498,17956,17379,16813,16354,15997,15764,15701,15792,16034,16441,17014,17752,18651,19707,20917,22224,23648,25101,26590,27997,29225,30240,30976,31360,31366,31031,30402,29494,28433,27216,26045,24885,23827,22840,21981,21273,20666,20192,19793,19524,19351,19282,19278,19378,19579,19834,20200,20632,21144,21701,22322,22970,23611,24221,24800,25273,25653,25896,25949,25833,25558,25090,24466,23737,22964,22081,21229,20394,19618,18908,18263,17714,17238,16848,16524,16271,16097,15993,15960,15972,16077,16238,16457,16765,17134,17562,18038,18607,19223,19845,20523,21241,21966,22712,23413,24117,24761,25343,25909,26333,26657,26912,27013,27032,26936,26706,26395,26002,25495,24947,24365,23733,23082,22435,21777,21142,20542,19949,19398,18905,18435,18048,17673,17363,17045,16793,16573,16361,16156,15975,15785,15590,15425,15277,15173,15070,15004,14937,14889,14853,14868,14881,14906,14918,14967,15014,15022,15079,15127,15143,15170,15165,15187,15206,15222,15216,15208,15148,15088,15026,14951,14880,14787,14669,14509,14330,14145,13931,13723,13478,13236,12962,12664,12375,12082,11797,11515,11238,11013,10756,10527,10252,9947,9629,9316,9041,8802,8586,8423,8272,8147,8050,7960,7893,7840,7782,7694,7546,7359,7227,7090,6972,6884,6810,6734,6661,6643,6617,6599,6595,6573,6599,6597,6440,6149,5728,5107,21.9,22.1,22.8,1567500,0.1,12.2,12.0,5.0,468,-1.00,-1.00,57.9398,-18.938746,0.000523,,,,,103 +SATSDF0720,2024246,1.509138,0.00,0.0000,0.0000,0.0000,0.00,652,0,1,631,625,620,631,640,634,649,627,643,627,635,634,626,619,639,635,644,627,631,624,641,641,639,662,663,676,661,661,653,663,663,664,649,671,664,661,663,650,645,640,650,661,653,655,664,663,653,653,661,660,660,657,665,663,665,665,648,647,657,657,651,652,656,656,655,652,657,662,665,657,657,654,654,649,654,658,670,657,662,653,643,656,654,667,649,659,644,645,653,657,665,657,661,662,649,660,666,662,644,643,651,647,654,653,656,648,660,666,659,657,669,661,657,651,643,641,639,656,646,650,637,653,647,660,662,665,648,659,646,646,647,637,642,656,665,648,657,658,669,661,657,653,644,645,639,655,657,640,651,663,661,659,659,652,647,655,667,645,667,641,643,660,649,657,657,650,651,650,653,653,651,666,656,659,657,664,653,660,649,649,641,642,648,649,644,655,658,653,650,650,644,653,649,645,645,642,647,639,651,647,663,653,657,651,647,647,643,656,657,650,648,641,643,641,653,648,652,659,659,655,665,650,653,661,646,658,644,659,654,662,658,657,653,653,653,657,648,647,647,629,651,642,650,645,656,650,657,661,645,654,660,647,651,661,658,490,0.0,0.0,0.0,1567499,0.2,12.8,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,203 +SATSLF0720,2024246,1.509689,4.10,0.0574,0.1008,0.0165,0.00,16223,652,1,721,723,721,698,710,699,711,704,732,741,745,749,772,883,1215,1941,3121,4503,5765,6697,7347,7823,8252,8694,9221,9852,10613,11477,12486,13581,14791,15957,17056,18029,18755,19195,19331,19138,18763,18232,17625,17067,16611,16232,16009,15938,16009,16254,16657,17249,18007,18926,19996,21242,22570,24021,25499,26991,28414,29666,30653,31418,31830,31828,31493,30837,29924,28861,27621,26432,25271,24186,23191,22322,21577,20950,20471,20091,19802,19638,19542,19570,19664,19864,20118,20465,20907,21431,22004,22616,23283,23930,24550,25125,25614,25977,26246,26288,26166,25879,25386,24759,24053,23244,22355,21495,20629,19856,19162,18485,17933,17445,17047,16717,16461,16303,16210,16148,16172,16263,16433,16654,16955,17317,17753,18240,18808,19421,20066,20763,21495,22241,22996,23705,24417,25085,25659,26216,26672,26989,27238,27345,27363,27246,27051,26721,26304,25802,25229,24642,24019,23357,22699,22018,21393,20776,20183,19627,19137,18645,18234,17869,17547,17254,16981,16756,16534,16320,16140,15929,15742,15579,15434,15335,15233,15171,15083,15034,15034,15019,15024,15039,15079,15110,15145,15189,15237,15289,15303,15314,15319,15327,15341,15351,15357,15359,15305,15241,15177,15101,15008,14918,14794,14632,14468,14277,14065,13838,13609,13341,13069,12785,12484,12195,11897,11601,11333,11102,10845,10606,10341,10045,9709,9400,9110,8882,8667,8495,8336,8197,8094,8016,7955,7901,7846,7761,7600,7435,7277,7145,7037,6933,6850,6802,6741,6688,6679,6657,6635,6623,6653,6646,6498,6189,5753,5142,21.8,21.8,22.2,1567500,0.5,12.3,12.0,5.0,595,-1.00,-1.00,57.3540,-18.966555,0.000591,,,,,152 +SATSLF0720,2024246,1.509871,4.24,0.0593,0.1011,0.0164,0.00,16209,652,1,715,706,698,711,717,710,722,712,716,722,722,725,765,875,1210,1946,3113,4503,5760,6684,7321,7815,8214,8667,9191,9806,10583,11444,12455,13582,14759,15929,17051,18016,18733,19165,19291,19116,18729,18203,17614,17044,16579,16224,16000,15925,16009,16250,16649,17243,17993,18898,19972,21202,22536,23989,25462,26968,28394,29658,30653,31392,31802,31797,31477,30821,29896,28834,27586,26397,25232,24151,23153,22306,21568,20952,20474,20086,19800,19636,19529,19554,19656,19837,20123,20469,20893,21412,21976,22604,23285,23914,24532,25124,25602,25957,26222,26276,26163,25873,25386,24743,24025,23218,22343,21463,20613,19842,19114,18460,17906,17440,17019,16704,16461,16292,16189,16126,16137,16242,16390,16631,16925,17307,17726,18227,18809,19402,20059,20741,21473,22216,22957,23689,24384,25056,25658,26229,26657,26989,27226,27318,27334,27228,27015,26688,26290,25795,25216,24633,23986,23332,22669,22017,21381,20759,20165,19607,19101,18636,18218,17859,17514,17230,16962,16722,16507,16320,16125,15925,15744,15584,15450,15332,15237,15145,15069,15037,15020,15015,15016,15040,15069,15101,15136,15165,15213,15266,15287,15306,15307,15317,15345,15361,15346,15332,15286,15226,15181,15093,15011,14913,14774,14624,14455,14253,14045,13843,13594,13330,13057,12767,12487,12189,11898,11614,11326,11091,10840,10598,10325,10014,9709,9397,9111,8860,8647,8481,8330,8189,8103,8014,7937,7908,7821,7751,7594,7424,7262,7133,7018,6919,6844,6774,6724,6678,6661,6653,6647,6639,6649,6634,6498,6185,5762,5129,21.8,21.8,22.3,1567501,0.0,12.3,12.0,5.0,490,-1.00,-1.00,57.0444,-18.821408,0.000554,,,,,220 +SATSLF0720,2024246,1.510126,4.08,0.0572,0.1008,0.0167,0.00,16200,652,1,706,708,712,716,724,727,721,724,729,727,720,723,770,881,1198,1939,3113,4493,5751,6690,7337,7813,8233,8681,9189,9825,10574,11448,12440,13585,14757,15905,17038,17992,18720,19154,19287,19109,18720,18187,17585,17024,16561,16200,15960,15897,15982,16232,16653,17232,17973,18888,19954,21182,22509,23972,25446,26935,28361,29608,30619,31366,31771,31773,31457,30794,29875,28813,27565,26395,25229,24134,23125,22280,21540,20926,20451,20048,19783,19629,19545,19553,19644,19826,20083,20425,20871,21389,21972,22597,23251,23921,24516,25096,25594,25957,26208,26257,26128,25853,25369,24746,24016,23213,22324,21455,20603,19816,19111,18459,17898,17429,17032,16690,16438,16283,16178,16129,16149,16233,16408,16619,16941,17298,17730,18218,18795,19390,20030,20728,21469,22215,22964,23683,24377,25045,25639,26200,26641,26937,27181,27276,27319,27205,26993,26669,26279,25787,25212,24608,23986,23329,22673,21994,21371,20744,20157,19597,19099,18624,18225,17854,17517,17230,16957,16725,16509,16306,16123,15922,15729,15577,15431,15314,15222,15145,15077,15034,15012,15005,15014,15053,15065,15116,15140,15172,15214,15259,15271,15287,15300,15318,15337,15345,15365,15326,15286,15214,15171,15108,15017,14923,14784,14624,14455,14254,14045,13817,13573,13315,13043,12775,12483,12180,11895,11609,11336,11095,10849,10616,10344,10022,9690,9383,9103,8857,8656,8485,8324,8194,8099,8023,7953,7899,7826,7737,7585,7417,7260,7138,7015,6931,6841,6769,6717,6679,6650,6647,6627,6619,6649,6651,6508,6189,5755,5143,21.8,21.8,22.4,1567502,0.6,12.2,12.0,5.0,475,-1.00,-1.00,57.7742,-19.110298,0.000556,,,,,85 +SATSLF0720,2024246,1.510378,3.94,0.0552,0.1018,0.0173,0.00,16190,652,1,715,722,715,727,714,717,730,732,742,733,731,740,770,877,1199,1935,3106,4492,5759,6695,7340,7821,8246,8691,9204,9838,10581,11448,12451,13564,14741,15911,17017,17979,18708,19148,19289,19106,18728,18197,17589,17021,16563,16199,15973,15895,15966,16228,16632,17204,17958,18875,19947,21173,22481,23945,25417,26925,28333,29592,30596,31349,31744,31751,31424,30757,29862,28789,27567,26370,25202,24125,23121,22254,21522,20923,20422,20049,19767,19604,19500,19523,19625,19806,20075,20427,20865,21381,21943,22571,23242,23881,24503,25072,25562,25929,26176,26233,26102,25827,25345,24709,23987,23178,22312,21419,20571,19819,19100,18437,17883,17413,16989,16679,16425,16267,16162,16114,16135,16221,16405,16618,16910,17285,17709,18199,18794,19385,20035,20697,21435,22181,22924,23650,24357,25015,25610,26196,26615,26939,27185,27283,27283,27195,26986,26653,26245,25763,25204,24616,23971,23325,22651,21987,21341,20733,20134,19576,19097,18617,18209,17834,17486,17211,16950,16693,16496,16294,16115,15929,15729,15565,15418,15309,15208,15126,15063,15011,14999,14981,14992,15027,15053,15077,15129,15163,15216,15266,15279,15277,15280,15292,15320,15340,15334,15332,15285,15213,15150,15072,14991,14917,14773,14617,14457,14251,14046,13825,13581,13312,13045,12773,12484,12189,11890,11598,11325,11061,10831,10585,10314,10009,9695,9387,9115,8871,8651,8486,8320,8196,8090,8006,7953,7892,7835,7715,7595,7401,7256,7131,7021,6940,6853,6789,6729,6685,6654,6635,6639,6634,6637,6628,6479,6176,5761,5137,21.8,21.8,22.4,1567503,0.3,12.3,11.9,5.0,477,-1.00,-1.00,57.9738,-19.178796,0.000529,,,,,44 +SATSLF0720,2024246,1.510632,4.07,0.0571,0.1018,0.0179,0.00,16183,652,1,695,695,720,722,713,712,714,715,727,728,737,743,772,895,1210,1943,3121,4496,5748,6672,7334,7813,8247,8694,9209,9835,10583,11449,12446,13555,14743,15913,17025,17973,18713,19142,19290,19104,18722,18192,17581,17029,16553,16189,15963,15893,15968,16224,16646,17222,17989,18878,19957,21166,22487,23952,25434,26914,28331,29586,30581,31351,31737,31752,31425,30776,29852,28796,27554,26368,25207,24125,23108,22259,21517,20913,20425,20028,19761,19594,19501,19514,19616,19811,20059,20409,20848,21370,21937,22553,23234,23894,24489,25054,25552,25914,26181,26231,26114,25824,25338,24696,23979,23170,22307,21414,20569,19797,19101,18450,17877,17413,16996,16685,16429,16267,16161,16118,16133,16210,16391,16610,16901,17274,17700,18177,18759,19385,20017,20715,21445,22184,22918,23637,24346,24985,25579,26149,26573,26891,27136,27248,27278,27191,26965,26646,26245,25762,25181,24564,23936,23298,22620,21960,21315,20709,20123,19579,19089,18609,18197,17824,17501,17216,16939,16709,16512,16308,16090,15902,15731,15529,15411,15276,15182,15108,15041,15003,14994,15005,15001,15018,15031,15056,15111,15133,15187,15246,15262,15277,15274,15291,15310,15330,15330,15305,15265,15206,15131,15067,14986,14885,14740,14597,14438,14237,14038,13819,13581,13310,13043,12753,12471,12177,11885,11592,11316,11065,10835,10582,10327,10025,9693,9377,9110,8856,8631,8460,8312,8177,8096,8011,7937,7895,7821,7732,7600,7417,7269,7126,7017,6909,6826,6774,6709,6692,6662,6656,6637,6620,6633,6637,6471,6167,5759,5128,21.8,21.8,22.4,1567504,0.0,12.2,12.0,5.0,476,-1.00,-1.00,57.5139,-18.987778,0.000527,,,,,134 +SATSLF0720,2024246,1.510887,4.02,0.0564,0.1025,0.0178,0.00,16164,652,1,715,716,715,709,702,710,712,717,727,723,728,743,765,889,1204,1948,3113,4497,5758,6688,7329,7810,8224,8691,9202,9835,10586,11453,12456,13549,14738,15897,17007,17962,18698,19140,19281,19088,18698,18151,17565,16999,16541,16173,15945,15878,15965,16207,16619,17197,17944,18859,19937,21149,22473,23915,25389,26882,28298,29560,30553,31307,31713,31700,31385,30733,29822,28741,27523,26330,25164,24089,23068,22214,21483,20881,20401,19997,19731,19562,19470,19497,19582,19766,20025,20375,20809,21341,21901,22522,23203,23836,24473,25050,25521,25867,26144,26180,26071,25788,25313,24676,23941,23156,22290,21401,20551,19784,19077,18423,17849,17372,16963,16650,16385,16226,16125,16101,16121,16198,16365,16584,16891,17253,17692,18190,18754,19373,19993,20683,21403,22141,22888,23602,24308,24957,25557,26125,26549,26880,27121,27228,27245,27164,26934,26605,26200,25713,25152,24555,23918,23260,22613,21946,21323,20705,20109,19554,19052,18589,18180,17815,17500,17184,16908,16679,16477,16262,16079,15892,15705,15531,15386,15287,15181,15104,15025,14973,14978,14976,14984,15008,15021,15075,15105,15136,15189,15222,15247,15258,15261,15266,15289,15308,15301,15301,15248,15198,15134,15053,14970,14864,14730,14590,14408,14225,14005,13803,13566,13298,13040,12749,12461,12160,11861,11559,11303,11053,10802,10576,10307,10016,9681,9371,9090,8841,8632,8456,8293,8155,8071,7994,7923,7883,7808,7718,7578,7387,7247,7102,6999,6899,6815,6757,6704,6673,6648,6633,6614,6619,6643,6633,6485,6183,5735,5122,21.8,21.8,22.4,1567505,0.2,12.3,11.9,5.0,478,-1.00,-1.00,57.6211,-19.008508,0.000554,,,,,90 +SATSLF0720,2024246,1.511139,4.17,0.0585,0.1031,0.0182,0.00,16144,652,1,706,697,709,709,715,714,706,711,714,720,721,724,763,879,1205,1931,3109,4485,5730,6654,7307,7781,8206,8646,9174,9797,10537,11409,12414,13531,14712,15869,16985,17945,18661,19080,19221,19018,18648,18104,17523,16954,16509,16146,15922,15841,15938,16187,16577,17162,17906,18809,19880,21096,22421,23879,25352,26837,28267,29510,30509,31245,31651,31656,31330,30674,29766,28696,27477,26274,25135,24046,23049,22202,21457,20861,20373,19988,19712,19550,19442,19467,19564,19742,20015,20348,20792,21316,21883,22494,23177,23818,24432,25011,25485,25845,26105,26149,26042,25760,25292,24649,23923,23127,22257,21383,20533,19763,19058,18394,17833,17355,16953,16637,16385,16219,16113,16080,16086,16187,16350,16577,16865,17236,17661,18154,18726,19333,19985,20661,21380,22127,22870,23578,24289,24964,25545,26105,26538,26849,27095,27194,27208,27117,26897,26573,26170,25687,25122,24530,23895,23255,22592,21927,21302,20685,20087,19527,19046,18557,18163,17781,17463,17170,16912,16664,16453,16241,16055,15866,15666,15517,15370,15262,15159,15094,15024,14965,14951,14962,14956,14992,15018,15056,15102,15121,15161,15215,15233,15242,15261,15261,15283,15299,15307,15289,15253,15182,15121,15044,14949,14873,14730,14594,14402,14229,14005,13811,13563,13296,13021,12733,12439,12140,11863,11574,11298,11063,10806,10568,10311,10008,9683,9379,9089,8844,8629,8445,8293,8164,8064,8001,7930,7865,7799,7719,7568,7389,7248,7117,7000,6905,6835,6760,6721,6676,6650,6633,6622,6616,6636,6628,6473,6160,5737,5126,21.8,21.9,22.4,1567506,0.5,12.3,11.9,5.0,473,-1.00,-1.00,57.5800,-18.959090,0.000562,,,,,118 +SATSLF0720,2024246,1.511395,4.05,0.0567,0.1036,0.0183,0.00,16130,652,1,692,706,709,711,723,725,721,727,729,718,733,739,777,893,1216,1951,3121,4497,5729,6655,7314,7773,8198,8653,9161,9790,10530,11413,12398,13513,14691,15853,16968,17900,18631,19066,19192,19013,18634,18102,17520,16961,16488,16124,15909,15828,15902,16160,16553,17139,17886,18792,19861,21072,22400,23850,25331,26807,28227,29462,30465,31209,31613,31602,31283,30637,29724,28673,27456,26257,25117,24029,23031,22164,21434,20825,20341,19946,19676,19493,19421,19433,19537,19729,19993,20333,20773,21297,21864,22466,23137,23779,24379,24973,25449,25818,26081,26152,26034,25753,25257,24609,23897,23094,22232,21356,20509,19741,19043,18385,17810,17351,16940,16621,16370,16205,16118,16069,16085,16183,16337,16557,16858,17210,17643,18139,18708,19331,19966,20640,21373,22117,22837,23545,24254,24907,25502,26078,26507,26832,27076,27172,27200,27090,26875,26549,26156,25674,25098,24509,23872,23218,22567,21902,21275,20665,20061,19521,19020,18555,18143,17782,17445,17137,16883,16657,16460,16250,16067,15865,15677,15493,15363,15245,15159,15076,15001,14965,14946,14948,14957,14989,15004,15048,15083,15104,15145,15216,15213,15237,15243,15259,15269,15299,15301,15293,15249,15181,15116,15035,14958,14863,14734,14582,14401,14201,13996,13786,13539,13282,13014,12731,12440,12146,11861,11577,11284,11046,10797,10561,10292,9991,9683,9361,9090,8845,8625,8462,8296,8164,8068,7981,7921,7865,7803,7721,7565,7415,7245,7115,7007,6897,6814,6753,6697,6668,6641,6624,6615,6604,6628,6621,6478,6165,5751,5137,21.9,21.9,22.5,1567507,0.5,12.3,12.0,5.0,463,-1.00,-1.00,57.9320,-19.083548,0.000523,,,,,172 +SATSLF0720,2024246,1.511652,4.20,0.0589,0.1040,0.0185,0.00,16125,652,1,724,713,714,722,730,717,729,722,720,727,733,740,768,887,1219,1946,3113,4485,5725,6655,7305,7761,8195,8626,9160,9769,10513,11377,12381,13484,14660,15816,16933,17875,18591,19037,19169,18983,18600,18060,17478,16931,16469,16113,15889,15813,15888,16137,16560,17130,17880,18779,19848,21065,22381,23833,25301,26797,28196,29446,30461,31189,31613,31597,31275,30634,29714,28665,27416,26240,25081,24007,23009,22150,21415,20806,20345,19940,19672,19509,19405,19431,19525,19721,19979,20339,20777,21289,21854,22469,23140,23781,24401,24965,25446,25815,26080,26120,26011,25720,25239,24605,23906,23105,22225,21357,20506,19740,19022,18381,17818,17351,16938,16621,16390,16209,16109,16057,16084,16170,16338,16562,16859,17213,17643,18144,18710,19318,19954,20641,21373,22099,22855,23553,24259,24901,25505,26081,26513,26823,27063,27173,27178,27083,26890,26547,26157,25645,25080,24508,23864,23215,22567,21912,21282,20669,20082,19517,19029,18557,18141,17769,17435,17149,16888,16637,16447,16246,16055,15859,15677,15518,15366,15257,15141,15085,14996,14969,14946,14961,14950,14970,15001,15036,15085,15117,15171,15236,15237,15232,15229,15238,15257,15302,15312,15278,15231,15174,15110,15038,14955,14861,14721,14578,14393,14216,14008,13780,13549,13289,13013,12741,12448,12157,11841,11560,11278,11039,10796,10549,10299,9987,9675,9365,9081,8838,8621,8443,8299,8154,8074,7984,7925,7879,7810,7722,7589,7400,7251,7115,7000,6906,6824,6766,6701,6661,6644,6631,6606,6622,6621,6625,6476,6162,5737,5126,21.9,21.9,22.5,1567508,0.0,12.3,11.9,5.0,472,-1.00,-1.00,57.8921,-19.058559,0.000552,,,,,182 +SATSLF0720,2024246,1.511904,4.13,0.0579,0.1037,0.0184,0.00,16121,652,1,710,701,711,711,713,733,725,727,733,733,733,742,775,891,1209,1921,3090,4455,5715,6646,7296,7787,8198,8653,9175,9793,10532,11400,12397,13492,14670,15814,16929,17899,18614,19051,19177,19006,18619,18084,17494,16932,16481,16114,15877,15818,15881,16143,16550,17136,17883,18785,19864,21082,22408,23829,25313,26780,28186,29446,30460,31201,31593,31592,31273,30626,29717,28652,27419,26237,25082,23998,22996,22147,21422,20821,20333,19954,19664,19498,19419,19437,19522,19719,19969,20320,20780,21288,21847,22470,23142,23789,24405,24957,25443,25826,26069,26124,25994,25733,25248,24605,23881,23094,22212,21349,20509,19730,19021,18379,17812,17330,16926,16605,16373,16205,16101,16044,16079,16163,16340,16554,16853,17219,17645,18130,18692,19296,19940,20627,21350,22092,22826,23552,24260,24918,25501,26080,26487,26825,27066,27161,27185,27082,26865,26538,26145,25643,25078,24499,23863,23225,22571,21897,21264,20658,20055,19507,19004,18540,18130,17762,17448,17152,16890,16646,16439,16235,16048,15850,15666,15501,15361,15245,15148,15085,14993,14953,14945,14947,14941,14966,14982,15015,15066,15092,15143,15207,15221,15217,15229,15243,15258,15289,15275,15275,15235,15178,15113,15029,14935,14849,14716,14563,14382,14188,13987,13753,13517,13246,13005,12715,12427,12142,11858,11557,11292,11042,10797,10566,10290,9984,9659,9348,9062,8825,8608,8448,8297,8168,8075,7997,7919,7870,7800,7716,7575,7405,7225,7111,6996,6893,6819,6750,6682,6651,6642,6617,6611,6588,6630,6632,6469,6162,5733,5119,21.8,21.9,22.5,1567509,0.2,12.3,12.0,5.0,469,-1.00,-1.00,57.8014,-19.019313,0.000582,,,,,110 +SATSLF0720,2024246,1.512160,4.19,0.0587,0.1039,0.0191,0.00,16117,652,1,691,683,700,704,714,709,720,725,733,730,720,743,761,883,1198,1929,3094,4470,5728,6659,7287,7781,8208,8648,9173,9789,10522,11398,12395,13496,14683,15849,16958,17907,18617,19062,19188,19003,18608,18087,17496,16940,16477,16120,15895,15825,15899,16152,16568,17144,17880,18787,19859,21072,22401,23834,25323,26812,28217,29475,30478,31218,31609,31609,31266,30632,29725,28653,27421,26247,25074,24007,23010,22137,21437,20809,20332,19957,19670,19501,19410,19433,19528,19706,19976,20318,20743,21283,21841,22455,23118,23780,24385,24955,25436,25797,26059,26112,26003,25713,25249,24601,23894,23088,22218,21352,20507,19752,19030,18373,17792,17338,16920,16614,16367,16196,16085,16040,16081,16165,16341,16541,16845,17218,17648,18121,18696,19285,19932,20609,21342,22089,22826,23533,24238,24902,25501,26054,26474,26811,27061,27160,27176,27089,26856,26522,26138,25632,25082,24498,23857,23214,22551,21897,21253,20649,20039,19491,18986,18532,18132,17762,17411,17129,16859,16621,16426,16201,16028,15841,15653,15496,15354,15235,15155,15070,15003,14951,14935,14926,14939,14961,14994,15029,15067,15086,15143,15202,15208,15225,15227,15238,15240,15277,15269,15271,15229,15149,15089,15025,14933,14827,14701,14553,14387,14190,13980,13777,13533,13267,12997,12713,12421,12134,11833,11544,11287,11025,10788,10545,10267,9981,9653,9349,9083,8827,8630,8453,8294,8157,8069,7992,7912,7850,7783,7700,7555,7380,7232,7109,6979,6887,6803,6740,6682,6658,6645,6612,6603,6606,6617,6615,6466,6162,5730,5110,21.9,21.9,22.6,1567510,0.4,12.3,12.0,5.0,472,-1.00,-1.00,57.5813,-18.933978,0.000593,,,,,149 +SATSLF0720,2024246,1.512413,4.15,0.0581,0.1038,0.0193,0.00,16115,652,1,712,717,701,718,720,708,711,718,719,723,729,740,773,897,1213,1934,3112,4496,5725,6671,7329,7797,8203,8675,9193,9797,10549,11412,12409,13511,14698,15873,16973,17920,18638,19076,19201,19027,18649,18107,17527,16950,16490,16128,15906,15831,15909,16167,16570,17157,17895,18809,19865,21066,22392,23842,25310,26798,28197,29448,30460,31210,31602,31611,31280,30616,29700,28650,27409,26233,25074,24013,22997,22154,21417,20820,20326,19956,19664,19502,19411,19426,19521,19709,19968,20309,20747,21271,21841,22456,23108,23758,24381,24962,25426,25797,26064,26107,25985,25712,25222,24589,23857,23070,22211,21328,20491,19725,19025,18357,17803,17325,16908,16607,16361,16200,16109,16053,16066,16157,16320,16529,16834,17189,17607,18113,18689,19300,19930,20606,21335,22087,22828,23541,24245,24877,25470,26040,26461,26775,27020,27129,27149,27056,26849,26522,26133,25633,25070,24469,23838,23197,22528,21864,21242,20629,20042,19480,19003,18525,18120,17761,17416,17138,16860,16628,16426,16237,16045,15844,15663,15507,15356,15213,15131,15069,14997,14956,14937,14938,14933,14950,14993,15013,15058,15078,15137,15194,15202,15210,15224,15233,15240,15261,15266,15259,15212,15159,15085,15029,14946,14841,14706,14565,14352,14180,13974,13760,13517,13268,12997,12713,12419,12133,11814,11543,11268,11022,10791,10554,10296,9983,9659,9349,9053,8807,8601,8427,8275,8154,8058,7978,7910,7856,7793,7705,7558,7381,7224,7103,6985,6900,6817,6753,6686,6653,6638,6637,6613,6593,6613,6608,6455,6151,5725,5119,21.9,21.9,22.6,1567511,0.1,12.2,12.0,5.0,472,-1.00,-1.00,57.0127,-18.690532,0.000524,,,,,2 +SATSLF0720,2024246,1.512665,4.18,0.0585,0.1054,0.0197,0.00,16076,652,1,723,713,715,711,724,714,719,717,735,738,734,736,781,881,1205,1928,3103,4473,5729,6662,7286,7782,8189,8637,9149,9766,10500,11373,12369,13481,14652,15802,16909,17853,18579,18994,19138,18957,18577,18053,17467,16900,16443,16090,15874,15792,15879,16113,16498,17094,17820,18730,19793,21013,22320,23756,25233,26704,28129,29369,30362,31111,31493,31512,31165,30518,29611,28565,27334,26157,25003,23927,22924,22080,21357,20736,20251,19870,19597,19440,19346,19349,19458,19633,19901,20251,20688,21201,21762,22394,23045,23708,24312,24890,25360,25716,25997,26029,25907,25638,25153,24539,23801,23020,22165,21274,20439,19652,18953,18305,17745,17285,16887,16568,16314,16144,16053,16017,16016,16119,16277,16519,16804,17161,17596,18080,18648,19253,19886,20562,21287,22022,22767,23469,24173,24821,25429,25989,26413,26722,26967,27088,27098,26996,26788,26463,26059,25573,24995,24420,23781,23143,22491,21822,21194,20581,19989,19437,18961,18499,18098,17720,17388,17109,16822,16585,16403,16203,16000,15809,15618,15451,15317,15195,15108,15025,14964,14928,14901,14913,14925,14937,14962,14993,15030,15053,15111,15160,15169,15192,15195,15193,15218,15239,15252,15230,15182,15125,15069,15006,14920,14805,14663,14515,14359,14157,13955,13737,13495,13249,12983,12699,12406,12110,11813,11518,11254,11011,10773,10541,10261,9983,9645,9339,9065,8810,8607,8429,8269,8133,8031,7957,7901,7844,7796,7691,7549,7379,7228,7105,6976,6891,6806,6747,6685,6644,6624,6614,6605,6593,6611,6607,6462,6156,5737,5095,21.9,22.0,22.6,1567511,0.3,12.2,11.9,5.0,470,-1.00,-1.00,57.1637,-18.695530,0.000501,,,,,108 +SATSLF0720,2024246,1.512921,4.24,0.0595,0.1064,0.0197,0.00,16056,652,1,720,714,702,704,703,705,711,731,727,743,742,739,771,907,1217,1933,3087,4455,5698,6617,7251,7734,8149,8597,9101,9707,10463,11325,12320,13418,14576,15722,16829,17762,18490,18914,19028,18861,18491,17979,17385,16834,16384,16027,15787,15718,15796,16050,16438,17024,17772,18667,19726,20946,22251,23701,25169,26637,28037,29285,30282,31011,31403,31417,31090,30455,29530,28491,27264,26094,24951,23873,22871,22039,21313,20712,20229,19857,19563,19412,19301,19315,19429,19605,19872,20229,20653,21183,21748,22375,23029,23677,24278,24853,25314,25696,25968,26009,25896,25606,25136,24496,23770,22999,22123,21271,20427,19669,18961,18321,17741,17271,16857,16568,16306,16131,16039,15997,16005,16111,16269,16501,16778,17168,17589,18076,18630,19250,19892,20565,21285,22018,22769,23466,24163,24824,25411,25974,26393,26712,26960,27077,27093,26988,26776,26446,26048,25565,24997,24417,23780,23128,22472,21810,21195,20573,19986,19459,18961,18486,18091,17710,17383,17093,16828,16589,16394,16200,16002,15809,15618,15453,15323,15197,15097,15017,14955,14909,14893,14896,14919,14940,14958,14989,15040,15059,15113,15163,15163,15180,15189,15207,15238,15262,15249,15237,15181,15141,15069,15001,14907,14802,14662,14517,14350,14168,13961,13731,13503,13243,12974,12713,12401,12123,11817,11536,11264,11006,10773,10524,10263,9964,9643,9333,9062,8800,8592,8426,8275,8141,8053,7971,7911,7847,7800,7704,7568,7380,7213,7089,6968,6877,6813,6745,6699,6658,6631,6623,6602,6597,6619,6605,6457,6155,5729,5106,21.9,22.0,22.6,1567512,0.2,12.2,11.9,5.0,473,-1.00,-1.00,58.1119,-19.041748,0.000557,,,,,120 +SATSLF0720,2024246,1.513174,4.35,0.0610,0.1062,0.0199,0.00,16051,652,1,707,705,712,704,715,723,725,733,734,727,729,743,789,887,1211,1932,3085,4453,5688,6602,7234,7705,8135,8587,9090,9721,10452,11319,12315,13405,14578,15729,16833,17769,18475,18913,19029,18865,18501,17971,17390,16835,16370,16003,15800,15729,15803,16045,16459,17042,17769,18678,19737,20960,22266,23693,25177,26628,28049,29289,30274,31028,31417,31408,31089,30443,29536,28489,27268,26093,24947,23880,22865,22027,21293,20706,20221,19833,19569,19405,19309,19322,19421,19613,19884,20223,20663,21180,21741,22363,23038,23677,24281,24859,25329,25697,25945,25991,25886,25610,25138,24493,23792,22986,22121,21253,20406,19633,18942,18285,17741,17275,16864,16558,16301,16130,16022,15977,16005,16106,16267,16483,16771,17147,17575,18049,18621,19229,19860,20547,21277,22017,22736,23467,24146,24798,25387,25961,26386,26709,26944,27063,27082,26976,26759,26432,26038,25541,24984,24414,23765,23130,22477,21805,21175,20554,19982,19429,18932,18464,18068,17706,17385,17089,16826,16588,16405,16197,16009,15809,15634,15445,15312,15189,15083,15015,14946,14907,14888,14887,14905,14936,14954,14987,15017,15045,15098,15157,15171,15187,15202,15194,15203,15227,15232,15218,15172,15128,15065,14989,14914,14812,14683,14526,14352,14164,13953,13731,13486,13235,12967,12689,12400,12104,11803,11525,11265,11013,10763,10535,10260,9964,9639,9323,9035,8810,8596,8429,8273,8149,8045,7985,7901,7842,7782,7693,7549,7363,7218,7095,6962,6875,6785,6734,6677,6660,6641,6629,6605,6598,6608,6610,6445,6143,5725,5106,21.9,22.0,22.6,1567513,0.4,12.3,12.0,5.0,471,-1.00,-1.00,57.6751,-18.861735,0.000536,,,,,65 +SATSLF0720,2024246,1.513426,4.20,0.0588,0.1054,0.0198,0.00,16066,652,1,700,685,710,694,704,706,719,724,727,735,745,756,786,893,1209,1941,3091,4471,5717,6641,7295,7765,8192,8626,9143,9740,10478,11371,12330,13431,14617,15792,16891,17844,18546,18983,19134,18950,18560,18026,17442,16871,16431,16069,15842,15771,15859,16106,16491,17079,17817,18726,19781,20989,22306,23760,25233,26711,28105,29357,30352,31108,31501,31482,31162,30505,29591,28545,27309,26133,24995,23913,22917,22068,21322,20731,20258,19863,19579,19427,19342,19350,19446,19636,19889,20254,20680,21184,21754,22391,23050,23692,24297,24865,25355,25709,25981,26045,25926,25636,25162,24538,23805,23002,22141,21265,20421,19655,18944,18306,17737,17275,16873,16562,16317,16137,16055,16008,16011,16103,16261,16483,16781,17149,17571,18051,18648,19232,19870,20567,21280,22033,22754,23468,24175,24821,25403,25975,26394,26702,26946,27061,27078,26980,26766,26452,26057,25569,25000,24407,23777,23131,22476,21829,21204,20582,19981,19439,18938,18458,18066,17697,17377,17071,16819,16589,16388,16174,15990,15797,15601,15450,15307,15195,15086,15014,14941,14902,14888,14903,14903,14931,14958,14986,15023,15047,15101,15150,15184,15186,15191,15190,15218,15213,15235,15245,15186,15125,15068,14986,14906,14805,14669,14531,14344,14147,13959,13736,13495,13240,12977,12694,12382,12097,11799,11523,11263,10993,10758,10529,10253,9969,9642,9342,9041,8819,8599,8423,8261,8137,8035,7955,7897,7841,7775,7692,7549,7368,7223,7078,6963,6878,6798,6725,6683,6648,6629,6632,6610,6598,6615,6616,6450,6143,5697,5111,21.9,22.1,22.7,1567514,0.2,12.3,11.9,5.0,473,-1.00,-1.00,57.3735,-18.774389,0.000608,,,,,50 +SATSLF0720,2024246,1.513682,4.12,0.0577,0.1059,0.0203,0.00,16049,652,1,698,715,730,712,723,721,725,727,739,732,741,741,757,871,1195,1926,3080,4457,5682,6618,7270,7741,8166,8586,9115,9717,10453,11323,12309,13411,14586,15749,16850,17790,18512,18946,19074,18899,18532,17998,17405,16850,16384,16017,15791,15713,15810,16053,16476,17049,17797,18693,19744,20962,22288,23706,25175,26657,28060,29305,30293,31042,31437,31432,31114,30469,29550,28503,27287,26101,24933,23867,22881,22025,21305,20700,20223,19829,19553,19405,19323,19317,19432,19610,19872,20211,20663,21186,21741,22353,23018,23658,24269,24838,25303,25673,25955,26009,25888,25613,25128,24500,23791,22996,22121,21256,20407,19639,18953,18285,17721,17268,16866,16557,16307,16133,16040,15989,16001,16088,16255,16477,16773,17136,17576,18068,18617,19219,19860,20530,21266,21998,22737,23450,24145,24802,25381,25956,26372,26696,26950,27054,27061,26971,26762,26411,26035,25527,24976,24370,23751,23114,22467,21796,21175,20566,19973,19421,18947,18455,18055,17700,17373,17070,16811,16576,16384,16183,15986,15800,15609,15438,15291,15189,15082,15015,14938,14907,14901,14886,14890,14917,14935,14976,15023,15051,15101,15158,15158,15186,15185,15196,15205,15219,15220,15201,15178,15109,15051,14983,14894,14788,14663,14512,14341,14145,13939,13723,13482,13234,12985,12685,12395,12107,11817,11513,11244,11001,10749,10526,10253,9967,9645,9327,9042,8807,8587,8413,8257,8127,8027,7957,7894,7845,7785,7697,7553,7373,7210,7087,6961,6870,6786,6728,6669,6651,6620,6615,6600,6586,6595,6589,6433,6143,5711,5080,21.9,22.1,22.7,1567515,0.0,12.3,12.0,5.0,463,-1.00,-1.00,58.2404,-19.107212,0.000616,,,,,169 +SATSLF0720,2024246,1.513938,4.13,0.0578,0.1049,0.0191,0.00,16095,652,1,710,704,706,710,713,724,738,725,744,733,724,743,779,885,1226,1944,3113,4485,5727,6655,7299,7770,8201,8647,9158,9776,10513,11382,12364,13480,14656,15819,16925,17868,18593,19021,19154,18973,18621,18077,17477,16923,16458,16109,15878,15805,15880,16133,16546,17125,17848,18756,19813,21021,22341,23782,25258,26737,28144,29387,30397,31130,31543,31537,31201,30565,29641,28599,27377,26198,25026,23961,22960,22102,21378,20757,20279,19899,19617,19465,19365,19382,19477,19665,19937,20277,20698,21231,21797,22418,23078,23733,24355,24917,25401,25746,26017,26085,25954,25669,25188,24573,23853,23061,22187,21305,20479,19705,18994,18332,17779,17317,16913,16597,16341,16161,16073,16035,16045,16142,16299,16536,16820,17200,17608,18119,18676,19281,19905,20578,21307,22053,22777,23507,24217,24854,25437,26009,26433,26772,27017,27126,27146,27050,26829,26504,26094,25587,25043,24433,23812,23169,22517,21853,21229,20613,20025,19460,18979,18497,18107,17732,17403,17095,16853,16604,16405,16210,16009,15836,15642,15499,15345,15229,15126,15056,14978,14952,14924,14929,14928,14942,14971,15003,15053,15078,15117,15166,15195,15202,15221,15218,15233,15259,15267,15262,15209,15145,15090,15010,14919,14837,14700,14544,14369,14177,13963,13762,13513,13245,12991,12721,12410,12125,11833,11542,11269,11010,10779,10555,10284,9985,9658,9349,9063,8824,8612,8442,8293,8144,8051,7968,7892,7848,7776,7697,7552,7372,7223,7101,6997,6901,6816,6751,6699,6656,6633,6627,6610,6585,6618,6614,6475,6153,5732,5107,21.9,22.1,22.7,1567516,0.0,12.3,11.9,5.0,470,-1.00,-1.00,57.3043,-18.775614,0.000429,,,,,111 +SATSLF0720,2024246,1.514189,4.20,0.0588,0.1050,0.0198,0.00,16084,652,1,721,718,724,720,723,729,737,729,729,743,738,751,770,887,1209,1938,3107,4485,5734,6658,7299,7783,8198,8657,9169,9765,10505,11342,12363,13460,14654,15801,16910,17872,18584,19021,19146,18963,18592,18054,17466,16907,16453,16077,15857,15787,15869,16120,16523,17117,17846,18746,19813,21021,22339,23773,25237,26732,28137,29376,30368,31110,31504,31508,31164,30528,29616,28584,27341,26173,25016,23963,22961,22088,21369,20762,20274,19885,19602,19454,19361,19362,19466,19667,19918,20270,20710,21216,21772,22406,23065,23707,24313,24909,25378,25732,26017,26053,25930,25668,25192,24554,23840,23034,22179,21293,20462,19685,19005,18325,17768,17307,16905,16581,16341,16158,16059,16018,16033,16125,16292,16505,16819,17165,17601,18077,18643,19255,19892,20572,21300,22039,22779,23485,24194,24827,25420,25987,26423,26728,26982,27084,27090,27008,26808,26480,26069,25587,25026,24425,23786,23143,22497,21829,21210,20608,20010,19451,18965,18489,18100,17716,17387,17102,16845,16597,16389,16193,16010,15818,15626,15457,15323,15205,15109,15051,14976,14933,14918,14904,14913,14935,14962,14984,15032,15069,15129,15169,15184,15195,15219,15215,15239,15262,15249,15224,15178,15118,15067,15001,14921,14826,14681,14529,14353,14161,13959,13737,13499,13249,12986,12708,12417,12116,11824,11528,11263,11017,10777,10534,10254,9968,9637,9328,9055,8817,8608,8441,8283,8149,8051,7977,7909,7852,7789,7694,7547,7362,7223,7096,6981,6887,6816,6742,6689,6649,6626,6609,6601,6601,6615,6611,6473,6166,5738,5120,21.9,22.1,22.7,1567517,0.2,12.2,12.0,5.0,475,-1.00,-1.00,57.0514,-18.655764,0.000489,,,,,90 +SATSLF0720,2024246,1.514444,4.35,0.0609,0.1068,0.0211,0.00,16028,652,1,708,707,727,717,726,714,713,717,728,736,736,749,790,910,1222,1951,3098,4464,5684,6592,7247,7729,8132,8587,9110,9723,10460,11332,12297,13411,14561,15715,16818,17761,18477,18893,19038,18852,18477,17952,17366,16813,16357,15992,15779,15709,15798,16046,16445,17032,17758,18651,19706,20926,22220,23665,25125,26597,28005,29249,30243,30989,31388,31371,31053,30393,29490,28442,27214,26053,24893,23819,22843,21997,21280,20661,20198,19802,19517,19377,19282,19280,19397,19601,19845,20204,20632,21137,21701,22314,22983,23621,24226,24801,25273,25648,25915,25984,25848,25569,25094,24461,23742,22948,22093,21227,20382,19624,18914,18261,17713,17237,16833,16515,16260,16097,15992,15948,15975,16091,16233,16465,16762,17129,17550,18029,18593,19203,19834,20517,21237,21979,22717,23417,24101,24742,25355,25902,26331,26664,26919,27026,27045,26930,26712,26391,25988,25495,24937,24348,23722,23072,22439,21773,21149,20549,19949,19408,18929,18443,18043,17682,17339,17063,16806,16554,16353,16152,15953,15757,15581,15414,15287,15173,15059,15001,14912,14889,14862,14868,14878,14907,14928,14955,15003,15030,15077,15126,15138,15169,15176,15178,15202,15216,15207,15211,15157,15085,15025,14951,14876,14774,14639,14499,14333,14141,13933,13720,13478,13207,12960,12668,12387,12093,11797,11505,11235,10995,10753,10524,10251,9955,9632,9340,9053,8802,8590,8426,8260,8128,8024,7945,7882,7831,7776,7683,7547,7373,7218,7083,6971,6884,6789,6727,6684,6645,6609,6596,6599,6573,6599,6603,6450,6140,5728,5113,21.9,22.1,22.8,1567518,0.0,12.3,11.9,5.0,473,-1.00,-1.00,57.4133,-18.725554,0.000527,,,,,60 +SATSDF0720,2024246,1.759138,0.00,0.0000,0.0000,0.0000,0.00,652,0,1,640,627,615,622,625,621,635,621,635,631,631,631,647,633,625,631,631,631,628,629,636,630,638,657,658,679,670,665,664,665,657,658,649,656,651,645,653,657,652,651,656,654,661,658,653,648,662,659,657,651,668,677,660,645,647,654,649,651,647,661,660,663,666,662,666,671,667,661,653,659,641,649,646,655,653,661,651,663,641,640,645,657,659,657,653,658,654,649,660,656,643,646,657,661,648,656,653,661,631,639,649,644,634,657,641,657,657,649,654,652,658,658,654,665,657,656,661,648,650,644,651,661,648,677,666,649,658,657,651,667,649,658,665,660,653,659,661,665,645,655,642,634,635,652,645,659,668,663,666,657,660,663,661,645,655,661,665,654,661,643,660,650,648,655,649,659,656,657,657,645,651,653,655,653,648,673,658,651,653,656,643,644,638,635,648,653,661,650,660,663,660,661,641,643,646,651,649,660,660,653,666,670,649,659,658,649,647,647,661,650,650,651,650,640,653,653,642,647,638,644,663,657,648,651,657,663,665,645,647,643,643,645,650,647,638,641,650,650,641,656,641,650,650,649,655,658,652,660,659,650,652,641,653,652,659,493,0.0,0.0,0.0,1567517,0.1,12.8,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,250 +SATSLF0720,2024246,1.759693,4.07,0.0571,0.1010,0.0173,0.00,16196,652,1,702,697,699,703,704,710,720,721,717,726,727,731,756,875,1195,1935,3127,4506,5768,6692,7340,7824,8241,8679,9209,9833,10584,11468,12473,13598,14772,15950,17043,18009,18737,19173,19310,19113,18759,18219,17617,17050,16589,16220,15991,15917,16002,16242,16657,17232,17989,18894,19972,21186,22527,23979,25465,26959,28379,29634,30629,31373,31768,31773,31457,30784,29879,28827,27579,26402,25221,24139,23134,22289,21557,20938,20462,20060,19769,19618,19533,19536,19626,19819,20086,20424,20869,21389,21959,22582,23254,23901,24512,25095,25581,25931,26208,26251,26117,25850,25365,24731,24005,23213,22325,21447,20587,19810,19105,18449,17896,17419,17006,16683,16430,16249,16155,16117,16137,16235,16393,16637,16921,17291,17720,18202,18776,19402,20042,20729,21444,22193,22946,23661,24367,25026,25614,26177,26610,26944,27193,27285,27304,27205,27009,26676,26260,25773,25191,24597,23957,23319,22667,21988,21363,20745,20145,19593,19084,18613,18206,17847,17513,17220,16954,16718,16514,16297,16115,15922,15733,15562,15424,15316,15199,15129,15053,15004,15006,15002,15002,15020,15037,15080,15109,15148,15200,15254,15272,15289,15282,15287,15323,15330,15338,15322,15277,15216,15151,15079,14994,14912,14746,14596,14430,14250,14032,13816,13582,13310,13041,12769,12450,12163,11874,11586,11310,11065,10820,10599,10318,10011,9694,9378,9098,8852,8652,8474,8322,8199,8098,8021,7943,7897,7834,7728,7589,7413,7260,7125,7016,6907,6839,6777,6722,6676,6653,6645,6633,6621,6641,6627,6468,6174,5745,5120,21.8,21.8,22.2,1567518,0.0,12.3,12.0,5.0,593,-1.00,-1.00,57.2214,-18.884832,0.000523,,,,,148 +SATSLF0720,2024246,1.759874,3.85,0.0539,0.1012,0.0172,0.00,16196,652,1,713,717,714,710,719,708,723,709,727,709,731,730,773,885,1231,1957,3131,4512,5779,6701,7362,7847,8269,8713,9237,9861,10601,11476,12469,13592,14763,15948,17063,18030,18760,19197,19328,19152,18755,18229,17624,17059,16595,16219,15985,15927,15995,16249,16649,17232,17978,18900,19971,21205,22538,23977,25453,26951,28366,29634,30644,31392,31782,31784,31475,30818,29890,28817,27589,26409,25239,24160,23141,22283,21540,20931,20458,20057,19770,19611,19527,19532,19623,19831,20080,20436,20865,21386,21946,22587,23249,23897,24517,25085,25581,25930,26193,26256,26122,25847,25365,24717,23996,23197,22309,21437,20585,19812,19108,18449,17905,17417,17012,16709,16440,16258,16155,16123,16137,16234,16400,16629,16925,17292,17719,18216,18763,19380,20021,20711,21443,22186,22934,23649,24360,25025,25610,26170,26606,26915,27169,27272,27291,27193,26997,26653,26257,25766,25198,24601,23965,23306,22648,21986,21345,20734,20138,19584,19093,18606,18205,17829,17502,17208,16943,16685,16503,16289,16103,15909,15728,15565,15424,15310,15200,15128,15053,15019,14982,14990,14993,15030,15030,15069,15122,15143,15205,15257,15268,15277,15288,15284,15302,15329,15340,15325,15273,15223,15152,15079,14984,14880,14749,14590,14423,14237,14029,13818,13577,13321,13062,12770,12469,12176,11876,11588,11314,11074,10834,10597,10325,10022,9689,9383,9077,8848,8628,8462,8308,8197,8083,8011,7941,7885,7816,7739,7585,7411,7258,7133,7017,6909,6832,6765,6710,6683,6661,6651,6631,6632,6637,6637,6488,6184,5759,5138,21.8,21.8,22.2,1567519,0.0,12.3,11.9,5.0,488,-1.00,-1.00,57.9446,-19.190217,0.000565,,,,,38 +SATSLF0720,2024246,1.760130,3.87,0.0543,0.1020,0.0179,0.00,16169,652,1,697,686,693,692,693,708,713,729,721,720,721,735,769,872,1213,1937,3108,4491,5754,6669,7314,7805,8232,8679,9189,9827,10565,11449,12430,13547,14725,15899,17011,17977,18701,19130,19284,19097,18711,18175,17568,17010,16545,16179,15940,15863,15950,16202,16606,17217,17942,18865,19922,21144,22470,23906,25394,26881,28313,29565,30577,31325,31713,31735,31394,30733,29831,28764,27537,26334,25176,24094,23090,22258,21493,20909,20421,20026,19738,19579,19492,19501,19614,19786,20041,20404,20847,21350,21921,22529,23223,23864,24474,25041,25517,25883,26152,26201,26080,25813,25316,24691,23968,23168,22293,21419,20571,19805,19086,18424,17867,17392,16976,16653,16413,16234,16133,16095,16123,16208,16366,16589,16889,17268,17699,18185,18747,19372,20002,20692,21401,22158,22905,23606,24324,24992,25570,26150,26568,26891,27141,27241,27259,27159,26948,26628,26230,25721,25148,24561,23930,23280,22618,21947,21315,20697,20113,19546,19062,18583,18169,17811,17485,17206,16924,16694,16477,16288,16081,15891,15700,15542,15392,15283,15175,15107,15045,14989,14974,14982,14988,14994,15018,15049,15098,15130,15177,15244,15257,15269,15273,15264,15300,15303,15318,15285,15263,15188,15129,15069,14965,14884,14744,14597,14436,14242,14030,13803,13561,13301,13030,12738,12443,12168,11865,11579,11310,11050,10824,10582,10308,10013,9693,9384,9084,8852,8629,8457,8315,8166,8064,7991,7928,7874,7800,7722,7581,7413,7258,7131,7009,6907,6835,6764,6717,6668,6651,6647,6632,6614,6644,6628,6472,6168,5733,5128,21.8,21.8,22.3,1567520,0.0,12.3,12.0,5.0,481,-1.00,-1.00,58.2951,-19.294797,0.000600,,,,,99 +SATSLF0720,2024246,1.760385,3.91,0.0547,0.1025,0.0179,0.00,16161,652,1,696,692,695,718,706,712,710,711,717,720,718,738,781,884,1211,1933,3111,4491,5755,6684,7320,7795,8217,8671,9194,9810,10555,11429,12416,13543,14717,15895,17005,17965,18685,19119,19259,19079,18697,18155,17568,16985,16536,16161,15939,15863,15939,16199,16609,17177,17936,18833,19915,21127,22465,23911,25396,26886,28305,29571,30574,31321,31707,31727,31386,30722,29811,28753,27523,26341,25177,24093,23086,22225,21476,20872,20391,20005,19716,19564,19470,19495,19595,19782,20052,20380,20823,21357,21915,22539,23210,23843,24455,25036,25501,25866,26142,26186,26077,25793,25306,24682,23954,23153,22263,21401,20547,19773,19070,18400,17847,17378,16965,16645,16405,16213,16122,16087,16125,16202,16361,16592,16897,17250,17674,18178,18741,19355,19989,20657,21401,22145,22885,23591,24314,24967,25568,26120,26550,26885,27110,27243,27242,27145,26927,26613,26197,25705,25137,24557,23916,23289,22622,21953,21320,20697,20109,19541,19065,18580,18169,17819,17485,17190,16919,16681,16485,16281,16082,15878,15693,15516,15383,15264,15176,15106,15046,14993,14978,14980,14972,15004,15030,15061,15089,15129,15178,15236,15253,15260,15279,15278,15290,15291,15303,15297,15245,15196,15129,15058,14979,14875,14741,14596,14420,14206,14008,13793,13538,13288,13024,12733,12443,12176,11867,11580,11305,11053,10811,10565,10299,10000,9674,9351,9087,8844,8625,8458,8307,8173,8069,8004,7930,7863,7798,7710,7569,7404,7253,7113,6997,6893,6811,6756,6698,6648,6652,6651,6629,6618,6635,6619,6466,6165,5732,5114,21.8,21.8,22.4,1567521,1.2,12.2,11.9,5.0,470,-1.00,-1.00,58.4901,-19.371907,0.000628,,,,,36 +SATSLF0720,2024246,1.760638,4.07,0.0569,0.1027,0.0184,0.00,16150,652,1,678,692,692,683,696,709,716,717,731,733,727,731,771,869,1199,1939,3115,4493,5741,6689,7319,7803,8233,8690,9205,9805,10561,11430,12436,13545,14736,15908,17008,17970,18674,19120,19242,19050,18694,18145,17548,17015,16544,16180,15957,15884,15966,16199,16603,17181,17913,18829,19895,21099,22439,23884,25371,26872,28276,29555,30539,31300,31686,31694,31357,30693,29781,28733,27488,26307,25142,24069,23075,22209,21473,20875,20397,19998,19702,19544,19461,19472,19594,19778,20026,20370,20816,21329,21914,22508,23173,23808,24427,25002,25488,25857,26114,26171,26053,25769,25284,24661,23925,23127,22257,21376,20540,19765,19049,18399,17839,17381,16965,16626,16384,16210,16113,16058,16103,16189,16355,16572,16882,17236,17660,18139,18730,19326,19962,20642,21379,22125,22881,23591,24297,24948,25543,26112,26543,26850,27104,27196,27227,27130,26901,26576,26177,25687,25114,24529,23885,23239,22588,21925,21274,20675,20091,19523,19038,18566,18156,17795,17469,17181,16919,16658,16467,16256,16066,15867,15694,15518,15385,15265,15168,15090,15016,14978,14956,14956,14966,14998,15009,15048,15084,15120,15175,15225,15229,15243,15253,15256,15272,15296,15305,15284,15247,15170,15112,15054,14964,14857,14715,14575,14405,14210,14003,13781,13547,13294,13024,12737,12441,12148,11848,11546,11287,11034,10803,10579,10290,9999,9657,9359,9085,8836,8630,8469,8303,8167,8074,7991,7922,7859,7799,7706,7570,7389,7247,7127,6994,6915,6829,6760,6711,6664,6645,6635,6610,6599,6643,6614,6459,6156,5728,5115,21.8,21.8,22.4,1567522,0.5,12.3,12.0,5.0,476,-1.00,-1.00,57.3726,-18.888657,0.000555,,,,,188 +SATSLF0720,2024246,1.760893,3.91,0.0547,0.1032,0.0179,0.00,16140,652,1,705,708,711,713,716,731,718,726,733,722,722,739,766,888,1198,1944,3117,4503,5748,6689,7332,7798,8244,8669,9186,9803,10549,11429,12417,13537,14698,15866,16989,17950,18665,19104,19236,19044,18676,18126,17531,16965,16509,16146,15925,15850,15917,16167,16573,17163,17906,18820,19890,21110,22413,23854,25345,26824,28232,29493,30514,31260,31666,31666,31309,30699,29757,28709,27460,26277,25112,24034,23040,22171,21441,20829,20360,19961,19690,19533,19440,19438,19530,19741,20001,20350,20788,21323,21883,22482,23160,23799,24417,24996,25457,25828,26100,26148,26018,25746,25262,24629,23897,23096,22228,21350,20512,19757,19049,18416,17842,17365,16980,16633,16381,16197,16105,16061,16085,16188,16349,16556,16873,17230,17661,18144,18708,19323,19971,20647,21359,22105,22840,23568,24269,24914,25508,26079,26491,26834,27069,27185,27204,27117,26897,26557,26166,25654,25121,24517,23861,23227,22562,21906,21298,20673,20083,19536,19041,18557,18145,17760,17447,17161,16893,16658,16454,16254,16070,15869,15685,15520,15377,15262,15157,15079,15003,14981,14952,14957,14955,14989,15009,15040,15083,15111,15163,15220,15232,15245,15266,15256,15275,15290,15301,15297,15238,15191,15129,15043,14965,14859,14721,14568,14400,14210,14000,13792,13541,13279,13027,12736,12445,12150,11855,11557,11291,11036,10796,10555,10306,9997,9670,9368,9089,8844,8625,8464,8314,8165,8072,7993,7917,7878,7805,7718,7565,7396,7253,7123,7005,6903,6831,6772,6713,6679,6651,6629,6620,6597,6627,6615,6471,6156,5746,5125,21.8,21.8,22.4,1567523,0.0,12.3,12.0,5.0,475,-1.00,-1.00,58.2410,-19.232296,0.000592,,,,,128 +SATSLF0720,2024246,1.761145,4.11,0.0575,0.1039,0.0189,0.00,16124,652,1,720,717,726,720,722,720,717,720,744,741,733,738,787,884,1210,1933,3095,4471,5719,6647,7315,7777,8205,8649,9155,9787,10542,11401,12395,13514,14688,15852,16947,17911,18626,19067,19181,19005,18634,18097,17520,16948,16492,16106,15891,15841,15899,16152,16565,17125,17878,18797,19857,21078,22405,23848,25330,26802,28213,29466,30457,31206,31597,31597,31281,30644,29712,28669,27426,26251,25093,24021,23025,22168,21433,20828,20328,19927,19656,19502,19408,19440,19541,19754,19997,20347,20781,21273,21831,22464,23128,23763,24381,24960,25445,25805,26073,26118,26003,25726,25237,24597,23861,23088,22209,21346,20490,19734,19016,18379,17818,17349,16922,16611,16366,16199,16084,16048,16071,16181,16339,16565,16850,17201,17640,18124,18697,19300,19926,20611,21351,22094,22829,23553,24256,24933,25514,26077,26496,26823,27065,27181,27193,27092,26876,26554,26145,25655,25086,24502,23850,23218,22541,21890,21266,20645,20055,19504,19020,18542,18133,17766,17437,17150,16896,16658,16455,16256,16055,15869,15687,15506,15355,15245,15129,15072,14982,14973,14946,14938,14950,14961,14994,15029,15061,15094,15131,15196,15206,15237,15240,15260,15265,15290,15285,15282,15229,15162,15097,15031,14953,14854,14719,14565,14400,14186,13985,13770,13525,13269,13004,12726,12430,12161,11849,11554,11288,11021,10787,10564,10284,9990,9677,9363,9070,8842,8615,8465,8302,8162,8081,7998,7913,7864,7784,7689,7545,7381,7228,7103,6991,6899,6820,6757,6694,6667,6646,6646,6613,6601,6633,6615,6469,6160,5745,5120,21.8,21.9,22.4,1567524,0.0,12.3,11.9,5.0,472,-1.00,-1.00,57.7242,-18.992954,0.000571,,,,,118 +SATSLF0720,2024246,1.761402,4.12,0.0577,0.1039,0.0188,0.00,16117,652,1,705,700,708,710,712,710,715,717,717,724,718,731,771,885,1221,1945,3113,4472,5731,6660,7307,7785,8193,8648,9184,9783,10525,11395,12381,13489,14665,15829,16950,17889,18641,19049,19190,19008,18633,18106,17507,16937,16476,16117,15896,15821,15891,16137,16541,17136,17870,18793,19861,21073,22387,23830,25337,26806,28205,29465,30453,31198,31594,31593,31270,30608,29696,28641,27416,26230,25082,24001,23008,22157,21430,20810,20327,19927,19653,19490,19408,19417,19510,19706,19986,20314,20746,21283,21843,22468,23138,23773,24391,24965,25443,25802,26073,26117,25997,25701,25239,24596,23874,23082,22203,21347,20496,19725,19030,18368,17785,17327,16913,16600,16363,16199,16102,16055,16080,16177,16322,16545,16846,17213,17637,18118,18694,19298,19935,20633,21365,22092,22839,23545,24254,24902,25489,26060,26480,26807,27056,27162,27168,27067,26855,26529,26137,25643,25082,24485,23844,23211,22557,21891,21255,20654,20069,19504,19002,18541,18124,17755,17427,17147,16876,16634,16436,16235,16045,15846,15670,15503,15363,15243,15138,15079,14992,14961,14947,14930,14939,14951,14987,15026,15054,15083,15143,15190,15215,15223,15233,15233,15243,15267,15253,15268,15213,15161,15101,15024,14935,14837,14713,14553,14374,14191,13973,13765,13537,13274,12998,12722,12423,12129,11833,11543,11257,11019,10773,10553,10281,9980,9646,9353,9082,8831,8615,8444,8295,8150,8059,7988,7905,7846,7786,7694,7565,7398,7241,7118,6996,6901,6809,6756,6681,6647,6619,6612,6606,6596,6618,6626,6456,6154,5737,5124,21.8,21.9,22.4,1567525,0.1,12.2,12.0,5.0,473,-1.00,-1.00,57.5748,-18.922603,0.000633,,,,,170 +SATSLF0720,2024246,1.761656,4.19,0.0587,0.1041,0.0191,0.00,16114,652,1,705,704,713,693,705,707,710,731,729,729,728,727,772,890,1205,1930,3104,4487,5725,6662,7305,7795,8212,8669,9169,9805,10541,11408,12411,13538,14698,15859,16972,17920,18640,19087,19201,19027,18641,18102,17520,16961,16505,16150,15924,15849,15929,16167,16571,17152,17893,18800,19875,21104,22398,23838,25335,26822,28232,29490,30466,31221,31622,31635,31296,30645,29713,28667,27440,26249,25102,24021,23019,22157,21435,20825,20333,19953,19665,19512,19400,19419,19522,19713,19968,20318,20759,21286,21841,22462,23141,23786,24386,24976,25449,25801,26050,26104,25973,25705,25232,24590,23867,23072,22209,21341,20500,19724,19013,18359,17810,17350,16929,16617,16360,16185,16082,16029,16055,16151,16295,16538,16826,17192,17621,18121,18681,19286,19931,20616,21341,22073,22826,23537,24226,24889,25473,26049,26456,26784,27034,27148,27149,27060,26837,26509,26111,25620,25049,24472,23833,23197,22550,21873,21248,20641,20042,19479,18989,18526,18114,17739,17424,17134,16864,16617,16424,16224,16028,15837,15645,15469,15332,15223,15128,15046,14974,14953,14922,14919,14926,14944,14970,15003,15051,15070,15127,15184,15196,15195,15220,15232,15238,15255,15263,15237,15202,15136,15089,15011,14923,14825,14685,14536,14365,14181,13968,13753,13514,13238,12995,12700,12421,12132,11826,11534,11263,11017,10774,10534,10280,9969,9639,9337,9047,8810,8597,8421,8267,8151,8046,7954,7899,7841,7783,7689,7557,7388,7238,7101,6977,6887,6807,6747,6680,6643,6621,6622,6602,6593,6616,6600,6456,6153,5723,5106,21.8,21.9,22.5,1567526,0.1,12.3,12.0,5.0,475,-1.00,-1.00,57.0309,-18.711072,0.000538,,,,,17 +SATSLF0720,2024246,1.761908,4.09,0.0573,0.1046,0.0193,0.00,16106,652,1,697,706,715,713,737,725,720,720,717,723,720,729,771,877,1201,1941,3106,4487,5731,6657,7312,7784,8196,8644,9164,9781,10517,11380,12377,13485,14667,15826,16940,17908,18617,19046,19173,19003,18612,18091,17489,16925,16465,16107,15885,15811,15881,16145,16548,17133,17866,18765,19837,21048,22381,23801,25299,26773,28187,29419,30419,31178,31557,31565,31226,30581,29671,28634,27410,26221,25056,23982,22977,22129,21385,20791,20305,19922,19638,19482,19380,19401,19494,19695,19972,20320,20741,21248,21819,22448,23105,23753,24356,24924,25399,25765,26013,26077,25963,25692,25216,24579,23860,23064,22203,21318,20481,19706,18999,18344,17798,17313,16907,16603,16349,16171,16080,16035,16070,16144,16324,16526,16829,17185,17608,18109,18680,19284,19940,20618,21336,22077,22809,23526,24206,24887,25477,26036,26461,26784,27037,27137,27155,27056,26829,26523,26112,25613,25061,24474,23825,23187,22517,21864,21236,20613,20030,19486,18998,18520,18117,17749,17415,17134,16868,16628,16424,16235,16041,15846,15671,15502,15349,15234,15140,15063,14989,14954,14933,14939,14941,14966,14998,15017,15069,15094,15128,15181,15194,15219,15219,15233,15252,15269,15275,15258,15211,15155,15085,15011,14922,14818,14683,14545,14376,14174,13964,13767,13525,13268,13003,12725,12421,12124,11842,11553,11283,11031,10790,10559,10267,9975,9653,9348,9060,8827,8602,8439,8283,8151,8046,7976,7905,7863,7793,7712,7581,7388,7239,7102,6986,6875,6815,6733,6689,6642,6634,6627,6609,6590,6618,6610,6463,6162,5738,5111,21.8,21.9,22.5,1567527,0.6,12.3,11.9,5.0,471,-1.00,-1.00,57.6258,-18.928644,0.000517,,,,,95 +SATSLF0720,2024246,1.762164,4.22,0.0591,0.1039,0.0188,0.00,16113,652,1,722,724,716,716,704,711,713,705,723,723,731,744,785,897,1228,1939,3110,4483,5720,6642,7291,7766,8192,8616,9142,9749,10505,11393,12368,13484,14663,15810,16909,17850,18571,19013,19133,18968,18593,18054,17477,16894,16441,16066,15863,15786,15869,16125,16526,17122,17850,18755,19822,21025,22358,23812,25269,26745,28166,29422,30405,31154,31543,31550,31228,30579,29652,28609,27362,26197,25047,23969,22974,22130,21401,20811,20316,19917,19623,19483,19409,19413,19507,19709,19957,20317,20742,21257,21832,22452,23101,23767,24378,24961,25428,25797,26066,26112,25997,25717,25229,24585,23863,23077,22198,21355,20509,19737,19044,18369,17815,17326,16914,16593,16340,16176,16092,16037,16059,16161,16324,16551,16857,17205,17636,18108,18687,19296,19928,20605,21352,22084,22841,23546,24253,24902,25506,26068,26501,26812,27047,27149,27171,27073,26864,26522,26135,25653,25079,24499,23848,23207,22544,21899,21264,20644,20067,19501,19014,18536,18139,17766,17448,17150,16891,16649,16452,16245,16050,15853,15672,15504,15359,15239,15144,15075,15016,14965,14949,14951,14957,14977,14993,15030,15077,15089,15144,15193,15214,15221,15234,15255,15266,15278,15298,15289,15226,15159,15101,15039,14942,14854,14717,14573,14397,14197,13991,13774,13517,13268,13008,12738,12433,12151,11871,11566,11296,11044,10810,10573,10297,9989,9670,9342,9071,8816,8615,8454,8292,8163,8071,8001,7909,7865,7785,7704,7568,7388,7246,7111,7005,6905,6823,6773,6710,6679,6670,6635,6621,6621,6629,6613,6466,6157,5737,5115,21.9,21.9,22.6,1567528,0.1,12.2,11.9,5.0,474,-1.00,-1.00,57.6823,-18.940781,0.000609,,,,,114 +SATSLF0720,2024246,1.762418,4.02,0.0563,0.1042,0.0182,0.00,16123,652,1,710,709,721,733,729,715,711,723,731,731,741,757,781,890,1218,1953,3108,4485,5725,6648,7291,7773,8197,8637,9169,9785,10519,11388,12369,13479,14646,15827,16940,17873,18600,19045,19171,19003,18621,18087,17510,16938,16481,16106,15885,15818,15892,16133,16537,17117,17863,18768,19833,21056,22373,23834,25306,26778,28199,29448,30444,31181,31585,31585,31257,30597,29696,28633,27414,26234,25082,23994,23009,22145,21401,20800,20328,19933,19637,19490,19397,19434,19524,19712,19982,20329,20757,21284,21841,22457,23127,23777,24376,24953,25429,25800,26082,26133,26017,25725,25255,24612,23892,23086,22200,21329,20485,19725,19020,18374,17810,17350,16942,16635,16382,16200,16103,16061,16082,16176,16331,16550,16854,17229,17652,18148,18709,19321,19948,20634,21354,22088,22841,23556,24266,24912,25520,26077,26500,26830,27069,27173,27184,27098,26865,26537,26132,25657,25081,24497,23868,23225,22574,21897,21267,20649,20052,19496,19013,18538,18121,17781,17437,17162,16903,16665,16458,16256,16055,15863,15676,15507,15365,15257,15146,15068,14997,14969,14946,14951,14948,14979,14993,15023,15067,15096,15159,15217,15221,15242,15253,15241,15265,15299,15289,15285,15227,15171,15121,15044,14958,14849,14723,14568,14401,14206,13997,13769,13546,13280,13013,12736,12442,12148,11852,11553,11280,11034,10798,10549,10299,10002,9669,9383,9094,8841,8631,8448,8304,8164,8077,8001,7932,7877,7825,7721,7585,7402,7242,7101,7005,6906,6822,6762,6709,6670,6657,6638,6628,6613,6638,6627,6475,6176,5746,5124,21.8,21.9,22.6,1567529,0.0,12.2,11.9,5.0,473,-1.00,-1.00,58.0529,-19.115176,0.000578,,,,,77 +SATSLF0720,2024246,1.762669,4.11,0.0575,0.1044,0.0194,0.00,16107,652,1,709,711,716,721,705,711,715,715,721,734,741,749,785,888,1210,1943,3104,4475,5719,6646,7289,7773,8192,8633,9157,9785,10520,11393,12381,13485,14665,15809,16928,17879,18609,19034,19159,18965,18612,18066,17478,16931,16466,16086,15880,15798,15884,16122,16548,17108,17859,18761,19841,21033,22359,23801,25274,26739,28170,29424,30429,31170,31571,31568,31238,30586,29659,28617,27389,26213,25045,23968,22980,22132,21395,20794,20315,19915,19641,19488,19386,19401,19512,19696,19949,20285,20727,21239,21819,22439,23115,23751,24364,24933,25405,25783,26032,26086,25991,25694,25211,24581,23860,23064,22192,21325,20466,19707,19009,18355,17803,17346,16925,16610,16361,16170,16078,16033,16056,16146,16305,16528,16825,17190,17637,18124,18688,19302,19921,20605,21344,22076,22818,23537,24234,24893,25484,26052,26473,26800,27029,27136,27152,27061,26845,26517,26136,25629,25060,24477,23848,23185,22533,21878,21254,20640,20039,19498,19001,18520,18122,17749,17431,17134,16869,16631,16421,16234,16029,15837,15645,15483,15363,15228,15127,15063,14992,14954,14952,14948,14949,14971,14976,15015,15061,15077,15131,15185,15200,15210,15210,15227,15256,15277,15271,15271,15204,15159,15081,15039,14933,14837,14707,14552,14385,14193,13989,13754,13534,13254,12997,12712,12416,12129,11832,11555,11264,11035,10797,10565,10290,9979,9669,9362,9069,8822,8625,8448,8280,8161,8074,7969,7901,7863,7797,7690,7559,7385,7249,7116,6995,6901,6816,6740,6705,6661,6656,6636,6615,6597,6625,6625,6460,6159,5736,5117,21.9,21.9,22.6,1567529,0.2,12.3,11.9,5.0,463,-1.00,-1.00,57.8265,-19.007827,0.000556,,,,,79 +SATSLF0720,2024246,1.762925,4.17,0.0584,0.1041,0.0186,0.00,16116,652,1,701,702,705,698,692,711,718,729,734,733,736,742,775,880,1200,1939,3110,4480,5737,6656,7294,7779,8205,8644,9164,9788,10525,11389,12384,13501,14676,15831,16929,17890,18635,19037,19187,19009,18625,18090,17500,16938,16479,16105,15891,15805,15891,16133,16539,17146,17881,18789,19866,21073,22393,23833,25305,26780,28199,29452,30450,31194,31585,31603,31248,30616,29691,28626,27412,26233,25073,23990,22999,22125,21389,20775,20309,19924,19638,19488,19399,19419,19502,19707,19976,20315,20763,21281,21838,22449,23114,23761,24378,24948,25422,25795,26061,26109,25975,25695,25227,24589,23875,23085,22213,21347,20497,19735,19026,18374,17802,17339,16937,16605,16361,16194,16089,16042,16080,16165,16321,16554,16832,17213,17639,18125,18693,19305,19941,20613,21345,22090,22824,23547,24253,24893,25482,26053,26467,26786,27037,27140,27163,27069,26843,26529,26137,25642,25079,24493,23857,23210,22561,21877,21260,20641,20045,19503,19008,18528,18129,17754,17414,17138,16874,16640,16433,16235,16046,15853,15669,15503,15349,15244,15148,15078,14999,14953,14945,14930,14937,14966,14994,15036,15074,15108,15141,15196,15210,15221,15215,15232,15253,15271,15284,15286,15233,15166,15106,15034,14941,14837,14699,14561,14385,14200,13984,13769,13525,13266,12997,12728,12435,12141,11847,11548,11290,11041,10807,10570,10287,9989,9662,9360,9069,8825,8628,8445,8298,8162,8064,7987,7932,7865,7802,7703,7568,7400,7233,7095,6996,6898,6824,6753,6696,6663,6645,6645,6625,6610,6632,6616,6454,6162,5741,5109,21.9,21.9,22.6,1567530,0.0,12.3,11.9,5.0,473,-1.00,-1.00,57.4634,-18.873049,0.000603,,,,,45 +SATSLF0720,2024246,1.763178,4.13,0.0578,0.1050,0.0200,0.00,16083,652,1,712,701,709,707,718,713,723,725,726,720,738,742,765,893,1214,1939,3097,4465,5702,6633,7281,7751,8180,8634,9156,9766,10508,11383,12360,13457,14650,15787,16900,17841,18577,19013,19139,18965,18578,18052,17450,16904,16439,16067,15846,15779,15863,16109,16517,17099,17841,18745,19806,21017,22339,23764,25253,26704,28132,29376,30373,31114,31511,31520,31197,30557,29620,28573,27341,26161,25002,23927,22938,22097,21354,20743,20269,19884,19603,19444,19361,19367,19478,19666,19924,20265,20722,21225,21793,22411,23082,23721,24343,24901,25378,25737,26000,26065,25929,25667,25175,24549,23825,23032,22162,21302,20468,19686,18984,18334,17769,17299,16885,16567,16320,16154,16045,15993,16032,16127,16297,16512,16804,17169,17616,18085,18653,19259,19894,20567,21308,22045,22781,23500,24202,24853,25451,26009,26437,26762,26997,27098,27110,27021,26796,26477,26077,25597,25028,24437,23793,23154,22501,21835,21211,20614,20014,19456,18977,18489,18094,17710,17391,17117,16840,16599,16407,16201,16011,15820,15628,15469,15317,15207,15113,15042,14955,14935,14913,14906,14904,14934,14946,14987,15036,15063,15130,15164,15192,15210,15201,15220,15231,15242,15229,15225,15177,15125,15061,15003,14920,14829,14695,14546,14372,14177,13971,13739,13492,13246,12978,12696,12417,12116,11827,11536,11270,11017,10770,10547,10270,9966,9651,9342,9060,8810,8590,8438,8272,8155,8072,7970,7899,7859,7785,7701,7566,7376,7223,7085,6983,6883,6813,6749,6693,6650,6626,6618,6599,6586,6603,6605,6457,6147,5726,5109,21.9,22.0,22.6,1567531,0.1,12.3,11.9,5.0,462,-1.00,-1.00,57.6446,-18.904385,0.000567,,,,,190 +SATSLF0720,2024246,1.763430,4.20,0.0588,0.1060,0.0203,0.00,16063,652,1,712,712,710,716,725,723,737,729,735,745,737,748,777,885,1213,1947,3101,4482,5710,6645,7289,7771,8186,8629,9133,9766,10494,11362,12356,13464,14637,15796,16903,17856,18565,18970,19119,18931,18565,18027,17444,16875,16407,16064,15842,15773,15853,16090,16503,17072,17810,18711,19774,20985,22301,23734,25194,26672,28084,29329,30313,31069,31464,31463,31129,30491,29581,28527,27297,26123,24962,23893,22910,22073,21336,20732,20241,19854,19574,19411,19320,19350,19440,19630,19895,20235,20667,21181,21744,22371,23033,23685,24264,24871,25344,25706,25984,26024,25888,25621,25145,24506,23795,22997,22125,21265,20419,19654,18945,18301,17745,17280,16869,16550,16299,16132,16048,16001,16013,16105,16263,16496,16784,17150,17580,18049,18627,19221,19866,20532,21261,22010,22739,23473,24170,24818,25398,25958,26364,26700,26947,27060,27077,26987,26762,26438,26046,25548,25002,24393,23764,23123,22467,21809,21186,20567,19993,19445,18933,18469,18054,17691,17371,17081,16832,16601,16376,16176,15986,15797,15609,15440,15289,15182,15099,15026,14961,14912,14901,14884,14904,14928,14946,14989,15017,15056,15101,15157,15177,15177,15196,15212,15218,15233,15223,15234,15177,15121,15050,14999,14901,14813,14664,14523,14341,14151,13949,13728,13494,13237,12968,12688,12404,12106,11809,11524,11241,11006,10761,10523,10279,9969,9647,9334,9064,8813,8597,8423,8273,8154,8050,7975,7885,7847,7764,7677,7535,7363,7221,7089,6981,6887,6802,6737,6673,6631,6627,6613,6596,6590,6605,6600,6443,6141,5728,5104,21.9,22.0,22.6,1567532,0.0,12.3,12.0,5.0,473,-1.00,-1.00,57.1816,-18.680397,0.000481,,,,,157 +SATSLF0720,2024246,1.763687,4.25,0.0595,0.1058,0.0197,0.00,16069,652,1,706,709,722,725,720,724,732,730,730,727,739,759,772,903,1221,1940,3089,4461,5693,6639,7275,7748,8169,8602,9129,9727,10484,11342,12327,13444,14605,15769,16875,17818,18533,18944,19077,18908,18529,18003,17413,16855,16410,16041,15821,15741,15843,16072,16489,17052,17800,18705,19781,20973,22283,23723,25195,26665,28082,29320,30328,31057,31458,31465,31137,30487,29580,28530,27301,26136,24969,23897,22910,22057,21328,20732,20259,19869,19592,19424,19328,19342,19436,19640,19904,20245,20673,21200,21765,22373,23042,23699,24301,24871,25346,25713,25975,26020,25909,25624,25145,24512,23798,23016,22149,21268,20423,19675,18968,18317,17764,17295,16876,16565,16315,16155,16040,15997,16016,16110,16280,16497,16789,17161,17599,18075,18653,19240,19893,20569,21277,22019,22765,23473,24165,24834,25424,25976,26427,26737,26987,27077,27095,27005,26802,26466,26072,25570,25015,24425,23793,23137,22500,21828,21211,20594,20005,19442,18964,18488,18095,17715,17400,17112,16826,16603,16408,16200,16015,15817,15625,15443,15307,15204,15108,15024,14965,14930,14907,14905,14903,14937,14973,14986,15043,15066,15118,15178,15188,15201,15218,15220,15232,15260,15250,15243,15197,15122,15070,14990,14917,14829,14690,14533,14378,14162,13949,13742,13509,13248,12981,12706,12416,12112,11824,11532,11264,10997,10759,10533,10257,9960,9660,9349,9061,8835,8622,8450,8279,8153,8049,7979,7901,7844,7776,7691,7559,7373,7226,7093,6982,6897,6809,6740,6700,6655,6644,6613,6601,6600,6613,6614,6461,6150,5728,5122,21.9,22.1,22.7,1567533,0.4,12.3,11.9,5.0,471,-1.00,-1.00,57.7809,-18.930774,0.000501,,,,,190 +SATSLF0720,2024246,1.763940,4.09,0.0573,0.1063,0.0200,0.00,16055,652,1,726,713,726,716,709,719,725,713,731,730,734,747,772,895,1217,1943,3092,4463,5712,6632,7281,7761,8170,8609,9131,9751,10481,11348,12342,13433,14598,15754,16864,17824,18533,18978,19102,18919,18546,18009,17418,16858,16391,16034,15802,15737,15833,16072,16469,17065,17812,18704,19761,20975,22289,23720,25190,26654,28053,29323,30298,31053,31456,31440,31121,30477,29553,28493,27283,26117,24960,23879,22912,22057,21330,20705,20231,19848,19556,19398,19307,19320,19435,19630,19883,20240,20653,21176,21724,22346,23013,23673,24268,24852,25318,25697,25950,25997,25891,25610,25145,24513,23780,22988,22122,21250,20415,19638,18957,18297,17744,17281,16869,16557,16312,16129,16030,15989,16017,16102,16258,16476,16786,17140,17565,18065,18634,19246,19858,20553,21266,22010,22741,23463,24161,24813,25388,25957,26381,26702,26933,27051,27050,26973,26741,26421,26025,25546,24977,24380,23752,23110,22459,21802,21173,20574,19986,19428,18940,18465,18069,17708,17367,17096,16820,16590,16368,16169,15984,15788,15601,15437,15303,15192,15099,15028,14937,14884,14871,14877,14884,14921,14956,14983,15028,15045,15077,15138,15158,15168,15195,15187,15218,15237,15236,15235,15186,15127,15059,14987,14885,14797,14662,14512,14328,14146,13943,13730,13478,13237,12970,12676,12389,12109,11801,11524,11250,11001,10764,10525,10270,9973,9643,9335,9049,8806,8600,8410,8259,8129,8026,7958,7901,7836,7786,7690,7537,7371,7217,7093,6974,6885,6808,6738,6685,6647,6627,6612,6589,6581,6593,6583,6455,6144,5719,5106,21.9,22.0,22.7,1567534,0.1,12.3,12.0,5.0,470,-1.00,-1.00,57.8848,-18.963023,0.000603,,,,,101 +SATSLF0720,2024246,1.764191,4.05,0.0567,0.1061,0.0203,0.00,16050,652,1,701,706,714,720,716,733,733,718,731,721,726,732,763,870,1197,1927,3092,4471,5710,6631,7291,7762,8169,8631,9144,9765,10491,11355,12361,13461,14629,15785,16873,17819,18557,18990,19118,18926,18556,18017,17437,16882,16428,16070,15843,15757,15847,16069,16470,17060,17797,18706,19761,20969,22291,23722,25185,26658,28068,29314,30304,31046,31440,31438,31110,30477,29571,28520,27265,26114,24967,23876,22886,22036,21301,20706,20241,19838,19563,19402,19312,19317,19426,19603,19875,20229,20666,21165,21736,22354,23016,23669,24260,24836,25317,25678,25954,26002,25894,25616,25138,24508,23782,22987,22124,21253,20417,19626,18937,18284,17730,17261,16854,16547,16289,16134,16042,15994,16011,16093,16255,16473,16759,17127,17556,18050,18616,19214,19833,20535,21253,21985,22737,23434,24122,24784,25376,25938,26362,26686,26932,27030,27043,26933,26728,26421,26016,25530,24957,24381,23749,23094,22459,21789,21169,20562,19960,19409,18920,18446,18048,17680,17351,17071,16811,16565,16371,16168,15974,15786,15609,15443,15298,15170,15082,14998,14933,14886,14880,14882,14885,14912,14915,14974,15017,15029,15091,15143,15161,15177,15171,15166,15201,15210,15210,15202,15162,15121,15049,14966,14885,14794,14643,14487,14328,14144,13939,13709,13472,13217,12950,12667,12381,12097,11790,11499,11238,10977,10755,10525,10258,9952,9636,9338,9045,8802,8589,8419,8276,8145,8038,7962,7877,7831,7763,7683,7533,7355,7209,7082,6967,6882,6805,6728,6676,6635,6619,6610,6596,6581,6607,6601,6446,6146,5730,5094,21.9,22.1,22.7,1567535,0.1,12.2,12.0,5.0,472,-1.00,-1.00,57.5284,-18.813456,0.000531,,,,,117 +SATSLF0720,2024246,1.764446,4.20,0.0588,0.1061,0.0205,0.00,16048,652,1,702,693,706,708,711,718,725,725,732,733,746,741,783,888,1221,1933,3102,4470,5710,6625,7267,7738,8151,8603,9118,9736,10493,11362,12338,13462,14617,15769,16871,17826,18531,18969,19099,18912,18541,18010,17421,16859,16413,16044,15830,15761,15841,16075,16490,17071,17798,18699,19749,20962,22281,23712,25181,26650,28069,29321,30326,31061,31460,31450,31117,30474,29557,28497,27276,26106,24953,23884,22882,22046,21317,20700,20216,19844,19557,19401,19313,19322,19422,19625,19886,20218,20662,21183,21749,22345,23011,23657,24260,24853,25314,25706,25941,26007,25885,25586,25122,24496,23772,22985,22123,21252,20405,19638,18948,18292,17742,17272,16858,16536,16299,16125,16016,15973,15986,16093,16257,16477,16766,17139,17559,18039,18617,19216,19843,20535,21255,21982,22708,23428,24128,24772,25355,25933,26362,26689,26936,27040,27037,26956,26746,26410,26004,25515,24960,24380,23746,23097,22446,21793,21163,20555,19972,19414,18929,18450,18045,17688,17358,17073,16797,16571,16369,16170,15972,15803,15597,15427,15287,15159,15083,15009,14920,14899,14874,14884,14897,14917,14928,14962,15018,15038,15085,15131,15151,15153,15174,15182,15185,15198,15215,15202,15153,15090,15044,14968,14897,14794,14645,14493,14333,14141,13939,13726,13483,13228,12964,12676,12386,12090,11786,11496,11230,10986,10753,10523,10257,9955,9645,9329,9044,8788,8581,8408,8264,8129,8036,7953,7887,7825,7777,7677,7533,7368,7214,7069,6976,6881,6801,6723,6679,6629,6615,6601,6599,6589,6601,6592,6435,6141,5709,5083,21.9,22.1,22.8,1567536,0.4,12.3,12.0,5.0,464,-1.00,-1.00,57.3423,-18.736948,0.000543,,,,,33 +SATSDF0720,2024246,2.009138,0.00,0.0000,0.0000,0.0000,0.00,650,0,1,639,617,615,632,636,619,635,626,631,629,633,621,641,637,624,623,625,628,638,632,629,635,664,658,648,651,658,654,659,667,663,651,659,660,652,651,651,648,661,656,666,662,661,668,657,652,650,650,653,663,661,648,659,650,654,651,637,650,650,649,657,661,661,654,648,658,656,654,647,661,651,653,651,672,657,660,665,648,665,661,663,652,649,652,656,659,649,662,656,649,662,660,661,636,647,667,656,652,643,654,663,645,632,640,646,637,640,659,652,653,666,669,659,657,645,639,631,645,642,640,637,653,650,646,653,646,651,657,649,645,643,645,645,653,646,653,663,649,653,652,649,647,651,641,649,649,659,658,656,665,657,658,654,652,655,657,646,653,640,651,650,664,666,665,654,648,647,640,651,656,651,644,647,660,658,665,662,662,662,647,652,649,646,643,651,652,657,653,658,641,643,645,660,648,653,646,663,658,650,649,651,647,641,653,646,633,639,638,629,649,652,665,649,656,652,657,659,659,660,642,655,641,643,651,653,655,665,665,654,664,646,637,651,641,649,642,649,649,651,642,647,657,642,659,652,652,645,642,655,652,658,648,654,653,660,497,0.0,0.0,0.0,1567535,0.2,12.8,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,245 +SATSLF0720,2024246,2.009696,3.90,0.0546,0.1001,0.0168,0.00,16226,650,1,713,713,717,709,707,708,704,701,711,724,721,737,761,878,1215,1951,3135,4520,5780,6730,7377,7853,8275,8723,9247,9881,10629,11524,12520,13647,14833,16004,17134,18094,18803,19253,19378,19191,18809,18268,17669,17109,16637,16273,16044,15969,16050,16312,16697,17303,18036,18935,20026,21264,22580,24030,25531,27024,28442,29723,30716,31482,31872,31880,31561,30900,29979,28917,27678,26489,25304,24232,23218,22346,21591,20981,20501,20114,19818,19669,19570,19578,19678,19861,20125,20475,20906,21431,22003,22636,23296,23946,24552,25139,25612,25992,26251,26290,26168,25877,25402,24765,24033,23242,22361,21491,20634,19865,19141,18482,17906,17435,17029,16720,16470,16291,16177,16135,16155,16249,16424,16654,16954,17317,17753,18235,18820,19418,20053,20725,21467,22215,22957,23671,24386,25050,25648,26232,26666,26999,27234,27321,27330,27250,27028,26698,26295,25789,25225,24641,23989,23343,22681,22011,21388,20773,20177,19615,19107,18647,18245,17880,17528,17239,16967,16715,16525,16323,16131,15931,15754,15577,15434,15331,15214,15140,15080,15026,15016,15023,15008,15049,15070,15109,15158,15176,15209,15281,15285,15301,15297,15301,15323,15355,15350,15335,15304,15233,15165,15105,15005,14903,14778,14622,14448,14247,14035,13818,13575,13322,13053,12777,12483,12184,11879,11601,11314,11072,10829,10595,10323,10024,9713,9392,9113,8870,8664,8478,8315,8194,8101,8033,7954,7898,7818,7735,7585,7413,7269,7140,7013,6913,6844,6785,6725,6679,6666,6652,6630,6631,6650,6641,6481,6189,5754,5133,21.8,21.8,22.2,1567537,0.2,12.3,11.9,5.0,593,-1.00,-1.00,57.6422,-19.119154,0.000465,,,,,25 +SATSLF0720,2024246,2.009877,4.01,0.0561,0.1010,0.0174,0.00,16195,650,1,707,695,707,700,699,693,712,697,723,727,729,736,777,877,1223,1937,3143,4517,5789,6721,7365,7845,8282,8718,9243,9879,10617,11483,12499,13621,14793,15973,17102,18066,18784,19217,19355,19181,18773,18247,17642,17075,16613,16248,16029,15941,16021,16264,16675,17265,18007,18930,19998,21216,22546,24000,25495,26981,28397,29664,30660,31401,31810,31802,31483,30841,29901,28834,27607,26413,25245,24161,23141,22288,21560,20956,20475,20077,19792,19643,19533,19538,19626,19814,20087,20435,20869,21378,21946,22567,23249,23906,24500,25073,25555,25911,26192,26226,26131,25841,25362,24736,23997,23190,22322,21433,20583,19803,19112,18434,17885,17406,17015,16675,16418,16247,16141,16096,16128,16212,16384,16618,16908,17275,17701,18197,18746,19367,20004,20699,21438,22172,22935,23641,24353,25010,25617,26164,26590,26917,27146,27262,27266,27181,26970,26631,26256,25760,25170,24589,23941,23304,22634,21988,21321,20727,20141,19577,19089,18610,18197,17821,17500,17202,16935,16679,16491,16275,16091,15919,15722,15557,15415,15307,15181,15117,15045,15006,14983,14988,14989,15009,15024,15067,15107,15137,15187,15236,15261,15264,15269,15287,15309,15319,15313,15317,15265,15217,15145,15057,14966,14885,14733,14583,14425,14238,14029,13817,13577,13312,13029,12751,12457,12156,11854,11581,11305,11058,10813,10583,10322,10011,9696,9385,9097,8855,8640,8463,8318,8170,8079,7988,7923,7881,7820,7725,7573,7409,7254,7125,7012,6925,6829,6778,6717,6681,6659,6636,6622,6617,6643,6631,6482,6184,5758,5120,21.8,21.8,22.2,1567537,0.0,12.2,12.0,5.0,493,-1.00,-1.00,56.8696,-18.756100,0.000529,,,,,119 +SATSLF0720,2024246,2.010133,4.04,0.0565,0.1009,0.0174,0.00,16194,650,1,696,704,713,693,707,701,719,719,714,724,733,729,767,867,1199,1944,3117,4507,5757,6679,7323,7815,8246,8681,9199,9835,10583,11455,12445,13567,14754,15924,17024,17984,18725,19172,19293,19123,18740,18213,17610,17057,16581,16203,15981,15912,15998,16243,16645,17240,17984,18889,19976,21204,22497,23967,25456,26945,28381,29625,30643,31385,31784,31778,31453,30809,29882,28826,27591,26397,25239,24150,23147,22285,21538,20931,20443,20055,19773,19616,19537,19533,19633,19831,20096,20446,20860,21390,21949,22587,23251,23901,24528,25101,25573,25940,26193,26241,26125,25851,25373,24732,24000,23207,22314,21448,20589,19813,19118,18465,17888,17413,16996,16704,16424,16259,16158,16117,16144,16230,16396,16625,16915,17300,17725,18204,18789,19388,20037,20721,21443,22199,22934,23644,24361,25016,25618,26176,26608,26941,27193,27287,27294,27207,26988,26657,26253,25765,25190,24603,23957,23301,22638,21980,21338,20738,20133,19577,19095,18619,18217,17833,17508,17222,16961,16701,16510,16312,16114,15921,15741,15573,15425,15305,15202,15120,15049,15008,14989,15008,15013,15019,15040,15094,15118,15158,15188,15249,15272,15269,15299,15301,15322,15353,15342,15329,15274,15223,15144,15075,14994,14899,14760,14605,14449,14236,14029,13818,13561,13307,13043,12782,12456,12167,11863,11584,11313,11069,10828,10585,10314,10012,9677,9379,9092,8857,8645,8480,8311,8176,8088,7997,7935,7883,7810,7711,7583,7415,7242,7127,7013,6928,6837,6763,6707,6679,6657,6635,6647,6638,6657,6643,6492,6178,5746,5117,21.8,21.8,22.3,1567538,0.4,12.3,11.9,5.0,479,-1.00,-1.00,57.5957,-19.043908,0.000530,,,,,68 +SATSLF0720,2024246,2.010385,4.19,0.0587,0.1018,0.0177,0.00,16187,650,1,700,705,697,700,713,705,719,700,711,712,722,730,773,874,1218,1938,3123,4493,5752,6675,7341,7818,8241,8674,9186,9819,10576,11443,12430,13563,14746,15916,17026,17990,18708,19157,19293,19105,18716,18187,17586,17015,16567,16202,15974,15909,15987,16241,16642,17226,17972,18886,19956,21184,22506,23950,25447,26930,28354,29602,30613,31365,31749,31756,31421,30780,29850,28804,27538,26375,25208,24133,23117,22264,21524,20913,20441,20058,19772,19589,19499,19520,19616,19794,20057,20408,20846,21376,21957,22585,23229,23888,24489,25077,25553,25923,26189,26221,26102,25825,25337,24706,23981,23178,22301,21446,20586,19831,19105,18450,17889,17413,16989,16683,16411,16255,16146,16113,16133,16226,16375,16606,16915,17290,17717,18213,18783,19383,20018,20709,21437,22176,22928,23643,24361,25013,25607,26176,26608,26924,27169,27273,27285,27189,26977,26654,26257,25760,25193,24589,23941,23322,22644,21978,21335,20728,20123,19569,19073,18607,18198,17829,17497,17201,16939,16710,16501,16293,16114,15912,15739,15561,15412,15297,15203,15130,15042,15017,14989,14995,14997,15014,15051,15077,15115,15154,15194,15250,15261,15282,15285,15314,15333,15353,15345,15328,15273,15206,15136,15067,14979,14893,14757,14601,14427,14245,14030,13818,13577,13317,13051,12775,12470,12178,11880,11596,11317,11069,10841,10585,10323,10033,9709,9386,9096,8855,8644,8450,8311,8187,8088,8010,7950,7901,7825,7752,7581,7411,7249,7130,7010,6908,6822,6763,6719,6680,6653,6639,6616,6631,6633,6627,6487,6182,5745,5127,21.8,21.8,22.3,1567539,0.0,12.2,11.9,5.0,475,-1.00,-1.00,56.9975,-18.778534,0.000544,,,,,104 +SATSLF0720,2024246,2.010636,4.11,0.0576,0.1062,0.0206,0.00,16041,650,1,694,701,701,701,725,700,723,726,733,731,746,736,757,867,1191,1923,3095,4459,5697,6618,7264,7745,8145,8605,9101,9719,10461,11319,12327,13430,14587,15741,16849,17793,18502,18940,19067,18882,18530,17991,17400,16857,16376,16018,15793,15714,15811,16065,16466,17049,17785,18686,19747,20953,22258,23700,25168,26637,28064,29294,30276,31031,31426,31435,31105,30458,29557,28505,27291,26098,24955,23880,22877,22039,21320,20704,20225,19831,19559,19405,19309,19326,19425,19600,19856,20222,20650,21163,21734,22341,23004,23664,24261,24834,25305,25670,25928,25984,25850,25573,25082,24469,23749,22970,22096,21223,20387,19614,18918,18269,17713,17256,16844,16519,16282,16113,16004,15959,15994,16093,16246,16484,16772,17133,17557,18039,18605,19208,19835,20528,21243,21999,22730,23436,24129,24795,25373,25924,26362,26689,26933,27037,27055,26970,26741,26425,26029,25539,24969,24386,23757,23101,22451,21798,21161,20571,19977,19427,18929,18455,18053,17684,17366,17084,16798,16565,16371,16165,15975,15784,15610,15425,15303,15172,15072,15001,14947,14894,14877,14875,14865,14903,14913,14979,15002,15035,15086,15143,15168,15162,15181,15190,15204,15221,15208,15197,15159,15101,15038,14958,14875,14785,14650,14501,14327,14133,13941,13722,13474,13225,12957,12663,12380,12078,11774,11483,11231,10988,10753,10516,10259,9953,9627,9313,9047,8792,8585,8407,8261,8140,8029,7962,7890,7825,7767,7677,7531,7357,7203,7075,6964,6865,6789,6729,6673,6637,6609,6609,6589,6579,6596,6578,6441,6146,5716,5097,21.8,21.8,22.4,1567540,0.6,12.3,11.9,5.0,476,-1.00,-1.00,58.2682,-19.116624,0.000537,,,,,70 +SATSLF0720,2024246,2.010894,4.11,0.0576,0.1029,0.0186,0.00,16136,650,1,705,708,726,716,725,710,727,717,716,735,729,741,778,898,1221,1941,3115,4491,5750,6675,7313,7783,8222,8676,9208,9821,10545,11416,12408,13515,14701,15871,16973,17934,18644,19095,19224,19037,18667,18122,17533,16962,16496,16146,15924,15847,15939,16180,16588,17166,17914,18821,19888,21090,22428,23877,25354,26833,28261,29501,30493,31256,31646,31642,31314,30680,29760,28694,27475,26278,25113,24037,23038,22181,21449,20834,20357,19978,19688,19539,19449,19452,19558,19749,20000,20347,20763,21300,21867,22483,23141,23805,24409,24989,25469,25834,26091,26139,26020,25737,25274,24641,23918,23101,22228,21354,20500,19738,19027,18373,17825,17349,16933,16619,16378,16202,16098,16050,16074,16157,16337,16545,16867,17233,17654,18150,18709,19321,19949,20638,21354,22109,22852,23569,24261,24925,25494,26075,26509,26817,27053,27182,27189,27103,26870,26555,26161,25661,25090,24499,23867,23234,22576,21920,21283,20669,20074,19514,19012,18531,18137,17767,17443,17155,16882,16649,16452,16249,16060,15860,15659,15507,15363,15261,15162,15101,15017,14973,14967,14962,14962,14979,14998,15040,15080,15099,15161,15212,15212,15230,15248,15253,15266,15295,15301,15290,15225,15161,15105,15037,14948,14854,14716,14573,14400,14205,14006,13778,13554,13285,13011,12723,12440,12149,11851,11570,11296,11033,10798,10565,10285,9990,9666,9347,9073,8818,8615,8438,8295,8162,8069,7989,7902,7871,7799,7713,7576,7393,7239,7111,6992,6904,6822,6773,6713,6665,6648,6626,6616,6593,6624,6620,6468,6157,5746,5133,21.8,21.8,22.4,1567541,0.6,12.2,11.9,5.0,478,-1.00,-1.00,57.4838,-18.918260,0.000531,,,,,124 +SATSLF0720,2024246,2.011146,4.08,0.0571,0.1032,0.0188,0.00,16130,650,1,711,705,714,716,717,720,726,737,717,723,720,739,765,865,1211,1945,3111,4483,5733,6658,7305,7785,8205,8641,9171,9792,10538,11413,12394,13513,14684,15850,16957,17910,18626,19081,19201,19031,18649,18113,17521,16954,16489,16120,15899,15847,15918,16162,16566,17136,17890,18797,19885,21097,22388,23865,25309,26817,28226,29474,30471,31222,31625,31624,31299,30633,29722,28673,27433,26249,25104,24030,23043,22181,21435,20833,20338,19955,19681,19515,19439,19445,19525,19720,19984,20337,20768,21283,21863,22473,23138,23801,24405,24990,25450,25818,26084,26129,26007,25720,25255,24621,23895,23099,22237,21356,20507,19749,19033,18378,17837,17356,16938,16623,16384,16189,16114,16060,16071,16171,16341,16561,16861,17217,17653,18120,18702,19301,19938,20636,21373,22101,22845,23565,24274,24922,25528,26082,26506,26812,27056,27174,27190,27097,26888,26570,26169,25657,25093,24507,23856,23226,22554,21889,21270,20653,20061,19510,19033,18553,18158,17784,17445,17157,16886,16656,16437,16231,16049,15857,15674,15517,15356,15249,15155,15093,15013,14965,14946,14952,14950,14980,15002,15023,15079,15109,15148,15218,15234,15239,15240,15255,15265,15281,15281,15275,15236,15157,15097,15031,14950,14861,14716,14573,14389,14193,13996,13778,13541,13272,13019,12736,12441,12140,11853,11546,11282,11028,10789,10562,10298,9984,9659,9367,9082,8854,8625,8459,8308,8165,8068,7985,7923,7868,7805,7709,7583,7397,7249,7111,6996,6906,6816,6753,6707,6665,6635,6643,6618,6611,6635,6630,6470,6155,5746,5127,21.8,21.8,22.4,1567542,0.2,12.3,12.0,5.0,465,-1.00,-1.00,57.5779,-18.938732,0.000585,,,,,134 +SATSLF0720,2024246,2.011405,3.93,0.0550,0.1036,0.0184,0.00,16127,650,1,712,704,709,701,701,713,717,701,707,714,721,731,778,895,1224,1933,3118,4486,5725,6661,7304,7789,8208,8657,9166,9780,10526,11409,12410,13531,14685,15859,16971,17925,18631,19083,19222,19044,18650,18109,17520,16941,16487,16124,15897,15829,15905,16165,16569,17141,17879,18798,19862,21083,22389,23842,25322,26812,28237,29476,30484,31227,31625,31619,31300,30634,29714,28667,27428,26258,25106,24032,23047,22185,21441,20823,20341,19946,19674,19501,19418,19437,19534,19719,19995,20329,20777,21294,21853,22471,23141,23777,24402,24975,25460,25828,26090,26130,26010,25734,25242,24593,23886,23074,22208,21349,20507,19737,19026,18384,17825,17361,16942,16630,16383,16209,16103,16055,16083,16176,16334,16551,16853,17205,17655,18116,18706,19317,19945,20636,21360,22114,22830,23547,24253,24909,25500,26077,26492,26819,27061,27173,27179,27089,26880,26556,26144,25659,25095,24518,23860,23223,22572,21893,21260,20657,20070,19520,19026,18529,18122,17766,17430,17147,16889,16643,16441,16246,16049,15849,15680,15510,15360,15264,15157,15080,15006,14964,14939,14947,14937,14979,14998,15037,15086,15105,15156,15204,15235,15230,15233,15243,15255,15275,15293,15276,15239,15173,15112,15038,14944,14856,14714,14578,14381,14203,13975,13770,13542,13253,13011,12722,12439,12146,11853,11565,11285,11044,10792,10556,10276,9981,9657,9346,9065,8820,8613,8442,8285,8160,8071,8000,7920,7869,7788,7701,7565,7380,7231,7117,6993,6904,6817,6749,6691,6658,6635,6633,6624,6602,6625,6627,6470,6151,5720,5114,21.8,21.8,22.4,1567543,0.5,12.3,11.9,5.0,471,-1.00,-1.00,58.1289,-19.167296,0.000625,,,,,247 +SATSLF0720,2024246,2.011659,4.11,0.0576,0.1039,0.0185,0.00,16126,650,1,707,711,708,717,709,714,717,726,729,736,733,745,776,895,1218,1945,3115,4477,5723,6659,7303,7791,8204,8650,9170,9783,10530,11396,12381,13501,14668,15837,16944,17906,18629,19070,19211,19019,18649,18109,17509,16949,16494,16130,15906,15837,15910,16151,16571,17137,17893,18794,19877,21091,22417,23852,25314,26802,28217,29481,30461,31221,31616,31617,31289,30647,29717,28663,27430,26247,25079,24008,23029,22165,21451,20826,20345,19945,19671,19506,19407,19415,19528,19709,19972,20331,20765,21291,21849,22468,23134,23787,24393,24976,25445,25814,26077,26128,26014,25734,25245,24613,23892,23085,22227,21354,20502,19733,19040,18375,17833,17357,16942,16617,16358,16199,16101,16058,16077,16165,16337,16553,16848,17218,17648,18125,18693,19303,19939,20625,21367,22098,22848,23555,24267,24914,25511,26057,26508,26827,27053,27185,27180,27093,26875,26548,26139,25649,25094,24496,23867,23219,22589,21921,21276,20666,20081,19518,18989,18547,18138,17777,17435,17153,16869,16630,16433,16241,16033,15844,15665,15511,15357,15242,15134,15081,15002,14973,14954,14936,14948,14983,14989,15024,15070,15109,15155,15207,15214,15230,15240,15249,15261,15303,15289,15282,15226,15177,15109,15026,14944,14841,14714,14556,14378,14203,13999,13778,13543,13269,13016,12717,12421,12136,11847,11561,11275,11035,10797,10561,10294,9985,9674,9373,9070,8836,8619,8452,8299,8174,8065,7995,7926,7860,7803,7698,7547,7392,7237,7101,6989,6891,6809,6744,6707,6659,6652,6642,6623,6613,6611,6615,6454,6162,5746,5112,21.8,21.9,22.5,1567544,0.1,12.3,11.9,5.0,474,-1.00,-1.00,57.4664,-18.890333,0.000572,,,,,67 +SATSLF0720,2024246,2.011911,3.97,0.0556,0.1070,0.0207,0.00,16023,650,1,705,706,698,712,708,706,731,712,728,729,725,731,774,885,1200,1931,3087,4480,5712,6641,7274,7750,8151,8595,9109,9723,10457,11322,12301,13417,14569,15714,16824,17770,18485,18918,19053,18875,18501,17953,17379,16821,16357,16000,15773,15690,15779,16019,16426,17001,17751,18654,19701,20916,22209,23661,25124,26598,27998,29234,30229,30965,31374,31365,31052,30403,29488,28440,27208,26055,24901,23827,22841,21980,21275,20656,20177,19797,19517,19366,19272,19303,19397,19586,19853,20181,20602,21122,21682,22300,22966,23610,24210,24809,25269,25621,25890,25932,25818,25546,25060,24441,23733,22944,22073,21208,20371,19597,18902,18245,17691,17216,16822,16506,16261,16085,15981,15948,15970,16067,16216,16449,16743,17099,17527,18011,18592,19186,19813,20503,21232,21965,22698,23405,24116,24762,25351,25920,26330,26656,26893,27001,27010,26922,26709,26379,26007,25505,24945,24377,23740,23086,22427,21769,21134,20527,19934,19399,18903,18442,18037,17684,17340,17073,16804,16561,16355,16146,15959,15773,15590,15425,15291,15168,15065,14990,14918,14892,14869,14882,14880,14913,14953,14977,15012,15031,15085,15117,15143,15141,15168,15165,15189,15207,15213,15222,15162,15106,15034,14957,14871,14781,14633,14491,14323,14125,13922,13713,13467,13217,12955,12669,12374,12082,11796,11508,11239,10974,10751,10498,10238,9951,9622,9323,9037,8792,8589,8413,8257,8129,8043,7956,7881,7837,7757,7679,7537,7360,7215,7080,6971,6879,6795,6727,6673,6631,6605,6601,6601,6593,6594,6589,6442,6141,5716,5096,21.8,21.9,22.5,1567545,0.0,12.2,12.0,5.0,471,-1.00,-1.00,58.5744,-19.205418,0.000600,,,,,210 +SATSLF0720,2024246,2.012167,4.41,0.0617,0.1073,0.0200,0.00,16022,650,1,713,708,723,722,740,730,725,737,750,737,739,738,776,877,1189,1917,3066,4422,5653,6563,7200,7675,8089,8530,9046,9652,10389,11246,12240,13321,14470,15627,16726,17657,18386,18817,18953,18770,18407,17860,17276,16736,16282,15926,15717,15645,15735,15978,16396,16972,17709,18604,19674,20884,22181,23612,25068,26562,27952,29187,30171,30913,31319,31328,30998,30355,29453,28410,27173,26016,24854,23805,22816,21965,21254,20651,20185,19786,19532,19358,19262,19279,19388,19578,19836,20192,20618,21139,21701,22312,22976,23618,24228,24802,25285,25637,25907,25947,25834,25541,25075,24446,23735,22946,22086,21222,20381,19607,18911,18259,17708,17239,16828,16516,16269,16112,16009,15964,16000,16073,16241,16475,16754,17131,17554,18041,18606,19222,19845,20530,21241,21985,22725,23441,24152,24801,25381,25945,26371,26683,26933,27013,27031,26945,26739,26411,26029,25538,24977,24385,23765,23114,22452,21804,21164,20552,19965,19406,18919,18459,18061,17692,17364,17074,16800,16587,16380,16177,15992,15799,15614,15461,15313,15185,15081,15008,14947,14909,14889,14894,14890,14931,14949,14985,15018,15053,15105,15161,15160,15177,15196,15190,15229,15232,15231,15222,15174,15114,15057,14992,14905,14820,14664,14525,14349,14154,13943,13728,13501,13229,12970,12688,12390,12097,11805,11514,11243,10994,10752,10531,10256,9959,9651,9328,9042,8803,8573,8406,8265,8134,8053,7959,7895,7842,7779,7687,7556,7376,7212,7089,6969,6875,6800,6733,6691,6649,6622,6605,6603,6580,6613,6589,6449,6149,5725,5101,21.8,21.9,22.5,1567546,0.2,12.3,12.0,5.0,472,-1.00,-1.00,58.7511,-19.254148,0.000628,,,,,129 +SATSLF0720,2024246,2.012421,4.21,0.0590,0.1058,0.0206,0.00,16049,650,1,709,711,710,725,724,717,713,729,743,727,730,729,766,872,1219,1938,3109,4473,5715,6651,7296,7754,8187,8617,9127,9746,10481,11343,12350,13445,14627,15777,16880,17819,18545,18971,19109,18915,18548,18019,17431,16861,16402,16049,15831,15760,15834,16091,16492,17072,17811,18694,19763,20978,22291,23723,25197,26664,28080,29315,30322,31057,31443,31457,31122,30482,29563,28518,27285,26109,24965,23890,22900,22052,21322,20723,20246,19851,19578,19425,19326,19322,19438,19619,19885,20221,20672,21177,21749,22355,23025,23661,24273,24842,25324,25673,25940,25980,25859,25595,25125,24489,23757,22964,22098,21235,20401,19643,18935,18288,17731,17262,16838,16534,16286,16120,16013,15976,16001,16085,16257,16481,16766,17128,17573,18043,18617,19218,19848,20528,21265,22005,22738,23445,24144,24784,25383,25937,26363,26679,26925,27024,27028,26954,26733,26407,26035,25532,24974,24372,23736,23102,22445,21780,21159,20553,19965,19429,18936,18474,18068,17690,17355,17058,16802,16550,16355,16158,15956,15794,15605,15437,15302,15169,15075,15007,14918,14882,14878,14875,14875,14912,14933,14969,15013,15035,15081,15132,15151,15165,15182,15162,15187,15204,15202,15212,15156,15095,15037,14968,14865,14787,14651,14485,14328,14138,13923,13707,13478,13214,12960,12672,12380,12079,11775,11488,11233,10970,10747,10516,10263,9955,9647,9336,9033,8791,8582,8405,8273,8127,8047,7946,7883,7835,7767,7684,7544,7373,7205,7089,6981,6883,6807,6749,6689,6647,6611,6603,6577,6564,6587,6590,6434,6135,5721,5097,21.8,21.9,22.5,1567547,0.0,12.3,11.9,5.0,474,-1.00,-1.00,57.2456,-18.702142,0.000522,,,,,98 +SATSLF0720,2024246,2.012673,4.30,0.0602,0.1044,0.0188,0.00,16100,650,1,704,703,713,721,728,709,723,714,732,727,734,755,777,891,1201,1931,3104,4478,5733,6656,7305,7780,8187,8644,9144,9768,10501,11373,12373,13476,14651,15813,16931,17865,18598,19010,19141,18955,18596,18059,17470,16915,16444,16089,15866,15795,15878,16127,16531,17121,17857,18757,19834,21061,22370,23817,25287,26757,28161,29416,30419,31160,31549,31553,31232,30586,29677,28625,27386,26203,25053,23974,22978,22120,21394,20785,20305,19917,19632,19469,19387,19393,19494,19685,19949,20296,20726,21248,21821,22429,23106,23729,24363,24932,25413,25769,26032,26080,25954,25681,25210,24577,23869,23064,22194,21321,20477,19721,19005,18361,17789,17325,16908,16602,16341,16174,16070,16027,16053,16151,16304,16531,16812,17191,17600,18103,18670,19283,19923,20593,21339,22053,22790,23511,24213,24865,25463,26024,26456,26787,27025,27139,27160,27056,26837,26506,26118,25621,25052,24471,23829,23174,22523,21866,21237,20616,20032,19472,18984,18496,18119,17741,17409,17123,16860,16613,16417,16209,16033,15833,15646,15479,15325,15197,15105,15051,14973,14936,14934,14925,14936,14956,14997,15008,15061,15064,15107,15177,15197,15202,15217,15218,15251,15253,15251,15243,15191,15149,15097,15028,14931,14846,14693,14539,14371,14185,13968,13755,13515,13251,12978,12721,12406,12132,11817,11540,11278,11025,10777,10558,10277,9975,9663,9357,9072,8824,8597,8443,8293,8150,8060,7978,7915,7858,7782,7701,7557,7391,7221,7095,6989,6877,6797,6732,6691,6637,6628,6613,6616,6590,6626,6612,6474,6172,5736,5110,21.8,21.9,22.6,1567547,0.5,12.3,12.0,5.0,473,-1.00,-1.00,57.3969,-18.830612,0.000542,,,,,183 +SATSLF0720,2024246,2.012928,4.18,0.0585,0.1055,0.0199,0.00,16073,650,1,703,701,704,711,721,703,720,715,727,731,726,743,769,881,1197,1933,3092,4463,5701,6629,7275,7738,8171,8615,9128,9737,10476,11353,12343,13451,14613,15753,16871,17824,18538,18973,19111,18920,18563,18029,17434,16884,16422,16053,15825,15744,15844,16081,16491,17073,17824,18733,19776,20999,22320,23752,25227,26689,28104,29353,30336,31090,31482,31479,31151,30519,29608,28553,27315,26141,24978,23915,22918,22071,21325,20728,20234,19875,19580,19434,19336,19368,19465,19649,19920,20257,20695,21193,21756,22379,23061,23692,24305,24901,25366,25732,25994,26033,25909,25639,25162,24526,23799,23006,22147,21291,20440,19683,18976,18321,17764,17285,16873,16565,16305,16147,16046,15992,16033,16133,16295,16517,16798,17182,17596,18087,18626,19241,19877,20561,21280,22033,22763,23491,24192,24846,25447,25993,26417,26737,26986,27079,27106,27002,26796,26461,26062,25571,25024,24426,23811,23152,22508,21834,21202,20608,19996,19448,18956,18499,18088,17723,17408,17104,16833,16601,16404,16209,16000,15811,15629,15466,15332,15203,15113,15032,14951,14923,14913,14906,14925,14940,14951,14999,15041,15066,15125,15173,15187,15200,15208,15206,15223,15249,15243,15232,15195,15133,15063,14998,14903,14829,14685,14545,14357,14176,13964,13746,13506,13243,12977,12681,12395,12101,11803,11527,11257,11016,10787,10537,10270,9987,9652,9326,9043,8811,8601,8440,8282,8156,8061,7970,7903,7853,7779,7691,7547,7387,7232,7110,6981,6885,6810,6742,6677,6638,6619,6606,6596,6590,6604,6603,6446,6143,5714,5103,21.8,21.9,22.6,1567548,0.4,12.3,11.9,5.0,473,-1.00,-1.00,57.7575,-18.935872,0.000583,,,,,168 +SATSLF0720,2024246,2.013182,4.85,0.0679,0.1191,0.0277,0.00,15648,650,1,700,702,714,709,715,721,733,730,731,735,738,737,772,878,1191,1892,2990,4281,5471,6333,6939,7408,7801,8218,8718,9317,10032,10849,11805,12877,13986,15099,16160,17040,17740,18165,18290,18132,17777,17277,16731,16189,15766,15429,15215,15154,15237,15469,15869,16433,17152,18032,19082,20260,21527,22918,24337,25756,27128,28327,29268,29992,30362,30371,30060,29448,28570,27549,26379,25239,24141,23108,22162,21349,20650,20072,19617,19252,18998,18840,18760,18788,18892,19062,19323,19659,20074,20589,21160,21756,22409,23043,23644,24193,24648,25017,25268,25320,25184,24913,24443,23828,23133,22368,21522,20691,19861,19133,18454,17824,17288,16836,16454,16138,15898,15725,15641,15610,15629,15732,15889,16119,16406,16775,17193,17661,18219,18813,19429,20087,20807,21517,22245,22949,23638,24288,24850,25426,25826,26157,26379,26480,26509,26405,26192,25865,25485,24995,24456,23879,23269,22644,22010,21352,20744,20156,19590,19029,18555,18098,17714,17351,17033,16753,16495,16253,16063,15855,15679,15508,15317,15167,15034,14917,14827,14752,14670,14641,14617,14611,14613,14642,14669,14715,14753,14798,14841,14891,14903,14931,14934,14931,14946,14981,14978,14980,14925,14865,14805,14741,14660,14553,14424,14280,14119,13941,13739,13521,13264,13022,12752,12473,12180,11904,11616,11331,11077,10821,10593,10353,10089,9782,9479,9180,8889,8651,8461,8292,8154,8009,7932,7854,7783,7735,7665,7581,7434,7268,7117,6986,6869,6781,6709,6635,6591,6565,6545,6522,6502,6490,6487,6487,6359,6050,5639,5021,21.8,21.9,22.6,1567549,0.3,12.3,11.9,5.0,469,-1.00,-1.00,60.4373,-19.395969,0.000721,,,,,56 +SATSLF0720,2024246,2.013435,4.35,0.0609,0.1075,0.0206,0.00,16012,650,1,709,707,735,733,727,735,731,736,742,731,739,732,776,886,1205,1933,3094,4455,5681,6596,7229,7712,8129,8572,9093,9693,10430,11278,12279,13362,14536,15685,16776,17715,18422,18887,18997,18817,18456,17924,17351,16776,16330,15959,15749,15680,15757,16009,16435,16993,17739,18645,19692,20898,22208,23637,25098,26557,27959,29204,30194,30934,31333,31339,30994,30359,29454,28397,27179,26013,24869,23802,22805,21977,21239,20645,20170,19782,19509,19333,19254,19269,19367,19563,19821,20170,20610,21128,21693,22314,22964,23609,24213,24782,25259,25608,25872,25922,25803,25530,25060,24431,23712,22916,22065,21197,20365,19597,18887,18247,17697,17219,16815,16509,16254,16093,15994,15943,15969,16062,16224,16459,16733,17109,17541,18026,18577,19181,19808,20485,21218,21963,22689,23405,24103,24759,25350,25907,26333,26640,26890,26977,27003,26905,26700,26378,25990,25489,24915,24342,23705,23063,22419,21779,21133,20522,19940,19404,18905,18429,18028,17657,17336,17053,16789,16528,16332,16137,15963,15761,15581,15401,15262,15156,15060,14977,14919,14877,14844,14854,14888,14897,14917,14958,15002,15026,15074,15133,15129,15157,15157,15156,15174,15209,15192,15200,15161,15090,15037,14961,14877,14778,14643,14485,14330,14133,13912,13707,13454,13207,12946,12664,12382,12083,11775,11486,11210,10973,10734,10496,10249,9944,9631,9323,9026,8791,8567,8399,8238,8115,8027,7948,7876,7832,7769,7677,7536,7365,7210,7080,6957,6868,6784,6721,6671,6651,6630,6610,6593,6587,6603,6600,6426,6132,5708,5096,21.9,22.0,22.6,1567550,0.0,12.2,12.0,5.0,474,-1.00,-1.00,57.5390,-18.753336,0.000585,,,,,18 +SATSLF0720,2024246,2.013690,4.08,0.0572,0.1057,0.0201,0.00,16057,650,1,719,717,721,717,727,717,728,729,724,737,727,743,782,898,1212,1945,3105,4473,5711,6646,7278,7763,8189,8629,9150,9762,10485,11351,12331,13436,14605,15770,16868,17822,18544,18976,19111,18913,18538,17995,17412,16859,16405,16047,15822,15751,15836,16077,16488,17054,17805,18704,19762,20962,22283,23721,25193,26661,28073,29316,30301,31033,31451,31447,31141,30490,29579,28530,27296,26121,24955,23875,22888,22045,21309,20711,20251,19851,19579,19418,19330,19341,19422,19624,19869,20228,20653,21189,21742,22355,23028,23680,24289,24858,25334,25693,25947,25992,25881,25605,25124,24491,23777,23002,22119,21261,20427,19669,18945,18305,17749,17268,16875,16554,16300,16128,16021,15981,15997,16105,16256,16471,16771,17147,17578,18045,18615,19236,19858,20550,21276,22010,22757,23458,24141,24806,25398,25949,26365,26699,26933,27049,27054,26978,26765,26436,26025,25545,24969,24370,23771,23113,22455,21798,21174,20584,19997,19434,18946,18462,18063,17698,17367,17074,16814,16581,16374,16167,15982,15794,15619,15454,15313,15204,15104,15030,14957,14921,14889,14888,14875,14923,14932,14977,15004,15031,15090,15163,15172,15195,15209,15194,15213,15233,15229,15240,15165,15103,15054,14983,14903,14821,14669,14525,14341,14150,13942,13737,13492,13224,12964,12675,12381,12096,11800,11517,11255,10996,10765,10535,10265,9963,9631,9320,9047,8806,8598,8420,8267,8127,8040,7953,7903,7853,7780,7690,7551,7381,7211,7089,6979,6881,6796,6726,6675,6636,6621,6621,6602,6595,6605,6594,6456,6158,5745,5113,21.9,22.0,22.6,1567551,0.1,12.3,12.0,5.0,472,-1.00,-1.00,58.0213,-19.026835,0.000509,,,,,109 +SATSLF0720,2024246,2.013943,4.32,0.0605,0.1058,0.0200,0.00,16058,650,1,707,702,701,707,710,710,719,725,733,740,740,762,784,899,1221,1928,3093,4472,5706,6616,7275,7756,8187,8626,9130,9755,10487,11344,12335,13436,14605,15758,16867,17808,18524,18949,19083,18909,18533,18015,17424,16873,16403,16046,15825,15744,15833,16068,16481,17057,17802,18706,19772,20980,22292,23733,25211,26678,28081,29334,30325,31066,31457,31444,31117,30475,29564,28502,27294,26117,24977,23913,22905,22055,21312,20708,20234,19842,19574,19413,19324,19337,19426,19633,19882,20232,20661,21169,21741,22344,23031,23673,24277,24873,25334,25690,25955,26007,25883,25613,25125,24493,23800,22998,22125,21255,20419,19662,18951,18308,17732,17269,16870,16540,16298,16133,16027,15987,15998,16103,16261,16489,16781,17146,17562,18064,18617,19235,19866,20549,21268,22012,22741,23440,24141,24808,25393,25958,26374,26696,26955,27057,27058,26967,26760,26427,26024,25537,24994,24409,23765,23117,22467,21803,21182,20583,19984,19450,18954,18472,18076,17697,17375,17089,16819,16573,16375,16183,16001,15805,15625,15457,15314,15205,15098,15021,14934,14906,14889,14893,14898,14921,14961,14990,15025,15037,15092,15151,15168,15164,15175,15179,15202,15221,15219,15224,15175,15113,15059,14995,14909,14806,14671,14520,14344,14154,13940,13738,13499,13235,12978,12688,12395,12110,11815,11518,11263,11010,10747,10515,10257,9965,9634,9325,9045,8802,8592,8423,8275,8151,8052,7949,7892,7837,7765,7687,7551,7387,7231,7111,6981,6884,6805,6727,6677,6651,6628,6616,6595,6577,6619,6587,6454,6153,5733,5113,21.8,22.1,22.7,1567552,0.2,12.3,12.0,5.0,473,-1.00,-1.00,57.1897,-18.681013,0.000570,,,,,140 +SATSLF0720,2024246,2.014194,4.14,0.0580,0.1055,0.0195,0.00,16076,650,1,717,710,709,704,699,714,714,739,733,734,735,744,767,883,1203,1929,3099,4475,5720,6647,7285,7762,8180,8617,9139,9757,10490,11357,12354,13473,14627,15786,16901,17842,18564,18996,19124,18941,18568,18036,17444,16885,16422,16071,15838,15767,15851,16097,16500,17079,17829,18734,19792,21006,22318,23747,25236,26696,28105,29353,30339,31088,31494,31492,31184,30513,29596,28545,27332,26153,24989,23929,22913,22075,21349,20748,20264,19874,19588,19437,19338,19350,19456,19642,19908,20257,20691,21195,21775,22389,23059,23702,24309,24881,25367,25725,25995,26045,25921,25645,25181,24529,23813,23018,22156,21280,20440,19675,18965,18313,17752,17289,16875,16567,16330,16150,16049,16018,16036,16139,16282,16503,16795,17160,17589,18067,18634,19238,19885,20576,21291,22037,22775,23491,24192,24849,25426,25995,26419,26723,26993,27082,27095,27002,26813,26481,26061,25568,25024,24437,23801,23136,22493,21828,21190,20589,19995,19451,18956,18499,18085,17723,17398,17097,16841,16597,16402,16205,16005,15809,15629,15452,15321,15197,15123,15034,14965,14936,14906,14918,14906,14943,14955,14994,15039,15077,15125,15188,15181,15195,15200,15212,15235,15269,15251,15247,15210,15137,15075,14996,14899,14824,14690,14528,14356,14169,13959,13745,13509,13258,12992,12695,12405,12117,11817,11538,11261,11002,10770,10548,10261,9975,9651,9333,9053,8822,8599,8429,8293,8163,8069,7976,7903,7855,7797,7694,7562,7377,7218,7086,6984,6897,6814,6740,6694,6661,6633,6625,6606,6597,6605,6600,6436,6135,5709,5108,21.8,22.1,22.7,1567553,0.7,12.2,11.9,5.0,471,-1.00,-1.00,57.6119,-18.878531,0.000528,,,,,190 +SATSLF0720,2024246,2.014450,4.13,0.0578,0.1057,0.0194,0.00,16075,650,1,695,711,704,707,706,717,708,723,715,735,728,739,775,892,1217,1948,3104,4497,5721,6634,7290,7753,8176,8617,9117,9741,10488,11341,12340,13461,14636,15794,16896,17842,18552,18994,19115,18932,18564,18045,17438,16873,16426,16060,15823,15750,15835,16075,16508,17081,17830,18728,19789,21012,22322,23762,25223,26711,28116,29360,30337,31081,31477,31483,31160,30507,29607,28557,27333,26154,24994,23924,22936,22080,21354,20748,20256,19876,19594,19437,19330,19355,19453,19652,19914,20260,20680,21211,21768,22391,23051,23699,24317,24881,25367,25729,26005,26048,25931,25662,25186,24530,23817,23045,22167,21291,20453,19689,18978,18330,17765,17309,16890,16572,16318,16156,16055,16017,16045,16132,16291,16497,16793,17154,17578,18091,18642,19239,19888,20565,21289,22025,22769,23478,24193,24826,25421,25994,26415,26729,26970,27075,27099,27002,26789,26464,26073,25585,25028,24413,23791,23149,22504,21828,21207,20584,19998,19451,18957,18481,18095,17712,17392,17100,16838,16605,16401,16194,16010,15805,15615,15447,15321,15201,15097,15033,14962,14919,14894,14903,14890,14935,14965,14985,15041,15056,15117,15172,15176,15202,15194,15211,15223,15251,15239,15244,15202,15137,15077,14997,14892,14811,14673,14535,14364,14163,13957,13747,13515,13233,12965,12693,12406,12112,11816,11543,11257,11010,10769,10537,10263,9969,9649,9351,9057,8825,8613,8437,8282,8154,8044,7981,7905,7848,7781,7685,7556,7373,7225,7089,6971,6901,6802,6750,6686,6645,6628,6604,6612,6598,6618,6594,6441,6137,5709,5104,21.9,22.1,22.7,1567554,0.3,12.3,11.9,5.0,471,-1.00,-1.00,57.8715,-18.986646,0.000600,,,,,124 +SATSDF0720,2024246,2.259138,0.00,0.0000,0.0000,0.0000,0.00,651,0,1,645,638,634,626,631,623,631,629,620,634,622,631,618,635,627,622,619,623,612,625,633,639,638,649,677,658,666,667,665,663,653,653,661,660,663,656,670,654,665,669,661,665,657,651,654,657,648,656,661,664,660,659,659,659,658,658,655,650,647,644,651,645,641,663,645,653,648,656,665,653,663,647,655,657,665,669,674,663,666,663,669,662,653,650,651,665,649,654,652,663,670,657,659,650,644,649,647,659,664,653,652,664,656,650,655,649,647,651,643,650,654,650,659,649,666,652,657,652,649,652,657,653,656,645,643,655,656,649,647,636,650,641,646,641,655,652,651,673,658,651,656,658,645,646,653,645,648,658,646,658,657,667,653,668,656,647,637,650,642,647,635,643,652,657,648,646,640,655,649,659,649,643,643,644,647,658,651,658,672,661,653,663,653,643,649,653,650,647,644,640,647,648,640,644,651,652,645,655,667,664,654,655,653,654,651,646,647,656,654,646,655,650,651,644,649,650,657,659,650,657,633,646,639,639,644,646,643,649,658,649,659,661,652,647,659,651,651,646,654,648,655,660,660,657,657,647,651,653,654,637,659,641,643,647,651,485,0.0,0.0,0.0,1567553,0.2,12.8,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,179 +SATSLF0720,2024246,2.259692,4.06,0.0569,0.1010,0.0168,0.00,16206,651,1,699,699,708,701,703,696,703,708,714,710,713,722,766,881,1200,1944,3118,4509,5771,6714,7352,7822,8247,8702,9225,9852,10605,11477,12477,13592,14786,15964,17074,18041,18760,19200,19329,19163,18773,18224,17638,17080,16608,16233,16006,15930,16008,16254,16673,17257,18001,18937,19992,21233,22542,24007,25489,26992,28412,29686,30662,31431,31825,31808,31491,30832,29916,28841,27609,26425,25258,24164,23173,22310,21560,20965,20477,20080,19796,19633,19534,19552,19632,19835,20097,20454,20873,21399,21961,22587,23272,23912,24530,25108,25586,25968,26213,26257,26147,25861,25377,24738,24016,23207,22340,21444,20603,19841,19118,18468,17914,17446,17034,16699,16441,16276,16179,16113,16147,16234,16390,16629,16918,17307,17730,18224,18788,19402,20028,20718,21462,22216,22953,23666,24377,25029,25632,26194,26623,26947,27205,27296,27321,27223,27011,26681,26285,25772,25219,24617,23976,23326,22668,21997,21374,20754,20170,19609,19101,18618,18215,17840,17498,17229,16953,16709,16504,16311,16116,15917,15735,15560,15421,15305,15218,15129,15047,15018,15001,15006,15005,15045,15058,15087,15140,15168,15212,15261,15259,15294,15290,15308,15318,15333,15345,15330,15288,15218,15166,15081,15005,14902,14772,14615,14426,14240,14037,13817,13587,13320,13051,12768,12463,12187,11886,11595,11328,11066,10829,10593,10330,10019,9693,9378,9089,8848,8635,8461,8322,8173,8068,7999,7924,7903,7821,7740,7596,7422,7253,7122,7015,6905,6844,6760,6706,6679,6661,6638,6635,6623,6640,6637,6477,6180,5746,5121,21.8,21.8,22.1,1567554,0.7,12.3,12.0,5.0,593,-1.00,-1.00,57.2057,-18.901279,0.000594,,,,,222 +SATSLF0720,2024246,2.259874,4.08,0.0571,0.1009,0.0165,0.00,16227,651,1,710,706,713,709,701,707,724,718,722,729,729,745,765,896,1221,1954,3146,4530,5785,6714,7373,7849,8264,8717,9236,9858,10622,11489,12478,13603,14792,15969,17083,18050,18786,19221,19352,19175,18784,18237,17641,17076,16620,16247,16025,15959,16037,16275,16696,17285,18029,18933,20009,21238,22564,24009,25505,26999,28445,29693,30693,31437,31848,31849,31517,30852,29925,28865,27632,26473,25277,24216,23202,22338,21608,20973,20471,20084,19802,19646,19539,19553,19659,19854,20130,20474,20925,21437,22002,22631,23287,23934,24550,25128,25618,25973,26232,26295,26169,25890,25405,24759,24048,23244,22358,21477,20643,19850,19152,18474,17910,17446,17028,16702,16456,16283,16198,16155,16168,16249,16433,16641,16953,17315,17735,18235,18812,19417,20055,20747,21491,22216,22972,23700,24395,25065,25652,26226,26658,26980,27219,27325,27333,27253,27044,26696,26302,25811,25245,24658,24017,23357,22697,22033,21382,20776,20173,19617,19115,18650,18250,17875,17546,17249,16984,16738,16534,16325,16137,15943,15765,15585,15457,15340,15253,15176,15098,15065,15029,15031,15029,15058,15077,15111,15168,15188,15248,15298,15309,15316,15330,15333,15345,15360,15361,15356,15306,15249,15176,15123,15030,14928,14787,14639,14468,14282,14070,13849,13610,13344,13063,12791,12492,12195,11899,11618,11346,11097,10856,10615,10336,10043,9719,9412,9116,8869,8654,8495,8340,8198,8114,8041,7973,7908,7827,7751,7596,7425,7274,7145,7025,6925,6855,6786,6733,6699,6673,6667,6657,6651,6669,6653,6494,6171,5763,5137,21.8,21.8,22.2,1567555,0.7,12.2,12.0,5.0,493,-1.00,-1.00,57.0842,-18.865579,0.000499,,,,,11 +SATSLF0720,2024246,2.260129,4.15,0.0581,0.1042,0.0194,0.00,16099,651,1,703,696,695,705,699,715,725,709,711,714,730,729,776,881,1201,1929,3104,4489,5721,6659,7307,7770,8196,8641,9165,9778,10523,11389,12387,13496,14677,15841,16941,17913,18633,19077,19189,18999,18622,18091,17486,16923,16457,16113,15897,15829,15912,16151,16561,17133,17884,18789,19858,21079,22373,23812,25280,26759,28171,29415,30419,31188,31584,31575,31244,30598,29685,28628,27405,26217,25053,23985,22977,22119,21394,20793,20314,19937,19648,19502,19394,19416,19509,19704,19962,20293,20729,21248,21794,22423,23101,23732,24345,24929,25414,25765,26036,26090,25968,25685,25201,24561,23842,23045,22186,21314,20462,19707,19005,18346,17781,17310,16894,16573,16332,16154,16067,16019,16034,16130,16285,16523,16791,17181,17607,18091,18665,19281,19908,20599,21309,22056,22793,23510,24215,24870,25476,26038,26449,26768,26999,27128,27142,27044,26813,26508,26118,25621,25050,24463,23824,23178,22525,21849,21211,20616,20026,19471,18982,18515,18105,17736,17406,17124,16861,16615,16407,16214,16023,15817,15643,15479,15336,15223,15133,15050,14981,14937,14909,14907,14909,14929,14957,15004,15045,15082,15131,15181,15185,15202,15207,15209,15254,15258,15262,15241,15189,15118,15078,15009,14910,14801,14672,14521,14357,14170,13961,13749,13505,13255,12985,12707,12401,12125,11826,11528,11258,11005,10778,10536,10271,9966,9644,9329,9042,8803,8603,8436,8270,8148,8046,7969,7886,7841,7768,7683,7538,7371,7223,7097,6973,6887,6800,6733,6688,6651,6640,6630,6602,6601,6604,6608,6456,6145,5714,5111,21.8,21.8,22.3,1567556,1.0,12.3,11.9,5.0,477,-1.00,-1.00,57.1648,-18.740574,0.000521,,,,,151 +SATSLF0720,2024246,2.260382,3.95,0.0553,0.1024,0.0176,0.00,16164,651,1,697,694,694,691,703,709,713,718,725,723,742,737,763,863,1199,1948,3111,4490,5755,6673,7319,7795,8221,8678,9193,9814,10566,11442,12438,13568,14741,15910,17026,17984,18697,19131,19272,19080,18697,18159,17572,17001,16535,16163,15945,15882,15946,16205,16621,17202,17939,18860,19917,21141,22462,23929,25386,26867,28314,29558,30593,31328,31723,31724,31413,30744,29825,28756,27521,26350,25189,24101,23099,22231,21503,20884,20406,20011,19728,19557,19474,19485,19581,19792,20054,20397,20832,21354,21905,22527,23205,23856,24458,25048,25514,25879,26124,26189,26061,25800,25325,24669,23947,23149,22270,21395,20551,19777,19059,18410,17849,17381,16976,16641,16398,16233,16144,16090,16106,16185,16345,16579,16870,17257,17673,18167,18745,19346,19996,20688,21408,22146,22891,23601,24311,24974,25573,26133,26566,26882,27125,27237,27250,27161,26941,26601,26199,25717,25137,24549,23925,23257,22609,21952,21313,20709,20109,19547,19045,18582,18176,17807,17472,17178,16923,16682,16482,16272,16091,15896,15715,15541,15397,15269,15161,15099,15024,14982,14967,14973,14981,15005,15034,15064,15092,15143,15184,15236,15257,15261,15261,15272,15284,15308,15301,15303,15256,15201,15139,15052,14963,14866,14729,14593,14402,14235,14012,13796,13559,13303,13036,12754,12448,12166,11852,11575,11297,11045,10807,10565,10306,10007,9675,9376,9085,8835,8620,8456,8299,8167,8097,8001,7915,7864,7799,7710,7560,7399,7246,7122,7005,6918,6829,6767,6711,6670,6646,6639,6620,6617,6633,6627,6477,6158,5733,5107,21.8,21.8,22.3,1567557,0.0,12.3,12.0,5.0,477,-1.00,-1.00,58.2062,-19.259487,0.000582,,,,,52 +SATSLF0720,2024246,2.260633,4.13,0.0578,0.1018,0.0176,0.00,16178,651,1,701,711,710,711,709,721,714,744,737,728,733,749,776,885,1221,1939,3127,4501,5754,6682,7346,7812,8231,8695,9221,9840,10573,11456,12450,13565,14752,15936,17045,18004,18729,19149,19274,19089,18717,18172,17589,17018,16568,16200,15977,15901,15975,16235,16633,17217,17957,18863,19936,21169,22485,23948,25418,26905,28341,29593,30590,31360,31748,31752,31421,30757,29837,28769,27540,26368,25197,24107,23097,22256,21502,20891,20420,20012,19739,19589,19500,19508,19613,19800,20067,20398,20839,21364,21922,22539,23223,23866,24486,25074,25545,25914,26170,26214,26086,25802,25327,24697,23954,23154,22283,21413,20578,19794,19090,18439,17870,17407,16997,16666,16418,16234,16130,16101,16123,16203,16371,16599,16896,17271,17688,18177,18745,19353,19986,20682,21424,22160,22913,23628,24346,24985,25589,26156,26598,26909,27147,27236,27265,27176,26946,26613,26231,25748,25173,24586,23947,23293,22635,21970,21333,20712,20107,19549,19069,18594,18189,17824,17481,17203,16929,16685,16481,16277,16082,15889,15708,15537,15411,15283,15192,15120,15048,15003,14988,14978,15003,15025,15040,15074,15125,15138,15189,15237,15261,15267,15281,15292,15312,15321,15315,15312,15261,15201,15139,15079,14983,14878,14752,14597,14420,14228,14025,13811,13569,13305,13052,12760,12459,12180,11869,11595,11317,11062,10832,10591,10321,10017,9684,9383,9104,8853,8645,8465,8304,8177,8069,7989,7937,7869,7808,7725,7581,7405,7246,7114,7009,6916,6845,6781,6715,6678,6662,6638,6626,6604,6629,6614,6481,6163,5739,5117,21.8,21.8,22.3,1567558,0.8,12.2,11.9,5.0,477,-1.00,-1.00,57.2459,-18.872553,0.000525,,,,,33 +SATSLF0720,2024246,2.260890,4.09,0.0573,0.1032,0.0180,0.00,16144,651,1,706,707,717,708,715,702,723,723,730,727,733,737,783,900,1208,1947,3124,4505,5737,6664,7310,7780,8209,8664,9185,9802,10543,11417,12419,13518,14685,15839,16964,17930,18645,19091,19222,19042,18674,18133,17545,16980,16522,16142,15932,15855,15931,16168,16587,17162,17915,18834,19898,21113,22429,23875,25355,26846,28262,29523,30506,31264,31661,31666,31348,30685,29765,28709,27469,26291,25121,24035,23053,22186,21463,20845,20374,19973,19691,19539,19440,19450,19552,19745,20008,20356,20789,21318,21883,22499,23172,23798,24423,24996,25469,25832,26115,26162,26034,25781,25264,24625,23907,23111,22238,21370,20521,19747,19047,18396,17835,17367,16960,16640,16378,16207,16113,16053,16074,16195,16346,16570,16861,17239,17672,18152,18717,19334,19970,20640,21377,22119,22865,23584,24282,24932,25527,26086,26509,26856,27097,27202,27210,27129,26906,26562,26179,25687,25113,24539,23897,23253,22581,21907,21294,20680,20098,19518,19047,18569,18161,17789,17459,17171,16899,16661,16452,16247,16065,15873,15684,15520,15380,15260,15160,15091,15024,14961,14963,14961,14961,14992,15013,15057,15085,15124,15168,15232,15225,15242,15244,15251,15258,15307,15314,15301,15254,15195,15125,15061,14974,14868,14718,14577,14394,14214,14010,13797,13557,13287,13029,12737,12448,12165,11862,11546,11279,11043,10811,10566,10298,9998,9675,9373,9098,8841,8621,8467,8305,8171,8075,7997,7913,7870,7823,7723,7589,7413,7246,7117,7012,6905,6823,6773,6706,6673,6640,6637,6615,6614,6626,6613,6465,6179,5749,5117,21.8,21.8,22.4,1567559,0.5,12.3,11.9,5.0,475,-1.00,-1.00,57.6041,-18.974449,0.000555,,,,,103 +SATSLF0720,2024246,2.261143,4.14,0.0580,0.1028,0.0183,0.00,16150,651,1,710,698,703,706,717,718,714,736,732,731,739,745,777,893,1224,1949,3118,4491,5747,6663,7319,7781,8200,8649,9163,9801,10545,11408,12406,13529,14693,15851,16964,17927,18643,19088,19204,19037,18663,18129,17533,16953,16495,16129,15907,15835,15925,16170,16578,17166,17910,18829,19905,21137,22446,23883,25348,26842,28249,29500,30497,31270,31658,31662,31338,30686,29761,28709,27465,26295,25106,24049,23043,22187,21456,20853,20366,19978,19700,19552,19457,19459,19574,19748,19995,20356,20790,21325,21878,22505,23173,23831,24437,25013,25492,25842,26102,26141,26029,25762,25284,24637,23929,23132,22253,21380,20525,19764,19055,18406,17849,17370,16952,16636,16384,16214,16125,16085,16113,16192,16357,16579,16881,17241,17669,18168,18746,19353,19989,20669,21400,22151,22890,23605,24293,24952,25545,26103,26535,26869,27098,27202,27214,27133,26918,26589,26220,25716,25129,24558,23893,23259,22602,21932,21289,20689,20093,19545,19057,18577,18179,17794,17475,17196,16914,16685,16469,16265,16066,15897,15697,15528,15392,15282,15180,15106,15028,14988,14976,14961,14967,15004,15020,15058,15100,15115,15177,15226,15250,15253,15266,15261,15287,15309,15309,15301,15257,15197,15117,15050,14962,14885,14737,14586,14428,14222,14009,13781,13556,13292,13026,12755,12468,12165,11870,11584,11304,11059,10815,10579,10304,10010,9703,9381,9090,8844,8632,8452,8308,8182,8072,8009,7933,7873,7802,7702,7577,7389,7247,7113,7018,6917,6843,6773,6721,6673,6659,6654,6637,6622,6643,6629,6493,6166,5739,5125,21.8,21.8,22.4,1567560,0.4,12.2,11.9,5.0,465,-1.00,-1.00,57.7646,-19.040809,0.000618,,,,,17 +SATSLF0720,2024246,2.261402,4.08,0.0572,0.1029,0.0182,0.00,16146,651,1,696,696,704,696,716,714,713,727,721,721,727,729,764,885,1209,1954,3130,4501,5749,6689,7314,7799,8209,8660,9169,9806,10535,11427,12398,13531,14704,15865,16976,17930,18649,19082,19221,19050,18666,18135,17552,16987,16513,16151,15913,15839,15922,16162,16589,17157,17921,18832,19892,21113,22425,23875,25353,26841,28268,29506,30509,31261,31657,31654,31329,30669,29767,28692,27472,26282,25129,24051,23057,22193,21467,20848,20367,19980,19689,19541,19453,19464,19565,19750,20027,20364,20803,21309,21873,22493,23149,23798,24409,25002,25480,25863,26121,26153,26035,25761,25280,24642,23928,23118,22270,21381,20544,19749,19060,18397,17829,17353,16936,16635,16382,16227,16122,16074,16086,16179,16343,16567,16864,17223,17675,18153,18731,19342,19985,20657,21376,22127,22858,23589,24293,24939,25543,26100,26529,26854,27086,27181,27213,27136,26904,26577,26170,25670,25111,24534,23885,23239,22581,21917,21291,20688,20085,19543,19049,18568,18167,17798,17461,17181,16894,16668,16459,16263,16077,15890,15702,15531,15377,15271,15168,15093,15027,14978,14962,14954,14980,14993,15031,15066,15101,15128,15171,15223,15251,15254,15256,15261,15285,15306,15290,15293,15240,15185,15118,15042,14976,14869,14737,14576,14404,14215,14008,13801,13568,13289,13025,12748,12442,12164,11867,11575,11295,11036,10802,10569,10292,10001,9674,9367,9098,8845,8640,8464,8316,8168,8070,7991,7921,7870,7822,7723,7594,7405,7256,7113,7006,6905,6821,6752,6693,6654,6647,6622,6609,6614,6623,6619,6483,6173,5746,5127,21.8,21.8,22.4,1567561,0.0,12.2,11.9,5.0,472,-1.00,-1.00,57.5878,-18.963492,0.000587,,,,,28 +SATSLF0720,2024246,2.261656,3.88,0.0543,0.1041,0.0191,0.00,16115,651,1,706,706,701,699,709,705,704,704,732,722,718,730,760,874,1196,1928,3106,4483,5743,6666,7301,7791,8212,8649,9168,9793,10524,11397,12390,13498,14661,15850,16941,17909,18624,19060,19197,19019,18641,18104,17514,16945,16475,16099,15879,15799,15881,16138,16550,17138,17882,18796,19854,21067,22377,23832,25307,26794,28197,29453,30449,31197,31593,31597,31275,30634,29710,28659,27438,26245,25080,24019,22994,22152,21401,20807,20304,19913,19642,19489,19397,19408,19516,19691,19971,20316,20745,21270,21822,22434,23104,23776,24381,24962,25417,25798,26060,26107,25997,25710,25232,24595,23877,23061,22188,21312,20477,19718,19012,18378,17813,17329,16923,16610,16356,16181,16081,16036,16069,16158,16321,16548,16839,17210,17635,18126,18697,19301,19933,20609,21322,22088,22805,23550,24241,24902,25490,26057,26486,26817,27045,27145,27165,27069,26850,26535,26144,25653,25070,24486,23856,23208,22541,21873,21252,20640,20055,19497,19015,18546,18138,17768,17425,17155,16878,16644,16429,16234,16045,15847,15669,15502,15345,15241,15130,15073,14978,14957,14935,14926,14935,14965,14983,15021,15062,15099,15142,15190,15217,15218,15244,15248,15257,15282,15271,15267,15220,15153,15089,15018,14931,14847,14705,14554,14389,14184,13972,13770,13530,13269,13008,12706,12429,12130,11837,11543,11283,11018,10781,10560,10288,9974,9655,9358,9064,8823,8608,8438,8293,8151,8059,7994,7913,7867,7797,7715,7569,7390,7233,7095,6989,6898,6814,6734,6691,6661,6629,6625,6611,6599,6631,6621,6469,6161,5730,5126,21.8,21.9,22.4,1567562,0.2,12.2,11.9,5.0,474,-1.00,-1.00,58.6002,-19.353484,0.000601,,,,,91 +SATSLF0720,2024246,2.261908,4.14,0.0580,0.1039,0.0185,0.00,16125,651,1,702,710,701,715,727,711,712,727,721,727,716,723,767,864,1195,1917,3099,4474,5721,6651,7309,7783,8208,8648,9167,9773,10518,11386,12388,13481,14666,15824,16930,17876,18604,19040,19192,19001,18624,18095,17494,16932,16470,16117,15882,15816,15887,16139,16555,17136,17882,18788,19863,21073,22391,23842,25313,26802,28206,29461,30457,31214,31609,31613,31285,30638,29709,28650,27427,26224,25072,23997,23011,22154,21422,20821,20338,19945,19673,19501,19408,19419,19529,19705,19966,20315,20756,21286,21861,22481,23125,23783,24397,24954,25435,25792,26075,26119,25989,25736,25237,24615,23885,23095,22232,21348,20496,19728,19026,18357,17822,17337,16936,16616,16364,16190,16090,16045,16075,16166,16331,16553,16862,17221,17662,18132,18698,19317,19953,20634,21346,22098,22853,23553,24272,24936,25521,26078,26502,26836,27063,27173,27197,27095,26873,26555,26165,25673,25098,24502,23856,23222,22555,21895,21268,20653,20061,19515,19027,18545,18145,17761,17438,17149,16894,16641,16437,16247,16045,15859,15678,15504,15359,15255,15152,15082,15012,14973,14956,14952,14965,14986,15005,15038,15069,15117,15138,15207,15228,15242,15256,15267,15280,15317,15297,15298,15226,15170,15109,15026,14944,14857,14728,14569,14404,14217,13996,13787,13540,13275,13000,12729,12414,12131,11837,11563,11297,11050,10813,10572,10304,9992,9669,9351,9099,8842,8636,8463,8319,8173,8079,7994,7921,7863,7805,7717,7588,7397,7239,7119,7003,6907,6834,6761,6704,6666,6664,6638,6620,6597,6621,6605,6455,6162,5732,5113,21.8,21.9,22.4,1567563,0.4,12.3,12.0,5.0,468,-1.00,-1.00,57.8123,-19.027751,0.000630,,,,,109 +SATSLF0720,2024246,2.262164,4.20,0.0589,0.1036,0.0183,0.00,16137,651,1,708,711,723,714,719,723,726,729,739,728,739,741,779,884,1222,1933,3103,4483,5747,6685,7328,7801,8233,8680,9189,9802,10557,11408,12406,13520,14685,15868,16960,17906,18638,19077,19204,19023,18643,18114,17520,16958,16506,16138,15905,15835,15921,16173,16574,17171,17904,18813,19869,21104,22417,23862,25339,26810,28249,29488,30503,31254,31645,31641,31314,30654,29728,28681,27445,26267,25102,24030,23034,22170,21435,20832,20353,19965,19676,19514,19422,19445,19542,19729,19990,20340,20760,21289,21857,22481,23132,23781,24398,24981,25449,25836,26098,26152,26025,25746,25243,24631,23909,23112,22243,21359,20517,19745,19037,18386,17847,17367,16955,16621,16379,16201,16100,16050,16088,16181,16347,16578,16873,17236,17648,18133,18715,19304,19956,20634,21371,22110,22843,23565,24277,24936,25528,26090,26512,26834,27064,27165,27185,27080,26877,26561,26163,25659,25105,24523,23875,23235,22565,21905,21268,20661,20073,19521,19037,18553,18164,17784,17459,17166,16890,16662,16445,16260,16064,15858,15678,15501,15376,15258,15154,15094,15014,14976,14964,14956,14975,15001,15013,15052,15077,15115,15164,15211,15234,15245,15246,15259,15276,15301,15295,15277,15239,15165,15115,15048,14954,14863,14723,14571,14393,14211,13997,13786,13545,13282,13031,12742,12439,12146,11848,11572,11284,11047,10795,10581,10298,10000,9671,9367,9069,8823,8627,8455,8300,8170,8073,7985,7921,7869,7808,7721,7578,7404,7249,7124,7008,6891,6827,6766,6700,6684,6656,6655,6628,6605,6643,6634,6486,6176,5754,5125,21.8,21.9,22.5,1567564,0.4,12.3,12.0,5.0,474,-1.00,-1.00,57.2927,-18.830067,0.000564,,,,,131 +SATSLF0720,2024246,2.262418,4.10,0.0574,0.1044,0.0181,0.00,16112,651,1,705,713,721,702,723,722,726,727,750,746,745,744,779,897,1221,1949,3121,4489,5732,6655,7301,7787,8213,8661,9161,9788,10517,11395,12383,13503,14661,15829,16935,17891,18593,19046,19162,18987,18614,18074,17495,16938,16480,16118,15888,15815,15886,16125,16541,17118,17859,18763,19841,21044,22372,23813,25290,26764,28180,29421,30414,31171,31569,31564,31242,30602,29677,28622,27393,26217,25057,23968,22984,22139,21404,20794,20304,19926,19637,19470,19385,19388,19495,19681,19957,20294,20734,21251,21829,22445,23106,23747,24368,24953,25414,25783,26033,26078,25962,25688,25209,24586,23853,23057,22189,21335,20480,19709,19006,18362,17813,17336,16923,16608,16350,16184,16086,16045,16073,16162,16326,16538,16838,17193,17633,18105,18683,19290,19928,20608,21332,22077,22827,23537,24235,24891,25485,26053,26471,26796,27042,27145,27149,27062,26845,26519,26140,25644,25069,24474,23860,23209,22552,21879,21247,20634,20033,19491,19012,18530,18126,17769,17428,17138,16871,16644,16436,16230,16043,15849,15667,15493,15341,15245,15140,15061,14987,14967,14930,14951,14941,14969,14976,15025,15051,15089,15152,15198,15213,15221,15233,15237,15245,15283,15293,15285,15228,15168,15121,15037,14937,14841,14698,14563,14386,14217,13990,13794,13550,13290,13014,12722,12437,12136,11836,11559,11287,11044,10810,10573,10305,9997,9681,9350,9083,8836,8616,8438,8288,8148,8058,7981,7912,7865,7810,7712,7572,7389,7235,7102,6979,6903,6825,6745,6690,6660,6655,6642,6610,6619,6628,6618,6461,6161,5739,5119,21.8,21.9,22.5,1567565,0.6,12.3,11.9,5.0,475,-1.00,-1.00,57.6032,-18.918958,0.000524,,,,,91 +SATSLF0720,2024246,2.262669,4.16,0.0583,0.1043,0.0187,0.00,16109,651,1,704,703,721,721,718,727,728,723,723,736,738,745,777,891,1222,1937,3105,4485,5721,6642,7303,7766,8186,8637,9160,9790,10521,11367,12383,13479,14661,15812,16935,17895,18601,19031,19175,18983,18603,18080,17481,16935,16466,16114,15888,15817,15892,16131,16547,17112,17859,18761,19836,21044,22374,23809,25282,26762,28196,29436,30424,31181,31566,31578,31249,30598,29666,28608,27395,26212,25052,24000,22986,22138,21390,20793,20308,19914,19637,19478,19389,19401,19500,19686,19959,20304,20747,21269,21829,22449,23120,23762,24363,24924,25405,25761,26039,26088,25973,25702,25213,24578,23861,23065,22196,21318,20477,19704,19004,18354,17798,17323,16913,16610,16363,16189,16081,16033,16061,16142,16309,16544,16838,17213,17637,18123,18694,19305,19934,20615,21328,22072,22818,23534,24233,24884,25468,26033,26453,26781,27040,27137,27153,27076,26862,26514,26129,25637,25056,24467,23836,23189,22536,21865,21245,20625,20035,19466,18999,18520,18124,17771,17429,17149,16882,16644,16424,16226,16025,15834,15658,15482,15334,15232,15146,15056,14990,14957,14947,14941,14937,14971,14986,15025,15053,15099,15136,15212,15210,15227,15233,15241,15253,15275,15276,15277,15229,15156,15103,15030,14934,14834,14697,14561,14389,14205,13990,13781,13525,13265,12995,12720,12422,12144,11844,11542,11284,11029,10797,10562,10301,9990,9666,9347,9083,8838,8613,8445,8306,8161,8065,7991,7924,7863,7796,7695,7553,7382,7236,7101,7009,6906,6840,6765,6707,6663,6635,6622,6603,6605,6620,6617,6471,6166,5729,5110,21.8,21.9,22.6,1567565,0.3,12.2,11.9,5.0,472,-1.00,-1.00,57.4506,-18.855852,0.000558,,,,,153 +SATSLF0720,2024246,2.262925,3.97,0.0556,0.1047,0.0192,0.00,16101,651,1,707,713,713,710,713,721,725,714,727,731,728,723,765,875,1207,1937,3101,4494,5745,6660,7304,7775,8199,8620,9151,9771,10508,11387,12376,13482,14663,15831,16936,17901,18601,19047,19178,18993,18621,18076,17499,16938,16472,16102,15871,15803,15883,16120,16541,17122,17855,18779,19835,21047,22369,23821,25289,26754,28175,29425,30425,31165,31562,31562,31241,30582,29689,28626,27415,26226,25063,23988,22992,22120,21377,20761,20285,19894,19617,19451,19374,19397,19485,19684,19948,20295,20729,21239,21816,22429,23102,23749,24352,24938,25414,25779,26048,26081,25963,25687,25205,24562,23846,23035,22177,21324,20467,19692,18992,18338,17790,17321,16914,16596,16343,16183,16076,16023,16047,16146,16308,16539,16823,17181,17619,18098,18666,19285,19894,20599,21320,22063,22793,23504,24215,24858,25457,26034,26449,26766,27017,27118,27142,27034,26825,26491,26109,25621,25053,24466,23833,23186,22514,21865,21233,20614,20035,19473,18984,18505,18108,17730,17408,17119,16853,16617,16412,16218,16022,15824,15645,15466,15345,15234,15130,15059,14983,14939,14943,14913,14924,14952,14973,15005,15051,15091,15141,15181,15192,15207,15213,15218,15237,15262,15264,15251,15204,15153,15087,15008,14930,14837,14697,14549,14368,14195,13980,13744,13515,13250,12992,12714,12424,12117,11832,11533,11258,11019,10789,10548,10288,9979,9650,9346,9073,8813,8602,8439,8278,8144,8044,7965,7915,7856,7798,7696,7571,7377,7235,7120,6992,6895,6817,6748,6693,6655,6629,6621,6604,6589,6622,6621,6465,6149,5729,5100,21.8,21.9,22.6,1567566,0.0,12.2,11.9,5.0,470,-1.00,-1.00,58.1638,-19.153840,0.000534,,,,,111 +SATSLF0720,2024246,2.263180,4.13,0.0578,0.1058,0.0200,0.00,16064,651,1,715,722,713,725,710,713,713,717,725,737,728,746,770,883,1205,1927,3101,4480,5717,6633,7283,7727,8155,8604,9118,9725,10472,11337,12316,13425,14602,15757,16867,17822,18542,18960,19108,18920,18547,18003,17433,16858,16414,16053,15826,15765,15846,16089,16498,17058,17793,18701,19755,20967,22290,23745,25204,26693,28105,29350,30352,31090,31473,31465,31137,30509,29591,28536,27313,26150,24982,23909,22914,22067,21333,20726,20247,19861,19568,19424,19326,19342,19447,19636,19893,20228,20681,21191,21760,22369,23037,23688,24290,24874,25355,25711,25957,26018,25893,25613,25142,24517,23795,23003,22130,21271,20424,19653,18953,18315,17751,17295,16881,16576,16328,16150,16039,15994,16009,16106,16258,16498,16789,17156,17587,18077,18632,19235,19891,20570,21293,22027,22760,23466,24170,24827,25405,25968,26407,26722,26948,27067,27094,26997,26790,26443,26055,25565,24989,24419,23782,23136,22477,21821,21186,20585,19992,19441,18939,18483,18065,17707,17385,17096,16823,16589,16385,16173,15988,15808,15622,15467,15321,15204,15106,15029,14947,14907,14899,14881,14896,14913,14939,14986,15047,15065,15117,15169,15179,15191,15197,15205,15237,15248,15235,15233,15181,15127,15058,14992,14905,14821,14681,14521,14345,14167,13957,13733,13497,13233,12969,12688,12395,12113,11797,11528,11253,10999,10768,10521,10247,9959,9629,9339,9046,8808,8583,8435,8269,8135,8047,7958,7893,7837,7765,7687,7541,7371,7217,7089,6977,6872,6797,6726,6689,6654,6625,6623,6607,6599,6609,6589,6455,6152,5729,5101,21.8,22.0,22.6,1567567,0.0,12.2,11.9,5.0,469,-1.00,-1.00,58.0895,-19.067869,0.000566,,,,,189 +SATSLF0720,2024246,2.263431,4.35,0.0609,0.1056,0.0191,0.00,16070,651,1,697,693,704,709,721,725,717,723,731,716,731,729,767,892,1213,1947,3104,4469,5703,6634,7276,7745,8181,8619,9136,9765,10497,11367,12348,13444,14618,15771,16859,17805,18541,18960,19099,18911,18546,18016,17421,16885,16424,16070,15833,15760,15843,16074,16495,17070,17798,18720,19785,21000,22324,23753,25213,26698,28105,29335,30327,31060,31469,31466,31141,30517,29589,28537,27308,26117,24982,23921,22901,22054,21331,20724,20235,19846,19573,19419,19335,19332,19432,19634,19886,20242,20683,21198,21783,22382,23053,23689,24309,24870,25346,25705,25966,26025,25908,25631,25149,24519,23805,23008,22139,21276,20429,19675,18957,18315,17757,17282,16883,16573,16320,16147,16048,16005,16018,16114,16269,16493,16791,17165,17589,18083,18650,19261,19890,20558,21277,22021,22765,23485,24181,24825,25425,25984,26418,26743,26981,27089,27085,27001,26790,26455,26057,25569,25004,24419,23781,23143,22489,21831,21206,20600,20008,19455,18957,18490,18093,17717,17394,17105,16837,16586,16403,16192,15991,15809,15621,15473,15321,15219,15106,15042,14964,14923,14904,14912,14910,14941,14973,15001,15041,15056,15115,15170,15184,15195,15194,15207,15213,15257,15245,15233,15188,15128,15090,15012,14918,14826,14676,14533,14357,14172,13950,13736,13509,13242,12979,12696,12396,12119,11820,11525,11254,11007,10764,10535,10275,9984,9650,9357,9056,8811,8595,8434,8266,8144,8055,7977,7909,7865,7790,7705,7559,7371,7223,7099,6971,6880,6804,6747,6703,6648,6629,6621,6602,6593,6603,6593,6456,6153,5723,5111,21.8,22.0,22.6,1567568,0.6,12.2,12.0,5.0,472,-1.00,-1.00,57.0503,-18.633577,0.000566,,,,,189 +SATSLF0720,2024246,2.263687,4.15,0.0581,0.1061,0.0202,0.00,16057,651,1,709,697,712,717,716,728,729,742,737,747,749,745,783,903,1217,1939,3107,4471,5721,6645,7277,7742,8181,8619,9140,9746,10489,11342,12317,13421,14600,15746,16863,17812,18529,18953,19085,18910,18545,18004,17413,16865,16402,16047,15827,15740,15831,16070,16459,17053,17792,18705,19764,20974,22273,23714,25179,26663,28077,29333,30306,31041,31430,31459,31116,30471,29566,28520,27278,26124,24973,23902,22893,22065,21325,20700,20239,19853,19570,19410,19311,19340,19433,19622,19867,20221,20654,21184,21747,22356,23034,23669,24281,24862,25333,25689,25957,26008,25872,25611,25145,24500,23792,22999,22134,21264,20425,19666,18968,18300,17754,17263,16861,16536,16291,16113,16023,15978,16023,16113,16261,16482,16774,17129,17561,18050,18617,19229,19859,20545,21278,21994,22743,23463,24169,24813,25394,25957,26371,26700,26928,27058,27065,26965,26757,26422,26025,25537,24976,24404,23768,23129,22472,21797,21154,20565,19986,19415,18931,18457,18075,17700,17371,17078,16814,16582,16384,16174,15988,15784,15618,15453,15318,15193,15102,15028,14952,14901,14909,14892,14901,14909,14949,14984,15019,15049,15088,15139,15156,15178,15185,15186,15217,15223,15235,15216,15172,15112,15054,14993,14898,14805,14678,14520,14358,14169,13954,13737,13513,13245,12979,12692,12399,12093,11779,11509,11254,11004,10760,10531,10274,9964,9648,9332,9047,8807,8593,8441,8272,8129,8039,7965,7903,7842,7793,7686,7551,7370,7221,7101,6969,6881,6792,6731,6684,6640,6629,6610,6599,6598,6606,6597,6451,6144,5723,5100,21.8,22.0,22.6,1567569,0.4,12.3,11.9,5.0,476,-1.00,-1.00,57.8263,-18.941071,0.000537,,,,,103 +SATSLF0720,2024246,2.263939,4.05,0.0567,0.1071,0.0205,0.00,16035,651,1,711,706,723,722,718,712,716,720,714,723,733,747,775,891,1206,1933,3098,4461,5681,6599,7259,7732,8152,8593,9098,9727,10443,11309,12289,13403,14552,15715,16817,17764,18487,18933,19065,18889,18505,17981,17394,16840,16381,16004,15782,15710,15781,16032,16436,17024,17762,18658,19722,20940,22247,23680,25154,26627,28032,29266,30266,31008,31384,31396,31069,30405,29490,28459,27237,26067,24909,23850,22856,22012,21289,20683,20206,19803,19514,19371,19272,19298,19397,19597,19846,20189,20631,21138,21708,22336,23002,23637,24236,24801,25291,25642,25915,25957,25841,25555,25099,24471,23746,22971,22093,21234,20397,19634,18921,18281,17717,17246,16829,16530,16274,16106,16013,15972,15986,16069,16238,16470,16769,17120,17546,18037,18601,19213,19837,20516,21245,21964,22727,23421,24128,24797,25378,25930,26362,26666,26917,27020,27027,26931,26721,26407,26010,25511,24958,24369,23739,23095,22445,21779,21163,20553,19969,19413,18924,18453,18041,17683,17365,17065,16786,16564,16372,16155,15974,15796,15595,15431,15303,15195,15112,15014,14947,14905,14873,14868,14883,14905,14908,14955,14985,15038,15077,15147,15148,15174,15196,15181,15201,15225,15229,15213,15159,15098,15044,14978,14885,14803,14657,14503,14321,14147,13934,13717,13486,13218,12967,12677,12381,12097,11805,11521,11252,10995,10752,10512,10250,9950,9634,9332,9045,8803,8604,8429,8273,8136,8041,7960,7893,7843,7781,7689,7552,7381,7211,7082,6987,6889,6805,6739,6679,6647,6627,6615,6585,6583,6586,6591,6443,6142,5716,5106,21.8,22.0,22.6,1567570,0.0,12.3,11.9,5.0,466,-1.00,-1.00,58.1884,-19.058286,0.000655,,,,,88 +SATSLF0720,2024246,2.264191,4.15,0.0582,0.1063,0.0204,0.00,16051,651,1,708,715,718,697,711,717,708,718,723,720,713,735,754,895,1226,1940,3109,4469,5711,6637,7277,7750,8165,8605,9127,9745,10471,11338,12321,13434,14606,15749,16855,17803,18502,18955,19080,18905,18532,18001,17408,16868,16393,16029,15817,15749,15820,16077,16465,17051,17783,18699,19750,20954,22283,23706,25185,26653,28064,29313,30304,31043,31447,31444,31114,30470,29548,28505,27289,26101,24952,23872,22880,22035,21307,20697,20213,19841,19569,19419,19304,19318,19420,19616,19877,20217,20647,21162,21724,22343,23008,23656,24274,24845,25339,25698,25939,26001,25864,25593,25113,24494,23781,22995,22132,21261,20413,19636,18939,18291,17717,17261,16835,16540,16301,16126,16025,15986,16012,16099,16249,16478,16779,17142,17571,18051,18625,19225,19861,20546,21261,22005,22742,23453,24146,24800,25382,25949,26372,26689,26937,27041,27062,26953,26747,26425,26041,25539,24982,24401,23749,23115,22464,21797,21185,20576,19982,19445,18941,18470,18065,17697,17370,17091,16823,16580,16373,16172,15979,15789,15605,15425,15285,15191,15092,15024,14942,14893,14900,14888,14892,14906,14935,14984,15021,15049,15098,15149,15163,15180,15184,15185,15205,15234,15218,15216,15172,15104,15047,14962,14884,14793,14661,14510,14349,14152,13944,13724,13477,13235,12965,12697,12392,12098,11800,11515,11256,10996,10760,10526,10252,9949,9625,9335,9038,8800,8594,8426,8273,8122,8039,7949,7883,7835,7779,7687,7545,7387,7230,7093,6989,6873,6800,6729,6672,6616,6611,6610,6595,6593,6601,6597,6445,6147,5717,5096,21.8,22.1,22.7,1567571,0.5,12.2,11.9,5.0,473,-1.00,-1.00,57.8292,-18.937942,0.000549,,,,,115 +SATSLF0720,2024246,2.264446,4.24,0.0594,0.1064,0.0208,0.00,16046,651,1,705,706,722,721,728,725,715,719,723,726,717,742,781,890,1209,1939,3101,4467,5698,6629,7272,7741,8160,8617,9115,9731,10465,11329,12315,13399,14587,15744,16851,17801,18518,18953,19074,18882,18505,17975,17402,16841,16390,16029,15801,15741,15813,16053,16467,17049,17789,18689,19746,20962,22263,23698,25166,26648,28034,29285,30276,31018,31415,31412,31087,30457,29530,28486,27264,26098,24925,23882,22889,22029,21305,20681,20219,19826,19543,19387,19302,19308,19409,19594,19858,20196,20634,21149,21735,22356,23019,23665,24276,24841,25293,25672,25945,25976,25869,25599,25133,24493,23781,22976,22101,21233,20384,19629,18934,18298,17737,17280,16862,16556,16314,16142,16033,15988,16009,16093,16259,16466,16771,17130,17553,18048,18611,19213,19840,20523,21251,22005,22741,23441,24149,24805,25388,25954,26375,26694,26936,27044,27056,26967,26754,26427,26025,25534,24973,24381,23740,23108,22443,21785,21160,20558,19974,19416,18930,18465,18037,17687,17364,17073,16798,16566,16370,16170,15981,15785,15614,15445,15313,15203,15093,15009,14937,14904,14883,14876,14896,14929,14938,14984,15013,15037,15091,15146,15159,15163,15192,15186,15212,15237,15221,15222,15166,15105,15034,14971,14885,14794,14660,14512,14355,14153,13947,13726,13496,13235,12973,12692,12393,12093,11789,11511,11232,11019,10766,10542,10257,9949,9626,9329,9046,8797,8576,8423,8273,8125,8045,7959,7879,7843,7778,7685,7537,7360,7197,7079,6960,6883,6800,6730,6669,6635,6617,6603,6597,6588,6605,6609,6452,6137,5703,5095,21.8,22.1,22.7,1567572,0.2,12.3,11.9,5.0,466,-1.00,-1.00,57.5380,-18.804820,0.000513,,,,,21 +SATSDF0720,2024246,2.509138,0.00,0.0000,0.0000,0.0000,0.00,650,0,1,647,631,617,615,614,616,621,625,626,626,625,627,623,624,640,628,631,633,637,633,637,631,640,651,663,653,659,650,667,663,663,658,648,652,653,651,659,649,651,660,657,663,652,649,654,649,663,670,654,660,667,653,648,661,667,669,652,655,658,666,666,649,667,644,637,642,647,654,654,665,662,663,647,655,657,649,654,656,653,663,658,656,642,659,652,647,644,651,657,647,663,663,647,643,643,637,647,641,662,665,665,661,661,648,650,653,645,657,649,671,665,659,662,661,650,637,655,662,661,653,663,652,665,653,655,647,647,651,644,649,647,647,654,653,648,659,661,656,654,655,644,641,654,641,646,641,659,661,654,666,653,658,645,644,647,643,647,647,644,651,640,653,663,653,652,648,653,648,644,648,630,647,649,642,653,663,663,661,664,665,658,646,647,634,642,649,653,630,643,644,648,630,631,640,645,648,640,659,665,656,655,651,641,648,640,645,643,643,647,652,656,650,661,661,653,653,638,649,653,649,641,649,649,645,646,637,635,637,635,640,647,644,660,660,649,643,646,654,649,657,648,649,656,656,663,650,663,657,653,645,642,637,650,658,662,491,0.0,0.0,0.0,1567571,0.2,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,15 +SATSLF0720,2024246,2.509692,3.97,0.0556,0.0997,0.0167,0.00,16238,650,1,691,702,685,707,709,712,712,730,726,725,713,733,765,889,1206,1945,3125,4520,5777,6710,7373,7858,8276,8733,9254,9879,10632,11497,12516,13625,14824,15993,17126,18093,18821,19265,19388,19209,18814,18270,17667,17112,16635,16266,16035,15972,16058,16306,16712,17316,18050,18970,20029,21269,22592,24044,25533,27040,28462,29728,30741,31506,31908,31908,31565,30896,29975,28919,27671,26482,25312,24229,23197,22342,21601,20993,20502,20121,19841,19675,19587,19584,19693,19879,20133,20491,20923,21440,22024,22637,23302,23976,24574,25171,25639,26004,26273,26306,26184,25894,25412,24779,24052,23240,22365,21479,20635,19863,19169,18505,17937,17474,17041,16717,16466,16301,16193,16151,16169,16267,16430,16663,16960,17341,17746,18262,18817,19435,20070,20757,21499,22257,22998,23732,24431,25099,25688,26253,26683,27012,27236,27335,27356,27252,27038,26716,26320,25829,25280,24670,24041,23394,22722,22056,21414,20800,20192,19639,19132,18649,18245,17883,17556,17254,16995,16763,16557,16327,16147,15953,15762,15589,15454,15323,15223,15157,15085,15069,15050,15051,15042,15065,15089,15117,15153,15175,15227,15290,15289,15306,15318,15323,15351,15373,15370,15359,15289,15235,15169,15088,15006,14914,14788,14630,14458,14265,14058,13840,13603,13326,13064,12792,12488,12203,11905,11626,11333,11095,10843,10601,10333,10027,9710,9387,9107,8861,8654,8482,8331,8201,8114,8024,7955,7909,7851,7754,7599,7427,7279,7143,7030,6926,6846,6770,6721,6681,6679,6660,6640,6634,6647,6649,6497,6189,5760,5149,21.7,21.7,22.1,1567572,0.6,12.3,12.0,5.0,593,-1.00,-1.00,57.3183,-18.989943,0.000565,,,,,106 +SATSLF0720,2024246,2.509873,3.99,0.0558,0.1003,0.0163,0.00,16229,650,1,706,714,701,720,708,709,702,716,726,736,737,747,785,894,1200,1952,3112,4513,5776,6696,7367,7833,8261,8710,9226,9857,10617,11493,12478,13620,14805,15965,17073,18045,18778,19212,19351,19161,18791,18245,17655,17079,16615,16256,16026,15954,16033,16273,16683,17272,18011,18930,19993,21237,22554,24010,25513,26998,28441,29686,30683,31451,31849,31844,31523,30864,29929,28876,27647,26453,25282,24196,23193,22320,21598,20983,20487,20100,19802,19674,19561,19581,19666,19861,20124,20482,20901,21440,22000,22605,23287,23950,24568,25142,25617,25994,26256,26304,26169,25884,25399,24765,24033,23223,22349,21490,20640,19861,19155,18503,17931,17453,17041,16720,16468,16293,16185,16151,16146,16275,16437,16664,16954,17332,17741,18247,18817,19427,20065,20760,21484,22243,22986,23709,24410,25082,25667,26235,26667,26986,27232,27345,27365,27270,27051,26726,26322,25835,25240,24641,24000,23351,22689,22032,21395,20789,20193,19639,19157,18669,18254,17886,17536,17259,16982,16745,16534,16329,16146,15955,15774,15602,15455,15326,15235,15162,15085,15037,15017,15024,15037,15051,15088,15117,15163,15189,15244,15290,15301,15293,15312,15312,15337,15367,15360,15360,15313,15238,15182,15118,15030,14923,14807,14640,14471,14278,14064,13837,13623,13354,13077,12807,12510,12202,11905,11633,11352,11097,10850,10613,10344,10041,9710,9395,9100,8861,8651,8481,8327,8203,8111,8031,7959,7893,7838,7751,7604,7424,7271,7145,7022,6926,6849,6789,6722,6687,6669,6653,6649,6644,6661,6655,6507,6184,5750,5121,21.7,21.8,22.2,1567573,0.0,12.3,11.9,5.0,496,-1.00,-1.00,57.4797,-19.030834,0.000512,,,,,219 +SATSLF0720,2024246,2.510129,4.12,0.0577,0.1015,0.0169,0.00,16192,650,1,709,702,698,705,706,697,702,701,718,720,717,733,766,884,1207,1946,3114,4495,5771,6697,7351,7831,8257,8702,9230,9861,10602,11472,12467,13584,14769,15945,17062,18010,18741,19182,19297,19114,18756,18202,17613,17049,16595,16221,15990,15929,15997,16247,16647,17234,17984,18896,19971,21193,22515,23982,25468,26956,28366,29621,30631,31381,31778,31777,31458,30801,29870,28821,27563,26395,25232,24151,23166,22298,21538,20934,20437,20044,19769,19606,19509,19529,19626,19822,20074,20427,20855,21387,21972,22574,23245,23899,24516,25083,25561,25923,26185,26226,26113,25834,25348,24731,23989,23194,22315,21424,20567,19815,19093,18441,17877,17402,17005,16680,16420,16281,16155,16119,16141,16238,16389,16617,16898,17275,17707,18186,18766,19373,20029,20709,21442,22187,22934,23656,24341,25011,25617,26166,26598,26920,27171,27277,27282,27204,26977,26634,26261,25773,25189,24612,23970,23301,22651,21976,21334,20733,20135,19587,19091,18608,18215,17841,17486,17207,16937,16695,16490,16295,16093,15919,15713,15545,15414,15308,15201,15143,15065,15018,15003,14993,14987,15027,15037,15063,15120,15144,15190,15259,15268,15277,15273,15287,15321,15336,15325,15335,15270,15205,15161,15085,14990,14898,14757,14606,14435,14251,14039,13813,13568,13322,13041,12758,12459,12145,11876,11592,11321,11073,10818,10581,10306,10019,9698,9398,9096,8855,8651,8468,8299,8177,8080,7993,7923,7875,7810,7727,7605,7417,7255,7136,7005,6915,6821,6751,6696,6666,6645,6638,6629,6622,6638,6632,6485,6169,5738,5127,21.8,21.8,22.3,1567574,0.0,12.3,11.9,5.0,480,-1.00,-1.00,57.0267,-18.803775,0.000535,,,,,47 +SATSLF0720,2024246,2.510381,4.02,0.0563,0.1028,0.0180,0.00,16146,650,1,695,709,689,707,704,701,713,706,711,716,717,735,764,887,1223,1959,3137,4515,5763,6690,7334,7805,8228,8666,9187,9814,10560,11426,12416,13533,14726,15893,17016,17960,18692,19117,19253,19068,18693,18165,17549,16988,16525,16172,15957,15866,15947,16199,16605,17181,17930,18837,19918,21130,22445,23888,25372,26858,28277,29531,30538,31268,31685,31680,31364,30710,29789,28741,27502,26308,25152,24065,23059,22214,21467,20859,20384,20001,19714,19538,19454,19461,19558,19763,20019,20384,20797,21321,21893,22500,23175,23834,24414,24997,25474,25847,26113,26154,26037,25772,25277,24643,23926,23125,22240,21368,20516,19739,19031,18378,17831,17354,16941,16627,16381,16205,16115,16061,16090,16192,16333,16553,16873,17232,17659,18147,18707,19317,19961,20650,21388,22122,22866,23589,24281,24941,25529,26093,26539,26845,27089,27194,27205,27115,26888,26569,26165,25676,25120,24528,23893,23234,22585,21914,21292,20683,20077,19523,19032,18552,18145,17779,17438,17152,16893,16646,16448,16247,16055,15863,15682,15526,15380,15267,15164,15091,14996,14977,14941,14947,14963,14980,15005,15054,15093,15113,15165,15222,15225,15220,15243,15251,15269,15296,15290,15299,15249,15186,15125,15037,14935,14854,14720,14572,14405,14209,13996,13785,13557,13281,13008,12720,12423,12137,11853,11560,11296,11036,10809,10567,10279,9987,9669,9360,9061,8827,8612,8448,8281,8165,8061,7991,7931,7865,7815,7726,7576,7400,7244,7125,6991,6906,6816,6753,6693,6643,6655,6642,6619,6618,6624,6621,6461,6166,5732,5110,21.8,21.8,22.3,1567575,0.0,12.3,11.9,5.0,476,-1.00,-1.00,57.5893,-18.981867,0.000501,,,,,76 +SATSLF0720,2024246,2.510632,4.07,0.0569,0.1023,0.0181,0.00,16168,650,1,704,712,714,705,707,717,725,725,737,738,729,745,772,888,1202,1933,3098,4488,5753,6692,7342,7810,8240,8683,9208,9829,10578,11430,12431,13540,14729,15883,17015,17973,18701,19131,19281,19093,18704,18184,17576,17003,16546,16163,15943,15870,15963,16221,16620,17221,17972,18872,19933,21152,22483,23914,25399,26876,28315,29565,30574,31322,31730,31724,31392,30748,29835,28752,27531,26334,25173,24093,23087,22235,21506,20890,20403,20023,19735,19575,19476,19478,19587,19783,20039,20378,20824,21333,21918,22541,23197,23828,24459,25036,25525,25882,26133,26199,26081,25797,25324,24664,23957,23165,22280,21416,20561,19788,19074,18426,17874,17398,16981,16663,16405,16224,16133,16086,16106,16190,16359,16592,16898,17261,17701,18186,18749,19355,19997,20680,21408,22148,22889,23605,24311,24977,25577,26141,26564,26875,27149,27240,27258,27161,26944,26624,26210,25719,25141,24555,23899,23255,22626,21943,21313,20711,20109,19560,19066,18581,18181,17820,17486,17193,16930,16672,16475,16277,16097,15888,15707,15529,15393,15286,15177,15111,15036,14999,14974,14983,14992,15009,15027,15054,15105,15131,15201,15241,15255,15275,15282,15269,15289,15319,15309,15293,15259,15189,15122,15059,14970,14879,14758,14591,14427,14226,14008,13794,13549,13294,13034,12746,12455,12155,11863,11573,11317,11057,10816,10579,10307,10014,9665,9375,9072,8851,8630,8459,8311,8178,8084,8011,7926,7891,7821,7721,7591,7422,7237,7113,6995,6899,6816,6763,6707,6681,6656,6637,6624,6622,6635,6629,6473,6157,5732,5113,21.8,21.8,22.4,1567576,0.3,12.3,11.9,5.0,479,-1.00,-1.00,57.4793,-18.958008,0.000577,,,,,18 +SATSLF0720,2024246,2.510887,4.18,0.0586,0.1024,0.0178,0.00,16156,650,1,706,701,706,712,721,729,726,725,723,713,728,743,767,903,1229,1947,3123,4513,5762,6676,7319,7802,8220,8673,9211,9813,10566,11451,12430,13558,14717,15896,17010,17968,18694,19125,19240,19061,18685,18152,17561,17004,16542,16184,15952,15888,15946,16207,16602,17194,17941,18850,19925,21141,22459,23911,25388,26870,28292,29545,30550,31298,31703,31691,31369,30714,29793,28740,27509,26323,25153,24080,23069,22221,21486,20861,20381,20005,19705,19547,19473,19476,19570,19767,20041,20377,20804,21321,21892,22507,23172,23810,24439,24997,25495,25858,26125,26167,26053,25765,25302,24646,23926,23128,22259,21394,20547,19765,19048,18405,17844,17366,16962,16635,16403,16216,16131,16077,16095,16190,16342,16573,16874,17246,17677,18181,18750,19353,19993,20655,21387,22117,22868,23569,24275,24944,25544,26105,26523,26851,27112,27217,27232,27137,26932,26586,26200,25698,25130,24550,23890,23253,22580,21921,21288,20682,20098,19538,19045,18568,18164,17789,17467,17165,16900,16660,16466,16265,16081,15883,15697,15531,15387,15275,15159,15085,15017,14981,14961,14956,14969,14996,15009,15043,15086,15129,15178,15234,15233,15245,15264,15254,15279,15304,15301,15289,15229,15185,15132,15058,14955,14875,14723,14585,14416,14216,14010,13801,13556,13301,13025,12753,12452,12177,11865,11577,11299,11059,10805,10579,10287,9997,9685,9370,9091,8853,8641,8459,8311,8178,8060,7991,7911,7867,7806,7725,7584,7405,7264,7129,7015,6919,6833,6765,6715,6681,6642,6643,6632,6626,6651,6637,6479,6175,5753,5130,21.8,21.8,22.4,1567577,0.1,12.3,11.9,5.0,477,-1.00,-1.00,57.0450,-18.762954,0.000492,,,,,117 +SATSLF0720,2024246,2.511142,4.05,0.0567,0.1042,0.0208,0.00,16084,650,1,716,710,718,711,715,715,715,717,729,718,731,740,773,888,1211,1955,3131,4497,5756,6683,7315,7807,8218,8673,9184,9831,10554,11446,12428,13547,14711,15882,16994,17945,18663,19107,19244,19061,18685,18129,17549,16987,16512,16151,15917,15841,15928,16174,16574,17165,17913,18821,19872,21099,22410,23863,25338,26794,28235,29474,30478,31213,31625,31616,31296,30632,29717,28641,27418,26236,25077,24000,22993,22155,21410,20806,20333,19920,19639,19499,19395,19408,19498,19686,19947,20291,20726,21235,21800,22429,23093,23729,24331,24917,25397,25748,26013,26054,25939,25659,25185,24544,23824,23034,22154,21292,20450,19669,18979,18331,17775,17301,16891,16578,16309,16138,16036,15995,16027,16109,16276,16500,16789,17141,17585,18059,18629,19236,19867,20546,21271,22022,22740,23446,24155,24822,25406,25962,26401,26712,26949,27050,27075,26973,26763,26437,26033,25546,24984,24391,23773,23132,22477,21805,21187,20573,19985,19419,18929,18457,18055,17697,17376,17081,16823,16574,16371,16174,15968,15768,15595,15420,15291,15173,15079,15010,14941,14901,14869,14871,14880,14901,14920,14949,14996,15023,15054,15120,15126,15159,15168,15169,15184,15208,15212,15196,15142,15082,15032,14949,14866,14769,14639,14482,14315,14124,13898,13699,13461,13202,12938,12650,12368,12073,11764,11492,11228,10973,10739,10500,10240,9932,9613,9309,9013,8772,8579,8410,8244,8113,8019,7941,7874,7823,7766,7677,7517,7357,7202,7073,6969,6856,6771,6708,6663,6641,6610,6619,6589,6583,6602,6590,6438,6153,5721,5106,21.8,21.8,22.4,1567578,0.0,12.3,11.9,5.0,476,-1.00,-1.00,56.7381,-18.584791,0.000576,,,,,57 +SATSLF0720,2024246,2.511398,4.16,0.0582,0.1036,0.0187,0.00,16136,650,1,688,695,697,694,713,717,721,719,723,725,725,725,763,869,1207,1954,3109,4501,5747,6682,7321,7801,8221,8658,9195,9805,10554,11414,12419,13524,14708,15869,16979,17929,18664,19092,19225,19041,18666,18140,17540,16989,16516,16154,15932,15858,15937,16181,16565,17155,17915,18829,19898,21125,22445,23877,25354,26825,28251,29512,30508,31273,31658,31657,31313,30667,29753,28693,27461,26281,25114,24042,23021,22181,21438,20843,20359,19973,19684,19533,19418,19443,19536,19738,19986,20343,20781,21298,21874,22493,23152,23796,24417,24997,25476,25842,26092,26145,26024,25755,25268,24640,23913,23114,22249,21358,20519,19748,19021,18368,17814,17330,16941,16622,16374,16205,16112,16075,16093,16182,16334,16569,16874,17226,17643,18123,18711,19321,19961,20640,21368,22107,22842,23552,24269,24922,25513,26082,26514,26841,27085,27189,27189,27092,26890,26560,26162,25670,25111,24525,23888,23241,22579,21914,21281,20665,20066,19509,19010,18550,18128,17771,17441,17156,16904,16650,16449,16251,16054,15857,15671,15494,15363,15237,15148,15085,15005,14961,14954,14945,14954,14989,14997,15027,15080,15108,15169,15201,15223,15248,15252,15261,15285,15277,15299,15287,15237,15173,15101,15043,14953,14845,14692,14561,14377,14194,13992,13788,13545,13288,13013,12723,12428,12137,11849,11553,11284,11043,10785,10565,10291,9989,9680,9365,9066,8837,8624,8457,8295,8171,8065,7983,7912,7857,7798,7707,7575,7397,7238,7104,6991,6892,6821,6747,6692,6656,6647,6621,6615,6601,6614,6612,6445,6161,5729,5118,21.8,21.8,22.4,1567579,0.4,12.3,11.9,5.0,473,-1.00,-1.00,57.1107,-18.763805,0.000570,,,,,50 +SATSLF0720,2024246,2.511653,3.93,0.0550,0.1046,0.0189,0.00,16096,650,1,696,701,713,702,707,725,712,711,707,723,728,722,769,882,1198,1923,3115,4485,5733,6660,7282,7761,8178,8625,9143,9764,10505,11378,12385,13490,14663,15813,16920,17888,18600,19038,19181,18990,18625,18085,17498,16930,16465,16098,15874,15793,15859,16117,16526,17109,17853,18765,19829,21052,22357,23807,25288,26754,28187,29422,30429,31172,31565,31556,31226,30579,29671,28619,27383,26213,25058,23985,22972,22133,21404,20793,20307,19909,19636,19477,19378,19389,19491,19687,19942,20289,20722,21245,21802,22402,23088,23728,24341,24925,25393,25768,26027,26081,25954,25688,25197,24557,23843,23049,22181,21314,20466,19698,19003,18354,17789,17313,16901,16574,16339,16152,16069,16030,16040,16129,16286,16520,16812,17181,17601,18096,18662,19277,19904,20592,21313,22053,22789,23523,24204,24852,25451,26013,26441,26768,27005,27099,27127,27049,26829,26497,26094,25600,25046,24462,23821,23189,22528,21873,21238,20608,20014,19464,18981,18499,18091,17733,17408,17122,16861,16618,16418,16200,16014,15813,15630,15467,15329,15222,15127,15048,14967,14930,14925,14925,14920,14946,14981,15002,15049,15065,15127,15173,15203,15213,15226,15219,15235,15249,15255,15248,15204,15133,15095,15018,14945,14833,14699,14551,14362,14161,13954,13748,13505,13259,12985,12709,12428,12121,11818,11523,11263,11005,10775,10537,10266,9975,9651,9345,9063,8819,8611,8429,8279,8145,8050,7974,7889,7839,7782,7701,7552,7379,7231,7111,6981,6887,6807,6733,6675,6650,6621,6601,6599,6590,6605,6612,6460,6144,5733,5105,21.8,21.9,22.4,1567580,0.1,12.2,12.0,5.0,473,-1.00,-1.00,58.2553,-19.187017,0.000637,,,,,157 +SATSLF0720,2024246,2.511905,4.12,0.0578,0.1039,0.0185,0.00,16115,650,1,700,698,696,709,710,717,716,727,747,746,741,754,793,885,1223,1955,3110,4486,5733,6656,7298,7778,8194,8641,9165,9785,10532,11403,12379,13488,14660,15827,16941,17890,18619,19063,19177,18997,18621,18078,17488,16925,16475,16111,15881,15805,15891,16146,16560,17128,17873,18788,19849,21073,22376,23831,25306,26785,28202,29442,30435,31191,31585,31583,31256,30617,29703,28637,27411,26230,25069,23985,22990,22145,21414,20801,20325,19930,19661,19490,19405,19424,19515,19704,19966,20318,20748,21273,21859,22449,23121,23762,24376,24945,25430,25796,26052,26120,25977,25703,25233,24589,23878,23073,22193,21337,20482,19723,19028,18372,17813,17328,16922,16615,16357,16189,16088,16037,16064,16151,16299,16539,16834,17191,17629,18123,18701,19304,19946,20621,21354,22096,22818,23537,24246,24897,25496,26064,26473,26804,27035,27158,27169,27074,26850,26519,26138,25637,25072,24477,23851,23201,22541,21888,21271,20661,20061,19505,19004,18538,18129,17749,17414,17137,16855,16635,16433,16230,16050,15858,15677,15506,15362,15242,15136,15059,14986,14953,14931,14929,14939,14969,14989,15029,15069,15098,15149,15204,15207,15215,15216,15218,15250,15260,15275,15279,15216,15156,15108,15019,14942,14860,14713,14557,14383,14203,13978,13778,13509,13259,12989,12727,12437,12133,11846,11560,11292,11033,10785,10558,10281,10002,9652,9348,9062,8826,8630,8449,8279,8155,8061,7988,7914,7859,7789,7710,7565,7385,7247,7117,6981,6903,6816,6748,6684,6655,6637,6629,6606,6602,6629,6616,6478,6181,5753,5128,21.8,21.9,22.4,1567581,0.1,12.3,12.0,5.0,464,-1.00,-1.00,57.6827,-18.965043,0.000571,,,,,247 +SATSLF0720,2024246,2.512161,4.18,0.0586,0.1032,0.0186,0.00,16133,650,1,709,725,714,711,731,730,733,730,740,725,737,737,770,889,1211,1942,3105,4483,5735,6665,7309,7794,8215,8667,9192,9821,10561,11417,12423,13534,14701,15860,16964,17937,18657,19093,19209,19019,18661,18112,17521,16972,16509,16141,15902,15865,15930,16169,16573,17168,17905,18798,19873,21086,22411,23875,25338,26824,28246,29492,30484,31225,31636,31638,31289,30645,29735,28673,27435,26258,25104,24001,23009,22151,21435,20825,20347,19957,19682,19530,19435,19430,19541,19723,19975,20327,20762,21272,21847,22477,23145,23785,24397,24981,25451,25819,26091,26135,26008,25728,25256,24620,23901,23083,22231,21361,20519,19741,19040,18397,17826,17345,16944,16616,16367,16199,16102,16068,16070,16163,16321,16545,16846,17207,17657,18138,18705,19313,19943,20650,21369,22123,22858,23560,24272,24923,25517,26081,26499,26816,27058,27163,27177,27077,26873,26546,26154,25665,25093,24512,23865,23218,22560,21905,21272,20658,20061,19507,19028,18541,18141,17781,17451,17161,16899,16646,16451,16254,16066,15862,15683,15517,15362,15250,15156,15076,15011,14974,14949,14955,14972,15004,14998,15040,15066,15101,15145,15205,15221,15244,15252,15257,15277,15298,15296,15286,15242,15177,15106,15042,14945,14861,14709,14570,14401,14205,13990,13791,13542,13287,13023,12733,12441,12136,11844,11562,11285,11044,10806,10569,10295,10002,9688,9377,9091,8849,8621,8454,8286,8158,8049,7975,7909,7864,7799,7713,7573,7404,7259,7125,7008,6929,6838,6766,6698,6670,6645,6642,6622,6618,6634,6609,6466,6157,5733,5115,21.8,21.9,22.4,1567582,0.3,12.3,11.9,5.0,477,-1.00,-1.00,57.0176,-18.711068,0.000565,,,,,145 +SATSLF0720,2024246,2.512415,4.08,0.0571,0.1041,0.0187,0.00,16121,650,1,709,705,707,709,717,725,728,728,732,740,729,735,771,879,1209,1934,3111,4484,5731,6653,7307,7776,8210,8659,9169,9800,10542,11405,12393,13511,14674,15837,16941,17907,18624,19050,19194,19003,18638,18092,17509,16954,16482,16129,15885,15827,15895,16140,16556,17131,17876,18778,19861,21088,22401,23835,25321,26793,28206,29451,30445,31199,31598,31600,31278,30629,29708,28662,27431,26240,25073,24004,22998,22150,21421,20809,20332,19930,19659,19495,19397,19413,19514,19690,19965,20311,20744,21275,21819,22451,23121,23773,24391,24965,25445,25812,26079,26121,25993,25728,25237,24590,23883,23081,22220,21353,20512,19745,19033,18376,17815,17334,16928,16604,16355,16183,16094,16052,16083,16173,16317,16545,16855,17211,17635,18125,18688,19298,19938,20612,21342,22100,22821,23546,24249,24909,25500,26062,26493,26820,27056,27162,27172,27072,26858,26532,26142,25653,25078,24501,23853,23220,22560,21886,21257,20658,20062,19495,19015,18540,18133,17770,17431,17149,16883,16661,16445,16249,16050,15863,15671,15497,15357,15253,15146,15068,14986,14963,14942,14944,14949,14969,14995,15025,15063,15099,15149,15200,15217,15233,15238,15249,15261,15298,15280,15279,15227,15163,15102,15029,14944,14842,14723,14564,14402,14206,14007,13769,13539,13267,13021,12733,12436,12144,11838,11542,11279,11030,10795,10575,10304,10003,9671,9362,9069,8837,8606,8434,8287,8142,8059,7991,7927,7865,7806,7713,7570,7413,7250,7123,6993,6903,6813,6749,6681,6655,6637,6625,6619,6612,6629,6615,6471,6166,5747,5125,21.8,21.9,22.5,1567583,0.0,12.3,11.9,5.0,474,-1.00,-1.00,57.7736,-19.010958,0.000554,,,,,177 +SATSLF0720,2024246,2.512667,4.13,0.0579,0.1044,0.0190,0.00,16099,650,1,698,709,720,721,730,717,718,727,720,725,725,740,773,881,1201,1943,3105,4470,5723,6650,7299,7780,8212,8637,9147,9776,10506,11367,12357,13466,14642,15801,16923,17863,18579,19014,19152,18958,18592,18061,17469,16905,16450,16090,15872,15805,15881,16129,16521,17115,17857,18753,19809,21018,22344,23773,25270,26741,28163,29406,30405,31156,31549,31542,31221,30583,29668,28598,27378,26210,25049,23980,22970,22123,21393,20782,20299,19904,19623,19470,19386,19376,19483,19671,19959,20301,20734,21253,21822,22437,23085,23731,24354,24918,25392,25762,26024,26080,25956,25677,25202,24567,23854,23051,22174,21300,20471,19688,18994,18354,17793,17326,16918,16600,16346,16175,16067,16023,16055,16132,16295,16514,16808,17171,17598,18099,18669,19276,19913,20605,21328,22061,22816,23525,24209,24864,25441,26020,26445,26762,27017,27124,27146,27059,26833,26503,26112,25610,25058,24450,23831,23186,22521,21873,21225,20616,20029,19478,18990,18503,18111,17745,17417,17145,16873,16636,16424,16223,16029,15842,15660,15490,15345,15234,15137,15053,14989,14968,14929,14937,14941,14960,14981,15027,15062,15081,15136,15195,15200,15221,15217,15218,15240,15261,15257,15265,15210,15145,15092,15005,14917,14827,14689,14552,14365,14196,13985,13749,13511,13263,13005,12710,12427,12123,11810,11531,11261,11005,10787,10550,10274,9978,9665,9345,9066,8818,8621,8441,8274,8154,8046,7968,7914,7853,7792,7708,7581,7403,7230,7108,6985,6885,6812,6748,6689,6662,6645,6634,6609,6603,6613,6603,6459,6159,5733,5121,21.8,21.9,22.6,1567583,0.4,12.2,11.9,5.0,469,-1.00,-1.00,57.8139,-18.996271,0.000492,,,,,233 +SATSLF0720,2024246,2.512923,4.27,0.0598,0.1050,0.0193,0.00,16091,650,1,702,709,705,707,723,709,715,713,737,736,737,753,778,882,1207,1931,3099,4470,5717,6642,7292,7769,8185,8629,9157,9771,10509,11365,12358,13462,14629,15805,16913,17853,18570,19008,19130,18952,18576,18037,17451,16900,16440,16080,15872,15802,15864,16129,16530,17111,17853,18754,19808,21019,22325,23785,25249,26721,28147,29398,30385,31125,31525,31530,31224,30564,29649,28599,27364,26179,25027,23959,22952,22088,21359,20771,20284,19897,19619,19466,19361,19373,19481,19680,19937,20279,20712,21230,21798,22417,23078,23727,24331,24901,25376,25741,26002,26053,25938,25664,25198,24557,23845,23044,22170,21307,20470,19701,18993,18342,17782,17319,16894,16585,16337,16155,16062,16012,16033,16136,16293,16512,16813,17176,17613,18103,18673,19282,19909,20600,21316,22049,22788,23512,24208,24871,25467,26026,26454,26761,27011,27118,27127,27030,26814,26484,26090,25600,25042,24453,23815,23161,22514,21867,21229,20620,20025,19483,18985,18505,18122,17750,17417,17118,16855,16613,16405,16206,16009,15817,15635,15471,15337,15214,15139,15045,14988,14936,14922,14913,14915,14943,14962,15016,15054,15094,15138,15177,15194,15219,15217,15229,15238,15280,15262,15253,15210,15150,15081,15013,14914,14824,14674,14537,14353,14179,13965,13755,13515,13253,12995,12704,12418,12132,11825,11550,11273,11021,10773,10532,10279,9961,9643,9337,9060,8822,8615,8436,8291,8149,8043,7971,7896,7833,7781,7690,7559,7383,7237,7109,6998,6901,6810,6738,6685,6650,6641,6612,6600,6595,6609,6605,6466,6156,5725,5105,21.8,21.9,22.6,1567584,0.2,12.2,11.9,5.0,464,-1.00,-1.00,57.3358,-18.788360,0.000480,,,,,242 +SATSLF0720,2024246,2.513180,4.22,0.0591,0.1048,0.0193,0.00,16087,650,1,701,711,710,706,717,718,721,727,720,734,756,744,789,891,1219,1944,3107,4485,5719,6645,7300,7752,8192,8620,9131,9741,10485,11352,12349,13447,14625,15789,16883,17853,18549,19000,19115,18950,18576,18042,17446,16893,16423,16063,15849,15767,15847,16121,16514,17083,17839,18743,19816,21024,22329,23761,25250,26714,28125,29371,30365,31102,31488,31499,31177,30539,29624,28563,27351,26173,25008,23929,22928,22086,21357,20748,20268,19882,19607,19456,19369,19378,19474,19677,19917,20253,20684,21224,21769,22405,23069,23723,24321,24903,25388,25749,26001,26059,25941,25678,25186,24561,23825,23017,22170,21305,20457,19704,18990,18347,17788,17307,16903,16584,16334,16168,16065,16017,16039,16129,16304,16521,16818,17184,17625,18098,18679,19280,19902,20574,21310,22033,22782,23493,24197,24838,25440,26003,26451,26777,26997,27127,27122,27038,26797,26477,26082,25591,25026,24452,23809,23157,22522,21877,21232,20609,20021,19467,18973,18485,18091,17722,17407,17125,16862,16625,16423,16216,16024,15837,15641,15453,15333,15220,15125,15060,14973,14939,14925,14935,14940,14961,14972,15005,15040,15069,15131,15176,15200,15209,15221,15225,15248,15267,15272,15260,15202,15131,15083,15017,14921,14826,14693,14529,14369,14176,13969,13754,13514,13249,12978,12705,12413,12119,11829,11547,11262,11023,10781,10534,10278,9982,9661,9354,9070,8823,8604,8445,8278,8151,8055,7978,7909,7861,7785,7706,7557,7385,7225,7095,6987,6883,6813,6742,6677,6648,6629,6612,6601,6601,6618,6602,6462,6154,5734,5123,21.8,21.9,22.6,1567585,0.4,12.3,12.0,5.0,470,-1.00,-1.00,57.4809,-18.834912,0.000526,,,,,192 +SATSLF0720,2024246,2.513432,4.21,0.0590,0.1056,0.0197,0.00,16068,650,1,713,712,715,709,727,728,728,728,733,742,741,753,777,893,1228,1957,3097,4473,5709,6640,7275,7757,8171,8619,9139,9741,10493,11362,12341,13449,14613,15773,16886,17833,18549,18978,19107,18933,18560,18020,17435,16859,16411,16050,15818,15747,15827,16085,16506,17073,17824,18720,19786,21004,22305,23739,25189,26675,28089,29333,30331,31074,31461,31477,31137,30489,29579,28526,27305,26116,24979,23913,22906,22040,21323,20708,20243,19849,19581,19415,19333,19335,19433,19611,19883,20230,20670,21204,21757,22382,23043,23685,24282,24880,25357,25717,25972,26010,25897,25608,25150,24517,23793,22994,22125,21265,20421,19661,18969,18327,17757,17287,16896,16577,16321,16146,16039,15997,16025,16105,16283,16501,16790,17150,17574,18059,18631,19232,19870,20562,21280,22023,22763,23469,24168,24818,25403,25987,26410,26720,26981,27088,27079,26982,26762,26437,26053,25553,25003,24418,23787,23159,22501,21827,21195,20577,19992,19430,18947,18470,18075,17701,17394,17114,16823,16608,16391,16188,15994,15797,15611,15443,15325,15198,15108,15021,14949,14918,14912,14912,14922,14934,14952,14994,15036,15074,15121,15174,15181,15205,15194,15201,15206,15239,15243,15234,15188,15117,15067,14999,14897,14807,14665,14519,14354,14168,13957,13731,13517,13254,12973,12690,12394,12103,11808,11532,11253,11010,10762,10541,10263,9979,9650,9352,9053,8816,8613,8426,8287,8154,8056,7970,7915,7849,7789,7701,7544,7378,7234,7085,6971,6875,6817,6733,6693,6654,6647,6640,6604,6605,6625,6613,6445,6153,5721,5107,21.8,21.9,22.6,1567586,0.3,12.3,12.0,5.0,472,-1.00,-1.00,57.3754,-18.765329,0.000586,,,,,109 +SATSLF0720,2024246,2.513687,4.19,0.0586,0.1063,0.0203,0.00,16054,650,1,709,707,715,711,713,737,729,721,729,731,735,739,776,885,1211,1953,3110,4475,5720,6621,7266,7741,8162,8618,9130,9737,10476,11330,12339,13426,14597,15745,16846,17800,18507,18954,19092,18916,18537,17997,17406,16855,16393,16021,15796,15745,15809,16064,16483,17045,17797,18696,19761,20973,22276,23727,25181,26651,28056,29302,30293,31030,31437,31438,31106,30458,29541,28488,27268,26097,24944,23876,22885,22041,21314,20718,20231,19840,19567,19414,19304,19319,19429,19603,19887,20237,20655,21182,21741,22365,23012,23680,24281,24853,25328,25669,25945,25990,25880,25611,25126,24492,23777,22970,22119,21250,20404,19657,18944,18294,17739,17256,16861,16556,16302,16137,16041,15993,16010,16101,16256,16470,16769,17147,17573,18046,18618,19213,19844,20520,21265,21989,22749,23450,24154,24806,25383,25939,26374,26690,26944,27042,27050,26971,26756,26426,26034,25555,24992,24402,23777,23128,22462,21811,21181,20581,19986,19426,18933,18473,18069,17705,17368,17085,16813,16580,16371,16171,15986,15802,15622,15428,15305,15181,15095,15018,14961,14905,14893,14888,14892,14918,14938,14982,15011,15051,15098,15155,15187,15176,15213,15209,15227,15248,15225,15217,15169,15111,15047,14976,14896,14804,14665,14517,14344,14164,13953,13741,13501,13256,12978,12693,12410,12117,11805,11528,11250,10999,10755,10526,10272,9970,9630,9330,9049,8794,8590,8441,8281,8134,8035,7956,7890,7844,7780,7696,7542,7378,7232,7094,6989,6877,6789,6731,6684,6648,6623,6610,6605,6581,6599,6601,6453,6151,5729,5110,21.8,22.0,22.6,1567587,0.5,12.3,12.0,5.0,478,-1.00,-1.00,57.5618,-18.822491,0.000606,,,,,96 +SATSLF0720,2024246,2.513940,4.21,0.0589,0.1065,0.0205,0.00,16041,650,1,717,697,707,707,706,703,723,724,743,733,733,731,761,875,1211,1942,3105,4458,5691,6623,7271,7735,8153,8613,9110,9726,10471,11313,12307,13409,14576,15721,16822,17775,18496,18921,19054,18877,18508,17985,17374,16839,16378,16008,15791,15719,15804,16048,16461,17021,17783,18669,19723,20937,22248,23680,25150,26617,28033,29261,30260,31009,31386,31383,31069,30430,29528,28473,27251,26066,24921,23859,22850,22015,21285,20685,20198,19830,19541,19392,19294,19297,19409,19590,19857,20206,20633,21154,21722,22346,22997,23651,24265,24830,25298,25658,25928,25977,25849,25565,25091,24477,23773,22976,22109,21250,20386,19641,18921,18263,17721,17248,16853,16526,16283,16122,16010,15966,15997,16075,16260,16484,16775,17136,17581,18061,18617,19210,19830,20520,21240,21973,22716,23429,24137,24797,25387,25952,26371,26698,26938,27040,27048,26965,26741,26423,26022,25539,24957,24389,23734,23099,22449,21798,21158,20570,20000,19422,18941,18449,18043,17675,17355,17069,16810,16581,16382,16176,15985,15787,15607,15438,15301,15183,15088,15003,14925,14891,14887,14889,14884,14910,14929,14966,15017,15037,15090,15144,15151,15159,15195,15189,15217,15230,15247,15225,15166,15103,15042,14984,14901,14800,14668,14510,14334,14147,13935,13724,13483,13219,12967,12688,12394,12114,11797,11515,11247,11004,10754,10534,10261,9962,9634,9334,9045,8798,8595,8417,8253,8127,8037,7952,7889,7850,7777,7692,7548,7378,7204,7095,6978,6880,6798,6720,6673,6634,6626,6624,6609,6601,6616,6590,6435,6140,5719,5092,21.8,22.0,22.6,1567588,0.5,12.2,11.9,5.0,470,-1.00,-1.00,57.7143,-18.866235,0.000523,,,,,101 +SATSLF0720,2024246,2.514191,4.16,0.0582,0.1071,0.0210,0.00,16028,650,1,707,706,711,713,731,714,711,727,721,717,721,737,769,891,1206,1933,3097,4468,5697,6621,7253,7735,8146,8599,9127,9730,10487,11349,12341,13419,14595,15739,16838,17788,18512,18938,19077,18890,18518,17991,17408,16850,16376,16033,15810,15746,15813,16059,16461,17026,17760,18679,19738,20957,22248,23676,25152,26613,28039,29270,30257,31008,31413,31392,31068,30426,29527,28472,27243,26080,24916,23863,22857,22025,21281,20689,20192,19803,19521,19366,19268,19293,19373,19584,19840,20193,20624,21142,21708,22321,22989,23613,24221,24811,25270,25632,25897,25955,25833,25557,25093,24450,23741,22946,22080,21204,20365,19610,18900,18267,17729,17239,16839,16531,16269,16109,16004,15941,15975,16078,16213,16455,16745,17115,17546,18037,18588,19193,19829,20509,21223,21964,22717,23410,24119,24772,25361,25913,26337,26667,26903,26989,27010,26918,26704,26373,25992,25494,24946,24353,23733,23084,22437,21772,21137,20528,19942,19380,18885,18431,18021,17659,17341,17054,16789,16563,16360,16155,15955,15769,15584,15397,15271,15156,15050,14984,14923,14885,14875,14858,14866,14898,14905,14955,14987,15021,15077,15132,15134,15163,15159,15174,15174,15206,15201,15200,15154,15086,15026,14955,14873,14777,14631,14477,14315,14133,13913,13712,13479,13216,12946,12650,12371,12071,11777,11497,11225,10979,10752,10514,10246,9933,9632,9321,9021,8782,8564,8392,8235,8111,8016,7940,7881,7830,7766,7682,7531,7370,7209,7064,6965,6865,6785,6713,6666,6633,6621,6596,6589,6582,6595,6580,6413,6116,5697,5081,21.8,22.1,22.6,1567589,0.2,12.2,12.0,5.0,473,-1.00,-1.00,57.4924,-18.775247,0.000497,,,,,105 +SATSLF0720,2024246,2.514446,4.26,0.0596,0.1075,0.0206,0.00,16018,650,1,697,711,709,723,714,723,725,737,722,727,732,744,781,896,1221,1933,3093,4451,5685,6597,7233,7706,8137,8570,9079,9697,10442,11284,12287,13378,14539,15687,16782,17723,18450,18871,19014,18822,18457,17920,17359,16795,16345,15993,15757,15685,15773,16009,16413,16985,17726,18643,19697,20897,22219,23645,25094,26568,27981,29209,30205,30949,31341,31341,31016,30389,29461,28423,27186,26043,24870,23825,22818,21973,21264,20646,20174,19794,19501,19338,19253,19280,19369,19557,19818,20178,20606,21118,21687,22293,22967,23605,24204,24779,25251,25627,25884,25938,25829,25557,25081,24437,23732,22939,22078,21205,20362,19591,18902,18241,17683,17232,16837,16519,16281,16093,15991,15962,15968,16067,16233,16456,16750,17110,17531,18034,18592,19197,19821,20515,21229,21964,22694,23428,24097,24759,25345,25907,26338,26663,26893,26992,27014,26917,26706,26386,25992,25514,24940,24359,23736,23090,22429,21760,21131,20520,19935,19386,18907,18429,18036,17673,17357,17054,16795,16557,16351,16151,15959,15755,15589,15417,15291,15165,15062,15002,14921,14898,14877,14880,14897,14902,14922,14971,15002,15028,15075,15132,15145,15156,15169,15164,15185,15211,15202,15207,15160,15101,15038,14977,14878,14770,14641,14482,14325,14131,13928,13717,13461,13211,12962,12670,12373,12098,11781,11495,11247,10981,10752,10505,10243,9958,9632,9325,9034,8803,8590,8401,8251,8121,8018,7944,7872,7833,7776,7677,7537,7358,7223,7082,6967,6867,6792,6709,6677,6641,6617,6603,6594,6581,6601,6599,6432,6142,5712,5106,21.8,22.1,22.7,1567590,0.1,12.3,11.9,5.0,464,-1.00,-1.00,57.9667,-18.939923,0.000539,,,,,22 +SATSDF0720,2024246,2.759138,0.00,0.0000,0.0000,0.0000,0.00,651,0,1,634,628,635,636,653,634,638,626,639,622,632,628,624,621,622,637,622,631,645,637,640,630,630,642,653,664,668,657,660,671,665,653,659,663,668,668,687,669,651,663,651,649,641,651,661,653,653,667,663,653,661,657,649,649,647,649,649,657,656,649,654,661,650,662,661,660,665,651,646,637,651,647,656,662,648,650,651,653,650,643,658,650,657,653,655,667,650,653,638,655,658,649,645,653,650,653,641,648,651,641,651,658,649,660,673,657,648,642,638,646,642,652,657,660,661,657,663,662,653,663,658,643,631,639,642,641,652,649,658,667,657,663,659,648,650,649,641,662,649,647,655,654,661,657,659,648,641,643,648,656,652,649,651,648,644,647,647,653,652,646,660,648,666,651,643,652,646,659,646,643,651,641,638,645,645,650,646,653,657,641,647,651,659,661,663,656,654,651,641,652,645,647,641,642,639,656,637,651,654,649,640,651,649,654,653,657,661,640,655,649,640,650,657,660,666,657,660,649,639,633,637,645,642,645,653,657,657,661,647,647,648,650,649,642,659,652,661,666,676,663,663,661,654,655,663,656,660,669,649,657,657,652,642,647,663,485,0.0,0.0,0.0,1567589,0.1,12.8,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,239 +SATSLF0720,2024246,2.759695,4.02,0.0563,0.0997,0.0161,0.00,16250,651,1,701,701,727,708,717,717,726,736,729,713,715,736,762,887,1217,1956,3130,4529,5792,6736,7393,7868,8305,8754,9272,9885,10649,11522,12519,13642,14830,16034,17140,18119,18849,19281,19408,19213,18827,18293,17694,17121,16652,16289,16059,15990,16066,16318,16737,17325,18065,18981,20057,21285,22621,24069,25575,27063,28482,29746,30747,31513,31912,31921,31593,30920,30007,28945,27701,26501,25333,24245,23229,22361,21629,21010,20541,20133,19859,19691,19590,19603,19706,19885,20149,20490,20931,21463,22048,22649,23314,23959,24583,25162,25641,26014,26292,26337,26213,25921,25429,24807,24082,23261,22376,21502,20646,19881,19157,18493,17938,17469,17067,16737,16488,16311,16228,16178,16193,16261,16437,16660,16977,17337,17769,18256,18825,19462,20096,20789,21516,22257,23005,23720,24433,25094,25689,26263,26696,27009,27264,27368,27365,27282,27074,26733,26342,25838,25266,24669,24037,23381,22726,22056,21414,20804,20202,19639,19157,18669,18262,17895,17559,17283,16997,16746,16539,16339,16154,15965,15776,15617,15466,15362,15249,15168,15097,15041,15024,15035,15037,15069,15088,15121,15174,15189,15241,15296,15316,15330,15334,15328,15360,15370,15365,15367,15317,15253,15191,15124,15034,14941,14801,14659,14466,14279,14061,13847,13613,13341,13081,12791,12494,12207,11915,11631,11347,11095,10854,10611,10340,10036,9715,9413,9111,8885,8672,8499,8345,8206,8113,8038,7953,7913,7844,7758,7600,7424,7261,7141,7025,6927,6858,6801,6740,6700,6674,6677,6653,6645,6665,6642,6499,6199,5770,5133,21.8,21.7,22.1,1567590,0.2,12.3,11.9,5.0,593,-1.00,-1.00,57.0110,-18.875399,0.000507,,,,,112 +SATSLF0720,2024246,2.759877,4.02,0.0564,0.1004,0.0169,0.00,16222,651,1,708,701,702,700,695,688,700,696,714,713,715,729,761,886,1209,1944,3137,4521,5773,6709,7357,7834,8268,8710,9235,9871,10602,11488,12483,13593,14793,15966,17077,18055,18779,19221,19344,19179,18793,18249,17645,17073,16611,16245,16019,15941,16045,16272,16696,17289,18025,18939,20021,21242,22554,24026,25526,26997,28439,29696,30701,31452,31872,31836,31531,30880,29953,28894,27650,26454,25293,24212,23202,22329,21590,20968,20492,20082,19803,19649,19561,19574,19679,19863,20123,20470,20897,21421,21994,22603,23289,23944,24557,25137,25614,25996,26256,26293,26166,25889,25426,24757,24029,23232,22349,21483,20616,19851,19153,18482,17938,17438,17041,16712,16455,16279,16183,16147,16164,16234,16411,16659,16953,17313,17747,18241,18814,19429,20065,20756,21478,22250,22985,23686,24401,25053,25643,26224,26668,26980,27205,27325,27328,27255,27032,26704,26309,25806,25239,24645,24002,23371,22697,22026,21385,20779,20172,19619,19117,18647,18233,17865,17545,17257,16981,16733,16526,16315,16127,15929,15744,15573,15432,15319,15214,15145,15071,15031,15029,15005,15020,15050,15064,15094,15143,15174,15232,15269,15287,15297,15311,15315,15340,15350,15342,15341,15283,15224,15164,15096,15009,14907,14775,14650,14456,14273,14053,13829,13593,13312,13039,12764,12473,12177,11873,11592,11333,11088,10837,10613,10347,10027,9715,9388,9105,8869,8653,8489,8327,8192,8101,8016,7949,7907,7842,7755,7595,7422,7272,7132,7033,6925,6841,6791,6722,6695,6657,6651,6636,6617,6643,6633,6481,6192,5746,5127,21.7,21.7,22.2,1567591,0.8,12.3,11.9,5.0,491,-1.00,-1.00,57.4917,-19.041969,0.000550,,,,,114 +SATSLF0720,2024246,2.760132,3.93,0.0550,0.1020,0.0180,0.00,16168,651,1,701,704,709,706,707,721,728,731,735,725,729,733,767,881,1212,1941,3107,4475,5755,6683,7341,7813,8230,8683,9211,9829,10581,11442,12433,13570,14746,15910,17037,17985,18715,19150,19293,19104,18718,18185,17583,17030,16562,16187,15969,15893,15962,16215,16619,17204,17942,18863,19941,21168,22482,23946,25431,26909,28329,29584,30592,31334,31717,31723,31408,30766,29842,28776,27541,26361,25188,24104,23093,22247,21504,20893,20410,20023,19728,19584,19492,19496,19592,19788,20042,20401,20829,21354,21924,22542,23193,23836,24465,25037,25512,25886,26151,26183,26087,25798,25310,24661,23943,23147,22275,21405,20545,19780,19077,18410,17837,17377,16976,16647,16400,16235,16139,16100,16113,16205,16357,16573,16875,17250,17672,18168,18740,19360,19989,20669,21403,22152,22889,23608,24312,24977,25574,26126,26550,26877,27113,27220,27249,27153,26938,26626,26230,25729,25157,24550,23909,23263,22602,21945,21306,20696,20105,19558,19053,18583,18168,17815,17481,17188,16936,16689,16489,16270,16078,15885,15691,15547,15405,15293,15185,15122,15046,14994,14959,14964,14963,14988,15015,15065,15099,15138,15186,15233,15241,15251,15259,15259,15283,15312,15303,15285,15239,15175,15125,15063,14970,14869,14733,14590,14413,14217,13997,13795,13549,13285,13029,12748,12446,12165,11865,11584,11303,11063,10817,10579,10314,9991,9687,9366,9077,8841,8621,8467,8298,8172,8077,7993,7924,7883,7813,7717,7575,7405,7251,7117,7003,6895,6829,6772,6716,6676,6653,6653,6638,6631,6633,6643,6469,6173,5738,5116,21.8,21.8,22.2,1567592,0.1,12.2,11.9,5.0,479,-1.00,-1.00,57.9025,-19.141909,0.000576,,,,,74 +SATSLF0720,2024246,2.760385,4.03,0.0565,0.1023,0.0172,0.00,16184,651,1,709,715,717,701,715,713,723,721,727,727,722,725,770,877,1194,1935,3126,4505,5766,6704,7346,7822,8242,8692,9213,9823,10574,11437,12443,13565,14755,15924,17031,17989,18715,19155,19294,19113,18744,18190,17607,17033,16566,16201,15979,15911,15984,16228,16649,17229,17962,18877,19941,21170,22487,23953,25432,26921,28348,29613,30605,31351,31750,31749,31426,30761,29856,28789,27558,26368,25200,24117,23104,22251,21526,20918,20428,20033,19751,19581,19479,19511,19609,19814,20077,20412,20841,21369,21945,22553,23239,23892,24497,25058,25549,25915,26185,26212,26103,25818,25341,24705,23972,23176,22299,21440,20577,19794,19086,18431,17862,17403,16983,16667,16407,16255,16144,16115,16136,16225,16388,16613,16902,17277,17707,18205,18774,19377,20025,20698,21433,22171,22926,23629,24336,24993,25588,26173,26589,26912,27153,27254,27264,27182,26958,26643,26237,25738,25179,24594,23949,23305,22640,21984,21338,20731,20126,19581,19082,18599,18193,17824,17500,17209,16947,16710,16493,16303,16101,15906,15713,15558,15418,15300,15190,15116,15039,15003,14984,14993,15003,15029,15056,15082,15109,15139,15180,15243,15257,15271,15278,15289,15312,15329,15326,15319,15271,15213,15153,15078,14977,14891,14753,14595,14432,14238,14025,13806,13566,13310,13044,12788,12474,12189,11878,11600,11316,11073,10816,10587,10314,10009,9691,9385,9098,8856,8641,8459,8313,8173,8076,7995,7927,7889,7813,7733,7578,7403,7256,7121,7012,6912,6843,6776,6709,6677,6666,6658,6633,6627,6654,6656,6477,6182,5746,5125,21.8,21.8,22.3,1567593,0.0,12.2,11.9,5.0,476,-1.00,-1.00,57.3698,-18.929361,0.000519,,,,,71 +SATSLF0720,2024246,2.760636,4.03,0.0565,0.1033,0.0181,0.00,16140,651,1,707,707,706,703,711,707,713,711,734,729,727,731,767,881,1219,1947,3121,4490,5739,6656,7297,7769,8192,8629,9163,9795,10539,11399,12395,13513,14681,15846,16960,17897,18631,19081,19205,19022,18653,18117,17518,16967,16496,16121,15892,15823,15921,16152,16561,17153,17908,18809,19885,21098,22410,23856,25325,26816,28233,29483,30492,31241,31634,31637,31319,30661,29754,28686,27447,26259,25095,24051,23032,22180,21452,20850,20362,19957,19687,19529,19435,19450,19562,19738,20008,20357,20790,21307,21869,22468,23155,23796,24411,24982,25478,25833,26098,26141,26031,25728,25255,24637,23920,23113,22250,21364,20518,19760,19035,18382,17836,17365,16941,16640,16375,16202,16114,16054,16074,16182,16338,16555,16861,17226,17665,18141,18727,19334,19960,20663,21376,22120,22864,23573,24281,24939,25544,26105,26524,26859,27112,27205,27224,27127,26910,26593,26197,25674,25113,24535,23897,23234,22589,21917,21294,20680,20089,19534,19047,18565,18161,17794,17455,17169,16912,16674,16461,16260,16061,15877,15681,15525,15380,15278,15170,15093,15011,14995,14973,14966,14957,14984,15017,15049,15082,15116,15161,15230,15250,15258,15279,15261,15281,15293,15297,15277,15239,15188,15121,15057,14952,14860,14727,14585,14406,14224,14020,13797,13553,13277,13018,12731,12439,12162,11857,11581,11306,11058,10801,10568,10301,10006,9684,9368,9078,8832,8633,8445,8305,8173,8076,8011,7934,7867,7806,7715,7581,7389,7240,7105,7005,6909,6825,6762,6713,6678,6650,6640,6625,6621,6637,6626,6475,6176,5733,5111,21.8,21.8,22.3,1567594,0.0,12.3,12.0,5.0,475,-1.00,-1.00,58.0315,-19.136604,0.000611,,,,,166 +SATSLF0720,2024246,2.760890,4.14,0.0579,0.1024,0.0177,0.00,16164,651,1,691,701,715,714,707,719,713,705,713,723,722,741,773,903,1220,1949,3122,4509,5755,6679,7334,7805,8234,8689,9198,9824,10573,11449,12442,13553,14741,15906,17015,17976,18704,19141,19275,19105,18696,18179,17562,17011,16544,16196,15959,15893,15978,16231,16621,17203,17945,18871,19941,21166,22478,23931,25414,26901,28321,29576,30589,31338,31730,31734,31400,30738,29815,28756,27536,26341,25184,24102,23099,22233,21499,20896,20409,20004,19729,19569,19473,19486,19587,19785,20046,20386,20838,21336,21901,22521,23200,23846,24465,25040,25523,25882,26155,26188,26074,25789,25286,24663,23933,23146,22258,21394,20539,19758,19067,18411,17864,17377,16971,16653,16402,16225,16129,16089,16101,16197,16356,16565,16885,17249,17674,18173,18737,19366,19989,20673,21399,22148,22884,23595,24313,24962,25542,26122,26550,26881,27118,27227,27257,27149,26936,26609,26209,25701,25143,24555,23912,23281,22602,21937,21309,20690,20096,19547,19049,18586,18189,17813,17467,17184,16913,16666,16462,16257,16081,15882,15689,15533,15387,15282,15180,15090,15019,14973,14962,14955,14961,14992,15018,15050,15093,15136,15185,15224,15251,15250,15257,15270,15285,15314,15298,15299,15248,15199,15137,15057,14984,14878,14740,14585,14421,14220,14017,13801,13550,13294,13022,12748,12459,12149,11849,11562,11297,11041,10806,10579,10297,10015,9684,9383,9089,8855,8629,8454,8301,8156,8087,7986,7917,7867,7817,7717,7579,7405,7245,7113,7011,6904,6828,6759,6716,6685,6663,6650,6625,6614,6633,6625,6485,6169,5738,5117,21.8,21.8,22.4,1567595,0.2,12.3,12.0,5.0,475,-1.00,-1.00,57.1629,-18.828574,0.000571,,,,,230 +SATSLF0720,2024246,2.761146,4.04,0.0566,0.1035,0.0188,0.00,16129,651,1,697,699,703,713,708,711,712,706,706,711,728,741,767,894,1222,1942,3117,4497,5745,6665,7325,7790,8208,8673,9182,9805,10551,11416,12405,13517,14686,15863,16966,17915,18635,19075,19223,19030,18653,18121,17521,16968,16509,16141,15915,15851,15913,16161,16577,17156,17885,18796,19861,21095,22419,23862,25341,26824,28244,29493,30487,31232,31644,31626,31306,30657,29733,28673,27453,26274,25112,24014,23021,22168,21437,20813,20347,19953,19671,19516,19425,19426,19524,19713,19987,20343,20780,21288,21858,22489,23131,23767,24391,24971,25444,25808,26072,26125,26016,25728,25253,24618,23889,23093,22228,21351,20509,19722,19017,18369,17818,17346,16946,16628,16373,16193,16106,16055,16053,16151,16317,16545,16846,17205,17652,18146,18714,19325,19957,20637,21366,22105,22843,23549,24265,24924,25522,26073,26501,26826,27057,27169,27180,27092,26865,26550,26152,25670,25114,24524,23890,23245,22557,21888,21254,20652,20052,19527,19018,18557,18149,17803,17460,17159,16894,16647,16434,16238,16035,15851,15666,15494,15374,15250,15147,15067,15002,14968,14945,14957,14953,14973,15005,15040,15067,15112,15156,15207,15227,15241,15253,15253,15268,15282,15289,15279,15220,15168,15100,15025,14940,14848,14708,14570,14394,14205,13993,13787,13549,13285,13015,12733,12426,12122,11831,11543,11285,11030,10802,10554,10289,10005,9677,9368,9089,8833,8622,8442,8296,8161,8061,8000,7905,7879,7793,7715,7573,7386,7225,7111,6992,6894,6818,6741,6685,6651,6644,6623,6605,6595,6615,6612,6456,6155,5734,5109,21.8,21.8,22.4,1567596,0.0,12.3,12.0,5.0,477,-1.00,-1.00,57.7299,-19.009770,0.000565,,,,,145 +SATSLF0720,2024246,2.761401,4.14,0.0580,0.1032,0.0181,0.00,16150,651,1,712,706,719,722,725,725,732,722,727,729,730,744,771,887,1220,1956,3144,4504,5754,6695,7314,7807,8219,8677,9193,9806,10571,11420,12413,13543,14728,15883,16990,17947,18664,19104,19221,19044,18676,18133,17540,16979,16515,16161,15923,15847,15941,16193,16585,17163,17925,18841,19898,21131,22443,23882,25358,26852,28264,29524,30534,31283,31684,31690,31351,30679,29764,28705,27481,26298,25123,24056,23062,22200,21467,20873,20379,19984,19705,19534,19438,19460,19558,19744,20017,20361,20798,21329,21882,22493,23160,23814,24435,25009,25493,25858,26116,26161,26042,25762,25281,24645,23922,23109,22260,21372,20546,19767,19058,18402,17847,17367,16974,16642,16384,16197,16109,16072,16074,16187,16352,16585,16892,17242,17669,18166,18733,19345,19965,20674,21373,22122,22861,23589,24285,24943,25538,26114,26523,26861,27101,27202,27216,27125,26890,26573,26181,25689,25115,24529,23901,23249,22581,21915,21291,20676,20094,19543,19049,18569,18172,17792,17461,17168,16889,16659,16469,16258,16074,15896,15706,15536,15384,15257,15175,15090,15029,14986,14960,14951,14958,14981,15005,15053,15098,15125,15165,15232,15252,15257,15256,15259,15279,15296,15298,15285,15231,15189,15124,15044,14964,14862,14723,14583,14411,14217,14004,13784,13545,13296,13016,12739,12449,12151,11864,11562,11299,11045,10795,10564,10293,10004,9680,9377,9082,8848,8628,8453,8310,8164,8072,7997,7912,7875,7818,7738,7581,7413,7266,7121,7011,6920,6836,6758,6701,6655,6650,6645,6624,6614,6627,6616,6475,6187,5749,5127,21.8,21.8,22.4,1567597,0.2,12.3,11.9,5.0,457,-1.00,-1.00,57.4587,-18.919478,0.000585,,,,,20 +SATSLF0720,2024246,2.761658,4.28,0.0600,0.1045,0.0200,0.00,16093,651,1,718,726,726,722,722,727,725,720,732,731,745,741,778,901,1217,1941,3098,4489,5738,6650,7293,7771,8199,8647,9157,9771,10495,11375,12376,13472,14657,15825,16930,17895,18613,19036,19161,18971,18600,18065,17495,16925,16487,16106,15871,15819,15885,16149,16541,17134,17868,18779,19835,21043,22360,23827,25286,26766,28190,29422,30423,31147,31565,31576,31241,30593,29673,28617,27385,26210,25063,23974,22985,22131,21388,20793,20297,19916,19628,19477,19382,19390,19493,19682,19933,20278,20710,21243,21808,22429,23088,23720,24337,24908,25397,25741,26011,26069,25945,25677,25185,24558,23832,23039,22176,21301,20473,19713,18997,18347,17774,17303,16896,16567,16318,16146,16051,16007,16045,16134,16281,16507,16802,17145,17584,18069,18654,19253,19897,20583,21313,22037,22775,23499,24196,24852,25458,26005,26434,26761,27002,27101,27118,27010,26821,26477,26087,25594,25029,24455,23802,23160,22518,21852,21219,20598,20021,19458,18954,18478,18092,17721,17393,17124,16858,16615,16405,16196,16008,15815,15626,15467,15326,15215,15127,15040,14963,14921,14919,14894,14908,14941,14967,14996,15045,15058,15131,15194,15201,15208,15197,15211,15226,15252,15245,15244,15193,15126,15059,15008,14906,14803,14679,14525,14373,14192,13970,13747,13513,13248,12972,12701,12409,12117,11827,11542,11268,11015,10777,10535,10252,9958,9643,9336,9047,8802,8600,8425,8280,8149,8054,7974,7907,7853,7794,7702,7564,7383,7222,7106,6978,6891,6810,6742,6683,6657,6621,6615,6598,6605,6609,6605,6456,6159,5732,5119,21.8,21.8,22.4,1567598,0.5,12.3,11.9,5.0,475,-1.00,-1.00,56.9878,-18.661989,0.000516,,,,,79 +SATSLF0720,2024246,2.761911,4.04,0.0566,0.1055,0.0199,0.00,16072,651,1,706,715,725,713,720,725,717,725,721,723,729,734,762,895,1217,1956,3117,4498,5738,6658,7317,7780,8206,8652,9150,9783,10505,11382,12378,13493,14668,15810,16931,17888,18603,19029,19156,18967,18612,18065,17469,16919,16472,16090,15857,15794,15876,16114,16522,17102,17841,18733,19803,21010,22327,23770,25234,26726,28132,29384,30360,31106,31504,31510,31181,30529,29613,28579,27341,26165,24997,23943,22937,22085,21347,20737,20273,19868,19587,19424,19339,19353,19456,19653,19897,20242,20699,21204,21758,22372,23040,23689,24298,24876,25344,25729,25988,26021,25899,25624,25152,24520,23789,22989,22141,21275,20418,19648,18947,18305,17745,17266,16866,16562,16312,16148,16054,16014,16025,16119,16273,16480,16792,17149,17565,18058,18628,19238,19874,20557,21280,22017,22766,23461,24174,24834,25430,25970,26392,26718,26946,27062,27070,26976,26770,26439,26034,25541,25003,24409,23783,23122,22475,21807,21185,20577,19992,19433,18946,18474,18062,17703,17358,17088,16813,16584,16376,16185,15986,15789,15623,15453,15312,15213,15101,15040,14953,14913,14906,14893,14895,14932,14947,14992,15015,15040,15099,15156,15173,15173,15181,15195,15208,15235,15235,15229,15184,15118,15064,14992,14897,14805,14653,14515,14342,14154,13938,13725,13499,13239,12971,12708,12393,12099,11813,11526,11264,11006,10760,10528,10249,9943,9630,9326,9051,8786,8597,8426,8265,8122,8049,7969,7890,7843,7794,7686,7545,7378,7225,7087,6987,6888,6799,6728,6667,6643,6613,6596,6585,6594,6614,6598,6445,6143,5742,5109,21.8,21.8,22.4,1567599,0.2,12.3,12.0,5.0,468,-1.00,-1.00,57.3538,-18.779836,0.000499,,,,,212 +SATSLF0720,2024246,2.762166,4.09,0.0574,0.1037,0.0186,0.00,16124,651,1,714,702,716,701,712,713,709,725,717,723,729,729,769,876,1200,1933,3102,4481,5732,6656,7307,7785,8216,8654,9177,9799,10553,11417,12397,13506,14678,15840,16954,17909,18643,19073,19221,19028,18659,18106,17533,16970,16496,16145,15911,15848,15923,16162,16556,17155,17905,18784,19880,21086,22411,23861,25333,26821,28218,29482,30491,31226,31620,31616,31296,30648,29713,28667,27449,26253,25095,24008,23010,22144,21436,20818,20341,19956,19672,19506,19415,19433,19525,19721,19977,20325,20758,21280,21835,22459,23120,23770,24384,24954,25443,25805,26071,26125,25989,25737,25245,24616,23882,23092,22208,21342,20498,19719,19029,18370,17816,17336,16948,16621,16379,16203,16091,16057,16061,16160,16330,16549,16840,17212,17638,18133,18690,19307,19937,20622,21337,22087,22831,23546,24254,24921,25501,26074,26487,26817,27067,27154,27169,27077,26860,26540,26155,25657,25085,24493,23868,23217,22560,21883,21273,20649,20065,19504,19021,18533,18135,17762,17434,17138,16881,16646,16438,16228,16043,15868,15661,15499,15365,15253,15131,15068,14987,14967,14949,14946,14941,14973,14990,15037,15065,15095,15151,15205,15218,15222,15227,15239,15264,15273,15283,15274,15227,15156,15107,15041,14932,14852,14717,14565,14390,14202,14002,13777,13533,13279,13009,12730,12409,12139,11846,11556,11285,11030,10796,10557,10278,9979,9651,9351,9077,8848,8626,8455,8303,8170,8057,7975,7902,7848,7794,7694,7568,7388,7239,7109,7003,6888,6821,6753,6711,6667,6634,6631,6619,6593,6619,6606,6457,6153,5734,5119,21.8,21.9,22.4,1567600,0.5,12.3,11.9,5.0,476,-1.00,-1.00,57.3647,-18.851186,0.000565,,,,,129 +SATSLF0720,2024246,2.762420,4.21,0.0590,0.1046,0.0190,0.00,16114,651,1,709,709,693,696,693,698,692,711,717,712,728,737,770,889,1205,1939,3113,4494,5735,6656,7303,7764,8189,8643,9156,9783,10520,11389,12381,13480,14672,15827,16919,17875,18610,19040,19162,18985,18613,18084,17495,16933,16473,16120,15895,15808,15888,16133,16540,17135,17878,18789,19845,21066,22382,23824,25297,26787,28196,29440,30434,31194,31573,31573,31256,30617,29687,28641,27411,26231,25081,23997,22998,22139,21413,20811,20317,19915,19643,19489,19376,19395,19504,19702,19974,20322,20761,21270,21835,22452,23106,23765,24365,24945,25414,25780,26061,26102,25986,25724,25219,24599,23861,23079,22200,21344,20497,19737,19013,18362,17804,17325,16928,16597,16354,16191,16091,16049,16057,16155,16314,16547,16845,17214,17641,18106,18684,19295,19927,20604,21347,22084,22822,23538,24237,24893,25488,26054,26493,26812,27061,27168,27169,27081,26859,26537,26141,25641,25066,24475,23856,23201,22532,21879,21246,20658,20053,19498,19000,18517,18123,17761,17437,17143,16891,16648,16437,16234,16032,15853,15660,15499,15359,15247,15142,15066,14999,14956,14933,14932,14948,14978,15002,15030,15065,15100,15146,15195,15218,15227,15234,15236,15270,15282,15287,15265,15232,15160,15092,15028,14931,14842,14717,14557,14397,14195,13984,13771,13534,13257,12996,12727,12435,12148,11857,11575,11285,11038,10801,10567,10285,9978,9655,9351,9063,8829,8631,8452,8299,8171,8069,7993,7907,7863,7786,7703,7556,7397,7221,7109,6994,6892,6820,6752,6701,6657,6637,6640,6618,6610,6634,6617,6470,6173,5728,5117,21.8,21.9,22.5,1567601,0.1,12.3,12.0,5.0,471,-1.00,-1.00,57.4196,-18.853052,0.000524,,,,,60 +SATSLF0720,2024246,2.762672,4.20,0.0588,0.1053,0.0197,0.00,16083,651,1,697,687,703,705,723,713,720,717,727,727,733,733,766,891,1209,1936,3095,4476,5711,6635,7291,7773,8185,8627,9139,9753,10490,11350,12333,13453,14633,15789,16888,17841,18555,18987,19122,18944,18569,18021,17431,16883,16418,16061,15838,15777,15850,16093,16510,17093,17824,18743,19797,21016,22317,23772,25227,26711,28117,29360,30365,31099,31499,31504,31176,30539,29622,28573,27333,26164,24999,23936,22933,22091,21353,20754,20268,19895,19605,19442,19346,19355,19473,19661,19933,20265,20707,21223,21786,22407,23065,23709,24320,24904,25365,25741,26009,26049,25937,25654,25179,24553,23832,23027,22168,21295,20454,19688,18987,18336,17769,17302,16902,16579,16328,16172,16061,16004,16035,16121,16277,16507,16805,17166,17603,18088,18670,19283,19917,20589,21307,22053,22781,23494,24187,24846,25456,26022,26417,26753,27003,27114,27115,27024,26804,26490,26091,25596,25043,24453,23816,23165,22516,21846,21222,20593,20015,19456,18973,18505,18102,17733,17408,17130,16846,16627,16413,16211,16007,15836,15658,15470,15347,15224,15142,15051,14974,14939,14905,14907,14920,14937,14955,14999,15034,15073,15115,15168,15202,15208,15210,15207,15239,15261,15242,15251,15185,15131,15069,15001,14913,14827,14677,14530,14359,14183,13971,13771,13533,13245,12992,12702,12409,12098,11811,11540,11269,11021,10780,10553,10290,9989,9660,9364,9082,8837,8618,8440,8291,8137,8035,7954,7905,7854,7793,7702,7557,7383,7230,7115,6987,6889,6805,6736,6686,6637,6615,6608,6599,6610,6612,6609,6453,6163,5722,5112,21.8,21.9,22.5,1567601,0.1,12.3,11.9,5.0,467,-1.00,-1.00,57.7491,-18.943558,0.000546,,,,,181 +SATSLF0720,2024246,2.762929,4.16,0.0583,0.1057,0.0193,0.00,16074,651,1,707,710,715,713,711,723,721,716,719,728,733,745,768,887,1215,1944,3116,4473,5715,6642,7280,7748,8173,8621,9136,9741,10487,11349,12316,13431,14592,15750,16859,17801,18531,18970,19108,18921,18562,18017,17440,16861,16416,16047,15820,15756,15818,16084,16490,17070,17808,18711,19781,20992,22307,23757,25216,26690,28117,29341,30347,31084,31470,31485,31154,30501,29589,28537,27301,26138,24965,23912,22914,22077,21349,20739,20251,19867,19589,19425,19330,19346,19453,19648,19898,20264,20685,21203,21777,22389,23045,23688,24307,24882,25367,25704,25974,26030,25913,25649,25169,24539,23801,23025,22149,21277,20430,19661,18964,18318,17762,17293,16891,16584,16329,16160,16033,16002,16027,16118,16281,16496,16795,17162,17581,18073,18646,19253,19893,20569,21293,22034,22774,23481,24189,24837,25435,25992,26413,26747,26973,27094,27105,27024,26805,26464,26082,25582,25025,24429,23794,23145,22506,21834,21195,20595,19998,19458,18965,18493,18092,17732,17410,17120,16844,16605,16397,16181,16003,15811,15635,15467,15337,15222,15109,15047,14972,14928,14907,14921,14912,14935,14968,14998,15037,15067,15108,15174,15178,15196,15216,15205,15225,15264,15256,15248,15203,15129,15083,15017,14922,14833,14678,14535,14356,14179,13961,13748,13511,13250,12987,12717,12406,12117,11812,11535,11269,11019,10777,10539,10272,9979,9641,9342,9063,8811,8612,8437,8279,8151,8057,7987,7909,7863,7794,7703,7562,7381,7226,7094,6992,6876,6812,6744,6690,6649,6642,6625,6626,6602,6615,6608,6461,6145,5719,5115,21.8,21.9,22.5,1567602,0.1,12.3,12.0,5.0,473,-1.00,-1.00,57.8690,-18.977091,0.000633,,,,,103 +SATSLF0720,2024246,2.763182,4.24,0.0594,0.1048,0.0197,0.00,16095,651,1,712,708,713,719,727,722,725,717,728,736,721,730,774,889,1212,1953,3118,4499,5737,6667,7312,7793,8202,8658,9170,9781,10513,11394,12393,13498,14661,15820,16913,17867,18600,19026,19171,18989,18612,18081,17499,16918,16459,16103,15874,15801,15889,16133,16551,17122,17868,18766,19850,21054,22365,23808,25285,26763,28178,29413,30411,31158,31544,31541,31213,30581,29645,28603,27392,26202,25047,23975,22972,22113,21375,20778,20286,19901,19622,19469,19368,19398,19502,19684,19948,20297,20731,21249,21802,22427,23083,23725,24358,24930,25380,25744,26017,26066,25950,25670,25202,24572,23853,23044,22181,21317,20461,19697,18988,18336,17787,17319,16906,16582,16337,16159,16061,16012,16040,16132,16297,16528,16806,17171,17619,18105,18662,19265,19895,20576,21294,22032,22777,23481,24195,24852,25442,26009,26448,26748,27006,27092,27127,27029,26807,26485,26098,25597,25037,24441,23810,23165,22496,21833,21207,20589,20027,19454,18976,18486,18096,17718,17398,17112,16849,16614,16408,16206,16019,15813,15645,15476,15329,15223,15133,15053,14974,14939,14917,14919,14913,14951,14984,15005,15047,15073,15120,15176,15189,15198,15207,15213,15219,15260,15262,15250,15201,15134,15068,15008,14906,14819,14680,14540,14363,14169,13968,13751,13512,13268,12995,12711,12424,12125,11829,11542,11270,11018,10787,10542,10280,9982,9655,9357,9061,8815,8606,8441,8285,8155,8068,7967,7897,7836,7779,7697,7546,7388,7213,7103,6986,6883,6805,6741,6693,6663,6643,6626,6612,6595,6634,6618,6475,6157,5729,5110,21.8,21.9,22.6,1567603,0.0,12.3,11.9,5.0,473,-1.00,-1.00,56.9424,-18.635875,0.000523,,,,,83 +SATSLF0720,2024246,2.763434,4.20,0.0589,0.1051,0.0188,0.00,16086,651,1,711,712,714,713,724,722,710,719,720,724,729,732,770,880,1199,1939,3096,4480,5727,6647,7284,7760,8183,8637,9146,9764,10497,11345,12343,13463,14622,15799,16896,17843,18567,18996,19127,18938,18579,18045,17453,16912,16449,16085,15850,15779,15849,16096,16509,17102,17835,18738,19809,21024,22324,23773,25256,26714,28139,29383,30381,31131,31509,31510,31176,30539,29629,28581,27348,26172,25024,23941,22944,22089,21353,20757,20294,19893,19610,19453,19355,19378,19473,19657,19930,20265,20707,21217,21788,22410,23061,23716,24325,24901,25376,25728,26007,26065,25933,25667,25173,24539,23816,23031,22165,21304,20458,19693,18976,18331,17769,17304,16906,16589,16326,16167,16064,16019,16030,16133,16273,16497,16791,17165,17594,18099,18669,19282,19921,20594,21309,22044,22779,23501,24195,24845,25447,26001,26450,26770,27005,27098,27133,27020,26809,26489,26089,25600,25033,24449,23810,23165,22511,21844,21206,20621,20017,19480,18965,18494,18095,17737,17405,17106,16848,16593,16408,16204,16025,15838,15636,15479,15344,15229,15109,15037,14957,14925,14917,14913,14916,14953,14968,15013,15045,15061,15115,15177,15193,15212,15213,15206,15242,15260,15262,15246,15195,15143,15099,15013,14921,14833,14677,14523,14358,14174,13968,13750,13518,13253,12988,12698,12404,12133,11821,11533,11265,11021,10779,10541,10270,9965,9655,9341,9061,8810,8614,8432,8277,8147,8054,7983,7914,7851,7786,7703,7571,7395,7239,7115,6985,6883,6806,6743,6680,6653,6625,6622,6597,6599,6624,6613,6467,6162,5734,5106,21.8,21.9,22.6,1567604,0.4,12.2,11.9,5.0,472,-1.00,-1.00,57.5096,-18.850325,0.000551,,,,,143 +SATSLF0720,2024246,2.763689,4.26,0.0597,0.1049,0.0198,0.00,16082,651,1,699,702,708,720,710,711,725,731,738,743,740,747,766,880,1209,1943,3104,4487,5733,6673,7301,7774,8194,8634,9156,9761,10512,11381,12378,13486,14662,15809,16917,17864,18593,19018,19133,18976,18578,18050,17469,16896,16432,16080,15859,15796,15867,16130,16522,17120,17837,18759,19809,21013,22327,23778,25258,26734,28158,29398,30388,31126,31518,31507,31205,30550,29617,28573,27336,26173,25021,23948,22945,22098,21369,20754,20265,19890,19602,19455,19365,19374,19473,19652,19929,20271,20706,21217,21780,22388,23047,23699,24311,24896,25370,25749,25997,26041,25936,25641,25169,24531,23817,23031,22161,21288,20440,19683,18965,18325,17762,17298,16899,16564,16306,16163,16049,16012,16034,16121,16285,16508,16797,17171,17602,18082,18659,19261,19877,20571,21287,22041,22773,23491,24185,24850,25434,25993,26426,26745,26986,27098,27098,26998,26787,26464,26078,25578,25014,24421,23805,23154,22501,21842,21205,20613,20010,19440,18947,18489,18082,17710,17389,17100,16835,16597,16400,16194,16009,15813,15633,15468,15332,15201,15104,15028,14953,14918,14903,14899,14910,14938,14964,14996,15035,15058,15115,15178,15177,15191,15201,15213,15214,15238,15253,15239,15187,15125,15065,14996,14900,14802,14683,14530,14352,14153,13962,13743,13509,13245,12971,12698,12413,12098,11815,11529,11261,11012,10771,10550,10277,9985,9646,9352,9070,8811,8605,8417,8262,8139,8037,7971,7909,7851,7783,7690,7555,7370,7216,7093,6983,6891,6795,6750,6685,6649,6632,6620,6605,6603,6624,6609,6443,6155,5717,5115,21.8,22.0,22.6,1567605,0.1,12.3,12.0,5.0,464,-1.00,-1.00,57.0328,-18.654101,0.000570,,,,,114 +SATSLF0720,2024246,2.763945,4.25,0.0596,0.1051,0.0185,0.00,16087,651,1,719,721,713,709,723,717,721,723,727,724,729,731,774,897,1226,1961,3118,4497,5728,6647,7296,7767,8190,8617,9145,9757,10489,11361,12336,13457,14625,15785,16896,17849,18564,18989,19118,18941,18576,18029,17449,16891,16434,16072,15863,15777,15866,16121,16517,17080,17822,18743,19793,21009,22325,23768,25237,26704,28107,29357,30349,31101,31478,31506,31186,30541,29617,28560,27339,26161,24997,23927,22935,22097,21348,20752,20258,19873,19604,19453,19355,19365,19479,19664,19937,20263,20695,21225,21778,22392,23072,23726,24322,24916,25380,25741,26008,26049,25942,25650,25173,24552,23821,23032,22161,21295,20452,19693,18993,18341,17777,17301,16904,16579,16333,16153,16056,16005,16029,16125,16286,16503,16827,17193,17613,18099,18665,19274,19907,20584,21316,22052,22786,23497,24196,24853,25454,26013,26433,26771,27012,27111,27133,27042,26820,26500,26089,25595,25032,24426,23803,23174,22521,21875,21232,20615,20019,19467,18963,18492,18107,17728,17415,17137,16858,16631,16425,16210,16011,15817,15639,15473,15334,15227,15130,15058,14987,14945,14914,14915,14936,14958,14976,15014,15049,15070,15116,15187,15188,15215,15226,15210,15244,15272,15265,15267,15220,15165,15109,15024,14937,14845,14685,14551,14365,14178,13959,13761,13525,13269,13005,12714,12419,12136,11845,11544,11284,11018,10785,10545,10282,9981,9664,9345,9063,8825,8612,8435,8279,8152,8054,7983,7901,7854,7780,7687,7547,7378,7237,7106,6986,6891,6806,6747,6693,6661,6636,6624,6618,6603,6610,6606,6449,6152,5717,5116,21.8,22.0,22.6,1567606,0.1,12.3,11.9,5.0,471,-1.00,-1.00,57.2276,-18.724275,0.000466,,,,,116 +SATSLF0720,2024246,2.764196,4.06,0.0568,0.1062,0.0201,0.00,16061,651,1,733,726,728,711,721,724,724,715,729,738,733,752,783,901,1227,1942,3115,4474,5719,6629,7283,7763,8173,8610,9136,9751,10482,11346,12337,13449,14602,15761,16869,17805,18529,18965,19102,18916,18549,18022,17433,16877,16414,16059,15818,15748,15821,16061,16469,17061,17809,18707,19765,20973,22289,23720,25189,26675,28072,29328,30307,31050,31453,31465,31129,30491,29576,28529,27289,26123,24970,23898,22884,22046,21314,20699,20232,19832,19574,19413,19310,19330,19427,19618,19881,20228,20662,21175,21751,22349,23016,23689,24286,24865,25346,25717,25970,26018,25909,25620,25142,24517,23785,22989,22134,21256,20413,19648,18946,18299,17738,17268,16880,16554,16306,16142,16034,16007,16021,16093,16275,16498,16766,17154,17576,18077,18641,19253,19865,20551,21275,22013,22747,23483,24155,24814,25412,25961,26402,26712,26953,27070,27093,26978,26764,26448,26048,25554,24994,24406,23763,23112,22457,21808,21176,20568,19987,19433,18932,18475,18070,17714,17390,17092,16825,16593,16391,16174,15990,15791,15605,15442,15323,15209,15088,15031,14950,14906,14903,14900,14912,14924,14959,14984,15018,15064,15106,15168,15176,15195,15206,15192,15221,15238,15237,15221,15183,15109,15057,14978,14915,14806,14676,14528,14357,14165,13946,13737,13500,13239,12970,12695,12394,12100,11808,11518,11245,11003,10752,10535,10268,9968,9640,9332,9053,8808,8598,8412,8267,8139,8045,7964,7913,7844,7783,7699,7558,7378,7219,7084,6979,6875,6813,6742,6674,6647,6633,6608,6599,6600,6618,6609,6455,6150,5725,5107,21.8,22.0,22.6,1567607,0.3,12.3,12.0,5.0,471,-1.00,-1.00,58.0366,-19.033589,0.000556,,,,,89 +SATSLF0720,2024246,2.764450,3.81,0.0533,0.1102,0.0244,0.00,15914,651,1,713,712,717,721,721,731,736,724,735,732,733,743,776,888,1200,1947,3094,4450,5699,6616,7249,7706,8125,8559,9068,9691,10426,11289,12279,13379,14546,15685,16773,17722,18428,18853,18982,18796,18431,17901,17314,16751,16302,15946,15706,15626,15712,15954,16354,16928,17659,18549,19589,20793,22100,23520,24962,26427,27837,29064,30041,30791,31197,31186,30871,30225,29318,28283,27058,25898,24752,23682,22697,21837,21113,20516,20034,19648,19381,19225,19137,19142,19255,19431,19699,20033,20463,20977,21538,22134,22786,23426,24013,24597,25065,25424,25683,25740,25621,25370,24897,24265,23557,22784,21898,21041,20213,19438,18755,18108,17544,17101,16708,16385,16136,15973,15869,15818,15845,15929,16100,16306,16595,16949,17390,17851,18425,19024,19655,20332,21045,21777,22510,23201,23895,24546,25105,25673,26103,26419,26661,26773,26789,26710,26485,26177,25798,25296,24753,24151,23543,22906,22257,21587,20958,20359,19792,19239,18761,18307,17896,17546,17217,16926,16667,16429,16229,16011,15826,15633,15459,15290,15155,15037,14947,14877,14809,14776,14760,14758,14773,14782,14819,14853,14897,14921,14957,15014,15031,15048,15050,15052,15077,15100,15104,15083,15047,14978,14914,14851,14762,14664,14531,14392,14225,14030,13834,13611,13388,13113,12860,12576,12297,11997,11707,11435,11165,10917,10689,10461,10187,9892,9573,9255,8983,8728,8543,8362,8209,8082,7989,7909,7849,7788,7739,7640,7496,7319,7163,7034,6913,6816,6753,6682,6643,6597,6569,6553,6536,6530,6555,6534,6389,6092,5679,5052,21.8,22.1,22.7,1567608,0.0,12.3,12.0,5.0,470,-1.00,-1.00,58.3788,-19.014340,0.000490,,,,,21 +SATSDF0720,2024246,3.009139,0.00,0.0000,0.0000,0.0000,0.00,649,0,1,635,627,642,626,637,626,635,633,626,626,612,624,626,629,633,627,635,642,636,622,621,631,629,645,656,669,665,660,656,659,654,647,651,648,649,649,657,645,648,657,658,651,663,649,648,649,642,645,649,648,662,668,652,657,652,662,650,662,658,659,670,666,650,669,664,667,649,651,663,650,647,645,651,661,645,650,652,651,659,647,651,659,657,657,655,661,658,648,654,669,657,649,644,655,656,653,647,651,653,663,660,666,658,661,665,650,645,647,635,637,647,653,663,661,670,646,659,649,634,627,619,635,644,656,646,646,651,651,646,644,651,655,650,647,660,645,647,657,645,654,657,654,652,643,655,650,653,649,650,651,654,657,658,662,661,661,649,645,633,635,639,637,656,653,652,667,642,647,652,643,646,640,647,653,648,657,640,649,653,649,643,635,632,647,641,637,657,639,657,645,635,633,646,637,653,657,646,643,648,646,655,648,645,647,644,647,652,661,656,651,644,641,659,645,658,645,651,656,651,638,647,638,649,644,652,657,646,650,653,663,666,649,657,651,631,631,631,645,650,649,642,647,647,649,654,654,661,661,661,661,649,647,634,642,645,487,0.0,0.0,0.0,1567607,0.1,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,216 +SATSLF0720,2024246,3.009693,4.01,0.0562,0.1003,0.0162,0.00,16223,649,1,683,686,681,688,704,691,716,712,720,738,726,739,769,887,1219,1946,3127,4522,5771,6719,7371,7859,8278,8715,9245,9867,10612,11492,12510,13635,14820,15987,17109,18064,18785,19237,19366,19181,18805,18266,17673,17095,16638,16273,16025,15965,16028,16281,16706,17285,18035,18965,20018,21259,22592,24054,25533,27017,28440,29697,30698,31475,31864,31874,31556,30896,29970,28902,27671,26453,25277,24193,23194,22338,21586,20970,20482,20108,19824,19659,19562,19573,19675,19869,20122,20463,20917,21425,22009,22618,23289,23939,24559,25124,25603,25977,26242,26289,26167,25869,25412,24761,24027,23227,22358,21466,20602,19844,19142,18461,17907,17440,17028,16706,16458,16284,16187,16133,16165,16244,16413,16633,16929,17309,17735,18231,18811,19406,20051,20741,21474,22219,22981,23701,24392,25053,25656,26216,26651,26981,27223,27347,27345,27241,27025,26691,26310,25797,25232,24637,24003,23348,22692,22016,21376,20759,20162,19595,19108,18629,18233,17867,17536,17255,16981,16746,16525,16324,16129,15930,15737,15565,15434,15314,15220,15154,15069,15034,15016,15002,15019,15042,15053,15095,15140,15168,15218,15273,15294,15310,15313,15315,15343,15346,15360,15350,15296,15226,15185,15101,15013,14921,14771,14615,14442,14250,14030,13818,13582,13324,13059,12781,12473,12202,11885,11609,11328,11083,10825,10587,10323,10018,9701,9393,9105,8869,8648,8465,8312,8182,8087,8006,7946,7895,7834,7741,7611,7428,7277,7137,7027,6925,6841,6770,6709,6683,6653,6651,6638,6640,6649,6640,6489,6178,5762,5126,21.7,21.7,22.1,1567608,0.1,12.3,11.9,5.0,595,-1.00,-1.00,57.2494,-18.950616,0.000545,,,,,164 +SATSLF0720,2024246,3.009875,4.04,0.0566,0.1003,0.0161,0.00,16236,649,1,717,702,707,713,710,704,703,707,714,717,715,732,771,885,1211,1955,3126,4517,5780,6721,7373,7854,8288,8717,9263,9892,10624,11519,12522,13641,14816,16000,17126,18080,18817,19243,19392,19200,18817,18276,17669,17095,16635,16275,16036,15969,16043,16302,16722,17303,18048,18966,20046,21268,22580,24047,25536,27033,28472,29728,30739,31498,31880,31877,31554,30901,29970,28913,27668,26477,25306,24227,23193,22343,21592,20987,20494,20098,19835,19669,19560,19587,19684,19875,20147,20481,20918,21433,22009,22626,23309,23953,24566,25159,25626,26000,26264,26308,26193,25896,25429,24776,24045,23255,22370,21492,20634,19862,19155,18489,17945,17461,17045,16718,16461,16293,16193,16149,16183,16269,16450,16673,16962,17341,17761,18236,18808,19419,20065,20766,21494,22236,22992,23709,24427,25089,25677,26240,26670,26993,27245,27333,27366,27253,27053,26720,26314,25821,25241,24656,24034,23362,22699,22028,21401,20772,20171,19621,19118,18660,18237,17869,17531,17243,16985,16745,16533,16326,16130,15944,15776,15602,15461,15341,15243,15168,15088,15057,15029,15011,15019,15038,15063,15098,15149,15174,15227,15282,15305,15306,15323,15332,15345,15368,15363,15351,15303,15248,15188,15120,15017,14926,14793,14629,14465,14269,14065,13833,13607,13340,13079,12789,12498,12202,11906,11608,11329,11073,10847,10607,10341,10037,9729,9409,9133,8885,8674,8502,8341,8199,8094,8025,7945,7898,7845,7744,7611,7431,7293,7153,7049,6941,6861,6802,6733,6693,6675,6647,6631,6625,6647,6660,6497,6191,5772,5152,21.7,21.7,22.2,1567609,0.0,12.2,11.9,5.0,494,-1.00,-1.00,57.0305,-18.867161,0.000542,,,,,145 +SATSLF0720,2024246,3.010130,4.15,0.0581,0.1016,0.0176,0.00,16186,649,1,705,703,703,708,722,718,717,714,713,723,727,734,779,893,1206,1941,3122,4499,5751,6685,7334,7813,8244,8677,9207,9819,10587,11457,12477,13602,14781,15941,17065,18008,18740,19162,19305,19099,18735,18199,17610,17046,16584,16225,15997,15915,15991,16234,16646,17216,17975,18884,19953,21187,22520,23966,25465,26958,28377,29640,30645,31393,31780,31778,31453,30804,29861,28809,27563,26370,25222,24144,23134,22272,21536,20931,20439,20042,19762,19594,19507,19497,19623,19821,20073,20432,20853,21381,21947,22563,23239,23885,24507,25076,25540,25899,26165,26219,26089,25827,25337,24706,23981,23186,22313,21432,20588,19805,19100,18433,17871,17403,16994,16661,16408,16267,16153,16101,16145,16208,16371,16608,16909,17269,17702,18183,18762,19385,20025,20699,21441,22170,22918,23633,24337,25009,25598,26170,26597,26916,27161,27253,27287,27165,26971,26645,26242,25755,25175,24595,23949,23310,22622,21969,21337,20737,20141,19569,19076,18600,18195,17813,17490,17219,16938,16701,16493,16283,16091,15899,15721,15545,15411,15291,15181,15108,15041,15009,14978,14983,15001,15013,15047,15080,15117,15157,15202,15251,15251,15265,15283,15277,15299,15326,15323,15319,15249,15211,15136,15073,14969,14887,14737,14588,14414,14225,14021,13800,13573,13312,13041,12747,12459,12161,11866,11586,11309,11051,10814,10578,10314,10016,9698,9383,9104,8865,8662,8485,8313,8196,8093,8007,7940,7881,7808,7729,7578,7409,7242,7126,7011,6907,6827,6769,6709,6676,6661,6647,6628,6631,6650,6623,6483,6178,5741,5119,21.7,21.8,22.2,1567610,0.0,12.2,11.9,5.0,478,-1.00,-1.00,57.0947,-18.830779,0.000634,,,,,117 +SATSLF0720,2024246,3.010382,4.04,0.0566,0.1043,0.0187,0.00,16104,649,1,706,696,689,704,710,706,707,710,716,716,713,723,771,869,1206,1934,3107,4483,5717,6644,7280,7765,8166,8621,9140,9766,10497,11388,12365,13476,14652,15820,16918,17881,18601,19028,19171,18980,18605,18061,17473,16896,16434,16077,15861,15786,15879,16122,16537,17129,17866,18774,19827,21059,22356,23808,25277,26761,28177,29438,30426,31181,31562,31575,31250,30601,29688,28621,27415,26230,25069,23980,23006,22144,21417,20817,20309,19926,19657,19485,19390,19410,19505,19707,19969,20293,20734,21255,21813,22434,23094,23755,24359,24937,25421,25786,26028,26093,25981,25698,25209,24571,23845,23054,22186,21304,20464,19698,18985,18343,17783,17319,16914,16597,16350,16161,16058,16022,16035,16126,16284,16525,16823,17181,17618,18104,18661,19275,19913,20605,21325,22081,22816,23518,24236,24898,25489,26049,26477,26796,27037,27141,27159,27065,26857,26535,26132,25642,25073,24485,23843,23196,22525,21871,21251,20641,20045,19498,18997,18517,18106,17747,17396,17128,16862,16624,16428,16233,16050,15851,15660,15488,15345,15229,15139,15050,14973,14949,14920,14915,14931,14961,14976,15007,15065,15094,15130,15193,15209,15234,15228,15237,15254,15257,15267,15245,15206,15147,15099,15026,14925,14848,14698,14555,14381,14187,13977,13769,13536,13265,13015,12732,12426,12125,11821,11549,11277,11029,10781,10547,10265,9980,9657,9344,9053,8817,8611,8435,8279,8146,8048,7977,7919,7850,7776,7711,7570,7402,7249,7105,7003,6896,6816,6750,6680,6659,6633,6621,6603,6597,6628,6612,6458,6161,5721,5115,21.8,21.7,22.2,1567611,0.4,12.2,11.9,5.0,476,-1.00,-1.00,58.4728,-19.287178,0.000608,,,,,87 +SATSLF0720,2024246,3.010633,3.97,0.0556,0.1036,0.0205,0.00,16100,649,1,693,695,702,705,712,716,718,727,709,711,725,728,753,871,1213,1953,3131,4501,5747,6678,7313,7804,8217,8656,9179,9823,10570,11440,12443,13557,14730,15884,16997,17957,18680,19132,19261,19073,18692,18158,17559,16983,16522,16160,15931,15873,15941,16188,16593,17162,17920,18832,19888,21102,22430,23877,25342,26839,28249,29509,30515,31257,31637,31642,31290,30665,29745,28684,27448,26267,25105,24017,23015,22173,21449,20839,20345,19947,19691,19525,19417,19432,19515,19711,19970,20321,20749,21268,21835,22450,23109,23746,24365,24938,25399,25773,26034,26085,25971,25689,25220,24578,23834,23042,22176,21300,20459,19700,18988,18341,17774,17307,16904,16584,16325,16150,16061,16013,16043,16132,16290,16507,16802,17174,17594,18075,18656,19250,19896,20564,21303,22045,22781,23494,24181,24839,25431,26001,26413,26747,26986,27094,27111,27008,26805,26458,26079,25586,25013,24432,23802,23153,22490,21828,21204,20596,19993,19441,18949,18470,18077,17709,17385,17090,16843,16608,16402,16203,16001,15812,15622,15457,15302,15195,15105,15026,14937,14902,14880,14890,14894,14910,14932,14965,15019,15037,15081,15137,15156,15161,15187,15181,15201,15233,15222,15211,15168,15099,15042,14972,14886,14791,14667,14497,14335,14145,13943,13728,13473,13208,12949,12659,12387,12098,11797,11517,11237,10997,10761,10525,10244,9944,9627,9323,9041,8818,8601,8430,8266,8127,8032,7964,7892,7831,7771,7671,7543,7367,7204,7089,6968,6879,6802,6725,6672,6647,6610,6592,6574,6575,6597,6589,6432,6143,5707,5101,21.8,21.8,22.3,1567612,0.2,12.3,11.9,5.0,476,-1.00,-1.00,57.0561,-18.734536,0.000563,,,,,179 +SATSLF0720,2024246,3.010891,4.10,0.0574,0.1020,0.0181,0.00,16166,649,1,709,717,712,708,704,713,723,732,731,726,731,735,767,893,1209,1952,3125,4508,5761,6696,7339,7819,8247,8684,9217,9833,10568,11441,12446,13587,14757,15925,17042,17986,18722,19156,19276,19093,18717,18165,17578,16997,16547,16181,15963,15891,15977,16229,16637,17202,17943,18872,19949,21161,22471,23943,25434,26916,28336,29589,30584,31334,31731,31738,31428,30754,29833,28772,27529,26349,25196,24115,23120,22249,21509,20902,20408,20029,19741,19569,19486,19498,19591,19783,20041,20390,20823,21349,21898,22540,23200,23845,24453,25027,25523,25877,26135,26197,26069,25795,25314,24672,23957,23154,22269,21403,20557,19781,19067,18415,17866,17381,16983,16661,16416,16238,16123,16073,16112,16201,16357,16581,16882,17245,17683,18180,18748,19357,19977,20669,21401,22144,22876,23587,24298,24960,25547,26121,26545,26870,27122,27227,27249,27142,26922,26590,26194,25704,25132,24558,23919,23261,22598,21932,21291,20682,20094,19534,19049,18576,18174,17818,17466,17178,16902,16674,16465,16266,16070,15883,15708,15530,15385,15277,15164,15086,15025,14979,14959,14952,14969,14997,15019,15047,15098,15130,15162,15221,15237,15243,15254,15272,15285,15317,15319,15308,15242,15177,15120,15047,14964,14853,14723,14577,14401,14219,14017,13804,13559,13299,13028,12765,12450,12154,11861,11578,11299,11042,10809,10579,10310,9987,9671,9354,9079,8831,8637,8456,8317,8173,8082,7999,7922,7871,7808,7717,7585,7405,7250,7125,7006,6904,6832,6761,6715,6684,6656,6617,6623,6607,6631,6619,6481,6173,5752,5126,21.8,21.8,22.3,1567613,0.6,12.3,12.0,5.0,483,-1.00,-1.00,57.4122,-18.939309,0.000606,,,,,37 +SATSLF0720,2024246,3.011144,4.12,0.0578,0.1026,0.0183,0.00,16144,649,1,717,716,718,720,714,719,717,721,725,717,715,731,757,879,1201,1940,3125,4509,5765,6681,7333,7815,8225,8685,9193,9812,10558,11431,12421,13551,14722,15899,17000,17957,18688,19121,19255,19074,18683,18157,17557,16998,16525,16152,15937,15858,15957,16196,16593,17179,17940,18849,19923,21133,22465,23906,25387,26867,28305,29553,30550,31285,31700,31677,31351,30693,29777,28733,27488,26302,25120,24058,23052,22192,21484,20880,20381,20002,19723,19550,19460,19461,19553,19748,20000,20354,20795,21314,21891,22489,23163,23822,24426,25010,25476,25856,26101,26157,26036,25764,25276,24641,23923,23118,22252,21373,20534,19753,19050,18394,17839,17362,16948,16633,16381,16227,16117,16075,16087,16181,16341,16561,16866,17235,17661,18146,18717,19324,19970,20658,21378,22119,22856,23572,24281,24938,25518,26084,26530,26828,27077,27185,27193,27096,26885,26545,26157,25669,25101,24520,23894,23239,22573,21914,21275,20653,20066,19509,19010,18551,18151,17783,17464,17161,16901,16658,16449,16249,16061,15861,15682,15517,15373,15245,15150,15085,14996,14971,14955,14937,14951,14972,14994,15041,15072,15115,15158,15216,15227,15233,15245,15244,15257,15282,15283,15282,15223,15175,15113,15040,14950,14858,14714,14551,14383,14195,13993,13774,13541,13280,13013,12739,12430,12139,11838,11540,11269,11027,10789,10538,10295,9988,9663,9371,9074,8829,8618,8445,8291,8155,8062,7989,7913,7864,7801,7713,7569,7386,7242,7104,6994,6895,6817,6749,6705,6666,6629,6631,6618,6610,6615,6625,6481,6166,5734,5120,21.8,21.8,22.4,1567614,0.3,12.3,12.0,5.0,475,-1.00,-1.00,57.2019,-18.822341,0.000629,,,,,163 +SATSLF0720,2024246,3.011400,4.24,0.0593,0.1030,0.0180,0.00,16148,649,1,690,697,706,714,715,739,732,715,721,725,722,737,774,881,1211,1937,3127,4501,5741,6682,7331,7805,8214,8667,9185,9789,10545,11414,12403,13517,14689,15866,16969,17944,18653,19086,19227,19040,18673,18133,17547,16982,16521,16162,15937,15853,15937,16197,16585,17196,17925,18848,19900,21123,22441,23881,25368,26852,28260,29518,30509,31250,31671,31661,31333,30694,29785,28714,27479,26305,25138,24040,23054,22186,21446,20851,20364,19982,19696,19551,19445,19462,19569,19751,20023,20349,20791,21314,21886,22504,23168,23821,24430,25000,25475,25841,26113,26157,26050,25754,25280,24635,23932,23118,22244,21370,20516,19738,19054,18394,17833,17390,16976,16653,16397,16219,16118,16078,16080,16180,16341,16569,16868,17249,17684,18164,18749,19329,19979,20654,21389,22122,22856,23580,24282,24947,25549,26123,26533,26869,27092,27202,27209,27116,26912,26581,26192,25697,25140,24533,23897,23245,22595,21918,21298,20693,20093,19529,19034,18551,18144,17779,17459,17175,16909,16677,16474,16274,16084,15874,15675,15515,15380,15269,15157,15098,15021,14981,14971,14970,14959,14989,15008,15051,15093,15121,15165,15243,15245,15253,15267,15266,15294,15299,15302,15302,15253,15186,15124,15047,14973,14880,14730,14581,14398,14217,14009,13797,13561,13293,13022,12734,12430,12151,11851,11571,11302,11045,10811,10565,10294,10002,9689,9365,9086,8840,8632,8449,8295,8160,8055,7997,7937,7882,7813,7714,7581,7398,7238,7105,6989,6900,6826,6757,6701,6664,6637,6631,6621,6613,6629,6635,6482,6171,5735,5119,21.8,21.8,22.4,1567615,0.0,12.3,12.0,5.0,464,-1.00,-1.00,56.9795,-18.719844,0.000457,,,,,57 +SATSLF0720,2024246,3.011657,4.04,0.0566,0.1027,0.0176,0.00,16156,649,1,704,692,719,718,722,713,717,711,711,732,726,731,771,881,1202,1952,3121,4493,5755,6683,7336,7805,8219,8681,9185,9803,10549,11421,12417,13528,14718,15878,16998,17960,18688,19129,19244,19053,18689,18144,17549,16987,16529,16157,15931,15858,15947,16201,16618,17190,17936,18842,19917,21124,22453,23890,25376,26858,28278,29549,30534,31289,31694,31684,31376,30727,29809,28737,27514,26306,25143,24067,23061,22214,21479,20884,20386,19996,19717,19541,19458,19467,19562,19756,20021,20360,20784,21325,21883,22498,23173,23809,24441,25022,25504,25864,26136,26176,26065,25773,25284,24662,23933,23141,22262,21390,20537,19776,19057,18411,17837,17377,16961,16649,16401,16221,16131,16069,16096,16185,16357,16569,16881,17242,17677,18163,18725,19335,19971,20650,21387,22138,22880,23595,24307,24969,25556,26128,26564,26869,27115,27226,27223,27136,26914,26589,26181,25703,25131,24561,23914,23267,22601,21937,21305,20676,20093,19545,19045,18589,18181,17814,17492,17186,16919,16686,16468,16273,16067,15877,15699,15521,15382,15285,15174,15089,15035,14994,14977,14966,14972,14992,15019,15051,15097,15121,15169,15232,15241,15266,15264,15271,15296,15317,15316,15307,15256,15194,15138,15065,14973,14877,14739,14595,14401,14223,14011,13781,13555,13281,13039,12761,12458,12163,11857,11578,11305,11061,10817,10572,10302,10000,9670,9357,9079,8832,8626,8455,8291,8179,8077,7998,7938,7881,7806,7725,7566,7393,7257,7126,7004,6921,6821,6765,6708,6669,6637,6625,6610,6605,6628,6631,6470,6178,5742,5129,21.8,21.8,22.4,1567616,0.5,12.2,11.9,5.0,466,-1.00,-1.00,57.7701,-19.062999,0.000536,,,,,207 +SATSLF0720,2024246,3.011911,4.10,0.0574,0.1041,0.0188,0.00,16112,649,1,699,694,691,695,702,713,715,726,725,733,743,745,779,887,1213,1936,3091,4471,5717,6652,7294,7773,8191,8653,9161,9771,10497,11368,12356,13458,14627,15799,16890,17877,18592,19033,19163,18978,18602,18076,17481,16923,16465,16103,15870,15816,15874,16130,16539,17123,17866,18769,19827,21047,22358,23801,25296,26773,28192,29442,30423,31173,31572,31573,31249,30610,29687,28640,27405,26218,25061,23969,22987,22136,21394,20786,20309,19933,19641,19474,19397,19405,19505,19678,19959,20285,20729,21256,21822,22448,23113,23760,24368,24943,25424,25785,26041,26091,25990,25706,25219,24597,23873,23077,22209,21340,20488,19724,19020,18357,17805,17340,16929,16618,16360,16187,16098,16046,16070,16154,16330,16553,16841,17200,17632,18118,18687,19293,19921,20608,21345,22082,22823,23538,24250,24912,25476,26059,26488,26808,27037,27149,27165,27066,26860,26533,26133,25642,25085,24497,23853,23216,22561,21893,21256,20651,20062,19505,19011,18529,18130,17772,17426,17147,16886,16638,16439,16233,16055,15849,15671,15513,15371,15241,15144,15077,15002,14953,14951,14945,14948,14978,14993,15029,15072,15105,15149,15211,15225,15237,15238,15242,15266,15296,15293,15275,15229,15165,15098,15033,14945,14839,14707,14565,14381,14201,13981,13771,13544,13285,12999,12729,12449,12138,11844,11569,11287,11040,10793,10547,10279,9979,9666,9345,9059,8821,8615,8455,8299,8169,8063,7984,7922,7863,7806,7701,7565,7397,7254,7117,6998,6905,6817,6768,6691,6667,6642,6634,6628,6597,6608,6601,6455,6138,5735,5109,21.8,21.8,22.4,1567617,0.3,12.3,12.0,5.0,470,-1.00,-1.00,57.9851,-19.084406,0.000541,,,,,19 +SATSLF0720,2024246,3.012168,4.08,0.0572,0.1037,0.0183,0.00,16126,649,1,693,694,721,704,707,711,727,728,732,736,739,738,763,883,1209,1933,3115,4495,5749,6672,7315,7778,8215,8636,9155,9796,10530,11396,12389,13505,14683,15845,16953,17913,18641,19072,19210,19019,18648,18109,17514,16953,16485,16120,15895,15827,15917,16164,16561,17154,17883,18808,19869,21072,22391,23847,25313,26796,28226,29477,30477,31224,31617,31609,31285,30629,29718,28670,27426,26241,25093,24016,23018,22149,21421,20825,20336,19946,19646,19503,19414,19434,19530,19717,19971,20304,20747,21265,21835,22466,23118,23779,24405,24985,25457,25805,26076,26125,26007,25717,25233,24575,23863,23080,22213,21348,20497,19752,19016,18384,17827,17361,16946,16603,16363,16197,16102,16041,16069,16157,16321,16564,16862,17222,17648,18137,18699,19312,19933,20615,21348,22092,22837,23551,24252,24925,25504,26071,26500,26824,27077,27164,27171,27091,26866,26551,26145,25661,25090,24509,23877,23209,22551,21895,21257,20649,20053,19509,19017,18557,18137,17781,17448,17158,16878,16637,16448,16237,16052,15857,15675,15515,15373,15255,15161,15090,15002,14975,14957,14946,14963,14981,14993,15037,15069,15111,15149,15201,15214,15227,15235,15258,15257,15291,15277,15258,15229,15152,15115,15034,14956,14853,14725,14573,14403,14214,14004,13780,13544,13277,13010,12741,12434,12145,11848,11557,11298,11053,10810,10571,10296,9995,9664,9363,9070,8811,8615,8452,8303,8166,8074,8012,7918,7863,7796,7705,7563,7394,7236,7115,7006,6925,6837,6754,6701,6657,6646,6637,6608,6605,6621,6619,6464,6155,5744,5111,21.8,21.9,22.4,1567618,0.4,12.3,11.9,5.0,467,-1.00,-1.00,57.5491,-18.923576,0.000570,,,,,159 +SATSLF0720,2024246,3.012424,4.24,0.0594,0.1046,0.0190,0.00,16101,649,1,713,707,707,705,711,709,709,719,749,737,741,757,786,901,1224,1956,3113,4483,5715,6639,7293,7757,8180,8625,9144,9767,10501,11368,12352,13463,14641,15797,16917,17849,18573,19010,19146,18978,18589,18042,17467,16904,16450,16086,15876,15789,15882,16125,16545,17109,17852,18754,19832,21017,22347,23789,25256,26756,28159,29413,30407,31151,31553,31533,31211,30578,29653,28601,27374,26192,25042,23973,22983,22122,21392,20774,20295,19906,19621,19461,19376,19380,19485,19677,19952,20282,20719,21251,21814,22433,23084,23734,24346,24923,25397,25762,26046,26085,25969,25685,25203,24574,23838,23041,22176,21317,20464,19707,18993,18346,17778,17307,16919,16589,16345,16178,16072,16019,16057,16145,16317,16534,16836,17210,17626,18106,18666,19277,19917,20603,21331,22076,22824,23525,24231,24892,25472,26039,26466,26781,27011,27106,27147,27045,26834,26505,26107,25622,25057,24468,23841,23193,22534,21875,21238,20624,20024,19479,18989,18517,18125,17773,17433,17139,16873,16624,16431,16202,16007,15815,15654,15485,15352,15229,15141,15064,14992,14957,14925,14936,14929,14964,14978,15012,15046,15075,15131,15190,15211,15223,15239,15237,15259,15262,15267,15264,15210,15152,15090,15017,14922,14839,14699,14551,14393,14198,13981,13764,13527,13269,12990,12707,12418,12125,11830,11542,11275,11028,10778,10553,10290,9988,9668,9351,9081,8825,8620,8446,8308,8161,8069,7979,7915,7864,7782,7707,7563,7395,7240,7106,6997,6905,6812,6756,6697,6660,6635,6644,6605,6611,6623,6618,6467,6163,5736,5117,21.8,21.9,22.5,1567619,0.6,12.2,11.9,5.0,473,-1.00,-1.00,57.3615,-18.806689,0.000531,,,,,97 +SATSLF0720,2024246,3.012676,4.26,0.0597,0.1059,0.0195,0.00,16057,649,1,709,707,721,713,721,717,724,728,733,721,723,737,769,886,1210,1924,3099,4456,5703,6617,7270,7744,8146,8595,9104,9727,10457,11319,12314,13405,14603,15736,16844,17800,18521,18950,19077,18900,18509,17975,17399,16851,16402,16029,15809,15753,15828,16065,16481,17048,17795,18689,19750,20954,22264,23713,25170,26653,28054,29314,30286,31031,31447,31440,31104,30461,29543,28503,27273,26109,24952,23897,22889,22045,21313,20712,20218,19841,19571,19405,19319,19336,19425,19618,19872,20216,20651,21169,21722,22343,23010,23661,24261,24840,25331,25698,25963,26000,25879,25595,25130,24489,23770,22967,22119,21242,20405,19632,18947,18290,17747,17269,16860,16551,16304,16129,16036,15981,15995,16082,16243,16487,16772,17155,17589,18082,18636,19251,19874,20567,21281,22029,22745,23459,24155,24829,25412,25977,26400,26726,26952,27065,27082,26983,26772,26434,26056,25562,25013,24426,23799,23145,22481,21820,21181,20569,19994,19433,18937,18464,18084,17712,17371,17091,16830,16603,16388,16185,16000,15808,15621,15452,15304,15202,15104,15036,14965,14923,14907,14906,14910,14923,14935,14987,15036,15052,15101,15163,15176,15186,15186,15204,15224,15243,15242,15242,15191,15139,15074,15001,14901,14803,14659,14511,14354,14164,13944,13739,13498,13241,12968,12701,12404,12114,11823,11518,11259,11010,10757,10522,10263,9977,9645,9343,9045,8795,8598,8429,8269,8131,8049,7969,7885,7851,7787,7687,7559,7378,7221,7100,6986,6885,6810,6743,6688,6646,6635,6619,6606,6594,6621,6613,6449,6161,5721,5113,21.8,21.9,22.5,1567619,0.2,12.3,12.0,5.0,471,-1.00,-1.00,57.5017,-18.799867,0.000512,,,,,199 +SATSLF0720,2024246,3.012933,4.22,0.0591,0.1051,0.0193,0.00,16089,649,1,696,695,702,709,716,714,717,710,716,717,720,721,759,861,1207,1921,3099,4488,5707,6625,7271,7761,8172,8605,9122,9747,10486,11341,12345,13442,14631,15786,16899,17842,18558,18993,19117,18943,18558,18027,17465,16892,16430,16081,15849,15770,15854,16100,16513,17093,17837,18750,19802,21019,22322,23778,25233,26713,28133,29379,30373,31117,31530,31515,31200,30564,29648,28577,27342,26169,25009,23936,22947,22096,21365,20763,20277,19894,19600,19454,19356,19369,19473,19673,19926,20276,20701,21228,21777,22413,23080,23723,24339,24917,25385,25738,25998,26060,25942,25672,25180,24565,23845,23038,22187,21296,20459,19681,18979,18340,17777,17298,16899,16571,16330,16161,16065,16023,16038,16135,16285,16513,16818,17189,17613,18107,18674,19288,19912,20586,21307,22043,22786,23516,24218,24877,25458,26017,26451,26770,27010,27118,27119,27035,26829,26497,26102,25601,25054,24461,23841,23193,22538,21861,21226,20628,20021,19464,18973,18501,18104,17741,17406,17137,16850,16615,16420,16205,16002,15818,15632,15481,15346,15239,15140,15066,14985,14949,14913,14918,14919,14938,14978,15001,15065,15100,15148,15201,15210,15207,15213,15216,15239,15259,15259,15261,15205,15150,15082,15017,14928,14829,14699,14545,14369,14169,13970,13752,13522,13257,13000,12710,12410,12138,11825,11552,11272,11019,10775,10534,10264,9979,9652,9357,9069,8837,8629,8449,8291,8150,8052,7986,7912,7860,7799,7704,7569,7378,7225,7083,6994,6898,6820,6749,6686,6645,6632,6626,6601,6589,6619,6609,6456,6152,5729,5112,21.8,21.9,22.5,1567620,0.0,12.2,11.9,5.0,472,-1.00,-1.00,57.6862,-18.927322,0.000540,,,,,163 +SATSLF0720,2024246,3.013187,4.26,0.0597,0.1052,0.0194,0.00,16087,649,1,695,699,708,699,722,726,727,716,727,729,729,744,777,893,1209,1921,3107,4493,5709,6643,7291,7780,8185,8617,9129,9741,10492,11356,12347,13467,14636,15792,16902,17845,18549,18995,19125,18954,18570,18048,17460,16890,16453,16074,15859,15783,15869,16096,16528,17096,17831,18743,19805,21024,22322,23771,25249,26725,28129,29365,30378,31117,31511,31502,31181,30538,29634,28570,27345,26161,25002,23938,22946,22089,21367,20753,20283,19884,19618,19453,19349,19373,19469,19674,19933,20277,20696,21218,21777,22400,23078,23712,24327,24905,25380,25741,25990,26040,25936,25649,25183,24551,23831,23025,22167,21290,20451,19675,18987,18333,17765,17297,16900,16568,16351,16174,16066,16026,16055,16131,16305,16529,16813,17177,17604,18089,18667,19265,19907,20578,21325,22056,22808,23498,24214,24862,25452,26008,26441,26754,27002,27107,27115,27029,26816,26491,26095,25587,25031,24453,23815,23173,22533,21852,21240,20617,20030,19469,18977,18485,18103,17730,17407,17118,16852,16615,16414,16203,16018,15826,15643,15469,15331,15220,15113,15050,14963,14925,14920,14912,14921,14953,14986,15025,15049,15078,15123,15177,15184,15220,15213,15232,15240,15272,15264,15267,15202,15141,15079,15023,14929,14838,14688,14549,14381,14196,13977,13761,13515,13256,12987,12699,12407,12120,11821,11541,11257,11019,10775,10546,10273,9982,9672,9364,9071,8825,8612,8443,8284,8138,8050,7962,7886,7835,7779,7691,7547,7379,7234,7098,6993,6885,6801,6743,6685,6657,6629,6615,6606,6608,6609,6613,6461,6154,5734,5119,21.8,21.9,22.5,1567621,0.4,12.2,12.0,5.0,472,-1.00,-1.00,57.1501,-18.699379,0.000517,,,,,100 +SATSLF0720,2024246,3.013438,4.16,0.0583,0.1053,0.0192,0.00,16080,649,1,701,716,716,711,716,724,717,727,726,736,736,753,780,893,1207,1936,3111,4485,5720,6646,7285,7767,8190,8616,9124,9754,10490,11360,12346,13459,14618,15776,16884,17832,18558,18993,19131,18938,18567,18029,17432,16897,16418,16077,15837,15780,15857,16097,16495,17082,17825,18738,19773,21003,22305,23751,25230,26697,28110,29344,30364,31088,31474,31479,31162,30514,29586,28554,27332,26144,24989,23930,22933,22077,21358,20747,20269,19880,19593,19447,19346,19358,19450,19637,19901,20238,20681,21195,21781,22405,23065,23701,24327,24906,25357,25735,25994,26051,25925,25646,25172,24535,23809,23018,22162,21273,20430,19665,18964,18318,17754,17289,16892,16566,16315,16161,16043,16010,16029,16125,16279,16517,16808,17178,17603,18084,18635,19250,19890,20566,21305,22046,22773,23483,24195,24850,25441,26009,26427,26745,26970,27082,27099,26997,26803,26464,26079,25594,25027,24446,23813,23144,22509,21837,21218,20615,20010,19459,18981,18508,18105,17733,17408,17137,16850,16613,16411,16206,16022,15816,15637,15472,15333,15214,15122,15053,14962,14928,14913,14928,14917,14955,14968,15013,15054,15081,15125,15185,15201,15202,15198,15209,15235,15268,15263,15244,15194,15131,15085,15000,14919,14818,14688,14541,14372,14185,13971,13756,13516,13260,12984,12694,12409,12117,11810,11536,11270,11011,10792,10553,10280,9979,9650,9348,9056,8822,8594,8446,8294,8157,8061,7987,7909,7849,7795,7712,7547,7366,7219,7107,6993,6895,6809,6756,6705,6657,6637,6626,6603,6604,6623,6621,6465,6148,5743,5114,21.8,21.9,22.6,1567622,0.5,12.3,12.0,5.0,475,-1.00,-1.00,57.4373,-18.803756,0.000526,,,,,139 +SATSLF0720,2024246,3.013694,4.28,0.0600,0.1053,0.0201,0.00,16077,649,1,709,719,714,713,723,721,721,720,743,747,749,746,768,885,1202,1937,3106,4474,5724,6649,7303,7760,8187,8630,9131,9756,10493,11363,12352,13466,14637,15792,16889,17849,18552,18981,19105,18933,18572,18039,17440,16885,16427,16073,15844,15775,15857,16093,16502,17085,17833,18745,19794,21013,22312,23761,25240,26702,28130,29377,30369,31109,31505,31494,31186,30545,29607,28555,27331,26162,25006,23922,22930,22085,21337,20734,20237,19872,19573,19430,19346,19362,19456,19658,19925,20261,20689,21202,21755,22402,23050,23696,24304,24882,25365,25729,25984,26024,25902,25639,25167,24533,23794,22998,22144,21272,20432,19667,18970,18325,17769,17305,16893,16571,16334,16144,16050,16001,16013,16123,16281,16497,16798,17169,17589,18073,18645,19258,19886,20574,21281,22024,22782,23490,24195,24841,25435,25995,26418,26731,26983,27078,27075,26983,26775,26454,26074,25600,25029,24436,23781,23161,22494,21840,21193,20583,20002,19451,18962,18497,18099,17725,17389,17094,16838,16597,16395,16197,16007,15816,15626,15477,15325,15213,15119,15045,14963,14926,14898,14894,14900,14943,14966,14998,15049,15085,15121,15181,15179,15187,15199,15201,15224,15246,15264,15252,15189,15133,15053,14995,14906,14829,14677,14530,14354,14163,13950,13745,13493,13242,12982,12699,12411,12115,11811,11543,11269,11021,10782,10553,10279,9972,9640,9339,9045,8808,8593,8445,8282,8151,8047,7982,7909,7850,7799,7701,7557,7390,7222,7105,6989,6895,6808,6739,6674,6642,6623,6623,6604,6583,6610,6602,6433,6148,5728,5119,21.8,21.9,22.6,1567623,0.3,12.2,12.0,5.0,465,-1.00,-1.00,57.3469,-18.776836,0.000541,,,,,77 +SATSLF0720,2024246,3.013950,4.15,0.0582,0.1060,0.0199,0.00,16057,649,1,699,711,721,714,717,711,707,705,712,714,735,742,775,891,1226,1949,3108,4481,5710,6641,7269,7752,8178,8621,9129,9742,10487,11349,12337,13452,14610,15782,16869,17821,18521,18985,19113,18926,18561,18017,17432,16873,16409,16051,15824,15747,15849,16081,16491,17061,17803,18715,19765,20995,22296,23738,25201,26678,28091,29332,30333,31070,31447,31463,31136,30485,29566,28523,27290,26112,24961,23898,22906,22048,21322,20722,20235,19838,19568,19403,19315,19326,19429,19606,19877,20227,20649,21175,21738,22346,23028,23684,24277,24849,25322,25681,25950,26003,25884,25623,25142,24514,23785,22987,22128,21257,20416,19642,18952,18305,17747,17286,16865,16552,16309,16144,16034,15979,16007,16097,16246,16470,16768,17153,17569,18057,18609,19236,19853,20544,21268,21989,22743,23448,24137,24811,25394,25952,26387,26720,26946,27058,27067,26981,26768,26445,26035,25556,24974,24401,23746,23124,22473,21794,21169,20561,19973,19415,18947,18474,18073,17705,17377,17089,16813,16573,16369,16158,15969,15775,15602,15445,15301,15186,15083,15015,14946,14912,14896,14878,14888,14912,14942,14982,15018,15038,15099,15149,15159,15171,15177,15174,15207,15223,15229,15229,15179,15122,15061,14986,14897,14805,14654,14515,14341,14151,13944,13749,13516,13261,12964,12679,12386,12102,11801,11522,11250,10995,10766,10520,10259,9965,9628,9322,9042,8795,8599,8418,8275,8154,8053,7965,7899,7842,7764,7687,7543,7370,7220,7094,6986,6870,6797,6722,6662,6626,6616,6612,6586,6598,6603,6609,6439,6155,5721,5098,21.8,22.0,22.6,1567624,0.2,12.3,12.0,5.0,463,-1.00,-1.00,57.4475,-18.791593,0.000593,,,,,254 +SATSLF0720,2024246,3.014200,4.24,0.0594,0.1060,0.0203,0.00,16056,649,1,711,701,703,698,715,705,712,718,712,727,717,733,774,877,1219,1956,3105,4473,5709,6629,7269,7736,8156,8601,9110,9735,10471,11346,12333,13449,14610,15769,16865,17804,18503,18947,19076,18900,18525,18010,17405,16846,16407,16037,15810,15741,15820,16072,16466,17044,17793,18690,19757,20972,22293,23726,25174,26667,28072,29326,30312,31053,31447,31437,31123,30481,29562,28509,27272,26101,24948,23888,22884,22035,21292,20695,20218,19831,19568,19406,19314,19333,19428,19611,19877,20218,20658,21165,21742,22356,23009,23675,24280,24842,25323,25704,25961,26005,25880,25613,25133,24500,23761,22986,22116,21246,20421,19657,18949,18304,17734,17280,16872,16548,16298,16131,16024,15991,16016,16106,16277,16483,16787,17147,17565,18052,18619,19232,19869,20545,21271,22010,22769,23469,24165,24822,25390,25974,26385,26714,26951,27058,27073,26981,26773,26442,26053,25544,24997,24401,23773,23140,22485,21816,21185,20584,19990,19431,18941,18464,18056,17703,17384,17085,16807,16581,16390,16177,15988,15799,15625,15436,15312,15188,15111,15022,14957,14912,14892,14893,14893,14936,14954,14999,15030,15060,15106,15147,15163,15173,15201,15207,15227,15239,15243,15232,15184,15124,15046,14999,14907,14817,14667,14535,14350,14167,13960,13748,13498,13245,12981,12686,12385,12103,11805,11523,11227,10996,10754,10525,10257,9968,9637,9341,9058,8806,8593,8414,8275,8134,8040,7962,7897,7841,7777,7682,7553,7372,7223,7093,6971,6862,6773,6733,6670,6643,6611,6615,6587,6589,6605,6596,6438,6151,5721,5096,21.8,22.0,22.6,1567625,0.3,12.2,12.0,5.0,474,-1.00,-1.00,57.6106,-18.851339,0.000598,,,,,167 +SATSLF0720,2024246,3.014456,4.10,0.0575,0.1062,0.0198,0.00,16054,649,1,710,713,709,717,723,728,714,727,730,738,745,753,786,875,1207,1937,3094,4472,5697,6624,7262,7750,8165,8602,9120,9732,10467,11335,12332,13429,14597,15761,16857,17802,18512,18951,19072,18898,18521,17987,17405,16847,16382,16024,15799,15725,15810,16064,16473,17050,17778,18683,19760,20966,22276,23702,25178,26648,28064,29300,30292,31046,31437,31426,31115,30473,29567,28504,27290,26119,24941,23877,22885,22021,21307,20685,20212,19833,19555,19409,19308,19323,19437,19616,19893,20225,20646,21166,21745,22349,23003,23650,24276,24843,25312,25684,25941,25987,25861,25597,25111,24482,23778,23000,22100,21251,20425,19633,18938,18299,17736,17253,16859,16546,16289,16131,16032,15989,16001,16111,16265,16488,16773,17142,17584,18065,18630,19245,19869,20546,21271,22007,22744,23451,24149,24793,25388,25957,26391,26733,26954,27060,27054,26971,26737,26427,26033,25533,24984,24397,23773,23130,22480,21821,21180,20581,19989,19421,18937,18474,18053,17705,17385,17093,16833,16586,16386,16182,15996,15803,15613,15450,15317,15201,15098,15012,14959,14914,14885,14880,14902,14912,14933,14974,15019,15052,15101,15170,15177,15193,15190,15201,15225,15225,15241,15221,15168,15129,15063,14989,14909,14805,14673,14514,14333,14150,13939,13741,13488,13236,12978,12695,12405,12114,11821,11521,11245,11002,10765,10533,10263,9970,9634,9329,9050,8803,8602,8442,8280,8137,8039,7959,7901,7847,7796,7697,7539,7369,7242,7093,6981,6885,6797,6734,6681,6650,6634,6621,6603,6585,6607,6588,6440,6141,5717,5105,21.8,22.1,22.6,1567626,0.0,12.2,12.0,5.0,468,-1.00,-1.00,58.3373,-19.151480,0.000539,,,,,191 +SATSDF0720,2024246,3.259138,0.00,0.0000,0.0000,0.0000,0.00,649,0,1,637,617,631,626,634,626,643,640,634,626,633,616,611,617,610,619,645,645,641,644,643,637,661,649,658,658,660,648,651,671,661,652,657,658,658,650,649,648,647,642,654,642,657,662,659,661,662,658,662,654,652,667,658,663,652,663,641,647,650,653,658,654,667,661,659,657,661,649,651,649,633,643,643,654,661,664,653,659,665,657,675,676,666,661,659,657,647,651,642,653,646,656,665,658,650,671,640,655,656,634,647,656,648,642,647,642,647,649,663,660,660,653,642,643,647,645,637,641,630,643,651,649,635,641,648,652,649,645,642,648,646,651,657,651,655,652,646,643,649,645,642,638,650,649,637,651,642,652,649,646,649,633,644,633,643,636,651,655,647,650,664,666,657,659,646,660,650,657,659,655,650,653,642,634,635,642,644,650,656,659,663,645,649,647,638,644,639,648,654,659,673,666,663,656,658,649,645,653,641,635,635,646,642,657,654,657,658,649,645,642,654,634,643,651,650,648,649,654,657,651,666,652,660,645,647,656,641,647,653,644,663,646,642,655,640,656,659,653,652,658,653,664,659,656,649,634,631,631,631,650,647,663,674,661,659,484,0.0,0.0,0.0,1567625,0.2,12.8,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,250 +SATSLF0720,2024246,3.259693,4.20,0.0589,0.1018,0.0169,0.00,16188,649,1,693,699,711,718,720,716,723,731,722,693,705,714,759,866,1195,1957,3127,4510,5749,6674,7325,7782,8204,8665,9184,9805,10568,11446,12438,13566,14757,15918,17018,17975,18701,19137,19257,19083,18702,18176,17582,17037,16541,16206,15954,15880,15964,16214,16635,17218,17976,18885,19958,21181,22514,23950,25441,26932,28331,29606,30605,31361,31766,31765,31448,30789,29872,28800,27557,26363,25196,24121,23120,22256,21534,20914,20432,20049,19749,19592,19497,19514,19616,19821,20069,20418,20859,21390,21948,22550,23223,23875,24494,25074,25546,25909,26169,26221,26108,25845,25345,24707,23978,23187,22298,21443,20580,19802,19107,18449,17882,17412,16995,16676,16428,16269,16170,16128,16149,16241,16389,16604,16915,17274,17691,18190,18770,19387,20013,20706,21453,22201,22952,23658,24359,25021,25605,26178,26607,26926,27189,27298,27293,27208,26986,26668,26262,25773,25201,24618,23973,23306,22667,21993,21357,20742,20138,19585,19106,18603,18215,17838,17520,17235,16962,16726,16509,16311,16117,15899,15714,15559,15413,15299,15205,15117,15033,14989,14994,14993,15010,15026,15060,15094,15134,15156,15202,15257,15273,15265,15293,15302,15317,15345,15342,15333,15274,15207,15159,15077,14999,14898,14759,14618,14433,14246,14037,13815,13594,13330,13041,12775,12460,12175,11879,11597,11321,11069,10808,10595,10322,10011,9695,9381,9101,8861,8656,8467,8328,8181,8097,8013,7947,7874,7816,7718,7570,7407,7248,7121,7008,6923,6837,6771,6729,6691,6665,6652,6639,6634,6633,6629,6469,6155,5741,5114,21.7,21.7,22.1,1567626,0.3,12.3,11.9,5.0,594,-1.00,-1.00,57.4845,-18.985295,0.000603,,,,,250 +SATSLF0720,2024246,3.259874,4.11,0.0576,0.1012,0.0171,0.00,16193,649,1,716,710,700,706,721,696,707,710,731,726,731,736,782,888,1226,1957,3117,4503,5754,6683,7333,7816,8234,8672,9207,9840,10598,11470,12466,13585,14769,15923,17035,17992,18724,19168,19299,19104,18736,18193,17609,17041,16584,16211,15990,15907,16000,16242,16642,17226,17970,18885,19968,21188,22528,23968,25457,26953,28372,29626,30628,31368,31767,31762,31441,30800,29877,28809,27575,26394,25222,24155,23137,22291,21541,20964,20444,20055,19773,19616,19521,19523,19630,19825,20081,20436,20866,21378,21958,22573,23244,23892,24511,25085,25553,25912,26192,26241,26107,25837,25345,24710,23991,23195,22311,21445,20581,19808,19107,18433,17864,17403,16994,16673,16439,16242,16153,16119,16142,16220,16395,16630,16920,17283,17722,18201,18773,19378,20029,20714,21446,22196,22935,23658,24371,25005,25602,26169,26595,26912,27168,27280,27275,27211,26996,26661,26251,25770,25188,24595,23957,23306,22651,21984,21341,20733,20134,19572,19084,18612,18208,17825,17499,17219,16953,16704,16505,16299,16117,15917,15716,15558,15408,15303,15201,15124,15054,15024,14993,14999,14998,15014,15042,15085,15122,15159,15207,15274,15281,15291,15286,15283,15302,15329,15326,15322,15275,15208,15153,15078,15008,14903,14762,14616,14430,14237,14030,13823,13587,13319,13055,12768,12467,12192,11878,11595,11310,11053,10819,10586,10315,10028,9700,9389,9110,8859,8647,8480,8320,8184,8087,8002,7940,7881,7821,7725,7584,7419,7276,7142,7011,6923,6835,6779,6717,6687,6658,6635,6618,6620,6643,6641,6492,6187,5760,5141,21.7,21.7,22.2,1567627,0.3,12.2,11.9,5.0,483,-1.00,-1.00,57.2593,-18.899122,0.000536,,,,,152 +SATSLF0720,2024246,3.260132,4.00,0.0561,0.1021,0.0175,0.00,16171,649,1,701,707,711,706,715,718,720,717,731,723,727,737,770,884,1219,1953,3112,4499,5753,6692,7334,7805,8246,8682,9199,9829,10568,11440,12420,13551,14732,15891,17009,17990,18705,19149,19271,19091,18706,18177,17589,17009,16551,16186,15963,15897,15981,16217,16627,17201,17950,18857,19926,21152,22469,23918,25399,26903,28313,29580,30573,31339,31721,31735,31401,30752,29826,28769,27526,26357,25181,24097,23101,22237,21502,20898,20407,20023,19741,19587,19484,19492,19585,19778,20046,20394,20825,21353,21911,22547,23205,23856,24454,25045,25514,25857,26140,26180,26067,25787,25294,24661,23961,23133,22291,21393,20545,19776,19071,18411,17853,17383,16972,16657,16414,16241,16129,16082,16119,16217,16373,16600,16901,17269,17689,18184,18749,19355,20001,20690,21418,22157,22898,23618,24339,24983,25593,26153,26583,26906,27152,27249,27254,27179,26945,26640,26208,25726,25158,24558,23924,23274,22619,21949,21309,20712,20123,19574,19069,18603,18184,17821,17481,17186,16920,16681,16480,16284,16090,15902,15720,15537,15398,15285,15177,15110,15053,15008,14987,14985,14992,15003,15026,15054,15107,15143,15185,15239,15258,15266,15273,15284,15302,15313,15333,15320,15270,15209,15140,15061,14986,14894,14729,14587,14423,14232,14043,13808,13568,13309,13037,12752,12466,12163,11869,11576,11296,11056,10804,10576,10313,10005,9694,9385,9092,8853,8630,8465,8314,8170,8071,7987,7935,7891,7819,7740,7584,7406,7255,7129,7003,6911,6829,6770,6715,6677,6661,6642,6631,6617,6637,6632,6480,6167,5753,5114,21.7,21.7,22.2,1567628,0.1,12.2,11.9,5.0,480,-1.00,-1.00,57.6243,-19.021788,0.000506,,,,,151 +SATSLF0720,2024246,3.260385,4.30,0.0603,0.1027,0.0183,0.00,16162,649,1,695,699,697,700,698,711,709,711,730,722,735,730,771,878,1199,1943,3109,4505,5749,6684,7335,7805,8226,8675,9189,9804,10550,11427,12429,13539,14732,15885,16995,17949,18699,19114,19239,19070,18685,18154,17565,16994,16538,16161,15954,15882,15957,16202,16608,17207,17956,18873,19938,21155,22474,23915,25395,26877,28293,29556,30564,31303,31706,31710,31374,30739,29800,28745,27514,26320,25152,24081,23089,22232,21506,20896,20404,20029,19729,19567,19459,19479,19574,19780,20046,20397,20821,21346,21921,22532,23198,23851,24466,25026,25523,25882,26144,26202,26071,25795,25307,24660,23936,23136,22268,21402,20563,19780,19083,18413,17851,17384,16982,16650,16398,16237,16134,16093,16101,16200,16360,16590,16889,17257,17682,18170,18729,19341,19990,20670,21395,22133,22899,23613,24313,24981,25581,26149,26570,26893,27129,27238,27264,27156,26947,26619,26217,25716,25144,24554,23918,23280,22618,21944,21301,20701,20113,19537,19047,18590,18178,17821,17469,17187,16923,16686,16461,16275,16073,15871,15705,15513,15387,15259,15175,15098,15019,14991,14971,14976,14982,14993,15023,15065,15097,15144,15184,15237,15254,15261,15277,15274,15293,15312,15302,15295,15241,15172,15114,15055,14969,14876,14759,14601,14421,14215,14015,13792,13554,13279,13035,12753,12441,12157,11846,11567,11296,11052,10810,10560,10299,9997,9687,9374,9099,8845,8616,8467,8305,8181,8066,8000,7934,7867,7811,7720,7577,7401,7240,7123,6997,6898,6818,6751,6701,6669,6660,6645,6633,6626,6641,6625,6478,6169,5735,5124,21.8,21.7,22.2,1567629,0.3,12.2,12.0,5.0,477,-1.00,-1.00,56.7520,-18.647712,0.000525,,,,,64 +SATSLF0720,2024246,3.260635,4.14,0.0580,0.1028,0.0183,0.00,16146,649,1,688,686,687,693,706,703,713,717,720,720,724,743,765,887,1205,1964,3121,4498,5739,6669,7308,7786,8209,8670,9172,9803,10562,11425,12417,13533,14712,15869,16983,17939,18667,19101,19234,19047,18685,18145,17547,16987,16531,16152,15922,15848,15936,16188,16597,17180,17913,18836,19906,21118,22457,23892,25372,26870,28288,29539,30528,31294,31685,31690,31369,30704,29778,28716,27477,26278,25136,24049,23067,22203,21468,20857,20382,19986,19709,19546,19455,19477,19582,19755,20013,20359,20807,21316,21885,22514,23186,23824,24446,25012,25494,25856,26128,26177,26055,25773,25273,24645,23912,23125,22253,21377,20528,19751,19048,18398,17847,17372,16966,16645,16391,16228,16117,16069,16093,16186,16347,16577,16873,17235,17668,18152,18721,19331,19973,20650,21387,22129,22871,23574,24286,24946,25549,26114,26543,26874,27117,27216,27213,27126,26914,26587,26181,25682,25113,24525,23896,23242,22592,21929,21315,20685,20084,19526,19040,18568,18156,17783,17462,17162,16901,16656,16458,16257,16059,15867,15687,15505,15371,15250,15133,15083,15005,14973,14949,14943,14948,14979,15012,15060,15104,15118,15161,15229,15229,15239,15253,15254,15285,15299,15289,15275,15223,15153,15115,15049,14950,14868,14724,14570,14386,14205,13985,13789,13547,13286,13012,12734,12434,12149,11849,11565,11288,11042,10804,10553,10293,9989,9676,9360,9077,8840,8618,8447,8297,8154,8057,7988,7913,7858,7793,7698,7560,7398,7239,7111,7000,6901,6813,6753,6689,6658,6629,6621,6615,6613,6618,6615,6465,6157,5730,5117,21.8,21.8,22.3,1567630,0.7,12.2,12.0,5.0,479,-1.00,-1.00,57.4012,-18.900686,0.000648,,,,,207 +SATSLF0720,2024246,3.260893,4.25,0.0595,0.1038,0.0196,0.00,16111,649,1,699,711,701,705,713,712,726,721,729,741,726,727,767,872,1217,1960,3129,4501,5752,6670,7317,7780,8205,8644,9178,9798,10547,11418,12425,13523,14709,15872,16978,17931,18657,19081,19204,19029,18662,18106,17539,16985,16512,16146,15917,15845,15924,16181,16588,17175,17914,18806,19876,21094,22421,23864,25345,26832,28247,29494,30491,31237,31641,31639,31318,30678,29741,28676,27443,26253,25091,24011,23006,22168,21443,20827,20353,19959,19684,19518,19411,19432,19520,19709,19973,20317,20754,21274,21837,22459,23117,23771,24382,24965,25424,25784,26038,26098,25972,25696,25212,24573,23834,23056,22193,21309,20475,19700,19001,18351,17789,17322,16905,16594,16332,16168,16071,16024,16037,16128,16288,16523,16821,17169,17597,18080,18656,19271,19921,20598,21322,22058,22794,23505,24206,24859,25449,26018,26443,26771,27024,27120,27137,27034,26836,26497,26104,25613,25067,24462,23829,23184,22528,21858,21211,20611,20028,19469,18983,18528,18117,17740,17427,17125,16848,16614,16407,16199,16018,15828,15642,15472,15331,15222,15113,15047,14982,14949,14939,14922,14925,14930,14961,14983,15041,15061,15130,15189,15178,15196,15218,15205,15223,15243,15244,15238,15189,15129,15072,15025,14922,14831,14694,14548,14365,14177,13969,13746,13511,13252,12989,12704,12420,12128,11814,11543,11266,11022,10770,10536,10263,9984,9662,9349,9054,8823,8624,8438,8283,8151,8042,7959,7893,7850,7773,7698,7549,7381,7226,7097,6983,6897,6806,6748,6689,6663,6637,6618,6610,6592,6609,6602,6445,6143,5726,5110,21.8,21.8,22.3,1567631,0.6,12.2,12.0,5.0,475,-1.00,-1.00,56.8083,-18.629747,0.000535,,,,,122 +SATSLF0720,2024246,3.261146,4.14,0.0580,0.1049,0.0208,0.00,16077,649,1,711,710,721,728,731,717,723,724,722,715,723,733,787,882,1217,1949,3110,4499,5750,6677,7321,7798,8212,8662,9173,9795,10526,11403,12393,13497,14673,15846,16950,17911,18624,19050,19175,18999,18629,18085,17501,16932,16475,16112,15897,15813,15883,16139,16541,17125,17873,18774,19841,21041,22362,23817,25277,26776,28181,29433,30428,31159,31563,31556,31240,30577,29667,28605,27387,26201,25037,23960,22970,22097,21367,20759,20288,19885,19614,19466,19361,19367,19479,19658,19912,20273,20694,21209,21786,22381,23040,23698,24308,24883,25357,25728,25972,26031,25893,25621,25148,24497,23804,23025,22149,21282,20434,19656,18948,18298,17751,17285,16875,16572,16302,16130,16024,15982,16011,16094,16266,16493,16788,17149,17581,18053,18626,19225,19876,20529,21256,22001,22755,23463,24165,24821,25410,25966,26397,26708,26937,27042,27065,26969,26760,26429,26048,25568,25001,24414,23769,23140,22472,21821,21187,20592,19985,19447,18953,18476,18071,17693,17392,17098,16813,16592,16383,16177,15996,15793,15626,15452,15304,15191,15089,15005,14951,14900,14881,14886,14891,14921,14946,14967,15025,15054,15098,15152,15154,15173,15182,15181,15207,15213,15209,15207,15175,15108,15031,14977,14900,14801,14654,14505,14341,14148,13934,13717,13491,13234,12976,12682,12379,12103,11793,11518,11248,10977,10743,10523,10253,9962,9637,9324,9047,8800,8605,8429,8278,8138,8037,7967,7881,7826,7785,7677,7541,7359,7222,7093,6967,6879,6803,6722,6675,6639,6614,6602,6585,6586,6601,6593,6446,6142,5725,5100,21.8,21.8,22.4,1567632,0.2,12.2,12.0,5.0,477,-1.00,-1.00,57.1044,-18.708297,0.000541,,,,,54 +SATSLF0720,2024246,3.261402,4.20,0.0588,0.1052,0.0212,0.00,16070,649,1,701,702,709,713,713,709,722,721,733,725,739,739,752,871,1211,1941,3117,4484,5729,6657,7301,7765,8182,8639,9141,9779,10512,11399,12375,13495,14669,15849,16933,17880,18589,19022,19173,18989,18612,18089,17489,16912,16475,16090,15872,15797,15885,16118,16535,17117,17860,18770,19835,21057,22354,23808,25272,26775,28158,29423,30406,31139,31547,31553,31219,30566,29658,28603,27362,26178,25022,23965,22957,22092,21367,20753,20263,19882,19601,19437,19348,19364,19472,19658,19909,20267,20692,21216,21769,22390,23049,23701,24305,24874,25348,25707,25971,26007,25899,25613,25138,24510,23796,23005,22141,21266,20420,19658,18953,18291,17747,17262,16872,16541,16297,16122,16039,15970,15995,16085,16252,16468,16769,17137,17569,18050,18635,19229,19876,20553,21262,21999,22738,23438,24147,24790,25393,25947,26378,26698,26951,27034,27070,26969,26773,26439,26036,25559,24981,24395,23748,23131,22477,21813,21186,20573,19989,19429,18941,18465,18071,17701,17369,17080,16807,16571,16368,16175,15977,15787,15604,15443,15297,15195,15092,15013,14937,14903,14887,14888,14889,14912,14925,14973,15013,15041,15104,15133,15157,15163,15189,15181,15204,15229,15213,15205,15149,15094,15017,14947,14882,14797,14654,14506,14348,14165,13941,13719,13483,13217,12965,12674,12386,12101,11805,11518,11242,10989,10755,10521,10251,9949,9634,9316,9038,8797,8590,8423,8269,8125,8040,7946,7883,7840,7777,7685,7539,7369,7189,7079,6963,6869,6796,6725,6657,6629,6618,6605,6594,6578,6604,6600,6439,6141,5720,5097,21.8,21.8,22.4,1567633,0.6,12.3,11.9,5.0,470,-1.00,-1.00,57.0168,-18.663641,0.000605,,,,,179 +SATSLF0720,2024246,3.261656,4.25,0.0595,0.1037,0.0194,0.00,16094,649,1,687,683,703,713,708,704,714,726,725,730,728,742,776,888,1226,1956,3114,4493,5724,6654,7285,7766,8192,8626,9159,9789,10517,11395,12373,13494,14657,15818,16914,17876,18595,19029,19158,18971,18615,18077,17481,16921,16460,16093,15872,15808,15882,16142,16533,17127,17873,18776,19840,21065,22370,23816,25296,26772,28173,29413,30429,31168,31571,31568,31246,30597,29685,28626,27383,26210,25053,23985,22970,22133,21384,20787,20293,19921,19621,19472,19415,19402,19507,19697,19950,20299,20733,21248,21802,22430,23086,23740,24341,24930,25402,25755,26023,26087,25962,25682,25209,24565,23850,23046,22169,21289,20452,19684,18983,18327,17764,17307,16904,16592,16337,16169,16065,16006,16039,16121,16293,16525,16810,17178,17600,18090,18667,19269,19905,20584,21309,22043,22800,23513,24217,24849,25445,26010,26440,26749,27013,27104,27129,27031,26821,26494,26082,25604,25041,24453,23818,23162,22510,21845,21221,20612,20025,19467,18963,18486,18091,17728,17408,17117,16848,16612,16402,16208,16016,15816,15639,15472,15324,15224,15127,15042,14976,14945,14922,14913,14919,14954,14962,14995,15041,15060,15122,15170,15203,15214,15218,15227,15233,15258,15248,15246,15202,15136,15076,14992,14916,14828,14661,14512,14347,14160,13955,13752,13504,13255,12982,12696,12404,12117,11818,11527,11247,11013,10772,10546,10273,9966,9640,9325,9032,8801,8589,8435,8282,8146,8053,7983,7913,7859,7778,7689,7549,7360,7214,7091,6980,6888,6807,6729,6686,6652,6632,6617,6603,6603,6609,6602,6450,6144,5709,5100,21.8,21.8,22.4,1567634,0.6,12.2,12.0,5.0,476,-1.00,-1.00,57.2801,-18.787337,0.000550,,,,,197 +SATSLF0720,2024246,3.261908,4.24,0.0594,0.1046,0.0192,0.00,16094,649,1,698,692,709,701,701,713,714,728,709,719,741,741,767,891,1198,1945,3093,4475,5726,6664,7307,7766,8192,8629,9144,9763,10505,11380,12371,13480,14648,15821,16929,17881,18592,19031,19157,18965,18595,18064,17482,16916,16459,16097,15869,15804,15888,16135,16549,17125,17852,18764,19833,21045,22368,23784,25259,26747,28169,29410,30410,31157,31556,31562,31213,30577,29655,28606,27378,26203,25042,23975,22977,22124,21393,20761,20288,19901,19606,19460,19377,19389,19488,19681,19953,20292,20731,21236,21796,22414,23092,23737,24343,24935,25411,25772,26022,26068,25943,25672,25188,24563,23820,23040,22166,21304,20453,19682,18979,18336,17780,17320,16905,16597,16331,16161,16055,16017,16034,16132,16295,16510,16808,17171,17600,18089,18663,19257,19897,20582,21305,22049,22784,23498,24208,24875,25460,26035,26453,26770,27017,27108,27129,27022,26804,26499,26104,25614,25061,24477,23826,23172,22519,21857,21213,20616,20010,19469,18966,18496,18097,17749,17409,17108,16855,16608,16403,16192,16018,15825,15653,15488,15332,15222,15122,15042,14978,14941,14916,14901,14914,14956,14972,15014,15048,15069,15128,15181,15191,15208,15211,15213,15250,15258,15265,15241,15190,15137,15085,15012,14919,14841,14701,14544,14374,14189,13971,13761,13502,13246,12973,12692,12397,12131,11829,11545,11269,11022,10776,10549,10273,9964,9645,9334,9057,8815,8600,8447,8297,8161,8065,7978,7909,7857,7785,7694,7538,7366,7219,7081,6975,6880,6813,6745,6694,6654,6639,6629,6613,6607,6617,6601,6457,6149,5731,5109,21.8,21.8,22.4,1567635,0.0,12.3,12.0,5.0,468,-1.00,-1.00,57.1415,-18.718876,0.000489,,,,,83 +SATSLF0720,2024246,3.262164,4.22,0.0592,0.1045,0.0193,0.00,16098,649,1,712,710,714,720,717,721,721,731,725,728,725,726,763,888,1212,1949,3114,4493,5728,6637,7283,7753,8178,8638,9134,9764,10505,11370,12369,13474,14634,15794,16901,17853,18583,19016,19143,18967,18601,18057,17481,16917,16443,16103,15873,15808,15866,16112,16520,17100,17837,18769,19806,21047,22346,23801,25284,26753,28172,29412,30401,31154,31529,31549,31202,30561,29649,28590,27349,26194,25037,23969,22970,22122,21397,20787,20295,19902,19625,19470,19379,19390,19489,19681,19949,20288,20723,21243,21812,22437,23109,23741,24378,24938,25402,25768,26024,26061,25951,25673,25176,24540,23833,23040,22173,21298,20464,19699,18999,18345,17777,17323,16915,16594,16345,16173,16081,16020,16042,16135,16310,16536,16827,17196,17621,18114,18676,19282,19905,20596,21324,22077,22812,23527,24212,24866,25456,26036,26457,26780,27019,27124,27129,27026,26816,26488,26102,25614,25042,24467,23842,23188,22520,21872,21229,20618,20027,19474,18981,18505,18104,17731,17415,17134,16861,16612,16443,16217,16040,15844,15649,15486,15349,15231,15134,15053,14980,14938,14935,14941,14930,14961,14971,15012,15048,15080,15128,15179,15195,15212,15237,15238,15252,15264,15272,15249,15189,15139,15081,15027,14933,14838,14706,14555,14384,14188,13979,13769,13521,13273,13010,12717,12414,12121,11828,11542,11270,11028,10793,10565,10269,10003,9673,9365,9081,8841,8609,8443,8303,8149,8050,7975,7903,7853,7796,7707,7563,7383,7235,7111,6987,6907,6813,6747,6690,6663,6642,6617,6606,6589,6593,6611,6461,6144,5729,5125,21.8,21.8,22.4,1567636,0.3,12.2,12.0,5.0,478,-1.00,-1.00,57.2349,-18.750998,0.000609,,,,,160 +SATSLF0720,2024246,3.262418,4.27,0.0598,0.1048,0.0192,0.00,16090,649,1,718,702,717,702,722,718,725,721,737,737,731,749,768,887,1203,1949,3105,4484,5721,6644,7293,7766,8191,8627,9142,9754,10491,11368,12357,13464,14642,15797,16896,17836,18566,18997,19131,18949,18579,18040,17458,16909,16440,16068,15860,15780,15864,16117,16522,17098,17844,18760,19810,21036,22345,23777,25249,26728,28138,29385,30386,31130,31537,31525,31211,30552,29649,28589,27357,26171,25018,23928,22953,22093,21352,20748,20279,19883,19611,19466,19365,19381,19465,19657,19933,20274,20707,21232,21786,22401,23065,23713,24325,24913,25386,25760,26017,26053,25931,25660,25193,24545,23810,23019,22157,21281,20446,19690,18978,18329,17781,17305,16901,16586,16332,16154,16055,16004,16032,16132,16302,16525,16820,17173,17607,18094,18657,19261,19900,20583,21313,22054,22808,23518,24210,24869,25449,26017,26429,26761,26999,27106,27120,27033,26808,26487,26109,25623,25057,24452,23813,23178,22532,21867,21218,20617,20011,19451,18970,18485,18107,17740,17416,17134,16865,16617,16428,16210,16025,15829,15649,15482,15341,15202,15115,15043,14958,14933,14924,14924,14937,14953,14978,15023,15046,15090,15130,15180,15201,15214,15218,15232,15242,15259,15249,15245,15192,15142,15084,15006,14920,14839,14706,14537,14391,14173,13977,13749,13517,13256,12998,12712,12414,12130,11828,11533,11266,11019,10781,10553,10280,9982,9665,9363,9079,8832,8601,8443,8280,8149,8039,7971,7887,7844,7783,7709,7572,7390,7229,7105,6990,6895,6821,6753,6695,6658,6657,6637,6599,6601,6621,6613,6446,6147,5738,5115,21.8,21.9,22.4,1567637,0.0,12.2,12.0,5.0,467,-1.00,-1.00,57.3479,-18.791789,0.000528,,,,,151 +SATSLF0720,2024246,3.262674,4.08,0.0572,0.1057,0.0197,0.00,16079,649,1,704,703,706,710,702,703,721,706,701,727,730,730,768,894,1217,1953,3100,4495,5717,6640,7285,7761,8162,8629,9130,9748,10496,11357,12350,13460,14628,15792,16890,17826,18551,18993,19117,18926,18565,18032,17442,16891,16437,16066,15845,15765,15843,16087,16488,17065,17813,18720,19784,21010,22330,23776,25230,26710,28123,29360,30377,31095,31494,31500,31176,30537,29617,28561,27344,26161,25003,23946,22937,22085,21355,20746,20253,19877,19589,19428,19329,19355,19456,19645,19917,20262,20696,21209,21790,22402,23072,23704,24318,24880,25357,25729,25977,26042,25924,25645,25178,24538,23820,23029,22164,21281,20435,19651,18967,18305,17762,17297,16887,16578,16328,16146,16045,16006,16040,16125,16277,16505,16813,17175,17602,18078,18643,19256,19906,20585,21307,22038,22775,23477,24194,24846,25435,25998,26423,26747,27002,27117,27101,27010,26803,26484,26069,25600,25024,24441,23788,23156,22506,21844,21201,20603,20011,19449,18973,18496,18099,17708,17404,17121,16849,16606,16407,16206,16018,15834,15653,15469,15321,15221,15117,15042,14968,14922,14912,14910,14920,14938,14979,14995,15049,15069,15106,15177,15177,15181,15204,15211,15237,15256,15261,15242,15200,15125,15067,14989,14907,14807,14670,14531,14386,14184,13988,13765,13525,13252,12985,12694,12404,12119,11793,11520,11245,11011,10778,10538,10280,9975,9661,9349,9057,8811,8601,8444,8273,8153,8053,7974,7904,7861,7801,7705,7576,7377,7223,7096,6969,6867,6794,6736,6676,6641,6646,6616,6606,6600,6626,6610,6473,6161,5733,5113,21.8,21.9,22.5,1567637,0.1,12.3,11.9,5.0,473,-1.00,-1.00,58.1595,-19.114164,0.000601,,,,,223 +SATSLF0720,2024246,3.262929,4.08,0.0572,0.1060,0.0200,0.00,16058,649,1,709,701,702,711,713,709,714,708,724,726,728,740,770,886,1209,1946,3098,4467,5702,6626,7261,7744,8157,8613,9125,9736,10475,11343,12334,13435,14606,15758,16865,17813,18536,18964,19095,18923,18546,18012,17428,16873,16413,16041,15817,15747,15831,16073,16489,17052,17797,18693,19746,20966,22280,23722,25199,26673,28093,29321,30317,31052,31467,31466,31125,30483,29563,28517,27291,26120,24972,23881,22892,22043,21315,20713,20246,19848,19574,19417,19317,19330,19438,19618,19867,20224,20645,21177,21742,22361,23028,23676,24283,24866,25334,25689,25966,25997,25892,25610,25121,24487,23776,22999,22122,21253,20419,19650,18938,18305,17741,17257,16851,16547,16297,16132,16039,15978,16016,16098,16256,16483,16780,17163,17570,18066,18640,19234,19868,20547,21273,22014,22763,23469,24164,24814,25418,25957,26384,26704,26962,27062,27066,26967,26763,26448,26044,25554,25009,24413,23766,23137,22462,21811,21190,20589,19992,19445,18932,18465,18067,17703,17370,17083,16829,16594,16381,16178,15978,15803,15608,15450,15312,15187,15112,15042,14970,14921,14907,14889,14900,14918,14939,14979,15024,15050,15098,15161,15173,15184,15200,15204,15211,15232,15239,15218,15176,15123,15056,14989,14902,14793,14675,14517,14352,14142,13931,13733,13484,13229,12965,12686,12401,12109,11826,11520,11263,11006,10769,10533,10256,9959,9633,9325,9052,8805,8599,8418,8272,8141,8045,7964,7909,7849,7789,7691,7553,7367,7214,7092,6976,6871,6790,6730,6674,6639,6620,6605,6589,6587,6603,6594,6441,6139,5707,5098,21.8,21.9,22.5,1567638,0.3,12.2,12.0,5.0,474,-1.00,-1.00,57.9569,-19.000643,0.000568,,,,,73 +SATSLF0720,2024246,3.263183,4.18,0.0586,0.1062,0.0200,0.00,16050,649,1,707,694,699,715,725,709,737,738,727,727,737,738,775,877,1203,1933,3093,4469,5703,6645,7266,7752,8174,8599,9113,9732,10475,11332,12309,13424,14583,15735,16827,17791,18525,18937,19063,18911,18529,17985,17405,16845,16379,16026,15797,15734,15817,16075,16474,17043,17789,18680,19747,20957,22264,23705,25172,26645,28054,29308,30295,31046,31447,31442,31108,30467,29556,28494,27272,26101,24956,23886,22880,22033,21315,20708,20215,19833,19557,19392,19305,19312,19426,19607,19870,20214,20657,21177,21734,22359,23025,23660,24267,24855,25321,25680,25946,26006,25885,25598,25127,24508,23772,22981,22114,21242,20398,19640,18944,18297,17739,17273,16875,16552,16302,16119,16025,15972,15991,16073,16247,16471,16780,17146,17568,18052,18612,19220,19869,20540,21265,21997,22728,23453,24161,24793,25397,25956,26381,26701,26945,27053,27061,26962,26757,26427,26036,25540,24968,24393,23762,23105,22475,21801,21186,20573,19972,19419,18936,18459,18070,17704,17357,17080,16821,16583,16376,16161,15987,15805,15616,15448,15294,15199,15086,15021,14945,14897,14887,14876,14880,14899,14925,14969,15013,15058,15098,15152,15154,15189,15193,15197,15226,15232,15238,15213,15177,15113,15058,14978,14894,14801,14667,14511,14348,14153,13942,13734,13493,13235,12976,12689,12381,12090,11797,11517,11241,10995,10754,10545,10261,9957,9642,9324,9059,8802,8582,8435,8258,8127,8044,7957,7885,7840,7779,7705,7562,7371,7219,7084,6969,6881,6797,6741,6676,6642,6619,6602,6576,6579,6605,6597,6450,6160,5729,5106,21.8,21.9,22.5,1567639,0.3,12.2,12.0,5.0,471,-1.00,-1.00,57.9077,-18.968976,0.000559,,,,,178 +SATSLF0720,2024246,3.263435,4.30,0.0602,0.1064,0.0204,0.00,16046,649,1,701,701,709,710,729,714,733,741,731,733,733,738,776,888,1213,1936,3106,4466,5714,6632,7268,7732,8159,8601,9113,9720,10466,11319,12309,13420,14586,15733,16835,17799,18501,18940,19072,18884,18509,17989,17385,16840,16388,16029,15800,15734,15810,16053,16459,17051,17786,18686,19760,20957,22263,23705,25173,26656,28061,29298,30281,31029,31420,31417,31077,30437,29541,28490,27265,26087,24949,23884,22883,22037,21307,20698,20217,19822,19543,19389,19297,19325,19413,19611,19883,20217,20653,21179,21725,22342,23017,23653,24264,24853,25325,25680,25950,25995,25857,25582,25115,24480,23747,22963,22113,21249,20413,19620,18913,18274,17729,17261,16849,16537,16296,16120,16034,15968,16019,16093,16257,16477,16773,17137,17558,18041,18609,19218,19837,20544,21273,21976,22727,23437,24128,24790,25392,25949,26370,26699,26932,27033,27050,26964,26749,26416,26032,25541,24981,24381,23766,23112,22462,21803,21184,20565,19971,19406,18934,18458,18057,17689,17366,17066,16803,16573,16361,16174,15976,15795,15614,15440,15307,15193,15092,15015,14949,14897,14883,14890,14896,14918,14929,14983,15024,15043,15097,15159,15157,15174,15189,15189,15205,15226,15232,15223,15159,15095,15044,14956,14881,14794,14646,14497,14331,14144,13958,13744,13492,13235,12962,12688,12384,12093,11787,11512,11246,10995,10763,10528,10257,9966,9640,9341,9043,8803,8586,8413,8280,8137,8036,7963,7886,7838,7778,7685,7553,7371,7209,7090,6973,6869,6807,6737,6689,6651,6636,6614,6602,6584,6601,6599,6444,6141,5729,5108,21.8,21.9,22.6,1567640,0.1,12.2,12.0,5.0,474,-1.00,-1.00,57.3783,-18.741169,0.000568,,,,,20 +SATSLF0720,2024246,3.263690,4.17,0.0584,0.1063,0.0204,0.00,16044,649,1,715,719,728,738,737,729,733,730,727,730,737,737,785,893,1224,1941,3102,4473,5719,6634,7265,7741,8149,8596,9106,9715,10462,11305,12315,13413,14577,15731,16850,17794,18498,18937,19069,18897,18506,17966,17403,16842,16373,16010,15799,15729,15802,16057,16450,17031,17769,18681,19741,20953,22263,23697,25160,26622,28059,29294,30266,31009,31412,31413,31081,30440,29521,28476,27258,26090,24942,23882,22869,22023,21295,20695,20216,19821,19543,19401,19303,19323,19413,19600,19866,20211,20647,21164,21726,22330,23001,23653,24256,24834,25289,25661,25929,25970,25863,25584,25104,24483,23783,22984,22107,21252,20389,19639,18937,18277,17733,17256,16852,16560,16297,16130,16029,15975,16002,16099,16255,16476,16766,17155,17562,18057,18614,19217,19842,20522,21249,21984,22729,23445,24132,24801,25385,25949,26361,26670,26912,27025,27067,26960,26749,26429,26034,25509,24961,24372,23756,23106,22448,21796,21158,20568,19981,19421,18932,18455,18061,17691,17354,17076,16804,16573,16384,16154,15983,15792,15595,15442,15306,15186,15080,15027,14950,14899,14883,14882,14895,14914,14928,14976,15013,15045,15089,15155,15168,15179,15197,15172,15206,15228,15221,15210,15166,15108,15045,14968,14870,14786,14657,14499,14353,14153,13949,13732,13483,13230,12957,12674,12388,12081,11797,11502,11239,10997,10752,10535,10281,9974,9641,9337,9053,8792,8578,8407,8256,8141,8037,7954,7883,7858,7778,7685,7561,7377,7220,7085,6974,6864,6791,6721,6671,6641,6615,6626,6605,6592,6602,6611,6448,6141,5720,5115,21.8,21.9,22.6,1567641,0.1,12.2,12.0,5.0,465,-1.00,-1.00,57.8671,-18.938835,0.000575,,,,,64 +SATSLF0720,2024246,3.263946,4.24,0.0594,0.1065,0.0208,0.00,16035,649,1,709,695,695,697,711,714,729,729,743,741,734,733,778,875,1207,1947,3098,4469,5701,6615,7267,7734,8148,8597,9097,9728,10458,11327,12325,13409,14589,15730,16837,17770,18481,18921,19057,18873,18501,17968,17376,16830,16369,16012,15797,15725,15808,16051,16457,17037,17765,18669,19720,20925,22246,23673,25148,26634,28026,29272,30279,31032,31402,31402,31076,30435,29525,28461,27236,26075,24924,23849,22865,22002,21282,20691,20200,19808,19537,19380,19294,19297,19405,19582,19853,20193,20631,21148,21716,22329,23009,23643,24237,24824,25290,25657,25911,25971,25856,25571,25100,24461,23733,22951,22097,21238,20385,19641,18925,18277,17717,17237,16841,16523,16280,16116,16009,15969,15987,16078,16240,16473,16749,17113,17544,18036,18592,19206,19825,20535,21256,21974,22713,23408,24113,24775,25361,25927,26357,26679,26920,27010,27043,26936,26720,26393,26007,25515,24949,24367,23729,23105,22442,21794,21161,20538,19967,19413,18912,18439,18050,17682,17348,17069,16806,16577,16382,16163,15980,15782,15594,15422,15289,15173,15072,15009,14922,14901,14886,14884,14882,14925,14933,14973,15016,15045,15096,15133,15155,15165,15176,15191,15196,15207,15218,15211,15162,15097,15030,14973,14874,14793,14651,14506,14340,14153,13937,13709,13491,13225,12951,12676,12373,12096,11784,11509,11240,10993,10753,10515,10252,9957,9634,9330,9040,8793,8588,8418,8251,8127,8029,7959,7874,7821,7765,7669,7522,7361,7218,7091,6967,6883,6795,6728,6666,6629,6621,6608,6596,6589,6598,6598,6450,6138,5725,5105,21.8,21.9,22.6,1567642,0.0,12.3,12.0,5.0,470,-1.00,-1.00,57.7026,-18.864291,0.000559,,,,,49 +SATSLF0720,2024246,3.264198,4.22,0.0591,0.1066,0.0199,0.00,16034,649,1,701,701,708,715,721,717,722,716,731,725,723,731,775,881,1211,1943,3104,4478,5697,6619,7264,7742,8154,8581,9095,9712,10449,11310,12299,13403,14587,15729,16825,17777,18481,18933,19065,18873,18505,17954,17381,16821,16369,16008,15794,15715,15811,16057,16457,17017,17779,18668,19725,20961,22237,23691,25160,26626,28032,29287,30273,31021,31410,31405,31085,30432,29520,28469,27255,26073,24928,23869,22867,22017,21288,20679,20210,19802,19521,19375,19289,19301,19409,19588,19857,20200,20643,21144,21727,22336,22993,23629,24244,24826,25303,25657,25911,25956,25851,25577,25104,24478,23751,22954,22099,21237,20396,19627,18928,18278,17716,17238,16836,16512,16267,16100,16008,15962,15985,16088,16250,16472,16769,17117,17557,18036,18593,19217,19844,20522,21241,21985,22714,23425,24129,24776,25370,25926,26359,26679,26917,27019,27033,26934,26726,26406,25998,25501,24944,24378,23748,23090,22455,21779,21157,20545,19968,19404,18906,18429,18048,17666,17353,17063,16801,16577,16357,16167,15976,15781,15604,15436,15293,15186,15074,15001,14930,14877,14871,14874,14884,14906,14915,14967,15010,15025,15077,15127,15140,15157,15181,15177,15195,15218,15216,15222,15165,15108,15062,14976,14885,14791,14644,14487,14321,14132,13925,13728,13493,13241,12961,12678,12372,12085,11785,11493,11232,10977,10746,10509,10239,9963,9640,9325,9056,8798,8585,8401,8259,8116,8023,7936,7863,7823,7761,7677,7529,7365,7212,7087,6968,6867,6791,6724,6668,6624,6601,6593,6586,6565,6593,6581,6437,6141,5714,5102,21.8,22.0,22.6,1567643,0.4,12.2,11.9,5.0,473,-1.00,-1.00,57.8493,-18.928444,0.000606,,,,,33 +SATSLF0720,2024246,3.264453,4.21,0.0590,0.1068,0.0207,0.00,16033,649,1,708,705,700,704,713,709,731,733,730,729,730,743,773,887,1213,1941,3111,4473,5702,6625,7254,7727,8147,8589,9097,9721,10464,11320,12307,13412,14577,15746,16845,17787,18496,18931,19072,18884,18497,17977,17387,16844,16392,16013,15809,15732,15818,16049,16453,17036,17770,18665,19726,20935,22247,23682,25142,26618,28017,29269,30269,30985,31399,31397,31073,30417,29510,28458,27240,26072,24917,23848,22858,22011,21277,20673,20197,19810,19527,19392,19280,19305,19393,19584,19849,20212,20628,21154,21709,22320,22983,23628,24230,24808,25273,25658,25918,25975,25848,25576,25114,24468,23747,22965,22093,21225,20373,19608,18917,18278,17718,17233,16839,16535,16274,16099,16010,15953,15983,16077,16245,16465,16766,17125,17553,18021,18603,19213,19840,20534,21249,21972,22710,23421,24115,24774,25354,25912,26346,26661,26916,27022,27016,26941,26715,26397,26005,25531,24945,24371,23730,23085,22435,21773,21136,20541,19954,19399,18923,18458,18053,17677,17354,17064,16801,16571,16344,16167,15960,15779,15594,15427,15294,15168,15077,15004,14922,14907,14877,14866,14875,14905,14929,14953,15002,15040,15077,15117,15159,15154,15179,15165,15199,15214,15206,15200,15132,15093,15034,14971,14881,14784,14645,14491,14330,14139,13933,13705,13467,13225,12952,12674,12389,12092,11793,11515,11245,10999,10755,10515,10250,9945,9622,9317,9037,8785,8597,8422,8264,8135,8037,7965,7890,7830,7766,7661,7517,7360,7194,7079,6962,6873,6785,6727,6677,6651,6620,6612,6594,6594,6610,6597,6439,6147,5717,5081,21.8,22.0,22.6,1567644,0.8,12.2,12.0,5.0,465,-1.00,-1.00,57.3862,-18.727502,0.000505,,,,,97 +SATSDF0720,2024246,3.509138,0.00,0.0000,0.0000,0.0000,0.00,650,0,1,643,647,641,630,638,635,634,636,629,649,633,625,643,633,630,617,621,633,629,622,634,635,644,661,653,649,657,657,651,659,667,662,656,645,665,665,641,655,667,653,654,643,634,651,645,642,654,653,666,676,677,670,667,674,665,659,646,646,643,641,653,644,640,647,642,655,654,651,649,650,653,651,657,656,651,659,659,653,659,659,653,648,649,647,649,642,632,647,649,641,645,647,647,668,653,661,661,649,655,663,667,662,667,666,665,658,653,656,649,656,645,653,645,661,652,652,645,647,637,640,642,650,650,662,657,661,648,650,637,641,635,653,653,651,663,659,663,663,653,643,646,637,645,629,639,647,650,652,657,664,656,661,669,653,657,656,657,654,652,648,648,653,647,637,639,628,631,643,656,674,657,643,649,656,644,628,639,641,644,636,643,651,649,660,654,652,657,650,649,647,652,646,661,657,641,643,658,649,654,642,663,650,655,655,656,654,645,646,653,644,652,651,647,642,652,649,647,652,649,647,649,644,651,657,661,656,655,649,654,656,645,640,645,634,634,640,645,660,657,651,657,653,650,653,644,643,638,641,642,645,662,653,663,661,659,492,0.0,0.0,0.0,1567643,0.1,12.8,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,249 +SATSLF0720,2024246,3.509692,3.99,0.0558,0.1010,0.0166,0.00,16207,650,1,710,706,709,711,710,716,713,737,729,723,748,742,767,891,1217,1945,3115,4508,5753,6680,7334,7809,8227,8688,9206,9833,10595,11470,12461,13568,14758,15923,17040,18007,18729,19178,19314,19133,18752,18202,17620,17051,16579,16219,15992,15924,16005,16254,16656,17239,17975,18891,19966,21187,22521,23977,25476,26962,28378,29655,30670,31402,31803,31795,31460,30814,29888,28824,27601,26418,25242,24162,23172,22301,21579,20962,20457,20079,19795,19630,19533,19547,19637,19820,20091,20433,20875,21392,21970,22592,23271,23906,24525,25105,25575,25945,26205,26248,26135,25856,25349,24723,24010,23206,22333,21465,20605,19834,19126,18456,17885,17405,16993,16679,16443,16265,16186,16129,16167,16253,16413,16645,16930,17294,17737,18209,18792,19398,20040,20726,21470,22210,22952,23673,24389,25036,25644,26221,26629,26944,27207,27313,27321,27227,27014,26669,26269,25780,25214,24629,23990,23334,22670,22011,21376,20765,20164,19607,19112,18625,18237,17869,17548,17250,16976,16735,16512,16309,16121,15928,15750,15581,15445,15329,15230,15157,15100,15029,15027,15032,15013,15045,15064,15085,15126,15177,15204,15271,15284,15292,15310,15325,15332,15350,15360,15345,15295,15236,15171,15095,14997,14921,14775,14610,14438,14262,14040,13838,13588,13318,13071,12791,12478,12189,11889,11596,11351,11088,10832,10599,10329,10025,9700,9378,9093,8842,8649,8477,8324,8189,8101,8025,7947,7899,7820,7735,7587,7421,7275,7146,7041,6937,6853,6772,6717,6671,6657,6650,6637,6643,6654,6653,6515,6181,5757,5121,21.7,21.6,22.1,1567644,0.5,12.3,11.9,5.0,594,-1.00,-1.00,57.7805,-19.128069,0.000561,,,,,150 +SATSLF0720,2024246,3.509874,4.10,0.0575,0.1008,0.0161,0.00,16209,650,1,695,693,708,697,705,700,709,707,727,724,727,743,773,895,1218,1938,3132,4525,5769,6711,7363,7841,8264,8721,9234,9859,10606,11483,12486,13611,14793,15965,17088,18034,18760,19207,19333,19168,18785,18245,17650,17079,16616,16242,16019,15942,16020,16264,16670,17281,18033,18934,20006,21229,22560,23995,25485,26984,28409,29665,30685,31440,31826,31835,31485,30833,29925,28861,27617,26418,25257,24183,23157,22307,21565,20961,20471,20069,19789,19638,19543,19546,19653,19849,20093,20439,20870,21401,21969,22594,23251,23915,24528,25102,25585,25949,26211,26256,26133,25851,25360,24740,24005,23203,22338,21453,20593,19840,19125,18462,17921,17440,17017,16691,16434,16273,16168,16112,16133,16232,16404,16615,16923,17305,17736,18211,18792,19408,20048,20725,21454,22201,22944,23661,24359,25030,25628,26204,26614,26950,27194,27293,27314,27227,27002,26685,26272,25782,25204,24623,23978,23331,22666,22002,21367,20768,20166,19609,19117,18624,18222,17857,17512,17232,16945,16708,16517,16327,16123,15931,15742,15569,15421,15303,15206,15127,15057,15016,15001,15002,14993,15047,15065,15109,15150,15160,15204,15255,15267,15273,15281,15300,15306,15343,15354,15348,15298,15237,15188,15095,15000,14906,14770,14621,14442,14251,14039,13819,13576,13317,13051,12773,12466,12175,11895,11597,11337,11084,10837,10605,10326,10021,9701,9389,9097,8843,8651,8485,8317,8208,8093,8011,7941,7884,7809,7725,7579,7414,7266,7137,7027,6926,6859,6774,6714,6672,6653,6646,6627,6629,6642,6647,6497,6185,5761,5139,21.7,21.6,22.2,1567645,0.0,12.2,11.9,5.0,481,-1.00,-1.00,56.8137,-18.741622,0.000531,,,,,253 +SATSLF0720,2024246,3.510132,4.00,0.0561,0.1012,0.0168,0.00,16203,650,1,701,706,716,713,713,710,720,715,736,728,734,737,775,884,1215,1945,3128,4517,5788,6717,7380,7834,8256,8707,9216,9851,10612,11460,12476,13600,14785,15945,17058,18021,18739,19189,19334,19141,18759,18227,17619,17062,16583,16231,15985,15924,15997,16255,16669,17253,17989,18898,19978,21205,22540,23990,25481,26970,28405,29642,30663,31405,31803,31789,31490,30809,29907,28825,27602,26405,25237,24156,23153,22272,21541,20946,20453,20081,19773,19613,19524,19523,19651,19825,20088,20434,20873,21394,21958,22580,23242,23896,24532,25102,25589,25941,26213,26245,26138,25844,25365,24709,23993,23179,22322,21453,20611,19821,19127,18473,17913,17420,17016,16677,16449,16261,16163,16117,16143,16231,16409,16632,16922,17288,17710,18203,18778,19381,20017,20717,21453,22205,22960,23665,24377,25028,25611,26179,26617,26936,27177,27285,27289,27206,26992,26664,26276,25773,25197,24625,23989,23348,22665,22002,21373,20754,20148,19590,19095,18606,18215,17850,17524,17229,16962,16721,16524,16305,16106,15928,15720,15558,15435,15316,15223,15142,15062,15035,15008,14996,15008,15037,15061,15097,15136,15161,15207,15258,15273,15290,15293,15289,15315,15335,15348,15346,15290,15229,15164,15081,14998,14890,14762,14614,14440,14232,14030,13810,13578,13319,13057,12768,12475,12174,11882,11595,11322,11067,10847,10600,10336,10033,9708,9387,9101,8845,8633,8479,8314,8183,8087,8024,7945,7885,7831,7746,7597,7421,7265,7132,7019,6919,6835,6768,6720,6676,6663,6642,6642,6621,6649,6645,6488,6187,5750,5140,21.7,21.7,22.2,1567646,0.0,12.3,11.9,5.0,480,-1.00,-1.00,57.5019,-19.014904,0.000594,,,,,178 +SATSLF0720,2024246,3.510385,4.17,0.0584,0.1015,0.0168,0.00,16194,650,1,707,697,711,717,707,719,726,724,733,725,721,737,777,885,1217,1957,3141,4513,5771,6701,7353,7822,8226,8693,9217,9834,10596,11468,12482,13594,14764,15936,17061,18013,18752,19175,19308,19121,18726,18189,17607,17032,16568,16213,15988,15909,15995,16252,16645,17250,17994,18891,19969,21190,22515,23962,25434,26938,28357,29623,30612,31376,31781,31769,31441,30781,29858,28802,27573,26369,25219,24149,23133,22272,21528,20924,20443,20037,19761,19598,19512,19517,19618,19821,20082,20429,20865,21405,21954,22566,23250,23878,24505,25069,25545,25918,26173,26228,26097,25819,25340,24698,23972,23177,22304,21434,20586,19809,19111,18450,17882,17410,16985,16676,16422,16266,16151,16116,16138,16223,16397,16621,16922,17294,17717,18201,18768,19369,20008,20697,21439,22179,22932,23643,24350,25029,25608,26173,26593,26925,27165,27276,27281,27197,26989,26656,26250,25754,25180,24600,23957,23310,22653,21997,21353,20743,20161,19588,19093,18620,18212,17828,17513,17209,16951,16705,16505,16293,16089,15907,15720,15555,15415,15306,15208,15128,15057,15008,14992,14999,14997,15018,15053,15090,15127,15163,15206,15260,15267,15284,15286,15302,15312,15347,15345,15340,15289,15220,15166,15093,15001,14889,14759,14605,14437,14249,14045,13824,13595,13329,13075,12789,12485,12183,11887,11589,11331,11061,10839,10612,10326,10022,9693,9392,9095,8845,8663,8473,8331,8197,8097,8030,7957,7892,7816,7732,7590,7427,7273,7137,7023,6922,6825,6772,6731,6685,6665,6662,6643,6646,6649,6642,6503,6173,5755,5125,21.7,21.7,22.2,1567647,0.8,12.3,12.0,5.0,470,-1.00,-1.00,56.8635,-18.729093,0.000535,,,,,42 +SATSLF0720,2024246,3.510638,4.40,0.0616,0.1029,0.0176,0.00,16159,650,1,691,696,702,708,711,703,711,729,722,735,721,731,783,881,1211,1933,3116,4509,5756,6685,7328,7801,8220,8673,9184,9797,10548,11421,12425,13548,14701,15880,16994,17938,18675,19103,19231,19038,18660,18135,17538,16988,16522,16177,15943,15874,15963,16215,16625,17200,17954,18842,19907,21123,22444,23894,25376,26862,28289,29554,30548,31303,31693,31693,31357,30705,29777,28727,27500,26309,25153,24075,23069,22219,21477,20880,20381,19991,19713,19543,19452,19472,19560,19755,20029,20379,20828,21341,21907,22514,23163,23816,24437,25001,25483,25850,26113,26187,26042,25765,25292,24653,23937,23128,22250,21377,20541,19765,19061,18413,17857,17377,16981,16649,16387,16227,16145,16076,16099,16201,16349,16585,16880,17249,17681,18172,18749,19353,19990,20689,21408,22150,22904,23604,24304,24957,25559,26128,26550,26877,27121,27229,27239,27158,26930,26610,26213,25739,25152,24554,23917,23277,22621,21952,21304,20688,20113,19552,19061,18580,18173,17812,17477,17186,16926,16680,16489,16279,16088,15902,15713,15541,15400,15287,15178,15101,15035,14976,14979,14973,14966,14990,15031,15058,15091,15131,15182,15230,15254,15276,15267,15277,15293,15306,15298,15299,15260,15197,15138,15066,14982,14882,14736,14592,14418,14230,14025,13801,13555,13303,13041,12754,12466,12165,11862,11581,11302,11072,10826,10580,10310,10008,9681,9370,9094,8846,8636,8467,8309,8175,8087,8007,7933,7876,7808,7721,7578,7397,7251,7130,7003,6899,6839,6765,6711,6673,6653,6634,6631,6609,6624,6625,6466,6159,5731,5121,21.7,21.7,22.3,1567648,0.0,12.3,11.9,5.0,475,-1.00,-1.00,56.4790,-18.522848,0.000487,,,,,99 +SATSLF0720,2024246,3.510895,4.21,0.0589,0.1037,0.0188,0.00,16127,650,1,689,705,705,717,714,716,717,714,723,718,722,736,765,877,1209,1936,3089,4477,5732,6653,7299,7768,8201,8644,9183,9792,10522,11402,12394,13485,14656,15827,16932,17899,18613,19045,19177,18998,18630,18103,17506,16950,16482,16115,15895,15825,15912,16148,16568,17152,17882,18800,19859,21075,22407,23849,25314,26803,28222,29475,30461,31221,31606,31607,31288,30639,29725,28677,27447,26250,25100,24025,23016,22171,21434,20817,20330,19941,19665,19513,19416,19446,19533,19735,19992,20340,20758,21284,21851,22474,23127,23793,24388,24969,25451,25817,26074,26126,25998,25722,25238,24611,23881,23084,22214,21320,20503,19725,19014,18354,17808,17333,16917,16616,16371,16196,16109,16057,16082,16158,16322,16554,16855,17209,17639,18132,18697,19321,19958,20640,21360,22104,22853,23565,24264,24912,25512,26070,26507,26822,27082,27188,27200,27102,26889,26565,26161,25677,25117,24525,23874,23230,22565,21913,21277,20649,20071,19515,19018,18554,18164,17797,17453,17156,16893,16665,16459,16253,16053,15863,15673,15509,15365,15258,15158,15080,14998,14959,14951,14951,14953,14975,14999,15043,15073,15109,15162,15210,15219,15238,15248,15253,15282,15281,15287,15275,15226,15172,15097,15041,14950,14850,14715,14560,14395,14212,13995,13769,13535,13271,13022,12718,12438,12147,11857,11561,11289,11034,10807,10577,10301,10014,9675,9368,9077,8837,8619,8455,8301,8176,8073,7985,7930,7853,7794,7709,7569,7394,7233,7111,6996,6907,6825,6756,6693,6666,6648,6629,6615,6596,6626,6610,6451,6150,5733,5107,21.7,21.8,22.3,1567649,0.5,12.3,11.9,5.0,480,-1.00,-1.00,57.5428,-18.923392,0.000508,,,,,55 +SATSLF0720,2024246,3.511148,4.19,0.0587,0.1028,0.0175,0.00,16151,650,1,709,694,709,693,694,705,697,712,733,725,737,737,770,877,1211,1938,3108,4501,5762,6670,7309,7771,8210,8649,9181,9797,10542,11409,12409,13511,14684,15863,16981,17918,18659,19090,19221,19042,18661,18125,17534,16971,16501,16151,15914,15863,15936,16181,16603,17181,17927,18836,19895,21123,22450,23875,25363,26849,28275,29530,30532,31285,31675,31688,31346,30699,29781,28740,27486,26295,25131,24052,23061,22203,21470,20866,20381,19997,19709,19557,19453,19468,19565,19752,20015,20361,20793,21330,21905,22512,23177,23819,24439,25012,25477,25851,26109,26164,26049,25771,25287,24644,23927,23131,22254,21369,20533,19745,19054,18394,17841,17360,16960,16644,16389,16244,16117,16098,16104,16182,16347,16581,16877,17234,17674,18161,18741,19336,19973,20667,21402,22125,22876,23588,24293,24946,25540,26116,26531,26852,27105,27218,27226,27130,26916,26577,26192,25699,25121,24533,23916,23262,22614,21942,21309,20692,20099,19537,19049,18578,18170,17800,17466,17190,16916,16679,16472,16285,16082,15907,15712,15540,15383,15256,15175,15093,15030,14977,14983,14970,14983,15003,15030,15062,15100,15129,15186,15241,15245,15271,15277,15269,15286,15297,15291,15303,15245,15182,15141,15062,14979,14881,14736,14594,14408,14224,14006,13799,13549,13295,13021,12747,12448,12157,11867,11573,11302,11034,10811,10573,10297,10007,9684,9373,9100,8849,8631,8471,8306,8174,8073,7994,7907,7859,7795,7724,7565,7399,7245,7132,7025,6909,6829,6775,6705,6666,6645,6642,6614,6614,6621,6625,6465,6165,5748,5113,21.8,21.8,22.3,1567650,0.2,12.2,11.9,5.0,477,-1.00,-1.00,57.5685,-18.970029,0.000552,,,,,86 +SATSLF0720,2024246,3.511404,4.37,0.0613,0.1030,0.0175,0.00,16155,650,1,711,714,706,710,713,722,715,721,731,738,733,742,775,909,1228,1958,3139,4520,5757,6673,7325,7803,8218,8674,9189,9823,10573,11441,12446,13536,14721,15885,16997,17922,18648,19086,19218,19029,18667,18149,17550,16992,16526,16157,15949,15863,15945,16199,16605,17192,17933,18826,19898,21120,22446,23905,25389,26877,28290,29546,30541,31284,31693,31677,31337,30697,29776,28709,27482,26301,25145,24074,23058,22213,21478,20882,20388,19998,19718,19547,19447,19460,19568,19738,20007,20363,20803,21326,21884,22521,23180,23833,24452,25003,25490,25853,26104,26155,26044,25762,25275,24642,23921,23122,22243,21392,20533,19755,19067,18401,17844,17367,16964,16644,16397,16229,16125,16087,16107,16195,16366,16580,16874,17242,17675,18170,18733,19336,19965,20647,21389,22137,22870,23585,24301,24972,25557,26121,26553,26857,27097,27201,27214,27127,26908,26586,26197,25693,25137,24535,23924,23261,22595,21936,21317,20694,20093,19542,19049,18573,18173,17805,17462,17178,16928,16677,16485,16273,16087,15889,15705,15528,15394,15272,15184,15105,15042,15005,14976,14968,14972,14985,15010,15044,15083,15104,15161,15232,15241,15266,15275,15275,15294,15317,15310,15301,15251,15193,15142,15058,14965,14872,14721,14573,14397,14219,14001,13798,13562,13293,13035,12740,12453,12170,11857,11575,11307,11058,10809,10586,10309,10013,9685,9376,9093,8842,8615,8445,8299,8178,8083,8001,7927,7877,7819,7713,7575,7417,7254,7129,6996,6907,6814,6760,6702,6670,6651,6646,6641,6616,6651,6637,6475,6171,5744,5117,21.7,21.8,22.4,1567651,0.1,12.2,12.0,5.0,468,-1.00,-1.00,56.5621,-18.551860,0.000550,,,,,67 +SATSLF0720,2024246,3.511658,4.16,0.0583,0.1028,0.0179,0.00,16157,650,1,706,709,715,721,725,731,724,731,725,722,729,743,787,893,1221,1949,3117,4511,5748,6687,7341,7796,8221,8683,9189,9831,10564,11453,12453,13559,14743,15898,17005,17965,18677,19115,19249,19073,18686,18162,17566,17010,16540,16192,15959,15893,15961,16198,16611,17200,17934,18846,19918,21131,22459,23901,25384,26871,28290,29549,30554,31304,31710,31717,31378,30728,29792,28746,27497,26310,25156,24074,23066,22206,21469,20865,20378,19993,19708,19540,19454,19467,19562,19746,20015,20361,20804,21339,21897,22525,23185,23824,24442,25018,25498,25857,26102,26176,26036,25781,25289,24662,23930,23123,22249,21396,20530,19757,19045,18411,17841,17378,16970,16649,16395,16220,16133,16073,16097,16187,16375,16569,16871,17252,17669,18154,18721,19349,19981,20669,21397,22137,22864,23579,24279,24940,25533,26109,26533,26849,27111,27208,27227,27125,26917,26585,26190,25697,25124,24541,23909,23252,22606,21929,21307,20682,20093,19530,19031,18565,18160,17800,17490,17185,16919,16674,16460,16263,16070,15871,15696,15517,15393,15285,15169,15099,15017,14984,14976,14963,14964,14994,15014,15060,15104,15125,15184,15237,15250,15254,15258,15259,15281,15306,15317,15301,15250,15188,15128,15051,14969,14871,14747,14585,14426,14230,14023,13797,13553,13293,13041,12748,12443,12167,11858,11560,11291,11047,10809,10564,10299,9997,9685,9365,9087,8851,8645,8466,8298,8183,8081,8004,7937,7865,7815,7735,7586,7407,7249,7123,6994,6907,6817,6763,6718,6682,6646,6650,6624,6631,6632,6617,6475,6162,5731,5125,21.7,21.8,22.4,1567652,0.2,12.2,12.0,5.0,474,-1.00,-1.00,57.0238,-18.754545,0.000520,,,,,47 +SATSLF0720,2024246,3.511910,4.27,0.0598,0.1061,0.0196,0.00,16055,650,1,712,709,709,710,720,727,712,719,727,727,733,745,769,877,1211,1921,3073,4443,5671,6589,7228,7709,8138,8573,9105,9712,10439,11302,12288,13382,14545,15707,16802,17753,18469,18909,19030,18850,18478,17952,17373,16823,16370,16016,15773,15712,15796,16037,16453,17030,17762,18664,19732,20948,22260,23693,25161,26643,28042,29289,30291,31029,31424,31425,31104,30459,29540,28486,27269,26107,24953,23874,22897,22041,21318,20684,20232,19830,19558,19403,19312,19331,19441,19632,19880,20247,20670,21179,21749,22358,23010,23661,24286,24850,25329,25688,25953,26005,25885,25606,25116,24493,23776,22997,22122,21271,20425,19660,18955,18298,17738,17275,16861,16542,16291,16141,16038,15989,16013,16115,16269,16500,16790,17149,17566,18049,18612,19216,19869,20552,21282,22027,22784,23470,24194,24837,25425,26002,26402,26732,26965,27068,27072,26982,26788,26459,26066,25583,25031,24441,23793,23162,22492,21828,21206,20585,19993,19429,18944,18473,18082,17706,17389,17115,16833,16596,16395,16179,15998,15811,15607,15455,15314,15213,15108,15037,14961,14929,14906,14900,14911,14941,14976,14998,15057,15067,15123,15177,15170,15191,15204,15208,15237,15257,15260,15251,15194,15138,15072,15003,14905,14821,14679,14529,14360,14175,13973,13749,13513,13240,12985,12696,12409,12108,11808,11520,11245,11001,10759,10533,10267,9962,9638,9336,9061,8820,8610,8429,8264,8153,8055,7981,7900,7843,7773,7687,7539,7360,7223,7085,6974,6871,6803,6736,6695,6648,6637,6616,6597,6573,6595,6587,6432,6143,5725,5115,21.8,21.8,22.4,1567653,0.2,12.2,12.0,5.0,465,-1.00,-1.00,58.4134,-19.173725,0.000576,,,,,154 +SATSLF0720,2024246,3.512169,4.08,0.0571,0.1031,0.0183,0.00,16132,650,1,688,697,699,699,708,727,725,721,730,730,733,747,780,878,1225,1941,3114,4484,5732,6665,7312,7787,8208,8658,9169,9806,10538,11412,12405,13510,14695,15868,16963,17915,18648,19083,19220,19029,18669,18124,17541,16969,16508,16135,15905,15833,15902,16163,16581,17153,17914,18822,19886,21101,22416,23872,25360,26824,28241,29483,30488,31233,31625,31629,31314,30661,29729,28693,27456,26265,25101,24032,23009,22164,21422,20822,20350,19960,19674,19527,19441,19437,19542,19729,19980,20340,20776,21285,21847,22462,23138,23780,24402,24985,25462,25826,26087,26132,26020,25721,25251,24618,23894,23112,22236,21349,20514,19745,19028,18373,17830,17350,16928,16614,16365,16186,16090,16039,16069,16157,16327,16549,16853,17221,17656,18150,18699,19315,19953,20645,21364,22104,22864,23577,24265,24925,25518,26080,26509,26818,27063,27169,27182,27094,26883,26563,26167,25661,25095,24499,23873,23230,22572,21914,21278,20669,20075,19520,19018,18536,18149,17789,17447,17155,16889,16653,16458,16245,16057,15863,15685,15526,15369,15259,15149,15082,15012,14973,14953,14954,14948,14984,15000,15043,15076,15104,15151,15211,15229,15245,15251,15248,15271,15278,15294,15269,15235,15174,15115,15044,14951,14853,14722,14578,14404,14205,13988,13784,13521,13283,13021,12733,12450,12141,11840,11549,11270,11027,10805,10565,10293,9997,9677,9357,9075,8836,8621,8442,8307,8173,8063,7987,7925,7857,7780,7699,7557,7386,7235,7112,6998,6905,6828,6765,6720,6674,6651,6630,6619,6605,6627,6621,6471,6153,5733,5117,21.8,21.8,22.4,1567654,0.1,12.2,11.9,5.0,474,-1.00,-1.00,57.5382,-18.932502,0.000591,,,,,131 +SATSLF0720,2024246,3.512423,4.18,0.0586,0.1040,0.0187,0.00,16110,650,1,711,689,717,706,711,714,717,722,728,718,737,726,771,876,1201,1939,3113,4490,5717,6642,7301,7770,8192,8637,9144,9758,10517,11371,12368,13481,14650,15821,16930,17866,18592,19030,19157,18958,18595,18069,17475,16915,16470,16113,15877,15810,15883,16133,16529,17112,17867,18753,19825,21057,22370,23816,25268,26766,28186,29414,30427,31170,31581,31566,31232,30592,29691,28626,27399,26213,25051,23979,22998,22130,21403,20797,20298,19909,19639,19475,19403,19400,19478,19687,19937,20291,20729,21259,21813,22443,23118,23764,24362,24944,25403,25780,26034,26098,25969,25690,25204,24581,23858,23057,22188,21318,20493,19732,19008,18369,17802,17326,16920,16592,16350,16178,16085,16050,16044,16136,16311,16518,16846,17203,17636,18107,18691,19311,19934,20619,21329,22087,22826,23533,24235,24897,25497,26066,26486,26807,27042,27144,27169,27068,26850,26525,26129,25647,25085,24485,23852,23211,22554,21890,21257,20630,20055,19513,18999,18527,18129,17761,17421,17131,16874,16645,16441,16246,16041,15867,15673,15477,15367,15250,15150,15073,15001,14956,14949,14925,14941,14976,14990,15031,15061,15104,15148,15193,15223,15227,15243,15250,15264,15290,15285,15268,15213,15143,15103,15038,14945,14849,14710,14554,14392,14202,13999,13785,13541,13277,13006,12728,12434,12131,11851,11549,11273,11029,10796,10566,10288,9991,9671,9357,9078,8833,8623,8453,8299,8157,8067,7983,7908,7872,7805,7685,7555,7369,7232,7101,6999,6902,6821,6758,6708,6675,6658,6638,6605,6595,6614,6613,6456,6163,5743,5117,21.8,21.9,22.4,1567655,0.0,12.2,11.9,5.0,473,-1.00,-1.00,57.6772,-18.951597,0.000538,,,,,99 +SATSLF0720,2024246,3.512676,4.10,0.0575,0.1043,0.0192,0.00,16114,650,1,713,725,722,717,709,701,712,714,728,737,730,745,794,899,1222,1949,3136,4496,5740,6675,7321,7789,8213,8659,9161,9786,10525,11381,12377,13477,14659,15836,16948,17892,18615,19065,19184,19002,18632,18084,17492,16926,16466,16105,15881,15816,15892,16130,16546,17133,17881,18786,19850,21073,22385,23829,25293,26791,28184,29443,30430,31175,31575,31578,31252,30613,29688,28630,27393,26222,25061,23970,22979,22123,21404,20794,20318,19936,19661,19500,19391,19417,19498,19687,19962,20309,20737,21261,21830,22454,23117,23761,24374,24949,25421,25802,26057,26101,25968,25690,25207,24581,23869,23072,22184,21320,20479,19717,19031,18368,17812,17338,16934,16610,16353,16182,16098,16048,16071,16146,16317,16528,16821,17187,17634,18110,18680,19293,19934,20616,21338,22081,22813,23525,24235,24888,25480,26055,26470,26804,27046,27138,27161,27056,26850,26524,26134,25638,25069,24478,23837,23212,22542,21877,21254,20632,20048,19489,18996,18530,18125,17762,17435,17149,16861,16634,16437,16232,16037,15853,15666,15481,15359,15252,15141,15063,15001,14979,14949,14944,14943,14976,14994,15012,15060,15090,15146,15188,15217,15230,15233,15261,15265,15279,15272,15273,15218,15149,15085,15021,14923,14841,14715,14556,14400,14194,13989,13776,13517,13284,13010,12731,12439,12136,11837,11557,11272,11019,10791,10563,10302,9989,9669,9360,9076,8826,8615,8454,8289,8162,8061,7982,7921,7864,7794,7712,7565,7386,7226,7099,6981,6893,6815,6749,6709,6650,6651,6641,6613,6605,6630,6621,6469,6161,5738,5107,21.8,21.8,22.5,1567655,0.0,12.3,12.0,5.0,460,-1.00,-1.00,57.5466,-18.903256,0.000601,,,,,156 +SATSLF0720,2024246,3.512934,4.10,0.0574,0.1061,0.0199,0.00,16054,650,1,696,707,698,703,721,723,730,731,747,729,739,755,776,894,1211,1929,3099,4466,5710,6620,7275,7741,8173,8608,9123,9725,10483,11336,12345,13418,14603,15760,16861,17802,18525,18961,19104,18910,18538,17985,17411,16849,16390,16043,15808,15746,15837,16078,16476,17057,17784,18683,19739,20948,22259,23713,25178,26677,28086,29321,30317,31060,31456,31445,31117,30465,29544,28501,27284,26109,24961,23893,22893,22049,21317,20714,20229,19846,19545,19403,19313,19329,19425,19612,19874,20222,20669,21161,21740,22361,23019,23674,24266,24842,25317,25691,25946,25995,25870,25593,25122,24494,23769,22976,22107,21251,20397,19639,18937,18280,17737,17257,16860,16528,16287,16126,16038,15981,16005,16109,16246,16490,16777,17149,17558,18043,18615,19210,19851,20528,21253,22009,22734,23451,24153,24809,25397,25953,26384,26692,26925,27040,27050,26957,26757,26434,26053,25545,24987,24407,23760,23115,22478,21802,21175,20572,19975,19417,18940,18455,18052,17691,17361,17072,16815,16592,16385,16187,15989,15798,15606,15445,15309,15186,15093,15021,14943,14903,14893,14901,14894,14918,14947,14996,15017,15051,15100,15159,15175,15177,15184,15195,15208,15223,15229,15224,15163,15121,15061,14994,14902,14803,14681,14533,14367,14158,13936,13725,13496,13234,12953,12686,12388,12100,11803,11516,11245,11013,10781,10541,10260,9969,9644,9328,9054,8805,8597,8431,8277,8157,8065,7983,7915,7845,7783,7684,7538,7354,7225,7089,6968,6887,6801,6743,6698,6659,6630,6628,6602,6598,6604,6589,6434,6143,5725,5101,21.8,21.9,22.5,1567656,0.1,12.2,12.0,5.0,465,-1.00,-1.00,58.0093,-19.015167,0.000616,,,,,76 +SATSLF0720,2024246,3.513190,4.12,0.0578,0.1053,0.0197,0.00,16077,650,1,700,707,707,718,726,720,735,725,727,738,720,737,767,883,1203,1937,3099,4467,5721,6653,7285,7773,8181,8623,9145,9753,10494,11369,12346,13466,14637,15793,16898,17850,18567,18999,19128,18964,18568,18039,17437,16884,16425,16070,15848,15785,15857,16107,16497,17081,17829,18733,19786,21014,22317,23771,25246,26725,28130,29377,30372,31106,31523,31517,31192,30540,29614,28576,27329,26160,25006,23932,22937,22089,21354,20757,20260,19874,19591,19424,19346,19351,19467,19655,19918,20260,20678,21207,21761,22393,23067,23692,24314,24907,25365,25722,25991,26044,25920,25646,25165,24525,23814,23006,22140,21282,20433,19669,18965,18311,17767,17294,16888,16578,16313,16149,16028,16000,16010,16115,16277,16500,16800,17156,17591,18080,18647,19245,19885,20569,21290,22036,22773,23482,24187,24855,25433,25998,26404,26741,26978,27069,27089,26984,26787,26472,26066,25579,25021,24434,23793,23128,22498,21825,21194,20589,20010,19453,18976,18496,18102,17731,17394,17119,16850,16598,16389,16179,15990,15811,15627,15466,15324,15208,15114,15033,14962,14919,14889,14899,14913,14936,14963,15005,15044,15080,15127,15180,15193,15194,15192,15207,15227,15240,15238,15235,15188,15131,15070,15004,14917,14816,14672,14526,14357,14170,13966,13732,13513,13253,12985,12689,12411,12108,11820,11535,11261,11008,10773,10532,10266,9957,9640,9329,9057,8833,8600,8439,8279,8135,8046,7963,7899,7852,7781,7686,7563,7389,7243,7102,6979,6895,6802,6731,6674,6649,6622,6611,6598,6585,6613,6592,6438,6136,5707,5102,21.8,21.9,22.5,1567657,0.0,12.3,11.9,5.0,470,-1.00,-1.00,57.8576,-18.991919,0.000611,,,,,32 +SATSLF0720,2024246,3.513442,4.21,0.0590,0.1095,0.0228,0.00,15944,650,1,691,693,700,717,709,727,737,725,729,722,727,737,764,889,1202,1909,3083,4433,5663,6572,7213,7689,8087,8526,9037,9636,10368,11233,12216,13306,14468,15610,16713,17634,18357,18769,18921,18724,18359,17833,17257,16713,16252,15889,15683,15601,15683,15933,16341,16909,17664,18537,19589,20786,22089,23525,24983,26433,27851,29067,30055,30803,31197,31192,30883,30237,29322,28296,27077,25921,24763,23701,22723,21869,21136,20541,20073,19694,19413,19259,19167,19180,19284,19470,19735,20077,20496,21018,21579,22195,22842,23488,24093,24663,25146,25505,25745,25815,25691,25413,24925,24327,23605,22832,21957,21106,20277,19505,18803,18169,17613,17155,16764,16461,16178,16035,15930,15878,15889,15987,16139,16350,16646,17015,17457,17934,18494,19113,19742,20421,21137,21865,22602,23298,23989,24641,25239,25802,26227,26542,26793,26898,26892,26803,26591,26272,25862,25395,24838,24253,23621,22981,22338,21677,21046,20445,19856,19305,18833,18349,17971,17591,17271,16987,16715,16491,16285,16090,15904,15709,15530,15355,15211,15107,14997,14932,14857,14817,14801,14793,14802,14835,14857,14898,14926,14970,15027,15077,15093,15092,15103,15123,15134,15158,15149,15129,15095,15016,14967,14888,14809,14725,14588,14432,14277,14089,13866,13659,13424,13170,12889,12611,12325,12045,11744,11461,11193,10948,10714,10469,10211,9913,9593,9284,9006,8756,8546,8385,8224,8092,7990,7923,7861,7800,7746,7656,7509,7335,7173,7051,6930,6819,6758,6685,6632,6624,6581,6579,6560,6561,6566,6551,6407,6107,5690,5068,21.8,21.9,22.6,1567658,0.3,12.2,12.0,5.0,472,-1.00,-1.00,58.7460,-19.177702,0.000529,,,,,11 +SATSLF0720,2024246,3.513697,4.24,0.0594,0.1058,0.0195,0.00,16075,650,1,705,700,727,726,717,716,713,714,724,723,731,740,777,885,1216,1949,3107,4478,5715,6650,7286,7761,8157,8603,9139,9746,10486,11362,12333,13435,14604,15764,16867,17830,18530,18968,19104,18919,18562,18025,17426,16890,16432,16069,15830,15763,15852,16077,16500,17066,17821,18714,19776,21008,22317,23750,25221,26716,28116,29360,30349,31100,31488,31478,31186,30525,29596,28554,27321,26141,24996,23925,22929,22072,21354,20741,20257,19878,19594,19434,19325,19352,19450,19639,19901,20246,20691,21218,21765,22388,23057,23689,24303,24885,25362,25709,25984,26050,25929,25637,25154,24523,23803,23012,22137,21271,20425,19664,18965,18322,17754,17287,16896,16573,16315,16151,16032,15999,16013,16112,16277,16501,16798,17156,17589,18067,18626,19250,19881,20565,21295,22035,22765,23491,24189,24841,25428,26000,26416,26746,26962,27083,27103,26996,26788,26465,26080,25585,25001,24412,23790,23143,22498,21849,21205,20600,20015,19458,18964,18483,18087,17719,17384,17101,16849,16610,16411,16215,16013,15845,15633,15471,15335,15205,15108,15033,14947,14920,14902,14913,14922,14931,14951,14981,15039,15060,15112,15185,15191,15207,15203,15219,15227,15266,15253,15255,15201,15123,15075,15005,14919,14829,14677,14535,14358,14176,13957,13746,13504,13249,12969,12707,12416,12114,11813,11535,11262,11017,10787,10541,10283,9976,9642,9338,9058,8795,8597,8436,8272,8141,8059,7970,7921,7857,7786,7709,7554,7383,7236,7102,6989,6885,6803,6740,6688,6657,6637,6631,6615,6600,6603,6614,6459,6146,5709,5103,21.8,21.9,22.6,1567659,0.0,12.2,11.9,5.0,472,-1.00,-1.00,57.5876,-18.868492,0.000589,,,,,160 +SATSLF0720,2024246,3.513950,4.17,0.0584,0.1055,0.0197,0.00,16076,650,1,714,709,717,718,715,723,721,719,731,753,744,747,782,894,1225,1943,3118,4485,5726,6653,7310,7777,8193,8637,9148,9760,10506,11372,12373,13454,14637,15783,16897,17830,18546,18993,19125,18946,18573,18035,17459,16894,16440,16080,15856,15773,15858,16101,16497,17074,17834,18729,19789,21015,22319,23765,25219,26707,28113,29351,30361,31104,31502,31516,31186,30530,29604,28551,27325,26149,24996,23925,22930,22081,21349,20739,20265,19869,19577,19435,19336,19347,19453,19637,19893,20245,20681,21194,21767,22391,23041,23694,24301,24884,25338,25722,25986,26030,25901,25632,25163,24517,23796,23008,22134,21269,20433,19668,18961,18307,17750,17281,16880,16576,16326,16151,16045,15990,16030,16110,16289,16496,16790,17151,17594,18069,18645,19250,19881,20567,21291,22025,22762,23477,24173,24834,25413,25979,26402,26745,26982,27091,27112,27009,26802,26461,26077,25569,25003,24435,23797,23148,22499,21824,21193,20585,19997,19445,18953,18478,18085,17724,17381,17115,16840,16595,16396,16192,16005,15814,15616,15446,15305,15215,15096,15035,14968,14934,14914,14913,14905,14930,14947,14999,15034,15056,15122,15186,15194,15207,15209,15220,15229,15258,15249,15229,15190,15128,15070,14997,14912,14812,14680,14529,14359,14176,13950,13751,13509,13253,12978,12712,12410,12122,11825,11533,11256,11015,10772,10534,10281,9981,9642,9341,9061,8809,8584,8439,8280,8139,8065,7978,7913,7857,7790,7693,7546,7387,7222,7090,6971,6887,6802,6738,6679,6651,6630,6621,6614,6601,6614,6609,6461,6160,5737,5119,21.8,21.9,22.6,1567660,0.4,12.2,12.0,5.0,470,-1.00,-1.00,57.4419,-18.811309,0.000549,,,,,102 +SATSLF0720,2024246,3.514202,4.24,0.0594,0.1072,0.0209,0.00,16015,650,1,698,724,718,729,729,729,738,725,727,727,730,739,761,883,1209,1937,3092,4459,5664,6592,7229,7704,8123,8548,9066,9677,10411,11273,12253,13359,14520,15657,16752,17697,18413,18838,18977,18805,18443,17924,17340,16789,16333,15956,15725,15657,15737,15997,16406,16977,17712,18619,19675,20872,22174,23616,25080,26540,27954,29186,30187,30941,31332,31338,30980,30355,29440,28395,27166,26005,24855,23802,22806,21985,21237,20653,20164,19786,19509,19348,19264,19260,19366,19544,19815,20172,20589,21106,21677,22291,22967,23598,24217,24801,25264,25626,25894,25936,25817,25546,25064,24436,23717,22925,22066,21197,20361,19604,18899,18255,17701,17224,16823,16502,16263,16093,16002,15970,15972,16067,16219,16451,16733,17101,17527,18027,18581,19196,19817,20497,21225,21964,22693,23403,24113,24768,25345,25915,26336,26666,26901,27013,27026,26928,26716,26404,26001,25509,24933,24375,23718,23091,22438,21784,21159,20546,19961,19408,18903,18433,18055,17672,17353,17064,16792,16568,16370,16146,15968,15776,15582,15425,15296,15169,15079,15008,14932,14893,14874,14869,14878,14903,14914,14961,14993,15026,15081,15130,15137,15168,15165,15188,15201,15216,15218,15205,15159,15092,15029,14970,14886,14785,14659,14512,14341,14167,13944,13742,13488,13213,12957,12667,12373,12081,11795,11518,11245,11008,10762,10522,10262,9950,9627,9319,9044,8801,8591,8433,8261,8147,8045,7965,7895,7848,7762,7683,7538,7363,7208,7085,6973,6875,6787,6737,6675,6644,6613,6607,6590,6582,6595,6594,6443,6131,5719,5109,21.8,22.0,22.6,1567661,0.0,12.3,11.9,5.0,473,-1.00,-1.00,58.2702,-19.050428,0.000606,,,,,34 +SATSLF0720,2024246,3.514457,4.28,0.0599,0.1068,0.0204,0.00,16029,650,1,701,699,713,693,709,715,725,732,736,730,736,747,778,888,1209,1928,3092,4467,5685,6609,7249,7719,8135,8587,9093,9714,10445,11293,12299,13389,14567,15713,16822,17773,18482,18902,19029,18858,18484,17947,17373,16805,16352,16004,15769,15707,15781,16036,16437,17012,17754,18667,19722,20921,22231,23668,25125,26596,27995,29255,30241,30992,31385,31383,31045,30403,29479,28451,27224,26048,24906,23826,22839,21994,21269,20664,20183,19793,19518,19358,19281,19301,19394,19581,19846,20184,20630,21141,21709,22309,22977,23607,24234,24797,25265,25652,25889,25962,25834,25554,25085,24461,23735,22944,22084,21222,20377,19622,18909,18279,17707,17258,16826,16517,16266,16101,16000,15959,15975,16065,16246,16457,16755,17127,17541,18033,18598,19200,19830,20516,21241,21979,22718,23417,24123,24773,25349,25906,26344,26658,26901,27005,27032,26930,26730,26410,25997,25515,24970,24371,23735,23082,22439,21772,21162,20554,19963,19405,18919,18445,18055,17685,17349,17061,16797,16566,16372,16165,15984,15786,15589,15445,15294,15179,15077,15010,14929,14893,14873,14867,14869,14918,14930,14967,15012,15035,15076,15151,15147,15145,15175,15173,15197,15219,15220,15212,15161,15105,15045,14968,14884,14781,14653,14499,14333,14144,13927,13728,13476,13227,12954,12681,12383,12103,11793,11512,11253,10984,10760,10521,10258,9953,9640,9310,9034,8786,8580,8412,8275,8141,8042,7949,7891,7827,7759,7681,7524,7369,7188,7079,6968,6866,6787,6725,6687,6650,6622,6608,6599,6590,6607,6603,6455,6153,5718,5110,21.8,22.0,22.6,1567662,0.2,12.3,12.0,5.0,471,-1.00,-1.00,57.7157,-18.853642,0.000566,,,,,242 +SATSDF0720,2024246,3.759139,0.00,0.0000,0.0000,0.0000,0.00,648,0,1,645,635,637,618,635,605,622,632,618,613,619,633,620,640,629,641,633,634,641,633,637,642,655,656,644,656,641,645,651,653,649,651,660,652,657,657,657,654,647,642,643,642,651,653,653,647,654,643,633,647,645,652,657,653,655,659,663,656,659,644,639,639,651,663,661,649,647,651,650,655,652,663,645,658,649,669,661,662,650,657,661,661,651,642,662,654,653,665,666,645,656,652,647,655,645,647,656,651,652,641,645,659,656,662,661,661,659,658,649,641,631,641,642,649,656,664,660,663,665,645,645,642,650,657,657,656,651,660,660,661,661,652,644,642,640,644,648,634,639,635,637,648,658,637,643,644,648,643,655,645,651,642,637,628,635,640,634,645,640,645,640,643,659,663,657,642,653,628,639,646,659,661,646,653,655,656,657,659,637,651,643,648,655,648,648,635,635,633,629,643,638,638,651,649,657,658,656,653,660,659,651,653,641,631,639,645,659,645,663,662,643,658,645,651,656,650,633,650,644,640,637,637,636,643,655,662,649,641,655,668,654,667,665,657,652,650,651,653,651,651,640,659,657,654,657,650,659,657,652,667,653,642,655,650,646,485,0.0,0.0,0.0,1567661,0.1,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,55 +SATSLF0720,2024246,3.759696,3.95,0.0554,0.1018,0.0178,0.00,16166,648,1,697,690,697,708,710,717,722,720,726,722,725,728,757,877,1200,1940,3110,4504,5756,6689,7324,7798,8213,8663,9191,9814,10558,11424,12428,13546,14733,15881,17021,17976,18704,19144,19278,19091,18705,18172,17563,17003,16538,16173,15943,15882,15973,16215,16631,17200,17944,18853,19914,21133,22459,23940,25417,26908,28317,29579,30585,31336,31717,31731,31397,30757,29834,28770,27527,26349,25189,24101,23101,22234,21502,20887,20403,20026,19741,19596,19494,19501,19589,19784,20041,20399,20837,21350,21908,22541,23210,23854,24469,25036,25531,25893,26152,26196,26069,25794,25301,24659,23933,23140,22272,21394,20544,19765,19059,18425,17864,17373,16967,16645,16396,16226,16123,16077,16094,16187,16357,16586,16896,17265,17707,18177,18746,19365,19989,20681,21400,22158,22896,23622,24328,24978,25579,26134,26555,26888,27128,27245,27237,27158,26946,26620,26217,25728,25154,24562,23941,23290,22622,21956,21314,20708,20100,19540,19042,18583,18183,17815,17476,17208,16937,16693,16477,16267,16077,15880,15701,15546,15384,15283,15185,15114,15042,14990,14979,14971,14976,15003,15018,15045,15080,15123,15179,15245,15253,15269,15276,15285,15313,15318,15329,15305,15261,15188,15129,15063,14966,14877,14747,14590,14419,14233,14021,13807,13565,13299,13040,12746,12450,12152,11845,11556,11288,11042,10813,10583,10298,10000,9675,9364,9079,8833,8621,8451,8301,8171,8084,7995,7923,7876,7812,7721,7573,7396,7234,7115,6995,6902,6827,6756,6706,6675,6651,6645,6619,6601,6626,6628,6469,6157,5738,5123,21.6,21.6,22.1,1567663,0.0,12.3,11.9,5.0,593,-1.00,-1.00,58.0522,-19.201227,0.000601,,,,,53 +SATSLF0720,2024246,3.759877,4.22,0.0591,0.1025,0.0174,0.00,16156,648,1,712,701,693,703,712,715,716,718,724,731,729,732,765,884,1218,1941,3114,4487,5723,6650,7307,7783,8194,8644,9177,9794,10528,11399,12395,13505,14693,15853,16962,17913,18627,19065,19203,19016,18656,18128,17534,16973,16518,16153,15909,15849,15915,16173,16589,17167,17917,18840,19905,21122,22446,23893,25381,26865,28268,29523,30539,31283,31687,31683,31354,30721,29785,28724,27498,26326,25149,24068,23069,22212,21470,20858,20384,19978,19721,19557,19465,19478,19591,19760,20027,20376,20804,21326,21902,22517,23198,23832,24438,25027,25493,25864,26131,26180,26053,25773,25300,24654,23927,23128,22261,21366,20525,19762,19070,18410,17844,17377,16970,16651,16386,16217,16129,16080,16101,16192,16341,16595,16880,17253,17677,18172,18738,19368,19985,20673,21416,22157,22898,23597,24306,24960,25562,26124,26548,26887,27126,27240,27253,27153,26930,26603,26206,25709,25140,24559,23927,23277,22628,21965,21314,20708,20107,19550,19048,18583,18179,17811,17479,17192,16926,16690,16485,16276,16083,15893,15723,15531,15393,15279,15189,15108,15030,14989,14966,14963,14985,15017,15033,15057,15109,15142,15204,15245,15261,15254,15267,15271,15285,15305,15309,15303,15246,15201,15142,15066,14993,14881,14733,14602,14420,14231,14019,13800,13559,13305,13040,12763,12454,12180,11861,11571,11305,11045,10804,10573,10307,10001,9685,9371,9098,8858,8644,8473,8309,8171,8079,7987,7923,7871,7813,7720,7572,7403,7256,7123,7015,6907,6839,6779,6709,6679,6658,6660,6632,6615,6638,6617,6475,6185,5756,5126,21.7,21.7,22.2,1567663,0.1,12.2,11.9,5.0,493,-1.00,-1.00,57.8180,-19.080058,0.000554,,,,,69 +SATSLF0720,2024246,3.760133,4.19,0.0586,0.1027,0.0175,0.00,16153,648,1,708,712,699,711,718,718,726,727,720,727,727,728,775,881,1209,1927,3111,4486,5719,6654,7298,7765,8189,8640,9149,9766,10517,11392,12389,13497,14685,15847,16967,17920,18633,19066,19201,19025,18646,18116,17527,16965,16509,16146,15914,15843,15925,16178,16582,17174,17911,18821,19885,21101,22424,23873,25362,26837,28266,29513,30525,31273,31649,31659,31339,30679,29765,28710,27485,26318,25141,24060,23072,22216,21469,20868,20385,19981,19698,19542,19455,19474,19570,19767,20021,20368,20804,21330,21875,22506,23162,23809,24432,24989,25484,25829,26107,26173,26048,25776,25281,24646,23919,23121,22234,21372,20528,19766,19043,18407,17846,17386,16958,16642,16392,16217,16122,16084,16098,16181,16351,16584,16871,17249,17671,18166,18747,19358,19985,20660,21399,22148,22893,23598,24313,24958,25554,26121,26560,26880,27127,27236,27250,27146,26929,26599,26204,25729,25146,24567,23929,23288,22626,21945,21302,20696,20100,19550,19059,18571,18176,17817,17478,17198,16922,16681,16473,16263,16083,15904,15700,15525,15399,15293,15194,15121,15045,14994,14987,14965,14983,15003,15025,15065,15109,15136,15190,15253,15250,15267,15272,15269,15291,15317,15321,15301,15241,15187,15139,15065,14989,14877,14767,14601,14429,14242,14006,13811,13563,13305,13021,12747,12448,12162,11879,11578,11305,11058,10822,10589,10301,10009,9682,9373,9098,8853,8634,8455,8313,8160,8065,8005,7946,7877,7812,7733,7589,7413,7267,7126,7010,6913,6840,6773,6717,6682,6663,6645,6629,6624,6637,6633,6481,6175,5733,5124,21.7,21.7,22.2,1567664,0.0,12.3,11.9,5.0,477,-1.00,-1.00,57.7268,-19.029915,0.000481,,,,,247 +SATSLF0720,2024246,3.760386,4.10,0.0574,0.1033,0.0172,0.00,16132,648,1,699,696,699,701,694,704,714,715,720,727,725,731,764,884,1210,1930,3112,4484,5723,6650,7307,7770,8187,8627,9149,9763,10507,11388,12369,13495,14673,15848,16961,17894,18621,19053,19194,19012,18625,18080,17492,16945,16472,16119,15890,15825,15916,16162,16562,17147,17885,18787,19856,21064,22392,23837,25317,26804,28226,29464,30468,31228,31611,31613,31303,30649,29719,28676,27444,26260,25100,24026,23038,22173,21440,20842,20349,19947,19691,19524,19429,19437,19545,19730,19987,20327,20773,21288,21859,22473,23146,23803,24397,24985,25456,25822,26077,26132,26003,25732,25250,24601,23877,23080,22217,21354,20505,19746,19044,18393,17828,17353,16945,16617,16375,16190,16093,16049,16069,16177,16336,16554,16856,17216,17641,18125,18705,19304,19941,20636,21378,22113,22857,23578,24293,24942,25520,26108,26536,26846,27098,27196,27210,27109,26886,26572,26178,25683,25115,24526,23901,23236,22580,21902,21271,20684,20093,19546,19037,18571,18169,17808,17466,17181,16897,16667,16456,16273,16062,15877,15701,15534,15385,15268,15172,15094,15027,14988,14962,14965,14958,14987,15017,15056,15083,15122,15169,15223,15233,15245,15257,15249,15278,15287,15303,15301,15259,15173,15151,15069,14965,14861,14724,14570,14397,14210,14013,13783,13540,13287,13013,12738,12433,12135,11850,11559,11311,11045,10824,10573,10299,10000,9684,9362,9073,8828,8618,8437,8287,8157,8064,7978,7938,7865,7811,7720,7575,7389,7235,7111,7006,6901,6822,6761,6709,6673,6656,6640,6613,6609,6628,6626,6469,6157,5733,5112,21.7,21.7,22.2,1567665,0.8,12.3,12.0,5.0,477,-1.00,-1.00,57.9919,-19.112639,0.000527,,,,,68 +SATSLF0720,2024246,3.760636,3.97,0.0556,0.1034,0.0187,0.00,16128,648,1,697,700,711,704,711,709,707,730,716,721,721,728,764,869,1200,1949,3109,4503,5763,6686,7325,7801,8229,8660,9191,9800,10547,11422,12419,13516,14707,15883,16994,17932,18657,19097,19233,19055,18674,18129,17529,16967,16514,16133,15907,15842,15931,16166,16577,17158,17911,18816,19885,21102,22420,23848,25323,26819,28262,29489,30513,31245,31648,31653,31304,30661,29729,28690,27453,26273,25106,24029,23033,22195,21458,20837,20350,19962,19675,19510,19427,19433,19533,19721,19977,20327,20759,21294,21853,22473,23141,23784,24400,24981,25444,25794,26077,26109,25991,25723,25235,24608,23876,23075,22199,21330,20492,19720,19021,18368,17808,17339,16925,16615,16351,16197,16088,16041,16059,16149,16322,16540,16826,17184,17621,18093,18679,19290,19940,20622,21352,22101,22837,23554,24258,24922,25510,26068,26491,26823,27060,27182,27173,27099,26881,26539,26139,25649,25077,24493,23872,23226,22553,21905,21281,20669,20069,19517,19022,18538,18140,17770,17445,17151,16894,16641,16432,16235,16049,15858,15677,15513,15367,15261,15157,15082,15006,14962,14947,14955,14954,14969,14985,15036,15083,15105,15151,15204,15222,15244,15256,15255,15267,15285,15276,15267,15227,15182,15098,15030,14925,14847,14702,14541,14395,14202,13991,13779,13545,13293,13013,12732,12427,12151,11837,11559,11285,11034,10797,10564,10285,9995,9671,9358,9066,8821,8621,8437,8298,8158,8062,7993,7922,7867,7785,7709,7570,7400,7221,7090,6979,6887,6823,6749,6695,6657,6640,6626,6625,6605,6630,6614,6453,6141,5726,5102,21.7,21.7,22.2,1567666,0.3,12.2,12.0,5.0,478,-1.00,-1.00,57.7678,-19.030938,0.000587,,,,,115 +SATSLF0720,2024246,3.760891,3.95,0.0553,0.1022,0.0180,0.00,16165,648,1,692,701,693,711,711,715,722,713,727,725,718,727,756,867,1208,1957,3133,4518,5772,6707,7337,7818,8249,8690,9192,9823,10564,11443,12443,13563,14737,15911,17018,17989,18708,19148,19283,19094,18721,18187,17600,17010,16555,16181,15958,15885,15975,16222,16622,17209,17961,18866,19941,21141,22467,23925,25408,26898,28322,29569,30584,31332,31730,31743,31412,30740,29833,28773,27540,26354,25173,24105,23090,22227,21492,20887,20402,20000,19731,19565,19479,19479,19585,19787,20033,20389,20839,21341,21915,22528,23186,23835,24446,25024,25525,25869,26149,26204,26069,25793,25314,24665,23929,23138,22274,21397,20534,19774,19050,18414,17850,17380,16976,16648,16389,16225,16125,16073,16089,16199,16362,16580,16889,17268,17685,18178,18736,19344,19973,20652,21383,22141,22884,23608,24301,24962,25554,26114,26560,26877,27130,27220,27251,27146,26930,26606,26204,25720,25149,24561,23924,23275,22596,21949,21317,20705,20117,19534,19057,18573,18165,17787,17466,17174,16923,16665,16468,16268,16072,15882,15693,15540,15402,15277,15173,15099,15042,14992,14967,14973,14979,14997,15019,15048,15098,15129,15165,15223,15237,15261,15264,15266,15285,15305,15305,15287,15239,15189,15124,15061,14961,14869,14731,14574,14417,14234,14010,13805,13556,13287,13012,12741,12453,12166,11873,11577,11299,11061,10813,10581,10300,10015,9686,9383,9088,8848,8639,8461,8306,8171,8086,8010,7929,7891,7805,7722,7575,7392,7241,7120,7009,6898,6836,6765,6705,6670,6659,6654,6633,6620,6643,6625,6475,6172,5739,5120,21.7,21.8,22.3,1567667,0.0,12.2,11.9,5.0,478,-1.00,-1.00,57.7597,-19.080894,0.000520,,,,,37 +SATSLF0720,2024246,3.761146,4.15,0.0581,0.1034,0.0176,0.00,16152,648,1,712,712,713,716,727,721,727,724,717,723,727,733,771,895,1226,1961,3133,4510,5764,6679,7313,7791,8200,8647,9174,9778,10543,11416,12412,13531,14702,15880,16970,17923,18649,19076,19212,19024,18663,18122,17536,16971,16524,16161,15938,15860,15932,16189,16584,17157,17899,18822,19890,21108,22423,23866,25349,26848,28242,29520,30516,31259,31656,31657,31336,30697,29770,28720,27481,26295,25128,24055,23044,22202,21474,20851,20372,19974,19696,19529,19426,19451,19553,19749,20016,20352,20797,21306,21886,22493,23164,23817,24421,24993,25475,25851,26102,26159,26036,25762,25281,24643,23917,23122,22237,21379,20520,19771,19050,18402,17846,17373,16958,16629,16383,16225,16109,16072,16082,16181,16349,16581,16873,17251,17665,18167,18741,19344,19977,20658,21397,22140,22877,23602,24296,24964,25552,26129,26541,26875,27118,27221,27237,27125,26903,26584,26197,25697,25117,24531,23916,23257,22601,21942,21298,20685,20090,19553,19057,18576,18175,17810,17476,17176,16915,16673,16467,16271,16077,15888,15716,15541,15407,15281,15171,15101,15015,14973,14960,14958,14985,14999,15023,15059,15124,15142,15191,15242,15259,15262,15268,15271,15301,15318,15313,15303,15272,15198,15137,15074,14973,14873,14741,14588,14442,14232,14023,13818,13573,13301,13034,12739,12459,12149,11859,11570,11303,11050,10833,10585,10318,10011,9698,9387,9092,8848,8653,8468,8310,8168,8082,8005,7937,7882,7805,7724,7573,7415,7249,7134,7017,6914,6832,6763,6717,6673,6650,6641,6635,6637,6641,6653,6491,6180,5757,5127,21.7,21.8,22.3,1567668,0.3,12.3,12.0,5.0,476,-1.00,-1.00,57.5178,-18.940759,0.000476,,,,,112 +SATSLF0720,2024246,3.761403,4.14,0.0579,0.1031,0.0178,0.00,16149,648,1,698,695,709,714,724,722,720,717,732,725,722,733,773,885,1222,1962,3126,4514,5749,6667,7331,7811,8225,8677,9195,9821,10561,11427,12419,13540,14717,15872,16990,17946,18681,19108,19238,19061,18685,18138,17550,16978,16521,16172,15932,15869,15954,16192,16619,17184,17919,18835,19898,21118,22434,23886,25360,26839,28278,29530,30535,31282,31677,31676,31353,30692,29769,28736,27478,26286,25143,24045,23053,22208,21474,20868,20388,19989,19709,19533,19438,19460,19566,19757,20013,20369,20789,21317,21896,22489,23163,23809,24411,24993,25483,25853,26109,26167,26042,25746,25278,24632,23921,23117,22241,21363,20512,19757,19061,18396,17835,17364,16973,16641,16384,16219,16109,16069,16084,16172,16346,16592,16877,17237,17672,18168,18725,19348,19977,20653,21385,22125,22869,23576,24276,24941,25533,26100,26521,26838,27081,27195,27200,27105,26898,26565,26181,25673,25113,24537,23882,23242,22586,21928,21298,20697,20096,19529,19044,18557,18153,17783,17465,17178,16906,16673,16461,16260,16062,15872,15694,15511,15387,15264,15169,15084,15013,14979,14962,14957,14977,14998,15017,15045,15104,15131,15173,15235,15245,15256,15255,15260,15271,15299,15303,15285,15243,15187,15128,15045,14966,14865,14730,14569,14394,14214,13994,13783,13549,13296,13022,12738,12438,12155,11859,11568,11303,11048,10810,10570,10301,9992,9666,9380,9086,8848,8628,8456,8305,8181,8082,8001,7918,7873,7808,7720,7573,7405,7249,7121,7013,6908,6823,6757,6702,6672,6662,6656,6638,6619,6631,6631,6477,6163,5741,5108,21.7,21.8,22.4,1567669,0.0,12.2,11.9,5.0,475,-1.00,-1.00,57.1470,-18.792284,0.000525,,,,,233 +SATSLF0720,2024246,3.761657,4.22,0.0591,0.1042,0.0190,0.00,16116,648,1,699,703,718,699,711,714,711,711,722,713,723,732,772,897,1217,1936,3109,4496,5723,6658,7293,7765,8192,8633,9166,9780,10537,11408,12394,13508,14681,15838,16953,17881,18631,19053,19183,19000,18631,18093,17504,16943,16473,16125,15881,15812,15898,16149,16559,17141,17889,18792,19872,21069,22396,23843,25321,26794,28213,29474,30472,31213,31619,31611,31285,30624,29699,28645,27406,26242,25077,24009,23010,22141,21415,20814,20327,19929,19657,19489,19393,19403,19515,19704,19962,20309,20727,21259,21827,22432,23098,23750,24375,24942,25428,25796,26053,26106,25979,25703,25229,24600,23878,23074,22199,21341,20489,19721,19008,18366,17810,17332,16924,16596,16363,16189,16082,16018,16059,16165,16313,16534,16832,17196,17630,18123,18692,19293,19931,20601,21328,22072,22828,23538,24244,24893,25491,26045,26498,26820,27050,27152,27173,27069,26852,26530,26146,25645,25077,24485,23864,23213,22550,21892,21258,20653,20055,19511,18998,18532,18126,17749,17421,17129,16870,16632,16439,16239,16053,15865,15669,15490,15343,15237,15135,15061,14981,14941,14935,14937,14935,14974,14985,15023,15063,15091,15142,15202,15210,15236,15242,15250,15271,15284,15277,15284,15230,15158,15089,15019,14944,14846,14691,14558,14386,14187,13989,13766,13535,13266,12993,12719,12424,12133,11849,11563,11284,11028,10779,10553,10276,9971,9649,9347,9075,8818,8613,8446,8289,8165,8061,7995,7929,7876,7781,7707,7564,7369,7227,7094,6989,6902,6817,6748,6683,6657,6647,6626,6615,6607,6623,6617,6461,6159,5741,5111,21.7,21.8,22.4,1567670,0.3,12.2,12.0,5.0,474,-1.00,-1.00,57.3251,-18.826986,0.000613,,,,,64 +SATSLF0720,2024246,3.761909,4.08,0.0572,0.1037,0.0184,0.00,16129,648,1,691,695,703,705,702,706,723,718,717,713,716,727,765,869,1215,1940,3115,4493,5755,6675,7325,7785,8206,8661,9186,9801,10539,11402,12403,13520,14689,15859,16960,17917,18652,19082,19232,19021,18671,18125,17541,16973,16519,16144,15912,15838,15923,16169,16588,17168,17901,18809,19861,21091,22416,23874,25349,26838,28248,29496,30500,31243,31643,31637,31313,30665,29745,28695,27448,26261,25091,24020,23028,22172,21444,20837,20365,19964,19680,19529,19414,19432,19533,19722,19975,20334,20760,21293,21843,22472,23140,23784,24392,24968,25454,25821,26085,26126,26004,25722,25244,24615,23905,23092,22219,21352,20504,19735,19021,18373,17815,17345,16925,16603,16370,16201,16093,16052,16072,16157,16318,16537,16839,17209,17652,18133,18693,19319,19963,20640,21368,22093,22848,23552,24272,24908,25495,26074,26490,26818,27048,27173,27181,27099,26869,26542,26161,25646,25084,24507,23854,23214,22562,21897,21267,20662,20078,19530,19037,18556,18154,17792,17451,17169,16897,16648,16446,16247,16042,15855,15671,15509,15376,15249,15138,15078,15006,14967,14941,14951,14941,14983,14999,15035,15073,15120,15156,15210,15210,15239,15248,15241,15272,15289,15275,15271,15237,15161,15109,15029,14944,14856,14726,14566,14394,14209,14004,13795,13537,13281,13013,12741,12435,12146,11827,11555,11281,11037,10794,10566,10296,9985,9667,9354,9080,8829,8608,8441,8288,8161,8073,7990,7904,7849,7805,7705,7565,7389,7237,7102,6987,6889,6807,6740,6699,6654,6627,6619,6613,6603,6622,6608,6463,6161,5729,5116,21.7,21.8,22.4,1567671,0.3,12.2,11.9,5.0,472,-1.00,-1.00,57.4342,-18.892344,0.000581,,,,,118 +SATSLF0720,2024246,3.762165,4.27,0.0598,0.1032,0.0181,0.00,16137,648,1,704,696,711,715,725,719,722,724,717,723,732,737,775,887,1220,1956,3128,4516,5780,6693,7330,7804,8233,8689,9181,9815,10538,11418,12409,13528,14702,15871,16979,17947,18672,19113,19250,19041,18654,18120,17533,16963,16512,16167,15941,15861,15938,16201,16593,17190,17918,18822,19887,21128,22445,23893,25373,26859,28249,29516,30504,31251,31654,31657,31342,30669,29750,28688,27466,26274,25122,24035,23041,22193,21456,20847,20354,19956,19677,19515,19433,19441,19560,19734,20000,20346,20774,21292,21856,22470,23133,23783,24381,24982,25438,25832,26093,26137,26009,25732,25245,24624,23897,23113,22229,21360,20498,19732,19017,18375,17809,17353,16948,16629,16372,16190,16098,16057,16075,16167,16339,16561,16859,17229,17642,18145,18705,19301,19955,20640,21355,22110,22833,23554,24253,24912,25502,26087,26509,26823,27062,27173,27196,27095,26903,26562,26161,25669,25098,24504,23875,23234,22567,21909,21268,20659,20075,19534,19016,18531,18131,17791,17440,17154,16888,16649,16450,16233,16050,15861,15661,15498,15365,15253,15159,15095,15005,14965,14941,14935,14951,14978,15005,15038,15088,15110,15163,15217,15229,15239,15248,15257,15275,15291,15300,15280,15242,15168,15121,15036,14946,14853,14733,14581,14394,14216,14002,13775,13558,13285,13003,12743,12444,12151,11858,11562,11291,11048,10804,10569,10305,10005,9673,9365,9075,8843,8618,8461,8304,8165,8075,8013,7917,7868,7803,7706,7575,7405,7261,7125,7002,6898,6819,6757,6701,6661,6646,6636,6613,6617,6613,6625,6480,6164,5739,5113,21.8,21.8,22.4,1567672,0.3,12.2,12.0,5.0,476,-1.00,-1.00,56.6015,-18.555182,0.000587,,,,,175 +SATSLF0720,2024246,3.762420,4.21,0.0590,0.1037,0.0181,0.00,16123,648,1,707,711,712,728,721,711,715,718,738,729,734,747,781,891,1214,1946,3122,4495,5736,6670,7312,7794,8197,8654,9170,9798,10533,11399,12411,13501,14679,15840,16955,17896,18627,19056,19184,19008,18633,18097,17514,16958,16516,16137,15913,15837,15917,16156,16565,17145,17878,18792,19863,21078,22404,23843,25315,26793,28228,29474,30470,31210,31611,31610,31289,30626,29710,28672,27436,26249,25095,24017,23020,22158,21409,20807,20321,19939,19665,19507,19412,19450,19522,19709,19961,20310,20740,21264,21831,22458,23129,23766,24370,24965,25440,25809,26066,26107,25992,25729,25222,24595,23889,23070,22203,21344,20501,19721,19027,18360,17804,17329,16933,16610,16372,16205,16098,16045,16055,16148,16312,16547,16832,17201,17626,18124,18692,19311,19946,20618,21345,22069,22827,23538,24249,24912,25495,26064,26499,26816,27051,27159,27179,27068,26860,26532,26146,25653,25073,24510,23862,23214,22564,21899,21261,20650,20061,19506,19011,18546,18136,17770,17448,17142,16887,16653,16437,16245,16058,15860,15668,15489,15361,15244,15131,15067,15001,14953,14941,14950,14936,14965,14995,15028,15087,15114,15168,15213,15227,15237,15242,15233,15257,15279,15277,15277,15243,15165,15120,15041,14952,14857,14716,14552,14389,14206,13989,13776,13544,13282,13017,12737,12445,12149,11833,11555,11283,11029,10779,10556,10285,9978,9665,9362,9079,8835,8623,8448,8308,8161,8061,7972,7919,7856,7808,7726,7573,7402,7241,7115,7003,6903,6826,6757,6706,6662,6642,6633,6625,6602,6636,6619,6475,6158,5737,5116,21.7,21.8,22.4,1567673,0.1,12.3,12.0,5.0,475,-1.00,-1.00,57.1138,-18.743027,0.000492,,,,,202 +SATSLF0720,2024246,3.762671,4.25,0.0595,0.1057,0.0199,0.00,16080,648,1,716,715,713,711,718,712,726,713,713,722,729,739,777,895,1211,1952,3114,4487,5719,6659,7312,7776,8197,8629,9164,9777,10501,11383,12372,13472,14650,15805,16896,17854,18570,19000,19139,18956,18578,18060,17463,16907,16451,16072,15855,15786,15865,16113,16516,17099,17836,18756,19801,21015,22331,23770,25245,26716,28124,29387,30365,31120,31506,31520,31190,30531,29614,28556,27334,26155,24986,23925,22939,22091,21365,20758,20265,19896,19613,19456,19329,19358,19458,19646,19893,20253,20683,21212,21765,22391,23049,23685,24288,24876,25356,25713,25981,26037,25912,25638,25164,24524,23818,23028,22156,21298,20445,19678,18972,18313,17751,17285,16882,16558,16330,16145,16047,16013,16032,16120,16286,16501,16805,17170,17581,18066,18630,19240,19875,20557,21307,22037,22759,23477,24171,24841,25417,25988,26417,26743,26983,27089,27113,27005,26788,26455,26079,25585,25024,24435,23795,23140,22486,21831,21210,20604,20004,19451,18976,18493,18090,17723,17409,17113,16842,16611,16402,16195,16017,15802,15637,15469,15341,15213,15106,15042,14961,14930,14896,14905,14906,14935,14957,14997,15032,15058,15122,15187,15190,15190,15211,15210,15245,15249,15241,15243,15190,15122,15060,14995,14922,14829,14678,14539,14365,14180,13969,13752,13512,13256,12997,12700,12404,12119,11813,11537,11255,11013,10777,10541,10269,9967,9650,9333,9040,8821,8601,8438,8289,8161,8058,7981,7910,7860,7793,7710,7563,7371,7241,7098,6993,6885,6809,6738,6681,6649,6648,6618,6610,6601,6608,6603,6444,6149,5729,5109,21.8,21.8,22.4,1567673,0.4,12.2,12.0,5.0,468,-1.00,-1.00,56.9296,-18.605599,0.000533,,,,,158 +SATSLF0720,2024246,3.762927,4.16,0.0583,0.1056,0.0197,0.00,16070,648,1,697,701,699,692,699,707,718,733,737,729,726,737,785,896,1219,1950,3102,4481,5726,6646,7281,7767,8177,8631,9134,9735,10500,11357,12347,13473,14624,15792,16898,17842,18554,18988,19125,18930,18566,18021,17445,16896,16434,16062,15848,15773,15849,16083,16484,17079,17817,18725,19787,21001,22322,23769,25234,26707,28119,29376,30358,31101,31491,31495,31172,30524,29602,28558,27337,26138,24976,23914,22913,22073,21339,20736,20260,19869,19585,19428,19332,19345,19442,19635,19909,20245,20684,21198,21745,22375,23026,23675,24298,24885,25354,25713,25973,26029,25909,25625,25149,24515,23801,23005,22130,21265,20429,19653,18944,18307,17732,17283,16877,16551,16311,16152,16041,15988,16016,16095,16279,16496,16773,17159,17583,18072,18639,19255,19883,20568,21282,22026,22760,23465,24162,24834,25416,25989,26401,26729,26987,27084,27102,27008,26773,26453,26060,25557,25006,24431,23777,23141,22484,21834,21201,20587,19997,19458,18961,18477,18083,17720,17394,17098,16833,16608,16400,16181,16009,15821,15621,15464,15326,15201,15110,15036,14944,14912,14912,14897,14903,14933,14963,14986,15038,15050,15109,15166,15185,15185,15202,15208,15213,15241,15245,15246,15186,15136,15065,14990,14899,14807,14686,14530,14347,14167,13958,13738,13499,13237,12986,12704,12381,12110,11806,11520,11239,11003,10768,10537,10266,9975,9653,9351,9064,8806,8582,8427,8276,8134,8036,7969,7885,7848,7799,7698,7553,7374,7217,7095,6979,6875,6802,6738,6679,6648,6632,6605,6589,6592,6601,6597,6440,6143,5714,5101,21.8,21.9,22.5,1567674,0.4,12.3,12.0,5.0,475,-1.00,-1.00,57.6636,-18.904104,0.000606,,,,,254 +SATSLF0720,2024246,3.763181,4.24,0.0594,0.1049,0.0193,0.00,16083,648,1,705,704,712,712,705,694,710,712,716,737,733,745,760,883,1211,1942,3113,4483,5724,6659,7284,7771,8171,8626,9139,9753,10488,11345,12349,13444,14627,15777,16887,17849,18557,18995,19123,18940,18569,18026,17459,16900,16434,16069,15853,15776,15863,16101,16518,17085,17829,18745,19802,21019,22339,23777,25233,26707,28141,29382,30380,31130,31529,31505,31197,30544,29628,28573,27332,26181,25002,23940,22949,22089,21352,20761,20274,19890,19617,19465,19363,19371,19479,19650,19907,20249,20701,21209,21783,22398,23064,23705,24330,24907,25386,25744,26004,26054,25932,25648,25171,24537,23829,23031,22178,21294,20452,19671,18970,18323,17753,17290,16872,16574,16333,16160,16061,16027,16038,16128,16270,16508,16781,17175,17601,18099,18669,19265,19909,20577,21316,22042,22777,23505,24196,24867,25462,26024,26441,26770,27013,27105,27124,27029,26804,26474,26084,25592,25033,24450,23810,23153,22511,21837,21219,20609,20021,19472,18985,18510,18106,17736,17416,17106,16850,16609,16388,16203,16019,15821,15645,15471,15321,15204,15100,15035,14969,14932,14922,14905,14914,14940,14968,15013,15050,15068,15107,15179,15189,15197,15197,15211,15233,15260,15263,15259,15206,15138,15079,15007,14923,14822,14673,14540,14362,14179,13981,13754,13517,13245,12979,12699,12410,12122,11818,11538,11253,11015,10773,10543,10282,9986,9663,9345,9057,8801,8594,8432,8266,8136,8056,7974,7900,7846,7779,7686,7551,7379,7221,7092,6978,6877,6798,6734,6691,6648,6637,6609,6587,6604,6597,6610,6442,6137,5716,5096,21.8,21.9,22.5,1567675,0.0,12.2,12.0,5.0,472,-1.00,-1.00,57.4942,-18.846381,0.000546,,,,,188 +SATSLF0720,2024246,3.763432,4.15,0.0581,0.1056,0.0200,0.00,16069,648,1,704,705,697,703,704,701,717,724,730,730,736,743,775,876,1215,1937,3113,4478,5716,6643,7291,7762,8182,8627,9138,9751,10495,11338,12354,13449,14625,15776,16893,17842,18562,18989,19129,18936,18567,18033,17434,16887,16414,16045,15831,15761,15856,16085,16498,17072,17809,18712,19786,21017,22314,23762,25230,26694,28121,29354,30358,31098,31499,31480,31155,30506,29585,28546,27317,26133,24980,23908,22929,22065,21345,20723,20259,19863,19579,19431,19330,19338,19429,19638,19892,20237,20673,21184,21753,22363,23043,23682,24275,24868,25346,25704,25973,26034,25917,25633,25168,24526,23796,23002,22138,21252,20419,19664,18966,18297,17756,17288,16893,16571,16310,16157,16029,16011,16017,16113,16257,16499,16793,17169,17580,18078,18638,19238,19881,20566,21277,22006,22749,23457,24162,24816,25414,25973,26387,26711,26966,27072,27079,26984,26770,26438,26048,25575,25008,24430,23805,23138,22496,21828,21192,20588,20000,19449,18960,18488,18081,17715,17386,17085,16829,16588,16391,16196,16008,15809,15621,15449,15329,15201,15099,15030,14957,14912,14901,14894,14917,14929,14954,14979,15048,15065,15106,15158,15184,15186,15195,15201,15218,15249,15249,15232,15171,15125,15058,14985,14895,14809,14673,14529,14363,14167,13973,13745,13506,13237,12975,12697,12397,12104,11820,11526,11249,11010,10772,10529,10265,9963,9644,9335,9041,8815,8605,8429,8289,8149,8052,7972,7893,7829,7777,7697,7541,7379,7213,7091,6983,6878,6806,6749,6685,6647,6629,6613,6595,6589,6614,6611,6470,6148,5721,5105,21.8,21.9,22.5,1567676,0.4,12.3,12.0,5.0,473,-1.00,-1.00,57.6330,-18.885152,0.000649,,,,,215 +SATSLF0720,2024246,3.763688,4.16,0.0582,0.1057,0.0200,0.00,16065,648,1,697,701,701,702,719,729,737,729,743,736,717,737,761,895,1232,1949,3125,4486,5730,6645,7294,7749,8171,8617,9124,9747,10488,11346,12329,13432,14611,15774,16876,17832,18549,18991,19106,18935,18555,18015,17431,16880,16434,16057,15830,15744,15828,16066,16499,17069,17817,18711,19780,20989,22316,23738,25210,26678,28090,29338,30338,31078,31463,31479,31153,30484,29568,28522,27298,26121,24974,23898,22906,22076,21334,20724,20235,19862,19582,19410,19325,19341,19429,19634,19895,20234,20674,21178,21761,22381,23040,23688,24294,24865,25334,25692,25957,26007,25894,25627,25148,24519,23817,22992,22139,21264,20418,19654,18944,18297,17747,17281,16867,16560,16298,16147,16042,16009,16023,16113,16249,16491,16787,17152,17581,18071,18636,19237,19877,20539,21267,22025,22773,23465,24172,24828,25413,25961,26379,26724,26966,27057,27079,26989,26774,26441,26045,25570,25003,24423,23780,23139,22477,21805,21188,20570,19994,19432,18954,18477,18065,17693,17374,17099,16826,16577,16381,16186,16000,15794,15619,15453,15319,15197,15103,15017,14948,14919,14894,14903,14910,14929,14953,14978,15017,15041,15099,15159,15180,15193,15193,15197,15211,15249,15234,15219,15184,15121,15058,14996,14903,14802,14679,14530,14359,14161,13958,13733,13504,13239,12964,12694,12392,12109,11814,11522,11253,10994,10771,10524,10263,9968,9664,9352,9048,8805,8603,8430,8276,8136,8051,7962,7893,7840,7781,7696,7558,7377,7222,7095,6985,6885,6811,6742,6688,6640,6624,6617,6603,6584,6617,6605,6451,6150,5721,5096,21.8,21.9,22.6,1567677,0.3,12.3,11.9,5.0,474,-1.00,-1.00,57.4819,-18.810951,0.000624,,,,,207 +SATSLF0720,2024246,3.763941,4.21,0.0589,0.1066,0.0201,0.00,16039,648,1,709,711,705,709,720,714,713,723,717,727,732,744,783,887,1213,1934,3101,4477,5709,6635,7275,7742,8159,8620,9110,9727,10464,11322,12323,13422,14596,15747,16835,17791,18499,18945,19066,18886,18516,17996,17382,16843,16381,16020,15815,15741,15809,16054,16455,17048,17765,18677,19737,20953,22258,23698,25170,26640,28058,29281,30289,31016,31403,31413,31082,30445,29534,28486,27255,26081,24937,23874,22870,22018,21293,20685,20221,19817,19529,19377,19287,19305,19401,19591,19858,20195,20637,21141,21701,22325,22981,23630,24252,24811,25289,25657,25929,25970,25835,25563,25091,24469,23748,22955,22105,21233,20388,19602,18921,18265,17706,17251,16835,16529,16278,16113,16006,15968,15994,16093,16241,16469,16757,17118,17555,18034,18603,19207,19841,20516,21237,21974,22698,23419,24120,24790,25376,25940,26361,26676,26907,27008,27022,26927,26724,26385,26018,25533,24970,24381,23741,23109,22449,21773,21157,20546,19963,19402,18917,18453,18053,17690,17366,17079,16807,16571,16369,16158,15974,15786,15602,15434,15283,15175,15093,15004,14932,14889,14876,14867,14875,14903,14934,14952,15004,15034,15101,15153,15164,15165,15179,15184,15188,15216,15214,15211,15161,15110,15053,14971,14883,14787,14651,14498,14338,14163,13938,13737,13499,13238,12962,12669,12371,12091,11801,11506,11249,10994,10755,10533,10253,9951,9637,9317,9030,8801,8590,8420,8267,8139,8045,7963,7873,7841,7765,7674,7534,7363,7225,7093,6977,6880,6804,6737,6672,6630,6609,6600,6595,6581,6608,6602,6445,6137,5715,5110,21.8,21.9,22.6,1567678,0.0,12.3,12.0,5.0,466,-1.00,-1.00,57.5950,-18.827628,0.000567,,,,,106 +SATSLF0720,2024246,3.764192,4.17,0.0584,0.1065,0.0204,0.00,16038,648,1,699,711,706,711,713,714,735,736,733,725,740,739,767,893,1214,1938,3105,4474,5707,6632,7249,7735,8144,8583,9104,9707,10467,11330,12310,13413,14586,15738,16826,17773,18498,18921,19069,18866,18520,17986,17398,16848,16382,16023,15803,15724,15798,16045,16440,17031,17770,18679,19744,20953,22250,23699,25162,26629,28023,29267,30265,30998,31406,31410,31091,30437,29540,28489,27245,26086,24921,23853,22850,21999,21275,20695,20208,19820,19533,19370,19291,19309,19392,19578,19851,20193,20631,21152,21713,22326,22986,23632,24245,24820,25277,25650,25922,25960,25846,25573,25111,24485,23769,22970,22114,21221,20390,19603,18921,18282,17713,17251,16855,16529,16297,16116,16009,15966,15995,16084,16235,16448,16763,17126,17559,18042,18620,19227,19848,20519,21237,21984,22736,23424,24138,24770,25371,25941,26369,26696,26933,27042,27044,26955,26720,26402,26009,25516,24962,24373,23730,23095,22437,21776,21145,20546,19965,19409,18925,18465,18045,17693,17364,17074,16800,16567,16364,16161,15975,15793,15609,15434,15297,15191,15081,15016,14918,14895,14874,14880,14882,14897,14936,14962,15022,15046,15085,15155,15161,15166,15186,15189,15202,15221,15235,15221,15164,15105,15043,14968,14890,14792,14653,14501,14343,14140,13930,13720,13481,13216,12968,12685,12389,12104,11797,11531,11244,11003,10764,10502,10239,9934,9617,9318,9033,8796,8578,8423,8262,8127,8043,7959,7902,7845,7754,7687,7534,7371,7221,7093,6980,6875,6789,6723,6675,6647,6626,6620,6601,6586,6599,6597,6423,6135,5709,5081,21.8,21.9,22.6,1567679,0.1,12.2,12.0,5.0,473,-1.00,-1.00,57.8487,-18.930038,0.000538,,,,,94 +SATSLF0720,2024246,3.764447,4.31,0.0603,0.1070,0.0208,0.00,16025,648,1,708,720,733,730,736,729,717,718,719,733,714,731,770,886,1201,1925,3090,4451,5685,6600,7261,7703,8139,8577,9088,9709,10446,11290,12273,13371,14547,15698,16800,17741,18459,18897,19013,18846,18470,17943,17357,16809,16334,15994,15762,15696,15794,16037,16445,17015,17755,18664,19706,20929,22226,23640,25117,26594,27978,29222,30210,30978,31368,31365,31059,30413,29498,28448,27228,26043,24898,23831,22848,21990,21274,20660,20189,19803,19508,19363,19271,19277,19375,19577,19844,20186,20603,21129,21696,22313,22985,23610,24230,24805,25274,25632,25899,25942,25825,25556,25080,24437,23722,22949,22080,21216,20371,19606,18900,18267,17708,17243,16841,16522,16280,16116,15997,15965,15969,16064,16248,16469,16744,17123,17553,18025,18589,19200,19831,20526,21226,21965,22696,23405,24107,24773,25341,25920,26340,26654,26907,27014,27033,26934,26714,26385,25989,25501,24930,24363,23717,23081,22438,21784,21152,20538,19948,19411,18910,18442,18048,17681,17353,17064,16797,16569,16365,16157,15976,15782,15589,15427,15289,15177,15083,15009,14929,14883,14867,14866,14891,14901,14928,14958,15008,15033,15097,15156,15153,15179,15186,15189,15205,15231,15221,15213,15154,15098,15029,14967,14881,14796,14645,14487,14322,14145,13937,13729,13488,13226,12953,12675,12373,12092,11781,11507,11237,10995,10749,10518,10247,9953,9629,9310,9027,8796,8587,8409,8267,8141,8050,7965,7883,7834,7769,7664,7531,7341,7187,7067,6960,6867,6794,6749,6678,6642,6634,6618,6603,6581,6589,6592,6437,6137,5709,5102,21.8,22.0,22.6,1567680,0.1,12.2,11.9,5.0,464,-1.00,-1.00,57.7388,-18.861570,0.000493,,,,,236 +SATSDF0720,2024246,4.009138,0.00,0.0000,0.0000,0.0000,0.00,648,0,1,640,623,633,626,639,637,632,613,625,608,615,610,611,631,637,632,625,640,632,639,634,649,657,647,659,645,659,652,655,663,646,666,645,647,658,653,657,657,653,656,658,652,663,663,670,658,669,657,661,653,649,643,663,662,640,655,656,641,644,650,657,669,653,673,654,650,655,646,653,661,653,649,648,653,653,639,655,645,649,649,647,660,662,652,667,651,645,635,633,634,639,636,659,657,647,651,647,645,657,651,651,661,642,648,663,662,653,646,649,650,650,657,645,654,646,647,643,656,649,642,650,646,651,661,667,661,657,645,643,649,633,648,645,649,649,660,650,663,653,669,660,649,646,647,633,647,637,647,649,645,647,654,659,649,649,645,645,649,646,650,650,647,644,646,635,635,645,645,653,648,664,657,665,649,657,649,652,646,654,645,649,656,659,647,667,657,658,641,648,638,637,636,647,649,642,637,643,636,640,637,651,653,646,649,644,651,638,655,645,651,649,640,646,656,645,657,665,653,645,634,647,637,637,641,659,658,653,656,659,653,653,642,640,659,644,650,651,653,650,648,653,636,631,633,643,631,647,651,638,657,645,648,648,647,646,483,0.0,0.0,0.0,1567679,0.1,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,194 +SATSLF0720,2024246,4.009696,4.15,0.0582,0.0997,0.0161,0.00,16235,648,1,695,701,702,712,713,709,718,727,707,723,724,733,773,886,1220,1954,3130,4538,5785,6726,7380,7845,8275,8739,9256,9885,10639,11501,12529,13641,14840,16002,17141,18087,18816,19248,19386,19201,18823,18281,17673,17112,16647,16285,16059,15986,16069,16321,16722,17307,18045,18976,20046,21277,22603,24057,25536,27021,28475,29733,30753,31485,31896,31898,31574,30917,29977,28918,27665,26475,25301,24212,23205,22354,21614,20996,20507,20123,19825,19677,19586,19581,19683,19866,20126,20480,20914,21442,21998,22625,23282,23942,24565,25137,25632,26005,26250,26298,26173,25893,25415,24786,24038,23254,22362,21473,20621,19850,19158,18485,17921,17449,17040,16716,16465,16289,16189,16152,16178,16257,16424,16651,16952,17326,17761,18242,18826,19432,20067,20758,21493,22235,22981,23693,24401,25067,25668,26224,26659,26994,27237,27336,27366,27268,27057,26709,26304,25808,25239,24651,24006,23357,22695,22030,21383,20769,20177,19618,19132,18657,18247,17878,17548,17246,16989,16743,16538,16310,16137,15943,15757,15598,15449,15328,15218,15150,15076,15051,15024,15023,15019,15067,15084,15103,15159,15176,15245,15281,15293,15305,15321,15324,15329,15353,15351,15353,15294,15243,15186,15114,15028,14921,14803,14648,14450,14279,14058,13838,13609,13354,13080,12790,12496,12193,11902,11610,11349,11082,10843,10605,10333,10025,9712,9391,9113,8883,8669,8488,8340,8201,8110,8029,7954,7895,7831,7739,7600,7417,7285,7153,7037,6951,6865,6793,6722,6695,6658,6655,6643,6633,6655,6655,6505,6204,5752,5149,21.6,21.6,22.1,1567680,0.5,12.2,12.0,5.0,594,-1.00,-1.00,56.4208,-18.618034,0.000486,,,,,104 +SATSLF0720,2024246,4.009877,4.18,0.0586,0.1004,0.0164,0.00,16214,648,1,698,701,701,706,708,710,705,705,710,719,716,727,759,882,1213,1938,3133,4508,5780,6708,7360,7831,8263,8710,9216,9849,10600,11479,12466,13606,14792,15957,17079,18045,18762,19206,19333,19142,18760,18215,17634,17057,16619,16240,16023,15947,16025,16285,16670,17256,18008,18919,19997,21222,22549,24010,25506,26997,28417,29687,30669,31447,31840,31829,31520,30848,29910,28847,27607,26432,25253,24167,23167,22302,21571,20963,20477,20080,19813,19644,19555,19551,19655,19854,20099,20457,20896,21415,21986,22601,23269,23913,24526,25115,25586,25953,26225,26248,26139,25861,25376,24746,24020,23217,22332,21463,20603,19845,19128,18473,17901,17415,17024,16690,16432,16283,16168,16142,16153,16245,16404,16635,16925,17305,17717,18220,18786,19403,20060,20744,21483,22237,22982,23685,24393,25054,25650,26217,26634,26945,27203,27309,27336,27238,27015,26679,26302,25801,25242,24625,23987,23341,22674,22007,21373,20758,20165,19616,19117,18629,18229,17858,17540,17245,16977,16740,16532,16331,16124,15937,15739,15579,15432,15324,15225,15148,15065,15047,15017,15001,15021,15033,15061,15106,15137,15162,15225,15275,15297,15299,15316,15313,15324,15351,15347,15342,15292,15227,15175,15105,15014,14926,14782,14630,14445,14277,14052,13844,13597,13336,13069,12769,12480,12197,11885,11596,11326,11081,10834,10595,10325,10027,9708,9396,9122,8877,8657,8486,8324,8186,8095,8027,7950,7897,7840,7752,7605,7419,7265,7125,7026,6931,6846,6790,6731,6697,6673,6650,6640,6621,6644,6633,6496,6181,5753,5131,21.6,21.6,22.2,1567681,0.5,12.2,12.0,5.0,493,-1.00,-1.00,56.8501,-18.760676,0.000579,,,,,208 +SATSLF0720,2024246,4.010132,4.10,0.0575,0.1012,0.0169,0.00,16208,648,1,711,706,705,699,710,707,715,713,723,714,713,733,781,898,1220,1956,3137,4533,5788,6722,7369,7846,8265,8713,9240,9866,10620,11497,12501,13616,14802,15980,17094,18067,18778,19202,19360,19162,18768,18235,17643,17081,16608,16260,16021,15941,16030,16272,16683,17272,18013,18917,19986,21219,22541,24010,25497,26989,28406,29665,30682,31442,31836,31825,31506,30837,29909,28843,27598,26416,25256,24169,23153,22305,21559,20946,20469,20060,19787,19614,19521,19541,19636,19835,20086,20445,20877,21390,21953,22573,23244,23896,24510,25097,25573,25940,26209,26261,26135,25845,25368,24729,24004,23200,22329,21430,20599,19820,19122,18449,17901,17428,17013,16700,16445,16269,16167,16122,16138,16224,16404,16630,16933,17296,17725,18221,18784,19403,20043,20714,21456,22193,22941,23668,24370,25026,25635,26197,26613,26938,27184,27285,27300,27234,27005,26677,26265,25763,25192,24602,23965,23323,22667,21993,21357,20754,20173,19606,19106,18620,18225,17856,17517,17226,16953,16721,16516,16313,16110,15927,15726,15560,15426,15310,15216,15145,15065,15016,15012,15008,15020,15025,15050,15092,15129,15154,15215,15275,15276,15301,15304,15304,15314,15330,15335,15328,15287,15213,15158,15092,14995,14916,14760,14608,14451,14250,14042,13830,13587,13335,13048,12780,12472,12192,11876,11594,11319,11067,10821,10596,10305,10019,9713,9385,9122,8873,8657,8483,8330,8195,8093,7998,7935,7881,7816,7729,7589,7414,7269,7158,7012,6938,6847,6790,6724,6691,6649,6647,6627,6617,6659,6634,6497,6173,5755,5124,21.6,21.7,22.2,1567682,0.7,12.1,12.0,5.0,482,-1.00,-1.00,56.7200,-18.701193,0.000563,,,,,23 +SATSLF0720,2024246,4.010385,4.20,0.0588,0.1015,0.0169,0.00,16188,648,1,695,715,700,711,721,721,724,719,729,731,725,737,776,897,1225,1981,3138,4535,5795,6701,7351,7810,8234,8678,9201,9828,10572,11459,12456,13566,14739,15910,17037,17998,18729,19161,19277,19095,18715,18175,17593,17026,16549,16197,15969,15897,15972,16225,16641,17226,17977,18889,19957,21193,22502,23975,25456,26927,28349,29597,30615,31345,31750,31747,31420,30784,29872,28788,27555,26373,25216,24126,23113,22258,21529,20919,20427,20039,19760,19594,19508,19526,19608,19799,20071,20404,20832,21371,21921,22560,23218,23867,24483,25053,25542,25906,26176,26218,26101,25812,25337,24689,23968,23161,22301,21413,20563,19800,19089,18438,17885,17405,16989,16667,16425,16253,16158,16100,16135,16226,16388,16610,16913,17280,17704,18194,18765,19380,20019,20698,21432,22179,22932,23642,24346,25001,25600,26165,26589,26907,27165,27283,27285,27194,26980,26650,26243,25765,25178,24586,23947,23297,22643,21973,21331,20738,20142,19576,19088,18615,18209,17835,17513,17213,16941,16714,16502,16303,16122,15922,15726,15552,15419,15309,15213,15133,15057,15028,14992,14994,15013,15028,15057,15092,15137,15157,15203,15266,15280,15285,15293,15305,15323,15337,15342,15337,15292,15228,15161,15085,14998,14902,14758,14606,14427,14237,14026,13806,13581,13315,13064,12773,12473,12179,11874,11585,11313,11072,10837,10597,10325,10016,9697,9388,9101,8860,8650,8480,8313,8192,8087,8010,7933,7889,7816,7735,7581,7403,7257,7121,7015,6919,6837,6779,6728,6678,6669,6654,6630,6621,6642,6630,6497,6177,5753,5134,21.7,21.7,22.2,1567683,0.6,12.2,12.0,5.0,477,-1.00,-1.00,57.1240,-18.833682,0.000572,,,,,73 +SATSLF0720,2024246,4.010636,4.01,0.0561,0.1029,0.0181,0.00,16135,648,1,709,705,722,720,724,714,720,714,711,719,721,730,773,882,1227,1953,3120,4489,5733,6649,7298,7762,8189,8630,9149,9786,10538,11397,12379,13493,14672,15841,16950,17905,18621,19059,19202,19003,18642,18098,17502,16946,16475,16135,15898,15833,15908,16157,16567,17137,17893,18804,19865,21081,22402,23845,25322,26819,28226,29472,30475,31234,31636,31661,31305,30679,29753,28685,27464,26290,25120,24040,23013,22177,21441,20839,20349,19963,19688,19533,19448,19450,19549,19734,19993,20343,20774,21298,21865,22484,23146,23790,24394,24983,25469,25818,26088,26128,26013,25731,25248,24619,23874,23096,22229,21338,20509,19733,19040,18386,17810,17342,16940,16611,16371,16196,16115,16059,16086,16171,16334,16548,16837,17217,17644,18135,18717,19316,19968,20630,21363,22112,22853,23563,24282,24938,25524,26090,26511,26834,27079,27189,27208,27121,26913,26569,26169,25669,25093,24515,23869,23245,22589,21927,21288,20681,20090,19528,19037,18574,18150,17810,17458,17166,16896,16646,16444,16256,16059,15874,15697,15513,15378,15275,15170,15104,15029,14984,14961,14955,14965,14980,15000,15051,15086,15106,15163,15217,15228,15255,15265,15272,15286,15301,15313,15285,15243,15185,15121,15037,14955,14854,14734,14572,14402,14217,13997,13780,13545,13281,13019,12736,12441,12160,11852,11557,11299,11049,10810,10568,10305,9989,9666,9364,9083,8839,8641,8463,8304,8179,8070,7992,7929,7881,7810,7728,7585,7401,7254,7114,6993,6894,6816,6753,6703,6663,6651,6657,6613,6614,6629,6626,6474,6173,5730,5127,21.7,21.7,22.2,1567684,0.8,12.2,11.9,5.0,480,-1.00,-1.00,58.5068,-19.338647,0.000515,,,,,88 +SATSLF0720,2024246,4.010890,4.17,0.0585,0.1030,0.0176,0.00,16142,648,1,711,697,705,708,711,711,725,701,722,725,725,737,761,885,1215,1948,3126,4505,5738,6673,7296,7785,8177,8641,9150,9783,10544,11425,12397,13531,14712,15867,16962,17922,18634,19069,19205,19013,18640,18118,17538,16965,16506,16145,15922,15842,15928,16180,16582,17169,17914,18819,19882,21095,22416,23868,25345,26837,28248,29502,30503,31273,31662,31667,31353,30682,29779,28712,27473,26293,25117,24053,23035,22184,21454,20849,20356,19957,19684,19523,19442,19465,19553,19726,20014,20364,20778,21302,21859,22481,23153,23794,24395,24996,25462,25831,26093,26140,26024,25751,25265,24627,23906,23097,22240,21369,20520,19748,19037,18394,17831,17365,16941,16620,16382,16207,16102,16074,16076,16174,16346,16560,16870,17225,17658,18149,18705,19315,19963,20655,21374,22117,22858,23572,24293,24953,25536,26109,26543,26861,27112,27212,27217,27124,26897,26576,26181,25689,25125,24533,23914,23252,22600,21930,21297,20682,20088,19531,19028,18574,18165,17792,17449,17164,16899,16658,16460,16259,16069,15884,15701,15517,15387,15277,15176,15099,15014,14979,14973,14969,14968,14983,15018,15037,15095,15121,15169,15214,15215,15234,15252,15260,15287,15297,15307,15305,15254,15197,15137,15058,14979,14877,14731,14577,14397,14199,13999,13777,13537,13283,13023,12738,12436,12143,11860,11564,11297,11041,10802,10567,10291,10004,9689,9370,9087,8851,8627,8467,8295,8159,8067,7985,7929,7879,7817,7712,7573,7392,7239,7118,7003,6905,6833,6769,6698,6663,6641,6637,6620,6624,6637,6633,6477,6171,5751,5124,21.7,21.7,22.3,1567685,0.5,12.1,11.9,5.0,471,-1.00,-1.00,57.7023,-19.017159,0.000488,,,,,254 +SATSLF0720,2024246,4.011145,4.24,0.0594,0.1035,0.0186,0.00,16134,648,1,699,701,706,698,713,709,715,714,709,708,707,713,759,883,1210,1943,3137,4508,5741,6675,7311,7789,8205,8658,9184,9796,10533,11409,12396,13498,14675,15849,16949,17910,18641,19066,19202,19026,18645,18114,17518,16966,16504,16137,15925,15844,15936,16169,16579,17160,17911,18805,19885,21087,22414,23869,25342,26826,28229,29495,30488,31237,31646,31641,31327,30665,29749,28680,27459,26260,25093,24036,23022,22167,21446,20820,20347,19956,19667,19525,19421,19419,19545,19735,19994,20337,20760,21306,21856,22475,23142,23799,24418,24978,25475,25836,26089,26126,26010,25738,25241,24618,23893,23109,22229,21353,20519,19741,19051,18380,17819,17334,16937,16617,16375,16201,16102,16064,16082,16167,16331,16553,16871,17232,17659,18149,18701,19328,19957,20633,21367,22111,22849,23564,24283,24917,25527,26089,26512,26840,27061,27181,27202,27101,26900,26557,26169,25675,25116,24513,23877,23239,22594,21930,21289,20673,20080,19520,19033,18557,18151,17784,17449,17165,16900,16659,16453,16251,16076,15872,15685,15509,15362,15269,15177,15090,15021,14980,14962,14945,14955,14983,15008,15044,15078,15114,15159,15217,15232,15252,15245,15258,15279,15289,15287,15281,15230,15162,15102,15036,14948,14852,14715,14580,14414,14213,13993,13789,13541,13280,13008,12723,12439,12152,11861,11570,11293,11044,10793,10565,10281,9991,9674,9365,9079,8849,8620,8455,8288,8161,8069,7981,7927,7880,7802,7721,7579,7406,7248,7115,7011,6905,6826,6765,6697,6659,6643,6633,6617,6612,6617,6620,6468,6167,5737,5120,21.7,21.8,22.3,1567686,0.2,12.2,12.0,5.0,478,-1.00,-1.00,57.1106,-18.757747,0.000510,,,,,106 +SATSLF0720,2024246,4.011401,4.18,0.0585,0.1037,0.0185,0.00,16130,648,1,705,710,701,697,705,724,725,724,721,727,730,734,761,877,1219,1949,3113,4508,5749,6669,7312,7789,8209,8658,9163,9793,10525,11403,12404,13520,14697,15866,16969,17933,18652,19089,19217,19024,18650,18110,17513,16960,16503,16141,15925,15851,15914,16187,16598,17169,17908,18813,19869,21096,22416,23858,25342,26834,28247,29506,30500,31241,31637,31646,31310,30651,29734,28689,27469,26286,25134,24043,23049,22189,21446,20835,20347,19960,19671,19524,19414,19437,19525,19716,19975,20325,20765,21297,21847,22469,23138,23787,24401,24980,25446,25814,26070,26135,26004,25721,25248,24601,23879,23109,22226,21351,20489,19726,19033,18381,17808,17349,16941,16629,16366,16205,16098,16056,16064,16161,16329,16557,16842,17205,17639,18129,18701,19304,19953,20633,21365,22083,22840,23548,24260,24912,25508,26071,26504,26829,27062,27177,27178,27079,26883,26545,26154,25656,25105,24507,23866,23216,22568,21901,21261,20660,20058,19503,19033,18541,18139,17779,17445,17158,16883,16651,16445,16233,16052,15857,15653,15502,15364,15248,15159,15085,15015,14976,14965,14955,14950,14971,14996,15028,15081,15108,15154,15210,15218,15227,15248,15266,15272,15290,15289,15281,15229,15165,15106,15026,14947,14845,14698,14568,14401,14196,13985,13784,13529,13287,13015,12717,12427,12137,11838,11552,11282,11022,10809,10570,10284,10002,9673,9353,9079,8825,8631,8449,8295,8157,8057,7987,7921,7872,7796,7706,7562,7397,7252,7111,7007,6913,6816,6752,6688,6650,6639,6628,6606,6602,6632,6621,6469,6170,5726,5103,21.7,21.8,22.3,1567687,0.5,12.2,12.0,5.0,473,-1.00,-1.00,57.2923,-18.835412,0.000506,,,,,117 +SATSLF0720,2024246,4.011659,4.18,0.0585,0.1054,0.0197,0.00,16067,648,1,714,712,712,706,717,713,731,725,747,738,727,727,745,860,1202,1928,3101,4489,5714,6639,7292,7761,8171,8609,9123,9736,10483,11333,12331,13437,14599,15766,16868,17813,18560,18990,19113,18923,18565,18035,17436,16891,16417,16059,15844,15765,15844,16088,16476,17060,17792,18723,19785,21009,22327,23769,25225,26717,28117,29371,30363,31109,31499,31499,31147,30507,29588,28539,27303,26144,24992,23933,22921,22083,21348,20736,20256,19865,19582,19435,19338,19362,19453,19642,19917,20263,20697,21214,21771,22389,23065,23705,24285,24859,25352,25717,25978,26027,25910,25634,25154,24507,23788,22993,22122,21266,20420,19668,18965,18308,17751,17283,16869,16546,16305,16133,16034,15993,16017,16104,16270,16489,16779,17159,17580,18080,18647,19241,19889,20557,21278,22018,22756,23467,24167,24832,25422,25975,26407,26708,26964,27078,27082,26990,26770,26462,26065,25556,25011,24418,23769,23127,22484,21814,21185,20584,19987,19441,18957,18483,18075,17705,17385,17088,16823,16586,16386,16187,15985,15819,15613,15463,15319,15205,15101,15011,14944,14916,14894,14893,14889,14921,14945,14984,15009,15047,15102,15157,15189,15184,15199,15219,15229,15233,15239,15229,15177,15109,15067,14990,14906,14810,14675,14523,14349,14150,13940,13728,13482,13229,12980,12693,12401,12105,11798,11499,11239,10995,10761,10526,10255,9973,9644,9333,9053,8823,8608,8433,8279,8134,8043,7958,7886,7821,7761,7679,7541,7380,7210,7102,6986,6891,6812,6741,6698,6638,6611,6608,6597,6589,6601,6601,6455,6154,5735,5111,21.7,21.8,22.4,1567688,0.4,12.1,12.0,5.0,478,-1.00,-1.00,57.6117,-18.877770,0.000698,,,,,213 +SATSLF0720,2024246,4.011911,4.30,0.0603,0.1045,0.0189,0.00,16099,648,1,697,702,699,707,710,717,714,728,740,741,730,747,770,889,1205,1937,3099,4467,5712,6632,7287,7745,8175,8597,9114,9731,10478,11337,12345,13446,14638,15793,16886,17831,18545,18970,19117,18931,18556,18027,17443,16885,16427,16073,15850,15769,15856,16102,16528,17098,17846,18733,19809,21029,22339,23788,25257,26738,28153,29402,30412,31146,31552,31546,31219,30585,29659,28605,27382,26187,25035,23960,22961,22107,21370,20753,20283,19885,19623,19485,19377,19408,19501,19693,19946,20290,20736,21241,21799,22413,23073,23732,24348,24925,25410,25774,26029,26072,25963,25669,25189,24569,23825,23043,22176,21301,20469,19690,18990,18341,17783,17321,16904,16592,16343,16169,16080,16028,16046,16139,16303,16529,16833,17197,17623,18109,18681,19294,19904,20609,21329,22081,22797,23528,24240,24893,25483,26034,26457,26785,27035,27125,27147,27062,26850,26516,26118,25644,25069,24473,23840,23197,22528,21878,21235,20629,20049,19492,19012,18537,18137,17765,17426,17131,16867,16621,16429,16225,16045,15841,15657,15489,15355,15229,15133,15061,14982,14937,14926,14925,14926,14959,14981,15020,15053,15105,15158,15205,15218,15221,15234,15227,15255,15270,15271,15256,15217,15153,15093,15015,14934,14836,14699,14567,14396,14196,13985,13773,13522,13265,12997,12717,12423,12135,11837,11547,11265,11022,10783,10550,10274,9986,9656,9361,9089,8824,8621,8445,8291,8165,8069,8003,7921,7874,7796,7713,7573,7381,7240,7104,6987,6886,6807,6735,6695,6661,6646,6638,6627,6627,6634,6623,6481,6170,5734,5112,21.7,21.8,22.4,1567689,0.1,12.2,12.0,5.0,465,-1.00,-1.00,57.9835,-19.067542,0.000563,,,,,62 +SATSLF0720,2024246,4.012170,4.18,0.0586,0.1034,0.0179,0.00,16139,648,1,688,687,698,703,704,708,701,721,732,726,730,739,765,875,1213,1954,3126,4498,5746,6689,7324,7796,8211,8658,9182,9792,10551,11429,12420,13545,14724,15888,16983,17930,18651,19101,19228,19042,18664,18139,17553,16976,16507,16167,15924,15863,15933,16184,16597,17170,17917,18820,19897,21102,22429,23895,25357,26857,28269,29509,30519,31264,31659,31665,31330,30667,29770,28706,27457,26268,25105,24035,23029,22178,21453,20842,20359,19971,19703,19528,19425,19438,19536,19721,19981,20331,20769,21291,21873,22481,23152,23792,24410,24990,25466,25842,26092,26135,26006,25726,25246,24618,23896,23097,22218,21357,20512,19745,19041,18377,17825,17345,16935,16631,16367,16212,16101,16071,16069,16177,16329,16551,16839,17228,17644,18148,18701,19329,19943,20651,21381,22117,22868,23578,24278,24928,25531,26081,26499,26824,27084,27184,27181,27089,26880,26565,26171,25672,25099,24528,23880,23241,22586,21931,21293,20670,20064,19526,19025,18560,18145,17795,17453,17165,16912,16661,16453,16251,16076,15863,15685,15516,15371,15253,15152,15078,15013,14981,14956,14947,14970,14998,15015,15052,15082,15117,15161,15223,15238,15239,15271,15261,15285,15291,15296,15285,15243,15177,15127,15037,14950,14859,14731,14568,14405,14228,14004,13788,13551,13288,13018,12729,12427,12137,11846,11556,11298,11049,10816,10589,10309,10014,9693,9370,9087,8848,8630,8453,8297,8167,8084,7993,7917,7869,7800,7708,7571,7401,7246,7113,6990,6890,6819,6757,6708,6669,6659,6637,6625,6600,6627,6639,6461,6165,5749,5125,21.7,21.8,22.4,1567690,0.5,12.2,12.0,5.0,475,-1.00,-1.00,56.9915,-18.718221,0.000577,,,,,230 +SATSLF0720,2024246,4.012424,4.28,0.0599,0.1044,0.0197,0.00,16102,648,1,682,685,688,679,693,702,709,716,716,731,731,739,777,873,1215,1929,3112,4488,5723,6652,7305,7776,8205,8644,9149,9765,10517,11385,12379,13492,14653,15818,16922,17866,18597,19037,19169,18985,18608,18075,17479,16930,16472,16107,15885,15817,15900,16149,16538,17122,17861,18782,19844,21061,22374,23826,25297,26774,28192,29441,30445,31188,31569,31563,31239,30594,29677,28617,27395,26217,25056,23995,22973,22127,21388,20793,20306,19921,19637,19479,19385,19402,19493,19684,19948,20288,20722,21248,21818,22437,23114,23744,24361,24917,25399,25773,26006,26078,25952,25673,25204,24557,23861,23058,22186,21308,20463,19679,18999,18345,17800,17336,16922,16603,16344,16171,16069,16026,16028,16151,16312,16530,16814,17199,17616,18106,18680,19269,19927,20599,21323,22068,22813,23537,24232,24867,25460,26033,26450,26768,27015,27133,27137,27056,26814,26498,26094,25601,25057,24458,23824,23171,22530,21872,21236,20631,20033,19481,18986,18506,18097,17740,17402,17123,16864,16611,16410,16219,16029,15841,15656,15493,15355,15237,15133,15047,14974,14946,14933,14930,14921,14963,14986,15011,15056,15083,15129,15185,15207,15221,15211,15229,15250,15274,15267,15258,15216,15155,15068,15000,14931,14837,14704,14557,14377,14192,13981,13767,13523,13247,12983,12712,12405,12135,11829,11541,11277,11016,10779,10540,10277,9989,9648,9338,9062,8836,8616,8449,8282,8151,8054,7988,7908,7847,7795,7706,7567,7393,7227,7115,6986,6887,6801,6753,6690,6659,6629,6634,6609,6606,6616,6618,6473,6155,5738,5113,21.7,21.8,22.4,1567691,0.4,12.1,12.0,5.0,470,-1.00,-1.00,57.0000,-18.673611,0.000546,,,,,48 +SATSLF0720,2024246,4.012678,4.18,0.0586,0.1054,0.0199,0.00,16078,648,1,725,718,713,715,718,712,716,706,720,726,733,746,788,898,1205,1945,3118,4489,5735,6658,7293,7772,8192,8640,9142,9753,10500,11373,12365,13458,14635,15792,16897,17843,18578,19004,19139,18963,18588,18053,17466,16904,16448,16081,15853,15785,15866,16105,16530,17104,17847,18754,19811,21024,22329,23767,25245,26713,28132,29371,30380,31106,31511,31513,31190,30532,29624,28579,27357,26178,25012,23947,22949,22091,21356,20752,20277,19888,19612,19435,19339,19358,19460,19653,19909,20260,20701,21218,21782,22408,23058,23700,24309,24875,25346,25713,25981,26045,25930,25645,25177,24545,23808,23013,22136,21280,20425,19683,18973,18325,17777,17297,16902,16562,16323,16140,16034,15992,16027,16105,16269,16494,16778,17135,17579,18060,18638,19229,19886,20562,21294,22039,22764,23466,24192,24834,25422,26000,26417,26741,26993,27094,27106,27001,26781,26456,26072,25589,25010,24421,23798,23149,22505,21840,21213,20586,20008,19442,18949,18477,18081,17717,17385,17113,16833,16599,16397,16193,16001,15805,15621,15458,15306,15207,15120,15033,14962,14916,14907,14904,14909,14920,14939,14994,15045,15053,15115,15157,15173,15184,15203,15198,15219,15229,15239,15216,15175,15124,15061,14998,14894,14810,14680,14523,14360,14169,13965,13745,13506,13234,12973,12684,12383,12110,11809,11527,11255,11006,10767,10534,10248,9966,9641,9337,9052,8803,8597,8423,8274,8156,8058,7976,7902,7857,7778,7690,7549,7364,7216,7095,6996,6897,6810,6749,6684,6656,6617,6623,6604,6585,6627,6615,6445,6147,5720,5108,21.8,21.8,22.4,1567691,0.1,12.2,11.9,5.0,474,-1.00,-1.00,57.2616,-18.748577,0.000458,,,,,104 +SATSLF0720,2024246,4.012934,4.24,0.0594,0.1040,0.0190,0.00,16112,648,1,700,708,713,717,710,715,723,727,725,737,738,738,779,881,1219,1954,3121,4488,5743,6663,7323,7797,8212,8654,9161,9783,10529,11396,12391,13497,14679,15834,16941,17906,18633,19052,19181,19017,18632,18099,17511,16960,16477,16117,15895,15819,15910,16149,16557,17143,17888,18797,19856,21074,22377,23826,25305,26793,28209,29456,30462,31194,31590,31577,31253,30595,29677,28642,27413,26218,25060,23998,23001,22154,21421,20814,20306,19914,19639,19489,19401,19410,19499,19690,19942,20292,20732,21253,21812,22441,23113,23754,24370,24947,25412,25780,26036,26105,25965,25685,25204,24573,23845,23041,22178,21320,20478,19722,19016,18341,17799,17321,16915,16603,16350,16164,16073,16027,16055,16136,16299,16530,16832,17185,17632,18110,18680,19287,19941,20618,21324,22074,22804,23518,24221,24872,25472,26056,26466,26803,27037,27139,27133,27040,26837,26493,26107,25619,25076,24491,23863,23196,22541,21879,21250,20640,20038,19490,18989,18532,18123,17759,17434,17154,16882,16642,16442,16237,16045,15844,15653,15481,15343,15228,15114,15051,14989,14939,14951,14930,14939,14969,15005,15040,15073,15102,15141,15201,15213,15219,15218,15232,15252,15272,15269,15264,15229,15145,15089,15021,14929,14843,14699,14558,14378,14189,13981,13772,13527,13274,13001,12715,12436,12151,11849,11555,11282,11028,10790,10554,10274,9979,9652,9349,9068,8816,8614,8452,8305,8169,8070,7988,7911,7869,7797,7710,7574,7389,7244,7101,6994,6895,6819,6748,6707,6681,6655,6651,6629,6605,6617,6614,6451,6149,5723,5112,21.8,21.9,22.5,1567692,0.1,12.2,11.9,5.0,473,-1.00,-1.00,56.7854,-18.591514,0.000536,,,,,171 +SATSLF0720,2024246,4.013188,4.19,0.0586,0.1046,0.0187,0.00,16100,648,1,700,696,713,709,717,713,724,735,737,736,727,733,771,885,1218,1929,3106,4481,5725,6650,7299,7765,8190,8640,9149,9773,10513,11376,12365,13477,14656,15809,16923,17873,18593,19042,19160,18966,18611,18066,17485,16910,16471,16097,15871,15808,15884,16140,16524,17121,17858,18770,19818,21051,22363,23805,25282,26762,28173,29437,30417,31158,31552,31554,31221,30582,29660,28610,27389,26198,25033,23954,22956,22104,21374,20779,20305,19917,19637,19469,19376,19376,19472,19661,19925,20274,20701,21239,21805,22427,23098,23741,24344,24917,25389,25751,26017,26077,25960,25668,25193,24551,23820,23035,22172,21309,20465,19699,18989,18353,17788,17318,16905,16596,16337,16160,16072,16028,16046,16134,16315,16538,16822,17187,17616,18105,18677,19281,19918,20591,21335,22062,22813,23509,24211,24855,25463,26018,26462,26785,27031,27129,27130,27050,26837,26500,26114,25617,25057,24457,23829,23186,22539,21884,21251,20644,20041,19474,19001,18518,18110,17730,17409,17118,16840,16613,16397,16205,16023,15846,15653,15481,15353,15226,15135,15074,14981,14948,14936,14921,14928,14949,14976,15014,15077,15091,15144,15205,15213,15219,15230,15228,15255,15257,15269,15262,15203,15149,15098,15029,14931,14842,14707,14554,14381,14185,13992,13765,13528,13257,13004,12726,12426,12139,11845,11542,11282,11033,10773,10547,10281,9987,9669,9350,9073,8813,8603,8427,8279,8151,8050,7982,7912,7868,7793,7712,7572,7401,7237,7096,6999,6890,6800,6745,6677,6652,6625,6623,6615,6609,6624,6622,6461,6158,5742,5124,21.8,21.9,22.5,1567693,0.3,12.2,11.9,5.0,473,-1.00,-1.00,57.3291,-18.800643,0.000560,,,,,178 +SATSLF0720,2024246,4.013439,4.27,0.0599,0.1052,0.0191,0.00,16083,648,1,706,710,715,721,725,717,715,723,729,729,729,742,766,883,1209,1930,3111,4469,5717,6659,7293,7773,8196,8630,9148,9770,10501,11371,12359,13469,14651,15810,16912,17857,18576,19012,19145,18944,18577,18067,17461,16900,16440,16069,15859,15789,15865,16108,16538,17109,17851,18757,19819,21031,22342,23777,25255,26731,28152,29407,30400,31149,31545,31541,31216,30555,29638,28567,27359,26171,25017,23929,22940,22081,21356,20741,20269,19883,19601,19444,19347,19367,19472,19658,19917,20261,20709,21214,21784,22395,23060,23705,24314,24891,25365,25724,25982,26043,25924,25633,25180,24541,23829,23032,22170,21306,20454,19671,18976,18320,17760,17286,16883,16573,16337,16174,16073,16017,16041,16128,16281,16503,16808,17155,17584,18077,18653,19258,19885,20565,21275,22029,22769,23482,24177,24840,25440,26011,26444,26768,26985,27104,27106,27017,26802,26474,26077,25578,25013,24434,23796,23147,22501,21841,21218,20598,20019,19472,18965,18496,18092,17716,17395,17105,16841,16594,16393,16197,16006,15830,15637,15482,15338,15219,15106,15043,14957,14921,14910,14914,14916,14945,14954,15003,15030,15061,15117,15158,15174,15185,15195,15211,15237,15267,15259,15255,15202,15151,15088,15017,14909,14819,14666,14531,14359,14167,13962,13758,13525,13254,12994,12713,12403,12122,11813,11529,11262,10996,10779,10536,10276,9969,9630,9335,9042,8816,8601,8434,8284,8157,8053,7969,7902,7844,7771,7689,7556,7371,7233,7097,6982,6884,6807,6725,6677,6645,6625,6615,6595,6609,6613,6613,6467,6146,5736,5114,21.8,21.9,22.5,1567694,0.3,12.2,12.0,5.0,476,-1.00,-1.00,57.2081,-18.736177,0.000602,,,,,148 +SATSLF0720,2024246,4.013695,4.19,0.0587,0.1062,0.0201,0.00,16061,648,1,703,708,711,700,714,717,722,726,713,725,733,733,779,879,1205,1918,3091,4475,5706,6621,7272,7753,8157,8593,9111,9741,10473,11341,12342,13445,14618,15767,16870,17828,18540,18961,19078,18913,18534,17993,17402,16864,16404,16027,15815,15751,15819,16077,16485,17061,17802,18706,19761,20983,22304,23730,25185,26667,28077,29312,30317,31060,31474,31465,31149,30496,29576,28530,27313,26123,24983,23888,22906,22069,21325,20707,20230,19850,19549,19408,19306,19332,19430,19616,19873,20221,20657,21184,21761,22361,23013,23678,24286,24872,25336,25688,25947,26009,25877,25614,25136,24521,23789,22999,22140,21261,20425,19660,18939,18282,17745,17275,16881,16557,16295,16129,16042,15973,16002,16084,16242,16471,16766,17149,17570,18073,18631,19242,19873,20551,21280,22025,22748,23469,24169,24833,25411,25985,26408,26722,26973,27066,27073,26982,26778,26453,26049,25555,25002,24404,23771,23134,22476,21831,21185,20589,19985,19434,18954,18487,18083,17717,17378,17098,16827,16595,16407,16193,15986,15811,15621,15459,15322,15201,15096,15014,14939,14904,14897,14917,14917,14933,14958,14992,15025,15057,15110,15157,15178,15185,15205,15221,15221,15249,15255,15248,15187,15126,15053,14999,14901,14807,14673,14509,14357,14168,13958,13740,13513,13259,12978,12711,12403,12119,11801,11521,11264,11005,10768,10529,10267,9977,9644,9342,9072,8804,8606,8430,8278,8151,8043,7963,7902,7849,7781,7693,7550,7371,7221,7089,6973,6884,6798,6733,6683,6635,6637,6621,6601,6589,6610,6610,6437,6146,5700,5097,21.8,21.9,22.6,1567695,0.2,12.2,11.9,5.0,474,-1.00,-1.00,57.9740,-19.014628,0.000542,,,,,129 +SATSLF0720,2024246,4.013948,4.28,0.0599,0.1057,0.0195,0.00,16059,648,1,706,694,705,709,712,723,726,717,740,742,738,747,775,895,1210,1943,3117,4498,5724,6645,7286,7767,8168,8606,9112,9727,10494,11365,12341,13437,14614,15771,16869,17817,18537,18965,19094,18925,18549,18018,17421,16865,16416,16056,15813,15746,15827,16074,16492,17065,17810,18708,19776,20973,22307,23724,25195,26680,28082,29341,30338,31077,31467,31443,31121,30474,29554,28512,27284,26102,24951,23877,22906,22056,21329,20709,20234,19851,19577,19421,19328,19325,19431,19611,19867,20226,20641,21166,21732,22349,23023,23668,24274,24854,25313,25683,25929,25991,25882,25603,25121,24499,23789,22978,22119,21253,20420,19649,18942,18288,17736,17280,16861,16551,16301,16137,16033,15988,16001,16089,16246,16471,16777,17127,17575,18053,18629,19240,19862,20544,21280,22029,22762,23473,24168,24834,25402,25954,26385,26701,26939,27055,27069,26971,26761,26430,26049,25546,24990,24405,23755,23117,22467,21802,21189,20565,19989,19435,18943,18471,18084,17707,17399,17105,16826,16576,16379,16182,15986,15793,15622,15447,15323,15201,15097,15035,14944,14923,14887,14895,14901,14928,14960,15001,15017,15047,15106,15153,15161,15183,15193,15200,15202,15247,15254,15241,15182,15128,15073,14994,14903,14807,14672,14527,14357,14164,13953,13745,13509,13235,12985,12693,12403,12101,11802,11520,11265,10997,10755,10521,10270,9969,9647,9325,9052,8805,8593,8420,8276,8149,8041,7979,7898,7848,7782,7692,7543,7363,7219,7084,6982,6891,6812,6743,6691,6658,6629,6613,6597,6581,6603,6612,6457,6150,5726,5114,21.7,21.9,22.6,1567696,0.3,12.2,11.9,5.0,468,-1.00,-1.00,57.0851,-18.638266,0.000614,,,,,56 +SATSLF0720,2024246,4.014199,4.18,0.0586,0.1058,0.0200,0.00,16070,648,1,715,714,709,713,725,722,733,734,744,734,740,750,789,890,1220,1941,3121,4488,5702,6643,7286,7762,8177,8615,9144,9758,10497,11369,12354,13468,14630,15803,16896,17844,18557,18989,19112,18940,18560,18033,17446,16885,16416,16061,15837,15779,15855,16091,16499,17079,17829,18712,19781,20988,22301,23755,25218,26696,28110,29354,30338,31091,31477,31486,31152,30517,29589,28542,27314,26139,24993,23928,22925,22074,21344,20726,20261,19874,19596,19429,19323,19332,19440,19616,19879,20227,20679,21201,21760,22376,23052,23702,24290,24865,25349,25706,25960,26013,25882,25619,25125,24503,23797,22994,22121,21264,20409,19651,18963,18308,17746,17265,16859,16548,16317,16153,16037,15994,16012,16106,16262,16493,16777,17147,17570,18055,18628,19229,19868,20548,21280,22010,22758,23470,24152,24811,25411,25965,26396,26707,26962,27051,27079,26986,26771,26439,26053,25561,25012,24424,23792,23136,22500,21825,21197,20585,19989,19437,18949,18480,18074,17705,17370,17099,16845,16597,16396,16202,16020,15818,15624,15461,15313,15191,15099,15033,14958,14923,14908,14913,14890,14927,14962,15005,15042,15061,15124,15170,15190,15202,15194,15211,15232,15258,15258,15240,15178,15106,15056,14983,14912,14806,14679,14544,14378,14184,13952,13735,13501,13220,12973,12688,12400,12117,11802,11531,11264,11014,10779,10544,10261,9981,9641,9351,9050,8807,8602,8432,8280,8149,8058,7978,7911,7850,7773,7688,7548,7363,7233,7089,6990,6890,6817,6750,6679,6643,6644,6621,6607,6594,6620,6609,6464,6158,5723,5121,21.8,21.9,22.6,1567697,0.4,12.2,12.0,5.0,473,-1.00,-1.00,57.3828,-18.778791,0.000531,,,,,118 +SATSLF0720,2024246,4.014454,4.26,0.0597,0.1058,0.0193,0.00,16069,648,1,708,726,721,729,725,721,729,731,722,748,741,755,779,903,1218,1951,3125,4505,5736,6653,7301,7769,8190,8642,9161,9763,10505,11361,12354,13446,14627,15785,16898,17841,18549,18992,19112,18935,18561,18026,17444,16888,16448,16082,15858,15778,15856,16089,16505,17072,17808,18713,19776,20990,22318,23757,25239,26707,28123,29355,30362,31085,31469,31459,31152,30496,29577,28549,27311,26141,24993,23906,22910,22058,21322,20715,20236,19833,19571,19419,19321,19342,19444,19617,19883,20235,20667,21179,21753,22365,23038,23690,24288,24855,25340,25705,25968,26024,25899,25601,25152,24508,23793,22989,22130,21273,20426,19642,18942,18308,17749,17274,16866,16551,16320,16149,16049,16000,16012,16105,16275,16496,16787,17163,17581,18077,18632,19232,19870,20555,21268,22009,22761,23480,24151,24827,25405,25965,26404,26708,26967,27057,27070,26983,26787,26450,26054,25562,24997,24416,23787,23145,22485,21828,21185,20571,19992,19429,18945,18481,18078,17702,17370,17086,16830,16590,16393,16203,16013,15815,15625,15443,15313,15188,15085,15005,14947,14916,14913,14910,14917,14930,14969,14996,15025,15063,15111,15154,15162,15178,15185,15189,15221,15236,15243,15247,15197,15125,15080,15003,14915,14817,14679,14524,14358,14167,13949,13729,13495,13243,12963,12676,12394,12097,11808,11523,11259,11016,10781,10522,10261,9967,9653,9331,9050,8795,8599,8420,8275,8149,8045,7975,7917,7865,7792,7708,7564,7377,7217,7089,6980,6888,6792,6741,6688,6653,6643,6617,6615,6605,6621,6600,6444,6155,5721,5109,21.8,21.9,22.6,1567698,0.0,12.2,11.9,5.0,475,-1.00,-1.00,56.9352,-18.591491,0.000565,,,,,27 +SATSDF0720,2024246,4.259138,0.00,0.0000,0.0000,0.0000,0.00,649,0,1,633,623,615,626,618,631,638,637,641,642,629,637,630,630,621,631,625,622,626,615,619,627,634,658,671,670,679,673,667,662,644,645,637,644,647,645,659,660,653,651,665,654,649,663,657,661,657,659,658,662,664,661,664,654,648,661,646,647,651,649,661,645,652,648,643,645,643,654,653,661,657,651,647,658,653,664,668,666,676,673,659,664,661,659,662,653,645,655,648,650,649,642,643,654,662,660,645,655,651,667,662,660,653,651,650,646,653,653,641,655,647,635,655,646,656,644,655,645,646,633,635,642,640,639,647,653,644,659,653,659,656,649,654,650,657,662,660,657,649,650,650,649,642,651,642,645,650,661,648,643,642,645,639,643,642,659,656,653,654,655,643,653,646,644,640,647,663,657,659,665,648,650,651,639,647,648,644,651,649,656,657,649,651,652,655,658,647,651,643,656,658,637,647,650,648,648,655,641,635,637,644,646,651,648,659,659,642,651,662,650,657,657,634,648,649,645,639,639,657,642,638,638,647,637,641,648,657,649,649,660,651,650,650,654,646,657,648,651,654,650,652,653,643,650,661,644,644,643,642,647,649,658,650,656,654,474,0.0,0.0,0.0,1567697,0.0,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,241 +SATSLF0720,2024246,4.259692,4.10,0.0575,0.0997,0.0163,0.00,16240,649,1,699,704,701,713,710,704,714,722,721,729,718,727,771,876,1205,1973,3136,4531,5796,6718,7376,7841,8269,8725,9251,9868,10614,11496,12509,13630,14805,15995,17116,18057,18790,19233,19360,19171,18801,18276,17682,17113,16641,16275,16033,15965,16055,16293,16700,17292,18044,18963,20033,21277,22600,24046,25530,27021,28461,29721,30730,31483,31881,31877,31556,30900,29985,28912,27666,26488,25298,24211,23197,22356,21593,20987,20502,20106,19834,19675,19589,19596,19687,19873,20133,20488,20915,21435,22025,22632,23303,23954,24581,25162,25630,25997,26262,26307,26198,25905,25416,24778,24053,23252,22360,21489,20620,19856,19141,18478,17924,17457,17041,16725,16489,16324,16209,16161,16192,16265,16435,16652,16946,17328,17744,18243,18833,19449,20085,20784,21508,22251,23003,23721,24429,25082,25682,26256,26682,26999,27253,27349,27360,27275,27050,26730,26336,25857,25277,24665,24021,23379,22717,22049,21417,20794,20208,19661,19154,18688,18266,17893,17563,17269,17003,16750,16545,16349,16154,15962,15762,15601,15463,15347,15240,15168,15094,15057,15045,15042,15038,15065,15084,15116,15161,15185,15225,15296,15307,15333,15332,15341,15369,15376,15369,15361,15317,15256,15182,15106,15044,14938,14805,14642,14490,14281,14082,13866,13633,13362,13090,12789,12491,12197,11891,11614,11351,11109,10861,10614,10341,10036,9712,9414,9114,8875,8674,8501,8343,8221,8118,8034,7968,7904,7841,7736,7610,7416,7285,7141,7037,6945,6861,6793,6753,6708,6669,6659,6640,6630,6648,6652,6504,6181,5779,5156,21.6,21.6,22.0,1567698,0.2,12.3,11.9,4.9,597,-1.00,-1.00,56.9924,-18.851260,0.000488,,,,,127 +SATSLF0720,2024246,4.259874,4.15,0.0581,0.1006,0.0161,0.00,16226,649,1,690,689,695,717,725,706,707,712,731,717,728,725,750,871,1212,1949,3124,4535,5789,6714,7366,7844,8269,8729,9240,9854,10609,11486,12491,13613,14816,15977,17105,18056,18789,19229,19368,19174,18788,18256,17656,17078,16616,16265,16018,15961,16038,16295,16706,17288,18038,18953,20032,21259,22588,24036,25536,27025,28445,29712,30702,31467,31865,31848,31549,30888,29952,28889,27646,26466,25275,24219,23195,22331,21598,20983,20481,20092,19808,19654,19550,19564,19661,19853,20113,20469,20906,21425,21985,22593,23281,23922,24550,25124,25611,25965,26231,26298,26178,25907,25424,24768,24041,23248,22353,21474,20621,19848,19126,18467,17923,17437,17035,16727,16473,16296,16189,16152,16163,16249,16417,16649,16938,17315,17755,18230,18826,19437,20075,20762,21489,22235,22992,23689,24390,25059,25650,26224,26658,26978,27233,27328,27347,27242,27034,26707,26306,25802,25242,24642,24003,23368,22697,22019,21389,20769,20180,19617,19133,18653,18245,17878,17549,17252,16983,16739,16538,16324,16145,15925,15749,15589,15451,15333,15238,15156,15075,15051,15036,15030,15013,15053,15068,15099,15139,15175,15238,15285,15294,15297,15313,15315,15337,15360,15365,15357,15302,15244,15186,15112,15014,14922,14773,14641,14450,14253,14038,13842,13595,13322,13066,12781,12469,12187,11881,11589,11330,11072,10848,10613,10341,10033,9712,9399,9114,8865,8650,8483,8327,8192,8098,8028,7949,7899,7831,7751,7609,7429,7261,7144,7016,6933,6842,6773,6721,6666,6651,6652,6635,6643,6660,6650,6502,6184,5755,5137,21.6,21.6,22.1,1567699,0.1,12.2,12.0,5.0,496,-1.00,-1.00,56.8461,-18.779934,0.000544,,,,,1 +SATSLF0720,2024246,4.260129,4.05,0.0567,0.1018,0.0179,0.00,16178,649,1,697,699,706,701,699,697,709,711,723,727,731,743,761,888,1217,1957,3129,4515,5776,6685,7334,7805,8228,8672,9184,9824,10569,11441,12439,13555,14739,15911,17025,17979,18706,19152,19274,19090,18725,18185,17581,17027,16557,16192,15957,15895,15968,16229,16629,17228,17962,18877,19945,21162,22483,23927,25399,26899,28315,29588,30600,31351,31757,31757,31425,30761,29837,28770,27537,26365,25185,24102,23101,22253,21522,20901,20411,20039,19748,19595,19498,19502,19595,19801,20044,20397,20842,21359,21928,22548,23225,23852,24473,25053,25517,25884,26155,26199,26086,25801,25317,24685,23955,23169,22284,21420,20553,19788,19082,18419,17871,17398,16992,16665,16420,16251,16148,16112,16130,16227,16380,16606,16897,17274,17705,18189,18755,19371,20010,20682,21427,22163,22921,23632,24339,25003,25589,26145,26586,26909,27158,27254,27267,27189,26966,26630,26242,25746,25172,24573,23942,23296,22630,21957,21329,20723,20134,19560,19082,18600,18215,17842,17490,17211,16944,16700,16497,16292,16113,15913,15718,15550,15412,15306,15202,15126,15060,15009,14981,14981,14989,15009,15030,15074,15121,15149,15200,15242,15265,15275,15295,15285,15314,15337,15333,15315,15261,15192,15128,15055,14976,14878,14761,14608,14439,14252,14041,13816,13574,13310,13046,12749,12466,12160,11847,11569,11298,11055,10817,10578,10315,10018,9686,9373,9094,8843,8633,8460,8313,8179,8075,8000,7927,7890,7824,7736,7581,7416,7256,7111,7005,6902,6829,6763,6714,6689,6653,6663,6640,6618,6637,6620,6479,6175,5747,5131,21.6,21.6,22.2,1567700,0.2,12.2,12.0,5.0,480,-1.00,-1.00,57.5116,-18.983253,0.000526,,,,,92 +SATSLF0720,2024246,4.260381,4.21,0.0590,0.1021,0.0175,0.00,16181,649,1,704,708,713,714,712,718,736,725,725,719,728,729,764,865,1204,1953,3122,4491,5758,6701,7354,7846,8249,8711,9217,9836,10581,11461,12447,13566,14734,15911,17017,17977,18704,19133,19280,19099,18726,18185,17601,17034,16576,16213,15969,15896,15978,16241,16649,17229,17969,18881,19972,21178,22489,23939,25435,26901,28335,29586,30592,31337,31744,31753,31425,30765,29867,28790,27538,26371,25184,24118,23101,22245,21532,20901,20430,20032,19754,19589,19482,19514,19611,19792,20055,20404,20839,21351,21920,22546,23221,23849,24447,25055,25525,25901,26168,26218,26080,25808,25325,24704,23954,23150,22276,21398,20546,19785,19077,18426,17874,17390,16993,16653,16392,16239,16138,16096,16106,16203,16371,16590,16889,17267,17697,18194,18769,19373,20024,20705,21429,22177,22930,23624,24331,25003,25592,26165,26578,26915,27157,27249,27249,27170,26962,26626,26244,25746,25179,24587,23953,23293,22640,21979,21349,20722,20135,19563,19061,18582,18176,17818,17485,17204,16933,16680,16490,16282,16099,15899,15706,15560,15406,15300,15209,15133,15057,15005,14996,14997,14989,15016,15045,15083,15112,15149,15200,15242,15257,15283,15283,15301,15312,15335,15339,15329,15278,15210,15141,15070,14986,14891,14749,14600,14432,14233,14023,13806,13577,13306,13051,12769,12473,12173,11877,11579,11317,11064,10829,10594,10324,10018,9694,9373,9089,8840,8642,8480,8321,8182,8087,8017,7949,7900,7822,7735,7588,7421,7257,7128,7009,6915,6837,6776,6726,6693,6663,6650,6633,6643,6638,6635,6477,6176,5758,5125,21.6,21.7,22.2,1567701,0.3,12.3,11.9,5.0,471,-1.00,-1.00,56.7759,-18.681665,0.000447,,,,,65 +SATSLF0720,2024246,4.260634,4.15,0.0581,0.1020,0.0178,0.00,16171,649,1,710,709,715,722,720,712,712,709,711,716,717,727,770,882,1217,1960,3137,4529,5761,6693,7336,7809,8228,8665,9203,9825,10581,11449,12444,13566,14741,15910,17018,17987,18718,19163,19277,19090,18722,18184,17579,17031,16565,16209,15974,15904,15982,16225,16641,17209,17975,18882,19954,21173,22487,23949,25420,26906,28325,29584,30589,31353,31745,31760,31418,30769,29833,28781,27553,26345,25182,24114,23106,22237,21505,20902,20421,20013,19739,19576,19488,19496,19600,19781,20048,20399,20827,21355,21909,22514,23191,23825,24455,25032,25516,25880,26152,26193,26071,25781,25302,24675,23949,23141,22271,21406,20544,19782,19080,18422,17847,17380,16977,16654,16400,16249,16142,16100,16109,16212,16372,16583,16877,17259,17676,18165,18733,19341,19994,20671,21407,22167,22896,23613,24314,24982,25581,26129,26571,26877,27133,27233,27234,27143,26933,26611,26227,25714,25156,24562,23921,23283,22614,21959,21313,20705,20106,19557,19063,18588,18166,17815,17485,17182,16935,16695,16484,16277,16077,15891,15714,15528,15387,15277,15172,15097,15026,15005,14987,14986,14983,15003,15031,15072,15109,15145,15176,15251,15234,15251,15261,15265,15287,15311,15309,15303,15258,15191,15131,15060,14969,14873,14752,14593,14413,14238,14022,13801,13573,13301,13037,12757,12462,12171,11868,11588,11305,11048,10811,10583,10301,10019,9697,9377,9085,8853,8645,8472,8324,8182,8091,8004,7945,7873,7815,7718,7587,7410,7265,7113,6999,6904,6819,6769,6720,6685,6663,6653,6637,6629,6637,6631,6482,6185,5749,5136,21.6,21.7,22.2,1567702,0.7,12.2,12.0,5.0,477,-1.00,-1.00,56.9856,-18.765607,0.000520,,,,,139 +SATSLF0720,2024246,4.260890,4.09,0.0573,0.1041,0.0186,0.00,16113,649,1,695,690,711,723,713,711,727,729,725,726,719,721,762,871,1213,1940,3105,4481,5723,6655,7302,7772,8195,8632,9146,9769,10511,11388,12373,13494,14660,15828,16920,17872,18586,19042,19168,18996,18624,18088,17506,16934,16470,16110,15882,15809,15902,16132,16545,17125,17861,18766,19846,21062,22378,23827,25301,26786,28188,29440,30451,31181,31588,31586,31273,30602,29691,28643,27400,26231,25077,24000,22998,22138,21411,20790,20326,19929,19647,19502,19397,19410,19503,19700,19961,20311,20745,21265,21838,22437,23101,23763,24369,24954,25430,25778,26042,26077,25962,25678,25205,24582,23861,23065,22199,21312,20471,19705,18985,18345,17782,17315,16907,16592,16337,16187,16085,16054,16057,16162,16307,16535,16829,17199,17636,18112,18679,19287,19937,20610,21338,22083,22822,23542,24248,24912,25509,26059,26477,26805,27051,27155,27169,27081,26870,26546,26145,25653,25093,24489,23835,23187,22556,21870,21244,20640,20049,19500,19025,18557,18137,17781,17448,17141,16868,16624,16430,16221,16029,15843,15663,15488,15364,15254,15155,15077,14997,14965,14939,14937,14937,14973,14999,15026,15077,15090,15154,15211,15221,15226,15238,15248,15271,15285,15286,15283,15220,15159,15105,15034,14937,14838,14694,14568,14389,14205,13981,13769,13533,13270,12994,12721,12448,12149,11860,11565,11286,11047,10803,10565,10294,9995,9665,9362,9070,8828,8608,8438,8297,8155,8064,7983,7914,7863,7787,7704,7561,7394,7250,7117,7008,6897,6821,6743,6688,6647,6639,6634,6610,6606,6617,6615,6465,6169,5733,5117,21.7,21.7,22.2,1567703,0.0,12.3,11.9,5.0,478,-1.00,-1.00,57.7934,-19.009720,0.000568,,,,,89 +SATSLF0720,2024246,4.261142,4.14,0.0580,0.1028,0.0180,0.00,16162,649,1,695,695,703,717,720,713,721,717,729,713,708,720,750,865,1191,1933,3117,4492,5757,6688,7329,7797,8216,8665,9172,9802,10549,11421,12423,13544,14720,15891,16986,17955,18681,19109,19245,19064,18699,18159,17568,16996,16542,16181,15954,15869,15943,16193,16605,17185,17940,18848,19922,21154,22484,23925,25406,26884,28326,29582,30553,31319,31707,31719,31390,30739,29808,28745,27521,26338,25169,24085,23082,22235,21493,20885,20391,20000,19719,19549,19454,19474,19593,19765,20026,20369,20818,21338,21899,22528,23203,23838,24458,25043,25529,25869,26147,26192,26077,25781,25307,24676,23937,23139,22276,21370,20547,19764,19066,18400,17847,17380,16976,16662,16403,16239,16121,16083,16099,16198,16359,16580,16892,17252,17690,18177,18752,19345,19984,20672,21393,22140,22890,23602,24297,24979,25557,26138,26566,26885,27140,27248,27259,27149,26930,26600,26209,25701,25140,24549,23917,23282,22600,21947,21316,20690,20104,19533,19047,18585,18187,17802,17473,17190,16937,16682,16491,16277,16076,15891,15703,15544,15397,15289,15183,15117,15046,14985,14964,14965,14967,14993,15010,15053,15085,15139,15190,15238,15252,15258,15264,15272,15297,15317,15321,15308,15250,15202,15125,15065,14973,14882,14738,14598,14423,14226,14013,13809,13565,13308,13042,12769,12468,12165,11870,11587,11293,11059,10816,10588,10314,10009,9689,9374,9099,8851,8636,8464,8318,8168,8061,8007,7921,7869,7806,7702,7567,7389,7240,7111,6999,6913,6821,6771,6701,6664,6642,6643,6627,6620,6637,6633,6461,6171,5735,5127,21.7,21.7,22.3,1567704,0.1,12.2,12.0,5.0,477,-1.00,-1.00,57.5346,-18.977998,0.000604,,,,,218 +SATSLF0720,2024246,4.261398,4.32,0.0605,0.1029,0.0178,0.00,16150,649,1,702,694,703,707,713,724,725,738,741,727,727,739,777,885,1214,1935,3136,4501,5759,6685,7333,7800,8209,8659,9187,9792,10552,11427,12417,13517,14703,15868,16975,17929,18650,19079,19213,19031,18664,18120,17543,16980,16521,16169,15944,15876,15940,16202,16596,17175,17926,18823,19888,21117,22439,23886,25371,26842,28273,29521,30521,31282,31653,31682,31341,30693,29770,28722,27481,26293,25121,24053,23042,22189,21465,20855,20385,19988,19700,19546,19449,19458,19568,19746,20009,20358,20789,21314,21886,22504,23158,23806,24427,24986,25463,25827,26089,26151,26042,25766,25281,24649,23917,23136,22244,21385,20528,19750,19050,18379,17824,17352,16947,16633,16383,16237,16129,16082,16097,16196,16361,16582,16882,17237,17665,18145,18715,19328,19977,20657,21378,22149,22890,23605,24309,24951,25538,26100,26528,26846,27109,27205,27210,27119,26906,26595,26195,25700,25135,24548,23907,23259,22592,21928,21303,20679,20101,19541,19056,18586,18170,17809,17474,17181,16913,16665,16491,16272,16073,15895,15697,15526,15396,15273,15162,15088,15020,14989,14965,14957,14971,14998,15022,15068,15102,15136,15173,15235,15238,15254,15271,15259,15291,15308,15302,15304,15239,15194,15131,15057,14987,14880,14728,14587,14401,14219,14011,13797,13556,13299,13038,12752,12450,12160,11861,11561,11285,11059,10817,10584,10304,10002,9689,9369,9084,8841,8646,8473,8315,8190,8090,8013,7933,7881,7800,7709,7579,7397,7248,7121,7015,6912,6837,6760,6715,6667,6654,6649,6631,6608,6637,6629,6476,6169,5745,5128,21.7,21.7,22.3,1567705,0.0,12.2,11.9,5.0,470,-1.00,-1.00,56.7840,-18.639278,0.000472,,,,,9 +SATSLF0720,2024246,4.261652,4.33,0.0606,0.1029,0.0178,0.00,16143,649,1,695,702,709,706,717,716,729,721,731,727,726,732,773,877,1221,1940,3123,4506,5754,6676,7321,7787,8206,8648,9187,9810,10538,11421,12420,13521,14702,15877,16981,17941,18664,19088,19221,19035,18654,18116,17528,16972,16509,16158,15921,15841,15931,16184,16590,17182,17920,18828,19894,21134,22436,23867,25365,26848,28256,29510,30503,31255,31645,31659,31309,30664,29752,28689,27462,26267,25107,24048,23041,22173,21451,20844,20374,19977,19682,19539,19449,19444,19547,19733,19987,20359,20772,21288,21877,22498,23154,23807,24417,25000,25456,25830,26080,26151,26022,25741,25276,24635,23921,23122,22224,21353,20526,19745,19029,18381,17824,17357,16946,16631,16388,16225,16113,16074,16091,16177,16333,16561,16842,17212,17638,18121,18723,19330,19968,20646,21374,22120,22854,23589,24285,24936,25526,26101,26533,26859,27089,27196,27202,27124,26907,26572,26179,25691,25107,24519,23898,23252,22601,21941,21285,20663,20104,19533,19032,18566,18146,17789,17452,17163,16893,16673,16452,16255,16062,15875,15693,15523,15374,15279,15160,15094,15016,14980,14955,14952,14957,14994,15011,15044,15085,15125,15162,15223,15252,15250,15270,15261,15281,15291,15312,15277,15251,15190,15131,15056,14968,14871,14732,14590,14412,14210,14003,13787,13553,13303,13030,12742,12454,12157,11857,11573,11314,11045,10804,10573,10310,10006,9687,9384,9109,8857,8644,8471,8301,8175,8068,7991,7931,7866,7803,7717,7582,7413,7259,7123,7015,6905,6819,6766,6705,6668,6659,6639,6635,6617,6636,6638,6475,6182,5748,5133,21.7,21.7,22.4,1567706,0.1,12.3,12.0,5.0,474,-1.00,-1.00,56.6056,-18.553307,0.000555,,,,,184 +SATSLF0720,2024246,4.261908,4.04,0.0566,0.1068,0.0192,0.00,16046,649,1,694,701,692,695,690,710,724,713,711,725,729,740,781,900,1233,1941,3095,4469,5688,6599,7240,7704,8109,8544,9055,9677,10421,11277,12273,13356,14531,15677,16787,17726,18451,18869,18995,18826,18442,17915,17347,16794,16333,15975,15749,15675,15771,16000,16425,16981,17729,18632,19679,20891,22199,23630,25093,26570,27988,29224,30213,30959,31365,31361,31046,30403,29493,28465,27238,26077,24920,23844,22854,22017,21282,20680,20195,19805,19537,19382,19281,19312,19413,19605,19874,20219,20644,21165,21728,22337,23009,23649,24270,24832,25315,25661,25930,25984,25861,25580,25100,24475,23761,22966,22099,21229,20386,19621,18919,18277,17713,17259,16840,16531,16281,16123,16005,15974,16000,16087,16237,16466,16769,17149,17570,18052,18622,19221,19869,20546,21272,22011,22766,23469,24171,24833,25425,25968,26403,26738,26977,27081,27097,27008,26780,26457,26076,25589,25021,24426,23805,23144,22512,21834,21207,20592,20007,19438,18947,18482,18090,17725,17399,17125,16837,16618,16405,16189,16009,15808,15635,15473,15325,15221,15125,15046,14969,14930,14923,14897,14922,14939,14974,15005,15049,15090,15129,15179,15189,15195,15196,15197,15239,15258,15259,15241,15207,15150,15084,15008,14912,14836,14693,14529,14363,14185,13970,13745,13511,13253,12997,12711,12419,12139,11821,11533,11269,11025,10776,10550,10278,9976,9666,9352,9068,8828,8621,8435,8281,8150,8046,7969,7896,7848,7789,7689,7560,7393,7243,7112,7003,6901,6812,6747,6691,6656,6643,6620,6619,6606,6623,6611,6460,6144,5731,5106,21.7,21.8,22.4,1567707,0.1,12.3,11.9,5.0,465,-1.00,-1.00,59.4951,-19.590316,0.000477,,,,,92 +SATSLF0720,2024246,4.262168,4.23,0.0592,0.1049,0.0194,0.00,16089,649,1,708,717,712,715,707,703,715,696,720,729,714,737,769,879,1207,1931,3100,4491,5715,6653,7277,7753,8160,8603,9125,9738,10479,11341,12334,13433,14611,15770,16890,17841,18563,18999,19124,18933,18563,18026,17438,16882,16439,16085,15850,15789,15872,16101,16510,17092,17847,18738,19797,21018,22344,23776,25254,26721,28141,29380,30386,31121,31530,31520,31216,30572,29668,28597,27353,26178,25014,23937,22951,22096,21378,20775,20288,19897,19623,19474,19362,19379,19468,19657,19944,20266,20713,21205,21781,22406,23073,23709,24320,24915,25389,25761,26017,26075,25965,25677,25195,24539,23815,23032,22157,21290,20450,19685,18983,18330,17761,17313,16893,16577,16329,16144,16050,16023,16042,16133,16305,16528,16820,17173,17612,18096,18669,19275,19919,20584,21326,22054,22791,23514,24208,24864,25450,26017,26453,26774,27002,27115,27127,27010,26811,26487,26090,25611,25049,24452,23813,23185,22528,21872,21226,20621,20026,19472,18979,18517,18118,17752,17426,17129,16854,16606,16407,16213,16016,15824,15645,15491,15337,15236,15144,15067,14986,14946,14925,14931,14944,14957,14970,15003,15048,15083,15136,15190,15203,15219,15232,15222,15244,15255,15255,15247,15191,15134,15078,15010,14914,14838,14699,14554,14366,14184,13975,13752,13504,13249,12985,12722,12408,12133,11825,11554,11274,11030,10785,10557,10284,9989,9653,9362,9065,8817,8603,8446,8289,8155,8056,7968,7898,7861,7786,7702,7549,7380,7229,7105,6974,6903,6824,6749,6686,6662,6629,6635,6609,6593,6613,6617,6450,6153,5733,5113,21.7,21.8,22.4,1567708,0.3,12.2,12.0,5.0,467,-1.00,-1.00,57.8385,-18.997338,0.000543,,,,,142 +SATSLF0720,2024246,4.262424,4.21,0.0589,0.1040,0.0187,0.00,16125,649,1,703,695,696,697,702,715,718,713,727,721,730,716,761,881,1196,1939,3108,4500,5748,6666,7310,7780,8213,8646,9159,9792,10529,11396,12398,13518,14677,15843,16967,17917,18644,19072,19201,19013,18629,18097,17501,16947,16485,16113,15902,15833,15908,16158,16564,17155,17895,18812,19877,21085,22398,23838,25315,26794,28219,29475,30482,31217,31610,31611,31289,30635,29723,28657,27415,26245,25078,24003,23008,22157,21433,20821,20323,19944,19648,19502,19401,19414,19491,19703,19968,20323,20746,21264,21832,22454,23109,23764,24372,24958,25422,25798,26054,26106,25989,25715,25240,24598,23876,23078,22218,21332,20498,19725,19025,18366,17803,17344,16933,16610,16373,16202,16098,16058,16090,16157,16325,16541,16841,17213,17629,18109,18701,19317,19941,20622,21358,22100,22838,23552,24264,24916,25509,26061,26514,26812,27068,27157,27191,27097,26880,26551,26149,25658,25098,24517,23865,23210,22571,21897,21265,20667,20070,19504,19019,18565,18154,17776,17434,17152,16901,16640,16449,16246,16053,15858,15670,15499,15365,15241,15159,15098,15026,14977,14958,14961,14948,14983,14989,15044,15067,15102,15158,15223,15220,15242,15245,15255,15272,15281,15303,15286,15233,15170,15101,15029,14958,14858,14730,14577,14413,14210,14001,13793,13556,13286,13019,12729,12431,12142,11833,11558,11302,11037,10809,10577,10306,9995,9677,9374,9089,8823,8626,8449,8303,8157,8058,7985,7907,7867,7804,7715,7565,7391,7239,7108,6988,6896,6814,6752,6700,6661,6645,6633,6613,6613,6625,6623,6469,6158,5743,5111,21.7,21.8,22.4,1567709,0.1,12.3,11.9,5.0,476,-1.00,-1.00,57.2156,-18.784780,0.000569,,,,,129 +SATSLF0720,2024246,4.262676,4.30,0.0602,0.1053,0.0193,0.00,16082,649,1,695,702,717,720,717,713,733,726,736,729,714,736,770,889,1213,1943,3119,4490,5717,6642,7280,7755,8165,8619,9138,9751,10496,11357,12339,13463,14633,15777,16891,17843,18562,18982,19127,18949,18574,18045,17448,16891,16418,16065,15847,15773,15862,16122,16525,17120,17838,18743,19806,21028,22337,23764,25241,26716,28145,29388,30377,31125,31522,31516,31176,30549,29645,28573,27357,26177,25001,23946,22939,22089,21381,20753,20274,19885,19603,19443,19345,19357,19454,19653,19906,20256,20682,21218,21787,22422,23077,23719,24318,24890,25360,25713,25991,26032,25921,25656,25169,24540,23813,23026,22152,21280,20432,19665,18962,18320,17761,17289,16885,16573,16317,16161,16048,16012,16025,16124,16277,16501,16798,17163,17594,18082,18647,19272,19888,20581,21301,22042,22793,23498,24198,24828,25431,25989,26422,26752,26998,27096,27116,27029,26809,26482,26090,25593,25026,24437,23801,23152,22509,21845,21193,20600,20014,19449,18967,18520,18110,17733,17406,17123,16843,16617,16417,16206,16006,15815,15642,15465,15332,15212,15115,15051,14976,14930,14910,14909,14914,14929,14952,14992,15030,15075,15128,15175,15191,15211,15212,15223,15233,15268,15243,15251,15201,15136,15080,15019,14922,14833,14682,14528,14376,14174,13957,13732,13505,13241,12985,12694,12411,12125,11833,11539,11264,11018,10770,10531,10261,9972,9655,9348,9061,8814,8605,8438,8273,8167,8058,7975,7915,7862,7784,7693,7549,7382,7217,7091,6968,6882,6809,6735,6690,6649,6635,6625,6605,6599,6614,6617,6452,6140,5726,5094,21.7,21.8,22.4,1567709,0.3,12.2,11.9,5.0,473,-1.00,-1.00,57.3159,-18.774219,0.000517,,,,,175 +SATSLF0720,2024246,4.262932,4.26,0.0597,0.1051,0.0198,0.00,16083,649,1,688,707,713,718,727,718,726,730,718,727,732,755,782,891,1199,1938,3111,4481,5727,6667,7298,7765,8183,8631,9154,9770,10516,11374,12366,13469,14648,15804,16909,17853,18571,19019,19149,18974,18604,18055,17468,16909,16441,16095,15857,15797,15873,16139,16540,17121,17853,18755,19811,21028,22331,23794,25268,26731,28149,29409,30388,31129,31525,31517,31190,30554,29644,28576,27351,26178,25022,23944,22958,22094,21356,20754,20265,19878,19607,19453,19353,19369,19466,19661,19916,20273,20683,21206,21776,22400,23066,23704,24313,24891,25365,25713,25998,26049,25909,25643,25166,24522,23829,23020,22154,21285,20439,19674,18973,18325,17768,17291,16903,16573,16332,16163,16057,16009,16021,16118,16270,16493,16787,17159,17582,18075,18659,19266,19893,20570,21285,22029,22774,23481,24185,24844,25427,25987,26419,26746,26985,27084,27109,27013,26806,26473,26081,25604,25024,24427,23797,23142,22493,21821,21205,20588,20006,19447,18980,18499,18100,17723,17402,17125,16858,16613,16417,16203,16021,15797,15627,15460,15322,15223,15117,15049,14957,14933,14925,14904,14910,14942,14965,15018,15038,15063,15127,15170,15186,15199,15198,15211,15229,15261,15257,15234,15172,15128,15063,14989,14907,14820,14677,14539,14361,14193,13989,13761,13522,13262,12980,12707,12408,12118,11812,11529,11257,10996,10757,10522,10251,9964,9641,9329,9034,8808,8602,8428,8272,8141,8055,7985,7905,7859,7789,7720,7560,7381,7232,7094,6981,6870,6811,6756,6691,6656,6637,6624,6589,6591,6590,6595,6448,6143,5730,5117,21.7,21.8,22.4,1567710,0.3,12.2,12.0,5.0,467,-1.00,-1.00,56.8589,-18.587066,0.000519,,,,,33 +SATSLF0720,2024246,4.263188,4.29,0.0601,0.1054,0.0195,0.00,16065,649,1,697,717,718,721,714,731,731,731,730,734,736,742,775,888,1224,1933,3111,4466,5705,6629,7260,7741,8160,8597,9111,9736,10474,11343,12331,13445,14625,15769,16855,17819,18530,18973,19094,18916,18542,18008,17419,16872,16405,16051,15840,15760,15833,16077,16502,17072,17825,18729,19784,20995,22305,23740,25218,26690,28107,29338,30345,31089,31480,31478,31160,30505,29604,28558,27314,26135,24983,23922,22924,22074,21335,20711,20252,19861,19578,19433,19342,19358,19452,19641,19898,20237,20673,21193,21741,22347,23019,23672,24295,24861,25348,25696,25962,26017,25902,25625,25143,24512,23778,23001,22144,21269,20413,19664,18957,18301,17752,17277,16862,16554,16289,16135,16025,15985,16016,16106,16285,16514,16793,17159,17576,18059,18640,19249,19853,20541,21270,22011,22756,23469,24157,24818,25402,25972,26404,26716,26962,27074,27092,26994,26772,26459,26061,25566,25002,24405,23780,23126,22474,21829,21190,20589,20008,19464,18964,18485,18070,17703,17381,17086,16829,16592,16394,16189,16002,15805,15618,15449,15300,15191,15098,15031,14964,14932,14905,14909,14912,14938,14941,14992,15018,15057,15097,15157,15173,15182,15195,15203,15216,15232,15235,15234,15175,15117,15074,14991,14901,14807,14670,14522,14359,14158,13955,13736,13503,13238,12969,12697,12394,12109,11796,11512,11259,11010,10757,10535,10261,9962,9635,9328,9043,8808,8597,8424,8264,8130,8062,7972,7893,7851,7776,7680,7545,7361,7227,7093,6994,6885,6805,6746,6692,6629,6631,6605,6587,6581,6593,6601,6436,6143,5705,5100,21.7,21.8,22.5,1567711,0.4,12.3,12.0,5.0,474,-1.00,-1.00,57.5285,-18.840157,0.000547,,,,,174 +SATSLF0720,2024246,4.263440,4.16,0.0582,0.1041,0.0189,0.00,16106,649,1,701,697,697,694,697,708,705,717,735,727,730,743,775,887,1207,1947,3106,4489,5722,6649,7309,7776,8199,8653,9159,9779,10522,11377,12369,13461,14656,15818,16922,17895,18617,19037,19178,18992,18610,18083,17490,16922,16471,16089,15876,15803,15893,16141,16538,17137,17876,18771,19849,21058,22372,23810,25298,26761,28183,29434,30435,31162,31577,31582,31253,30598,29691,28629,27395,26209,25051,23965,22965,22119,21387,20765,20295,19916,19629,19479,19395,19417,19496,19690,19948,20295,20708,21237,21802,22435,23092,23746,24349,24939,25401,25761,26022,26077,25965,25683,25216,24577,23842,23059,22194,21314,20469,19699,19005,18348,17800,17328,16909,16601,16351,16174,16075,16023,16039,16144,16309,16534,16831,17192,17622,18104,18674,19294,19925,20611,21335,22066,22805,23514,24225,24870,25462,26030,26469,26782,27018,27139,27141,27049,26844,26507,26125,25633,25069,24469,23847,23191,22534,21881,21253,20640,20042,19508,18986,18528,18125,17750,17411,17135,16868,16626,16430,16215,16024,15836,15652,15479,15351,15233,15133,15075,14976,14948,14928,14940,14930,14959,14989,15024,15048,15095,15142,15194,15217,15245,15242,15241,15255,15273,15257,15259,15218,15157,15095,15037,14936,14843,14716,14566,14379,14196,13984,13767,13537,13270,12993,12713,12429,12141,11841,11552,11278,11017,10797,10557,10300,9995,9675,9358,9060,8811,8606,8440,8286,8171,8073,7992,7927,7879,7817,7717,7561,7379,7234,7108,6989,6905,6835,6757,6709,6661,6640,6617,6605,6597,6619,6614,6461,6172,5741,5124,21.7,21.9,22.5,1567712,0.0,12.2,12.0,5.0,474,-1.00,-1.00,57.5129,-18.886742,0.000564,,,,,247 +SATSLF0720,2024246,4.263695,4.18,0.0585,0.1052,0.0197,0.00,16080,649,1,707,712,712,717,714,730,724,719,722,715,724,719,760,878,1211,1941,3119,4488,5739,6661,7313,7770,8194,8651,9156,9777,10529,11385,12381,13474,14656,15813,16897,17860,18582,19037,19141,18978,18592,18067,17462,16919,16458,16093,15882,15800,15872,16112,16530,17114,17859,18754,19812,21030,22346,23773,25254,26733,28137,29385,30381,31129,31525,31533,31210,30551,29629,28578,27350,26180,25015,23931,22933,22085,21349,20738,20279,19876,19595,19436,19349,19356,19469,19656,19901,20259,20685,21220,21773,22398,23063,23703,24309,24882,25361,25741,25992,26030,25911,25633,25174,24520,23816,23021,22146,21287,20445,19673,18965,18310,17763,17300,16884,16569,16317,16138,16052,16005,16025,16116,16280,16505,16795,17157,17596,18071,18651,19254,19893,20573,21290,22029,22762,23485,24184,24834,25419,25992,26420,26733,26984,27085,27097,27005,26802,26465,26060,25563,25010,24401,23782,23133,22481,21819,21211,20585,19991,19443,18964,18492,18080,17723,17385,17089,16843,16599,16394,16185,15995,15811,15602,15459,15318,15197,15095,15019,14956,14910,14917,14901,14912,14931,14957,14993,15043,15067,15111,15166,15188,15187,15216,15213,15225,15251,15245,15227,15182,15129,15066,14986,14909,14821,14686,14545,14360,14163,13952,13741,13493,13238,12966,12699,12410,12114,11811,11520,11234,10991,10763,10538,10274,9966,9649,9345,9057,8813,8605,8429,8283,8145,8061,7961,7906,7846,7790,7695,7557,7383,7232,7101,6984,6878,6802,6730,6689,6645,6621,6608,6600,6593,6619,6601,6444,6149,5725,5098,21.7,21.9,22.5,1567713,0.1,12.2,11.9,5.0,474,-1.00,-1.00,57.0695,-18.673280,0.000507,,,,,128 +SATSLF0720,2024246,4.263948,4.20,0.0589,0.1059,0.0199,0.00,16064,649,1,704,705,709,702,718,710,725,718,739,730,732,742,781,885,1220,1936,3102,4473,5708,6639,7289,7759,8176,8628,9140,9751,10491,11349,12332,13444,14602,15757,16858,17821,18546,18970,19104,18917,18546,18014,17425,16886,16426,16050,15831,15747,15842,16090,16480,17063,17814,18717,19771,20992,22298,23744,25213,26684,28101,29333,30347,31094,31480,31480,31156,30491,29585,28528,27305,26144,24978,23906,22914,22065,21328,20729,20244,19865,19584,19419,19321,19329,19427,19628,19885,20223,20663,21175,21760,22376,23031,23678,24294,24873,25353,25694,25963,26002,25891,25604,25128,24481,23780,22981,22123,21257,20433,19649,18966,18309,17749,17301,16885,16557,16311,16137,16029,15987,16013,16086,16257,16480,16776,17154,17589,18064,18626,19224,19868,20562,21281,22024,22770,23461,24165,24808,25403,25965,26385,26725,26952,27058,27066,26996,26762,26443,26051,25554,25006,24410,23774,23137,22466,21804,21184,20572,19994,19422,18942,18472,18081,17701,17383,17095,16850,16596,16391,16195,15998,15798,15616,15437,15315,15175,15103,15031,14957,14926,14894,14899,14894,14919,14955,14993,15025,15058,15102,15165,15178,15185,15205,15202,15215,15238,15236,15242,15181,15125,15061,14987,14905,14807,14679,14539,14358,14175,13961,13740,13507,13239,12972,12695,12400,12109,11823,11548,11268,11029,10776,10549,10261,9967,9645,9350,9060,8813,8605,8441,8284,8141,8052,7957,7891,7847,7770,7685,7528,7363,7214,7091,6981,6880,6808,6748,6697,6662,6632,6621,6590,6587,6601,6610,6461,6153,5731,5111,21.7,21.9,22.6,1567714,0.6,12.2,11.9,5.0,472,-1.00,-1.00,57.6454,-18.883936,0.000568,,,,,61 +SATSLF0720,2024246,4.264199,4.20,0.0589,0.1060,0.0200,0.00,16059,649,1,716,716,713,718,741,737,744,721,739,731,724,731,775,905,1221,1955,3122,4489,5735,6645,7280,7743,8168,8609,9113,9733,10469,11317,12304,13431,14601,15749,16848,17798,18505,18945,19073,18896,18521,17984,17393,16858,16386,16036,15815,15733,15827,16073,16474,17052,17785,18689,19737,20957,22256,23719,25184,26664,28073,29298,30314,31044,31437,31452,31117,30474,29557,28516,27280,26109,24954,23879,22875,22059,21312,20713,20229,19837,19547,19413,19316,19333,19421,19607,19886,20213,20656,21162,21726,22349,23009,23656,24269,24859,25314,25689,25954,25981,25882,25605,25129,24502,23781,22989,22124,21250,20416,19648,18967,18301,17751,17272,16879,16552,16308,16130,16033,15993,16009,16112,16269,16487,16772,17137,17568,18053,18630,19236,19870,20560,21287,22025,22753,23473,24167,24828,25402,25968,26400,26714,26944,27059,27065,26977,26768,26444,26045,25575,25001,24419,23781,23120,22482,21820,21181,20572,19987,19464,18961,18489,18085,17707,17394,17098,16825,16576,16377,16183,16001,15805,15621,15460,15309,15191,15105,15037,14967,14941,14909,14904,14912,14945,14953,14987,15021,15063,15108,15155,15175,15176,15203,15196,15227,15249,15249,15239,15184,15127,15058,14988,14900,14813,14678,14526,14360,14163,13956,13744,13513,13229,12979,12699,12407,12117,11820,11533,11258,11003,10767,10528,10269,9957,9634,9337,9048,8813,8613,8446,8293,8148,8044,7982,7890,7835,7777,7698,7557,7383,7225,7111,6987,6889,6813,6730,6673,6635,6623,6606,6595,6594,6595,6612,6449,6143,5726,5109,21.8,21.9,22.6,1567715,0.0,12.2,12.0,5.0,474,-1.00,-1.00,57.9001,-18.970584,0.000545,,,,,35 +SATSLF0720,2024246,4.264455,4.23,0.0592,0.1071,0.0210,0.00,16022,649,1,705,718,721,708,727,713,727,725,741,736,754,744,782,882,1211,1934,3099,4461,5696,6615,7254,7747,8159,8591,9121,9737,10461,11325,12310,13413,14582,15730,16808,17769,18469,18913,19057,18888,18501,17972,17385,16842,16371,16019,15805,15717,15789,16043,16446,17035,17767,18674,19728,20939,22233,23671,25130,26597,28007,29245,30249,30984,31387,31400,31058,30420,29501,28445,27228,26056,24888,23829,22837,21989,21261,20658,20179,19805,19517,19352,19268,19277,19387,19577,19829,20168,20608,21139,21685,22295,22962,23612,24210,24786,25258,25634,25881,25938,25813,25533,25089,24442,23730,22939,22065,21211,20360,19592,18890,18243,17691,17223,16821,16518,16269,16102,16009,15958,15959,16065,16211,16443,16737,17100,17526,18011,18593,19182,19813,20499,21218,21964,22694,23402,24101,24757,25346,25888,26327,26653,26890,26973,26999,26909,26682,26389,25978,25506,24924,24338,23705,23057,22418,21739,21123,20532,19950,19380,18909,18429,18033,17666,17344,17059,16789,16553,16344,16159,15970,15761,15579,15410,15277,15156,15058,14980,14917,14885,14848,14855,14875,14887,14918,14955,14993,15017,15069,15117,15133,15149,15173,15161,15188,15208,15195,15206,15141,15086,15024,14953,14862,14757,14634,14481,14318,14133,13929,13705,13472,13208,12942,12657,12378,12081,11781,11502,11223,10976,10736,10495,10253,9948,9623,9315,9035,8781,8571,8411,8256,8124,8025,7950,7872,7831,7757,7671,7533,7370,7207,7087,6972,6870,6787,6722,6673,6634,6613,6608,6591,6592,6622,6608,6442,6143,5701,5083,21.8,21.9,22.6,1567716,0.5,12.3,11.9,5.0,465,-1.00,-1.00,57.3707,-18.714457,0.000509,,,,,38 +SATSDF0720,2024246,4.509139,0.00,0.0000,0.0000,0.0000,0.00,649,0,1,636,626,631,628,639,631,636,630,629,625,635,629,627,618,616,621,626,633,630,617,615,623,649,648,649,653,659,652,652,661,657,653,661,668,650,655,661,655,655,645,663,642,640,651,653,659,663,657,653,655,649,643,655,656,653,658,649,655,650,666,672,663,645,664,646,659,653,657,654,667,662,669,650,663,649,648,644,637,647,652,657,658,656,657,652,647,650,651,646,645,657,658,657,644,655,649,662,649,654,663,647,665,660,660,656,657,651,648,649,653,653,659,651,662,645,643,652,646,648,638,638,642,647,664,648,647,647,648,641,647,654,650,657,641,656,641,636,639,640,651,653,651,657,645,635,639,641,633,645,646,644,643,649,649,648,644,653,651,651,660,654,658,647,651,645,645,638,648,642,635,645,646,645,659,654,663,659,663,663,651,651,633,651,656,657,645,653,661,648,657,659,635,642,651,656,657,661,653,663,653,650,651,640,641,645,652,636,639,637,635,647,644,656,646,649,640,647,646,643,640,650,640,648,634,639,667,644,647,660,645,648,637,641,656,653,651,664,641,655,657,652,653,659,648,647,656,653,657,653,643,635,634,651,657,645,489,0.0,0.0,0.0,1567715,0.2,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,235 +SATSLF0720,2024246,4.509693,4.17,0.0584,0.1015,0.0170,0.00,16194,649,1,705,704,685,703,707,720,725,720,735,731,740,729,767,877,1209,1944,3131,4521,5759,6692,7338,7810,8233,8688,9199,9831,10565,11447,12453,13579,14762,15936,17050,18016,18722,19171,19302,19111,18743,18208,17610,17021,16571,16205,15978,15894,15995,16242,16652,17248,17993,18906,19978,21207,22529,23968,25453,26948,28372,29636,30629,31382,31795,31776,31448,30791,29885,28804,27565,26397,25226,24136,23143,22299,21545,20939,20446,20038,19757,19607,19509,19532,19629,19832,20084,20429,20873,21395,21953,22574,23229,23880,24498,25088,25562,25921,26172,26218,26103,25826,25333,24702,23980,23178,22306,21422,20581,19803,19090,18430,17870,17408,17003,16676,16437,16258,16168,16125,16147,16219,16385,16624,16924,17287,17697,18189,18764,19366,20027,20716,21445,22191,22938,23645,24350,25024,25614,26176,26613,26942,27172,27264,27288,27188,26983,26660,26261,25749,25207,24598,23963,23316,22666,21994,21367,20740,20147,19577,19083,18601,18198,17839,17516,17229,16952,16709,16505,16299,16117,15917,15744,15580,15437,15318,15213,15133,15069,15013,15020,14996,15005,15034,15034,15089,15125,15155,15198,15253,15266,15285,15278,15288,15329,15318,15335,15325,15269,15208,15157,15085,14996,14908,14767,14625,14452,14245,14046,13830,13579,13322,13045,12777,12465,12183,11879,11581,11303,11067,10827,10592,10321,10012,9694,9388,9108,8865,8643,8481,8325,8196,8093,8007,7947,7898,7821,7735,7582,7413,7252,7121,7010,6919,6842,6782,6721,6684,6667,6662,6633,6627,6647,6644,6487,6186,5754,5137,21.6,21.6,22.0,1567716,0.1,12.2,11.9,5.0,595,-1.00,-1.00,57.0780,-18.826854,0.000593,,,,,252 +SATSLF0720,2024246,4.509875,4.27,0.0598,0.1008,0.0167,0.00,16206,649,1,698,688,690,685,695,701,701,721,717,723,733,733,767,882,1213,1944,3125,4506,5769,6690,7351,7825,8241,8699,9201,9851,10590,11469,12472,13577,14777,15934,17051,18014,18745,19181,19313,19124,18748,18221,17622,17067,16605,16236,16019,15946,16021,16257,16672,17252,18010,18917,19988,21222,22548,23997,25499,26978,28407,29667,30681,31406,31803,31808,31482,30843,29901,28837,27611,26432,25248,24183,23154,22300,21565,20941,20468,20074,19786,19634,19538,19537,19656,19841,20097,20445,20869,21403,21978,22593,23252,23906,24514,25094,25584,25940,26206,26254,26128,25853,25362,24726,23999,23209,22316,21435,20593,19813,19124,18450,17881,17415,17005,16693,16437,16279,16171,16129,16146,16229,16393,16635,16907,17294,17712,18213,18779,19400,20034,20726,21461,22206,22950,23681,24385,25051,25650,26235,26649,26957,27202,27314,27301,27222,26989,26688,26278,25792,25221,24626,24002,23346,22685,22013,21370,20745,20151,19612,19109,18637,18230,17868,17533,17237,16973,16713,16523,16309,16127,15920,15734,15566,15431,15309,15219,15145,15065,15053,15029,15025,15024,15050,15052,15101,15140,15170,15222,15265,15285,15296,15306,15305,15319,15345,15349,15335,15283,15227,15168,15097,15015,14904,14780,14621,14449,14246,14039,13827,13575,13318,13052,12771,12485,12186,11891,11598,11330,11074,10840,10581,10315,10020,9693,9400,9109,8850,8654,8476,8317,8205,8097,8010,7929,7871,7823,7719,7595,7426,7250,7127,7013,6925,6835,6779,6715,6685,6659,6651,6648,6624,6642,6635,6482,6164,5739,5126,21.6,21.6,22.1,1567717,0.4,12.2,12.0,5.0,493,-1.00,-1.00,56.6181,-18.656100,0.000493,,,,,216 +SATSLF0720,2024246,4.510130,4.12,0.0577,0.1017,0.0175,0.00,16174,649,1,693,691,698,695,693,707,722,718,729,728,725,740,762,887,1207,1944,3113,4510,5780,6700,7362,7831,8261,8704,9212,9837,10596,11463,12460,13576,14765,15946,17056,18009,18733,19163,19301,19109,18737,18214,17598,17043,16576,16211,15972,15905,15989,16241,16646,17231,17966,18887,19958,21183,22513,23957,25431,26929,28341,29606,30603,31355,31747,31753,31436,30786,29841,28785,27529,26376,25194,24117,23101,22238,21504,20896,20404,20032,19748,19584,19502,19509,19609,19786,20046,20392,20824,21350,21914,22545,23206,23845,24484,25032,25527,25880,26138,26196,26073,25782,25305,24682,23960,23145,22275,21402,20550,19773,19074,18423,17861,17394,16965,16645,16404,16225,16137,16096,16123,16205,16373,16588,16897,17265,17687,18176,18737,19335,19988,20666,21415,22149,22912,23610,24330,24982,25561,26129,26556,26874,27124,27235,27257,27170,26964,26631,26234,25728,25155,24554,23922,23266,22604,21940,21321,20693,20119,19557,19072,18603,18197,17813,17486,17200,16934,16682,16475,16265,16087,15897,15719,15557,15413,15297,15185,15093,15032,14977,14963,14973,14985,15005,15030,15063,15098,15123,15182,15239,15257,15272,15282,15279,15309,15321,15298,15307,15248,15191,15141,15049,14983,14881,14748,14600,14420,14233,14030,13813,13560,13293,13029,12742,12456,12165,11872,11586,11325,11073,10817,10577,10305,10013,9688,9379,9079,8849,8625,8450,8287,8166,8078,8005,7943,7894,7820,7718,7576,7389,7247,7123,7003,6905,6817,6758,6705,6676,6652,6638,6632,6622,6633,6627,6481,6174,5729,5114,21.6,21.6,22.2,1567718,0.3,12.2,12.0,5.0,481,-1.00,-1.00,56.8699,-18.723071,0.000533,,,,,96 +SATSLF0720,2024246,4.510383,4.10,0.0574,0.1017,0.0169,0.00,16189,649,1,695,683,707,700,704,723,718,727,724,717,729,737,767,885,1227,1968,3139,4515,5766,6701,7345,7807,8253,8698,9215,9846,10582,11456,12455,13566,14748,15924,17033,17986,18712,19156,19290,19114,18741,18206,17602,17041,16577,16208,15973,15908,15976,16229,16645,17225,17961,18882,19959,21192,22518,23973,25463,26937,28355,29620,30620,31369,31761,31761,31442,30776,29850,28797,27565,26381,25211,24130,23129,22267,21516,20916,20422,20042,19751,19600,19501,19517,19614,19811,20069,20413,20848,21373,21938,22573,23243,23892,24502,25064,25545,25892,26163,26211,26091,25824,25337,24700,23981,23179,22286,21423,20565,19777,19078,18423,17863,17408,16994,16679,16418,16269,16158,16108,16135,16225,16393,16622,16905,17280,17701,18182,18757,19382,20010,20710,21446,22178,22915,23633,24344,25000,25590,26166,26597,26914,27162,27285,27276,27197,26978,26645,26263,25757,25169,24588,23961,23297,22653,21988,21341,20739,20129,19575,19089,18606,18213,17827,17499,17213,16938,16705,16505,16316,16121,15936,15732,15569,15419,15310,15199,15124,15054,15018,15005,14998,15008,15034,15057,15093,15140,15153,15213,15253,15273,15285,15309,15316,15317,15350,15348,15341,15291,15232,15160,15087,15000,14906,14760,14603,14422,14246,14032,13819,13579,13311,13051,12778,12471,12187,11889,11591,11315,11061,10816,10583,10314,10018,9694,9391,9102,8864,8648,8474,8323,8173,8078,8019,7946,7896,7820,7741,7596,7414,7261,7131,7019,6917,6830,6764,6714,6681,6656,6650,6640,6627,6654,6636,6496,6186,5765,5128,21.6,21.6,22.2,1567719,0.4,12.2,12.0,5.0,480,-1.00,-1.00,57.2485,-18.888288,0.000588,,,,,117 +SATSLF0720,2024246,4.510633,4.13,0.0579,0.1030,0.0190,0.00,16138,649,1,703,700,700,714,703,711,715,718,712,715,729,740,771,887,1217,1954,3125,4505,5757,6688,7323,7799,8224,8679,9194,9806,10550,11431,12421,13537,14717,15880,16997,17940,18681,19115,19247,19074,18693,18152,17550,16983,16523,16155,15939,15884,15957,16197,16601,17196,17920,18839,19902,21136,22448,23896,25378,26866,28290,29528,30538,31285,31676,31683,31360,30694,29770,28715,27485,26305,25120,24051,23053,22205,21461,20866,20373,19979,19699,19554,19445,19465,19564,19749,20005,20355,20789,21306,21865,22489,23164,23818,24428,25006,25478,25828,26097,26145,26030,25757,25271,24640,23909,23099,22231,21353,20512,19745,19042,18380,17831,17366,16953,16632,16364,16196,16100,16052,16082,16161,16326,16553,16862,17227,17658,18145,18706,19322,19956,20638,21364,22098,22857,23579,24274,24925,25520,26080,26514,26837,27082,27192,27203,27097,26869,26528,26146,25654,25101,24501,23880,23235,22568,21901,21285,20641,20060,19496,19008,18545,18138,17780,17438,17155,16898,16656,16453,16245,16049,15846,15648,15504,15361,15242,15154,15073,14994,14967,14945,14952,14948,14974,14984,15027,15074,15102,15141,15201,15217,15239,15236,15250,15264,15269,15273,15251,15211,15159,15091,15025,14935,14859,14714,14566,14395,14201,13985,13762,13524,13276,12992,12713,12427,12138,11842,11563,11298,11037,10795,10562,10284,9975,9652,9351,9063,8827,8628,8450,8290,8165,8061,7984,7911,7868,7810,7708,7571,7383,7229,7108,6992,6889,6813,6742,6691,6663,6640,6626,6615,6605,6612,6599,6444,6144,5725,5113,21.6,21.6,22.2,1567720,0.8,12.2,12.0,5.0,477,-1.00,-1.00,57.1019,-18.776443,0.000557,,,,,118 +SATSLF0720,2024246,4.510888,4.14,0.0579,0.1035,0.0184,0.00,16123,649,1,690,701,700,699,722,726,730,737,725,727,729,731,761,865,1207,1932,3101,4503,5737,6658,7313,7775,8193,8635,9151,9773,10504,11381,12365,13485,14657,15820,16941,17883,18605,19033,19177,18994,18619,18081,17499,16940,16466,16109,15886,15826,15877,16135,16567,17125,17869,18782,19862,21060,22385,23837,25300,26789,28207,29458,30465,31192,31596,31606,31281,30624,29705,28658,27419,26245,25076,24008,23012,22151,21415,20818,20330,19948,19661,19517,19421,19429,19529,19706,19965,20312,20743,21271,21834,22456,23128,23777,24385,24964,25425,25799,26060,26106,25985,25710,25223,24599,23877,23073,22201,21344,20500,19717,19027,18362,17789,17325,16924,16610,16363,16192,16086,16055,16068,16161,16329,16553,16859,17218,17640,18137,18695,19307,19946,20618,21362,22104,22836,23554,24261,24912,25501,26066,26518,26823,27073,27186,27182,27100,26882,26560,26158,25673,25092,24510,23880,23221,22560,21890,21275,20670,20082,19525,19029,18552,18153,17781,17441,17157,16885,16654,16453,16258,16066,15873,15685,15516,15364,15255,15145,15069,14999,14954,14946,14952,14964,15002,15022,15057,15081,15111,15158,15232,15212,15227,15235,15245,15266,15279,15298,15264,15239,15166,15109,15040,14955,14851,14715,14559,14391,14208,13993,13777,13543,13288,13012,12736,12440,12155,11846,11568,11285,11037,10809,10576,10284,9997,9675,9351,9085,8837,8618,8438,8295,8153,8073,7997,7932,7877,7813,7729,7578,7414,7257,7128,7002,6900,6831,6757,6708,6661,6653,6633,6629,6606,6622,6624,6467,6159,5732,5111,21.7,21.7,22.2,1567721,0.0,12.2,12.0,5.0,479,-1.00,-1.00,57.8874,-19.058116,0.000566,,,,,129 +SATSLF0720,2024246,4.511141,4.16,0.0583,0.1035,0.0183,0.00,16130,649,1,706,690,700,696,695,705,709,724,728,727,719,736,774,870,1211,1933,3108,4497,5726,6651,7302,7770,8188,8642,9156,9787,10523,11389,12373,13500,14666,15833,16940,17883,18612,19047,19189,19005,18617,18095,17495,16947,16493,16123,15900,15834,15913,16145,16552,17147,17878,18790,19859,21086,22400,23840,25316,26816,28237,29466,30480,31216,31617,31597,31287,30634,29722,28691,27442,26261,25089,24011,23029,22173,21415,20811,20341,19946,19648,19499,19421,19439,19525,19716,19981,20339,20757,21277,21845,22466,23140,23769,24387,24961,25449,25806,26071,26125,26002,25737,25252,24619,23895,23097,22224,21361,20493,19730,19034,18362,17818,17342,16938,16616,16372,16205,16096,16061,16073,16162,16320,16558,16841,17232,17649,18137,18711,19318,19961,20651,21384,22106,22854,23568,24275,24933,25533,26103,26540,26840,27085,27196,27193,27115,26897,26565,26161,25666,25111,24517,23884,23234,22570,21914,21274,20665,20075,19524,19031,18557,18163,17793,17451,17164,16893,16652,16462,16250,16069,15865,15677,15509,15369,15248,15159,15078,14999,14974,14963,14945,14973,14992,15018,15045,15093,15125,15169,15227,15243,15234,15249,15257,15277,15291,15319,15284,15253,15169,15115,15050,14957,14868,14733,14585,14401,14215,14011,13789,13549,13288,13029,12734,12437,12147,11856,11563,11284,11043,10812,10567,10307,9996,9677,9352,9082,8834,8629,8445,8310,8165,8075,8001,7923,7892,7809,7713,7574,7392,7245,7114,7011,6902,6822,6745,6711,6676,6633,6631,6613,6614,6618,6625,6465,6160,5733,5113,21.7,21.7,22.2,1567722,0.0,12.2,12.0,5.0,475,-1.00,-1.00,57.7370,-19.006138,0.000531,,,,,188 +SATSLF0720,2024246,4.511397,4.10,0.0574,0.1036,0.0178,0.00,16135,649,1,700,703,715,701,711,709,729,713,723,722,719,733,771,884,1202,1947,3120,4496,5739,6680,7317,7783,8183,8628,9157,9790,10536,11405,12401,13509,14677,15851,16955,17925,18621,19072,19205,19017,18650,18122,17509,16953,16484,16128,15905,15833,15912,16154,16559,17156,17896,18807,19857,21092,22428,23853,25335,26817,28237,29480,30482,31227,31624,31623,31293,30664,29746,28669,27441,26257,25098,24028,23037,22170,21429,20843,20346,19957,19668,19506,19417,19421,19537,19732,19985,20333,20766,21297,21861,22471,23138,23787,24400,24976,25463,25812,26066,26120,26007,25745,25238,24621,23899,23113,22244,21373,20520,19749,19048,18385,17824,17353,16925,16616,16370,16205,16112,16053,16077,16169,16341,16557,16837,17222,17658,18147,18715,19336,19971,20646,21376,22113,22858,23570,24272,24933,25522,26090,26508,26839,27073,27192,27205,27098,26889,26562,26184,25684,25121,24535,23902,23241,22568,21911,21285,20674,20089,19538,19044,18573,18161,17811,17460,17166,16892,16651,16439,16259,16072,15879,15693,15528,15387,15269,15166,15108,15017,14979,14964,14960,14971,15005,15021,15036,15095,15120,15168,15223,15233,15243,15261,15253,15267,15296,15301,15288,15244,15185,15129,15052,14967,14861,14715,14573,14405,14217,13989,13795,13561,13297,13021,12729,12429,12139,11834,11559,11291,11024,10807,10572,10301,9995,9684,9378,9098,8845,8628,8453,8305,8178,8077,7985,7927,7864,7798,7703,7556,7394,7235,7121,7013,6913,6822,6761,6722,6676,6654,6635,6615,6605,6629,6610,6459,6149,5727,5111,21.7,21.7,22.3,1567723,0.1,12.2,11.9,5.0,472,-1.00,-1.00,57.7100,-18.999637,0.000595,,,,,124 +SATSLF0720,2024246,4.511651,4.15,0.0581,0.1031,0.0180,0.00,16153,649,1,712,708,715,709,715,697,715,705,725,721,721,741,775,894,1214,1964,3140,4523,5769,6693,7339,7812,8220,8679,9185,9824,10562,11430,12436,13549,14713,15872,16987,17943,18666,19102,19239,19061,18693,18151,17578,16994,16538,16168,15925,15867,15946,16183,16608,17188,17925,18842,19898,21126,22453,23909,25387,26869,28291,29542,30541,31282,31685,31693,31341,30696,29783,28729,27477,26301,25129,24057,23069,22193,21476,20864,20373,19982,19720,19536,19439,19460,19552,19749,19997,20365,20792,21323,21885,22504,23187,23812,24439,25024,25487,25848,26114,26165,26034,25755,25282,24642,23917,23106,22225,21354,20501,19745,19040,18395,17841,17363,16961,16640,16385,16209,16126,16085,16105,16192,16352,16584,16858,17248,17669,18160,18734,19328,19967,20645,21369,22131,22870,23589,24277,24936,25537,26111,26536,26862,27109,27213,27223,27129,26909,26583,26180,25692,25117,24552,23893,23265,22584,21927,21290,20679,20093,19531,19053,18565,18173,17805,17483,17179,16917,16664,16465,16253,16065,15881,15698,15525,15378,15275,15187,15106,15027,14995,14983,14976,14978,15008,15017,15054,15105,15133,15177,15242,15256,15269,15265,15260,15289,15305,15316,15301,15252,15185,15125,15063,14967,14868,14743,14591,14423,14217,14008,13785,13544,13301,13024,12749,12467,12171,11874,11585,11309,11057,10814,10566,10305,10007,9686,9370,9096,8840,8651,8466,8302,8168,8071,7998,7935,7882,7813,7727,7578,7408,7243,7123,7005,6900,6823,6757,6715,6670,6644,6645,6621,6621,6637,6628,6484,6158,5743,5120,21.7,21.7,22.3,1567724,0.5,12.3,11.9,5.0,475,-1.00,-1.00,57.1018,-18.777897,0.000588,,,,,247 +SATSLF0720,2024246,4.511905,4.24,0.0594,0.1033,0.0178,0.00,16143,649,1,712,723,711,709,709,712,697,701,717,712,725,731,771,885,1221,1960,3130,4513,5748,6677,7321,7796,8212,8654,9172,9782,10539,11405,12404,13514,14698,15841,16955,17916,18633,19061,19205,19021,18658,18104,17522,16961,16498,16137,15910,15838,15912,16186,16574,17155,17917,18824,19892,21102,22425,23866,25350,26846,28251,29514,30517,31242,31641,31633,31310,30689,29745,28700,27462,26293,25116,24045,23041,22171,21453,20842,20355,19969,19689,19541,19433,19453,19539,19742,19991,20338,20766,21298,21864,22492,23160,23793,24415,25013,25469,25834,26083,26141,26024,25752,25265,24641,23917,23126,22245,21378,20520,19742,19037,18376,17818,17363,16949,16629,16389,16209,16100,16063,16091,16183,16341,16562,16858,17225,17655,18151,18710,19339,19969,20644,21385,22119,22872,23589,24288,24931,25516,26106,26514,26851,27090,27193,27213,27109,26897,26570,26183,25697,25124,24544,23898,23255,22592,21922,21289,20679,20084,19533,19028,18560,18158,17790,17461,17171,16902,16666,16458,16262,16082,15885,15702,15541,15394,15277,15173,15077,15000,14973,14961,14970,14967,14985,15019,15053,15089,15123,15173,15214,15236,15249,15274,15274,15300,15308,15318,15309,15253,15190,15130,15062,14967,14872,14730,14580,14417,14215,14003,13797,13565,13303,13035,12753,12453,12154,11860,11562,11293,11048,10808,10574,10306,10003,9677,9379,9083,8846,8631,8466,8308,8192,8084,7989,7923,7867,7801,7719,7569,7411,7250,7133,7013,6908,6825,6759,6708,6674,6645,6641,6633,6629,6645,6640,6485,6163,5755,5133,21.7,21.8,22.4,1567725,0.1,12.2,11.9,5.0,473,-1.00,-1.00,57.3996,-18.884621,0.000541,,,,,160 +SATSLF0720,2024246,4.512164,4.28,0.0599,0.1048,0.0189,0.00,16101,649,1,701,706,717,706,698,708,704,720,720,734,724,741,769,903,1221,1957,3113,4471,5718,6639,7275,7768,8171,8635,9152,9764,10506,11369,12345,13453,14624,15787,16893,17842,18565,18996,19121,18941,18576,18037,17451,16902,16450,16081,15851,15785,15867,16125,16525,17097,17834,18739,19805,21029,22338,23793,25257,26745,28154,29398,30392,31149,31543,31561,31216,30566,29652,28599,27360,26177,25015,23948,22955,22109,21378,20776,20285,19911,19617,19455,19367,19388,19488,19676,19941,20289,20733,21250,21803,22426,23084,23733,24348,24917,25394,25760,26027,26092,25957,25686,25197,24562,23840,23029,22194,21316,20479,19713,19005,18349,17785,17305,16905,16589,16338,16175,16077,16045,16058,16133,16313,16529,16838,17209,17614,18105,18678,19290,19929,20609,21320,22070,22821,23536,24237,24894,25464,26052,26476,26788,27027,27141,27146,27062,26840,26509,26114,25609,25066,24474,23838,23201,22539,21873,21234,20626,20028,19472,18997,18519,18122,17766,17436,17155,16896,16651,16443,16246,16050,15848,15661,15493,15353,15248,15127,15069,14990,14964,14942,14949,14946,14959,14987,15034,15065,15092,15155,15201,15223,15225,15228,15239,15266,15293,15285,15273,15212,15153,15094,15032,14921,14843,14708,14555,14391,14193,13981,13770,13528,13268,13004,12713,12421,12137,11835,11553,11285,11026,10790,10558,10284,9995,9672,9354,9083,8830,8627,8459,8289,8159,8057,7972,7912,7857,7780,7706,7565,7393,7253,7106,6998,6905,6825,6757,6694,6659,6641,6626,6614,6600,6632,6613,6474,6154,5729,5119,21.7,21.8,22.4,1567726,0.0,12.2,11.9,5.0,476,-1.00,-1.00,57.5667,-18.888748,0.000565,,,,,5 +SATSLF0720,2024246,4.512418,4.10,0.0574,0.1049,0.0194,0.00,16088,649,1,693,697,705,709,708,716,721,714,715,710,727,726,770,884,1209,1936,3114,4485,5729,6640,7293,7772,8181,8626,9137,9751,10500,11362,12362,13473,14653,15805,16914,17874,18595,19024,19153,18966,18586,18055,17465,16900,16441,16091,15873,15788,15874,16120,16533,17106,17847,18744,19802,21022,22336,23781,25243,26740,28150,29408,30386,31155,31546,31546,31213,30564,29658,28592,27345,26194,25010,23929,22938,22091,21346,20744,20278,19885,19611,19447,19361,19381,19472,19667,19932,20282,20708,21214,21787,22393,23067,23701,24330,24896,25371,25739,25997,26059,25926,25665,25171,24544,23817,23025,22162,21301,20452,19683,18982,18329,17774,17305,16897,16569,16336,16154,16055,16017,16039,16125,16295,16506,16815,17154,17595,18085,18654,19258,19913,20568,21299,22051,22785,23508,24193,24862,25440,26012,26428,26753,26999,27104,27127,27031,26821,26496,26107,25605,25067,24449,23821,23156,22500,21858,21207,20608,20018,19451,18966,18500,18109,17748,17410,17123,16841,16625,16421,16218,16014,15816,15639,15469,15341,15218,15123,15047,14969,14945,14925,14903,14927,14949,14976,15013,15055,15097,15128,15180,15201,15205,15223,15221,15240,15262,15255,15248,15196,15137,15077,15009,14917,14834,14686,14547,14366,14180,13962,13756,13509,13249,12991,12718,12417,12117,11819,11529,11267,11016,10795,10551,10293,9975,9647,9339,9059,8809,8619,8437,8290,8155,8055,7977,7907,7847,7780,7692,7548,7359,7223,7101,7001,6893,6801,6747,6688,6654,6632,6613,6611,6601,6618,6613,6449,6153,5718,5105,21.7,21.8,22.4,1567727,0.2,12.2,11.9,5.0,475,-1.00,-1.00,57.7879,-18.978976,0.000555,,,,,127 +SATSLF0720,2024246,4.512670,4.02,0.0564,0.1046,0.0189,0.00,16108,649,1,697,702,695,685,711,707,733,720,732,717,722,728,753,863,1207,1949,3124,4498,5753,6677,7319,7807,8220,8669,9167,9789,10522,11400,12409,13513,14685,15835,16939,17898,18621,19073,19205,19019,18644,18117,17505,16949,16489,16117,15897,15836,15907,16150,16549,17124,17869,18787,19857,21081,22401,23833,25312,26790,28193,29446,30455,31201,31594,31597,31268,30608,29696,28651,27401,26228,25074,23989,22997,22139,21399,20795,20321,19936,19629,19476,19377,19387,19508,19697,19944,20314,20744,21252,21821,22427,23118,23745,24374,24937,25408,25770,26043,26090,25978,25701,25216,24584,23858,23061,22181,21307,20473,19699,19008,18337,17783,17309,16917,16593,16349,16183,16068,16025,16046,16137,16296,16524,16820,17188,17629,18104,18675,19288,19930,20595,21322,22062,22805,23509,24200,24861,25459,26009,26467,26775,27024,27138,27140,27046,26833,26514,26113,25620,25050,24456,23828,23178,22527,21861,21230,20621,20034,19473,19001,18521,18129,17741,17435,17133,16868,16612,16429,16209,16029,15841,15655,15486,15353,15221,15106,15052,14986,14935,14917,14916,14925,14962,14977,15023,15060,15086,15149,15195,15199,15214,15237,15226,15237,15262,15258,15256,15214,15141,15095,15027,14930,14840,14701,14564,14381,14187,13982,13765,13522,13249,12977,12707,12406,12120,11833,11537,11267,11014,10773,10548,10281,9985,9668,9349,9074,8823,8623,8446,8313,8172,8066,7985,7916,7872,7790,7692,7560,7386,7219,7105,6990,6897,6811,6739,6684,6656,6630,6626,6595,6603,6613,6613,6449,6141,5722,5120,21.7,21.8,22.4,1567727,0.4,12.2,12.0,5.0,476,-1.00,-1.00,57.5172,-18.898119,0.000593,,,,,100 +SATSLF0720,2024246,4.512925,4.20,0.0589,0.1045,0.0194,0.00,16099,649,1,709,700,704,714,723,715,730,735,738,731,727,749,770,892,1224,1962,3126,4501,5731,6649,7289,7761,8169,8633,9125,9751,10507,11373,12370,13473,14641,15798,16915,17852,18565,18999,19137,18946,18584,18053,17450,16897,16437,16087,15862,15802,15871,16125,16518,17096,17845,18741,19805,21014,22343,23792,25254,26736,28161,29405,30391,31152,31541,31531,31216,30560,29643,28598,27378,26193,25041,23953,22957,22122,21369,20777,20273,19894,19612,19472,19378,19377,19495,19668,19924,20283,20728,21242,21810,22417,23086,23729,24333,24897,25384,25763,26024,26061,25948,25674,25195,24573,23845,23052,22169,21291,20458,19668,18979,18330,17783,17306,16912,16589,16354,16174,16069,16009,16045,16137,16288,16536,16814,17189,17618,18105,18677,19280,19909,20605,21325,22071,22813,23525,24221,24875,25469,26028,26462,26778,27027,27122,27152,27037,26825,26509,26118,25610,25059,24468,23834,23196,22534,21866,21245,20618,20033,19467,19003,18530,18125,17762,17440,17133,16866,16626,16425,16217,16017,15841,15661,15485,15355,15236,15149,15066,15008,14954,14946,14944,14939,14976,14985,15026,15044,15094,15142,15179,15213,15217,15223,15234,15243,15271,15265,15267,15225,15155,15079,15027,14933,14849,14705,14555,14392,14194,13981,13764,13531,13282,13014,12725,12417,12124,11821,11551,11280,11029,10797,10553,10280,9979,9671,9353,9083,8839,8631,8461,8285,8163,8058,7987,7915,7869,7803,7710,7564,7399,7242,7111,7005,6899,6830,6749,6711,6678,6656,6643,6620,6619,6622,6615,6460,6164,5734,5133,21.7,21.8,22.4,1567728,0.2,12.2,12.0,5.0,476,-1.00,-1.00,57.7047,-18.946158,0.000523,,,,,119 +SATSLF0720,2024246,4.513179,4.16,0.0583,0.1051,0.0192,0.00,16089,649,1,699,716,706,711,727,714,717,718,722,723,744,742,791,901,1209,1943,3102,4493,5728,6654,7303,7776,8199,8637,9136,9766,10513,11374,12359,13465,14650,15797,16912,17853,18565,19003,19140,18958,18592,18060,17461,16921,16453,16098,15865,15805,15865,16103,16506,17095,17829,18741,19805,21024,22331,23775,25253,26732,28146,29392,30387,31138,31534,31541,31212,30557,29625,28567,27347,26164,25020,23949,22946,22100,21369,20745,20272,19873,19617,19450,19352,19367,19483,19674,19922,20279,20699,21217,21780,22395,23073,23723,24333,24917,25372,25750,26000,26049,25925,25647,25179,24550,23826,23037,22166,21299,20447,19685,18980,18321,17771,17297,16906,16593,16341,16155,16051,16014,16029,16134,16294,16521,16811,17165,17600,18089,18651,19257,19904,20585,21307,22064,22797,23514,24204,24855,25446,26013,26423,26744,26971,27093,27125,27021,26813,26498,26093,25586,25019,24443,23792,23153,22509,21843,21217,20608,20006,19455,18962,18497,18093,17728,17405,17123,16864,16602,16411,16209,16018,15830,15640,15476,15342,15213,15123,15035,14965,14931,14913,14917,14933,14956,14977,15001,15060,15081,15143,15185,15194,15212,15209,15205,15218,15253,15258,15255,15207,15149,15085,15028,14929,14837,14704,14549,14386,14185,13977,13765,13518,13275,12986,12713,12416,12136,11825,11536,11284,11014,10773,10548,10277,9976,9653,9362,9069,8841,8630,8448,8288,8169,8053,7981,7910,7860,7786,7707,7557,7380,7229,7097,6975,6892,6805,6747,6695,6649,6631,6627,6614,6605,6626,6608,6475,6170,5733,5110,21.7,21.8,22.5,1567729,0.5,12.2,11.9,5.0,474,-1.00,-1.00,57.4014,-18.810185,0.000597,,,,,166 +SATSLF0720,2024246,4.513430,4.16,0.0583,0.1056,0.0195,0.00,16078,649,1,703,702,711,698,709,720,720,723,721,727,723,729,768,878,1207,1943,3112,4477,5715,6647,7294,7762,8180,8626,9151,9760,10509,11371,12357,13465,14631,15773,16883,17831,18552,18982,19106,18936,18569,18045,17453,16893,16438,16065,15828,15751,15836,16101,16498,17089,17829,18726,19809,21004,22309,23746,25223,26709,28123,29354,30347,31099,31498,31501,31170,30536,29605,28570,27332,26148,24994,23902,22919,22077,21340,20749,20258,19878,19589,19435,19333,19354,19437,19646,19912,20242,20677,21185,21764,22397,23046,23696,24296,24904,25353,25717,25979,26043,25932,25643,25173,24521,23796,23007,22139,21280,20425,19672,18962,18326,17773,17285,16898,16577,16333,16166,16053,16010,16018,16115,16267,16508,16794,17163,17600,18086,18643,19255,19890,20577,21293,22028,22766,23479,24185,24852,25425,25997,26432,26743,26990,27088,27103,27015,26801,26462,26080,25585,25030,24434,23808,23146,22507,21837,21203,20602,20007,19462,18965,18482,18089,17728,17377,17095,16843,16597,16406,16213,16017,15826,15649,15461,15322,15218,15115,15052,14965,14937,14917,14907,14932,14945,14959,14999,15036,15075,15118,15173,15197,15209,15218,15224,15245,15250,15240,15243,15191,15129,15074,15008,14909,14820,14695,14541,14380,14190,13978,13772,13517,13267,12990,12694,12411,12118,11829,11538,11272,11017,10773,10545,10257,9968,9637,9331,9051,8813,8599,8430,8283,8146,8051,7980,7908,7853,7797,7700,7563,7388,7235,7105,6981,6889,6818,6749,6688,6653,6630,6631,6617,6593,6615,6608,6459,6156,5729,5105,21.7,21.8,22.5,1567730,0.1,12.2,11.9,5.0,472,-1.00,-1.00,57.7221,-18.928766,0.000559,,,,,69 +SATSLF0720,2024246,4.513686,4.32,0.0605,0.1057,0.0200,0.00,16062,649,1,699,705,711,711,723,722,729,726,720,736,729,725,767,878,1211,1948,3101,4470,5710,6626,7264,7737,8151,8598,9120,9741,10478,11349,12349,13437,14611,15766,16856,17815,18522,18944,19086,18930,18537,18019,17437,16870,16416,16063,15846,15765,15847,16088,16474,17049,17811,18706,19783,21002,22306,23737,25209,26689,28099,29334,30345,31090,31477,31477,31146,30501,29585,28546,27316,26117,24983,23894,22899,22049,21319,20714,20233,19849,19570,19411,19326,19325,19433,19625,19889,20231,20668,21186,21753,22361,23029,23665,24291,24858,25340,25697,25951,26022,25896,25621,25144,24513,23797,23001,22138,21266,20411,19648,18942,18305,17744,17276,16873,16555,16299,16116,16035,15993,16018,16097,16267,16482,16782,17158,17570,18069,18629,19219,19875,20553,21282,22022,22749,23456,24154,24821,25394,25959,26391,26726,26952,27045,27064,26988,26770,26459,26070,25586,25020,24421,23774,23127,22480,21810,21181,20570,19979,19440,18958,18482,18076,17714,17389,17094,16826,16592,16394,16200,16017,15821,15624,15443,15310,15198,15090,15015,14951,14916,14899,14888,14909,14936,14951,14983,15033,15058,15112,15163,15173,15191,15200,15209,15208,15232,15224,15220,15172,15114,15058,14996,14909,14817,14675,14517,14359,14153,13944,13735,13497,13241,12967,12693,12406,12124,11825,11532,11265,11013,10758,10519,10250,9963,9635,9321,9033,8802,8593,8411,8271,8144,8049,7977,7908,7834,7779,7686,7551,7379,7209,7095,6983,6889,6805,6740,6683,6651,6618,6611,6591,6591,6621,6597,6449,6158,5729,5109,21.7,21.9,22.5,1567731,0.0,12.2,11.9,5.0,474,-1.00,-1.00,57.2560,-18.721561,0.000568,,,,,92 +SATSLF0720,2024246,4.513939,4.28,0.0600,0.1061,0.0200,0.00,16054,649,1,705,709,706,707,718,729,725,740,725,731,737,725,773,898,1216,1941,3099,4483,5718,6633,7265,7737,8170,8603,9106,9731,10468,11339,12317,13433,14601,15765,16849,17798,18521,18942,19078,18886,18519,18007,17421,16853,16391,16033,15799,15739,15825,16066,16479,17061,17793,18695,19765,20964,22267,23719,25196,26669,28053,29319,30294,31041,31443,31429,31108,30469,29549,28503,27289,26111,24949,23885,22888,22034,21296,20702,20240,19833,19559,19402,19313,19335,19425,19624,19869,20227,20666,21173,21747,22354,23001,23666,24264,24850,25313,25680,25952,25993,25869,25611,25122,24490,23778,22989,22121,21246,20411,19649,18953,18293,17729,17258,16858,16541,16289,16129,16044,15996,16012,16117,16269,16491,16769,17152,17560,18049,18621,19229,19856,20550,21265,22018,22741,23451,24149,24813,25402,25957,26385,26713,26961,27053,27081,26985,26753,26423,26049,25544,24981,24403,23777,23136,22490,21817,21184,20568,19978,19433,18929,18469,18071,17696,17372,17081,16814,16574,16362,16163,15981,15793,15600,15442,15322,15189,15090,15028,14948,14910,14898,14885,14907,14922,14945,14981,15021,15053,15107,15153,15161,15175,15184,15202,15217,15252,15246,15227,15175,15117,15056,14971,14888,14803,14669,14515,14352,14167,13954,13737,13498,13241,12971,12696,12412,12112,11821,11536,11247,11002,10764,10521,10256,9963,9630,9321,9049,8809,8612,8433,8267,8138,8043,7970,7899,7845,7778,7690,7543,7372,7214,7073,6971,6877,6801,6749,6681,6663,6632,6618,6603,6590,6597,6594,6432,6133,5715,5091,21.8,21.9,22.5,1567732,0.0,12.2,12.0,5.0,464,-1.00,-1.00,57.4542,-18.783958,0.000528,,,,,71 +SATSLF0720,2024246,4.514193,4.22,0.0592,0.1058,0.0200,0.00,16072,649,1,720,713,715,714,704,711,723,715,722,735,728,723,775,892,1215,1949,3109,4493,5706,6632,7270,7754,8181,8618,9127,9749,10485,11345,12336,13453,14613,15771,16868,17820,18544,18982,19115,18936,18568,18019,17443,16880,16424,16052,15825,15765,15841,16093,16493,17081,17833,18725,19792,21009,22293,23738,25202,26685,28116,29348,30352,31091,31485,31486,31161,30517,29581,28541,27301,26120,24997,23929,22917,22057,21330,20729,20237,19867,19577,19426,19322,19348,19442,19621,19896,20234,20676,21189,21769,22370,23042,23682,24303,24878,25349,25706,25972,26024,25901,25622,25150,24505,23804,23002,22140,21271,20421,19655,18948,18305,17753,17280,16891,16553,16317,16146,16053,16016,16033,16115,16272,16499,16800,17166,17600,18096,18652,19259,19886,20569,21274,22024,22762,23463,24186,24842,25413,25979,26413,26737,26957,27076,27092,27003,26772,26461,26057,25580,25014,24409,23805,23144,22492,21833,21213,20590,20010,19441,18953,18487,18098,17721,17392,17108,16827,16593,16394,16190,15994,15819,15625,15459,15314,15207,15110,15051,14976,14932,14907,14904,14905,14934,14966,14994,15026,15062,15099,15166,15181,15202,15225,15237,15246,15255,15248,15223,15177,15120,15056,15002,14917,14813,14686,14542,14365,14199,13976,13764,13513,13258,12982,12693,12416,12114,11821,11530,11274,11030,10785,10546,10288,9977,9650,9353,9043,8803,8585,8439,8269,8143,8048,7977,7900,7851,7785,7694,7552,7380,7219,7097,6981,6869,6798,6745,6690,6648,6643,6612,6615,6590,6613,6616,6464,6149,5738,5117,21.8,21.9,22.6,1567733,0.0,12.2,11.9,5.0,471,-1.00,-1.00,57.2936,-18.739265,0.000594,,,,,194 +SATSLF0720,2024246,4.514448,4.33,0.0607,0.1056,0.0194,0.00,16078,649,1,705,715,715,717,722,727,710,715,729,721,741,746,791,909,1230,1960,3132,4494,5735,6662,7301,7787,8205,8639,9150,9774,10525,11372,12364,13461,14636,15795,16908,17851,18570,18994,19133,18955,18565,18039,17449,16902,16437,16068,15859,15779,15865,16113,16518,17100,17830,18745,19798,21016,22329,23777,25237,26725,28114,29369,30369,31098,31478,31502,31172,30529,29601,28548,27323,26154,24996,23929,22928,22084,21341,20720,20249,19860,19578,19425,19333,19349,19454,19629,19909,20258,20683,21197,21760,22380,23037,23682,24306,24869,25352,25698,25974,26028,25904,25625,25159,24533,23798,23012,22150,21281,20430,19660,18958,18312,17757,17293,16878,16587,16326,16162,16053,16019,16042,16109,16275,16493,16797,17154,17575,18071,18642,19257,19881,20577,21289,22035,22770,23475,24171,24849,25428,25982,26408,26739,26970,27073,27081,27000,26781,26468,26078,25585,25013,24439,23773,23130,22490,21822,21203,20597,20013,19454,18965,18493,18077,17715,17403,17105,16840,16611,16405,16200,16011,15813,15622,15456,15312,15177,15114,15028,14956,14918,14912,14926,14913,14935,14963,14997,15043,15072,15124,15186,15184,15205,15223,15237,15233,15261,15257,15240,15197,15128,15077,14996,14921,14810,14676,14539,14368,14179,13961,13747,13515,13252,12983,12691,12395,12112,11822,11538,11273,11034,10778,10551,10269,9971,9649,9344,9057,8830,8611,8449,8285,8157,8045,7970,7915,7851,7793,7699,7563,7381,7225,7099,6983,6900,6810,6745,6701,6673,6652,6631,6611,6595,6615,6600,6449,6151,5717,5119,21.8,21.9,22.6,1567734,0.0,12.2,12.0,5.0,466,-1.00,-1.00,56.6725,-18.492481,0.000519,,,,,119 +SATSDF0720,2024246,4.759138,0.00,0.0000,0.0000,0.0000,0.00,648,0,1,636,625,625,627,622,632,634,631,629,630,635,625,628,625,633,624,635,628,634,637,624,643,662,659,678,669,674,665,669,660,653,649,649,649,659,654,659,663,645,659,656,662,656,665,654,647,653,658,656,663,658,648,651,654,649,647,642,646,649,651,652,644,654,653,651,657,645,649,652,651,657,651,656,653,643,663,628,634,655,646,656,657,660,657,657,651,654,655,653,644,657,649,634,648,651,648,653,633,647,658,645,655,652,651,654,660,653,663,658,653,664,657,657,647,647,648,646,641,641,644,636,637,644,648,629,647,651,645,649,646,641,651,645,640,631,635,660,653,660,642,643,663,656,642,643,647,652,641,649,640,658,657,655,656,650,651,647,653,641,640,635,639,646,663,661,649,641,649,649,651,661,642,646,645,635,633,642,649,645,638,647,651,661,657,646,646,641,637,651,653,647,658,645,644,651,645,651,655,646,645,647,654,649,660,658,650,663,656,658,657,645,659,657,637,639,651,644,661,653,645,643,643,641,635,640,659,645,647,657,641,635,637,645,644,641,652,649,643,640,639,635,641,647,668,649,651,653,651,644,649,636,634,653,641,662,490,0.0,0.0,0.0,1567733,0.2,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,1 +SATSLF0720,2024246,4.759692,4.08,0.0571,0.0999,0.0166,0.00,16231,648,1,695,698,693,693,711,701,715,718,726,726,718,725,771,886,1212,1957,3142,4534,5791,6731,7374,7853,8270,8739,9242,9888,10632,11521,12528,13638,14843,16008,17142,18093,18832,19277,19404,19208,18835,18289,17688,17128,16652,16292,16053,15977,16069,16322,16730,17317,18073,18964,20050,21285,22605,24068,25563,27066,28490,29751,30765,31518,31904,31911,31581,30922,29987,28913,27672,26492,25321,24237,23232,22363,21600,21004,20514,20117,19856,19672,19577,19582,19673,19873,20141,20492,20908,21443,22013,22625,23303,23941,24555,25149,25608,25995,26258,26313,26186,25901,25425,24770,24042,23245,22363,21489,20628,19857,19154,18482,17909,17445,17032,16704,16451,16302,16181,16162,16162,16257,16419,16648,16948,17301,17751,18234,18802,19425,20058,20749,21484,22229,22984,23693,24407,25061,25644,26221,26652,26978,27220,27329,27333,27249,27030,26702,26308,25812,25237,24647,24001,23345,22681,22015,21399,20781,20201,19610,19123,18651,18253,17870,17532,17236,16961,16733,16528,16333,16125,15944,15737,15591,15453,15321,15222,15156,15072,15039,15009,15013,15019,15054,15061,15105,15133,15159,15215,15258,15275,15293,15303,15305,15329,15349,15355,15329,15301,15217,15169,15101,15021,14910,14779,14617,14457,14253,14027,13819,13566,13325,13050,12771,12481,12187,11888,11597,11323,11073,10836,10585,10315,10015,9706,9390,9107,8850,8649,8481,8321,8193,8094,8009,7938,7882,7824,7736,7593,7421,7277,7141,7011,6912,6831,6769,6717,6681,6664,6637,6631,6620,6639,6639,6503,6180,5754,5134,21.6,21.6,22.0,1567734,0.0,12.3,11.9,5.0,596,-1.00,-1.00,56.6175,-18.707503,0.000565,,,,,10 +SATSLF0720,2024246,4.759874,4.11,0.0575,0.1011,0.0169,0.00,16202,648,1,715,705,709,699,702,707,718,734,721,725,724,732,772,877,1223,1947,3153,4526,5773,6707,7345,7823,8251,8693,9217,9836,10586,11456,12466,13586,14778,15933,17067,18027,18761,19191,19318,19139,18766,18214,17629,17053,16599,16237,16010,15941,16008,16260,16663,17255,17994,18909,19987,21217,22535,23991,25478,26977,28394,29659,30661,31409,31803,31797,31484,30833,29905,28848,27605,26409,25241,24162,23157,22288,21559,20937,20460,20058,19776,19618,19525,19525,19633,19818,20101,20438,20873,21392,21972,22586,23257,23896,24513,25082,25570,25938,26201,26247,26118,25832,25349,24708,23992,23193,22315,21443,20601,19831,19115,18452,17902,17413,17003,16686,16426,16272,16153,16106,16133,16225,16402,16619,16909,17274,17732,18198,18781,19401,20032,20730,21448,22187,22945,23659,24370,25029,25635,26198,26610,26931,27179,27286,27313,27210,26993,26679,26280,25769,25209,24602,23974,23312,22652,21964,21355,20759,20152,19602,19109,18633,18209,17852,17514,17211,16962,16709,16507,16312,16122,15925,15728,15570,15441,15314,15233,15131,15064,15028,15001,14997,15009,15027,15045,15082,15127,15168,15213,15271,15275,15299,15312,15277,15323,15349,15345,15324,15283,15229,15161,15085,15001,14903,14773,14628,14441,14257,14036,13821,13582,13309,13059,12769,12482,12189,11888,11610,11333,11066,10828,10579,10315,10013,9686,9385,9101,8864,8654,8481,8326,8181,8090,8016,7929,7884,7820,7726,7591,7410,7262,7115,7011,6916,6839,6762,6715,6672,6663,6649,6646,6637,6645,6641,6497,6184,5753,5149,21.6,21.6,22.1,1567735,0.5,12.2,11.9,5.0,495,-1.00,-1.00,57.0912,-18.848946,0.000514,,,,,139 +SATSLF0720,2024246,4.760129,4.06,0.0568,0.1022,0.0175,0.00,16171,648,1,694,695,696,693,699,716,713,717,710,707,714,727,762,880,1210,1953,3120,4500,5755,6689,7344,7813,8249,8689,9213,9832,10583,11450,12442,13549,14730,15911,17017,17992,18704,19139,19275,19092,18709,18181,17577,17014,16546,16190,15963,15899,15974,16219,16630,17209,17955,18859,19938,21154,22474,23937,25418,26924,28328,29581,30592,31322,31730,31735,31416,30746,29844,28781,27555,26356,25190,24113,23097,22238,21494,20897,20410,20002,19736,19564,19479,19496,19591,19776,20042,20381,20823,21344,21917,22531,23205,23853,24461,25045,25529,25890,26146,26187,26078,25811,25322,24692,23957,23169,22277,21403,20571,19783,19070,18420,17869,17392,16978,16654,16407,16230,16136,16102,16107,16210,16357,16592,16893,17258,17678,18179,18747,19349,19995,20688,21410,22153,22912,23633,24346,24987,25585,26152,26570,26900,27139,27237,27264,27156,26951,26619,26231,25746,25162,24587,23941,23290,22621,21963,21322,20724,20106,19559,19068,18582,18170,17805,17483,17194,16930,16684,16487,16276,16099,15894,15717,15545,15400,15298,15170,15105,15024,14987,14987,14989,14987,15021,15057,15069,15106,15140,15183,15241,15261,15262,15277,15279,15301,15314,15323,15301,15257,15202,15140,15076,14990,14888,14743,14581,14413,14225,14021,13797,13556,13303,13025,12743,12450,12165,11858,11577,11306,11057,10809,10571,10301,9992,9669,9374,9081,8843,8633,8473,8321,8183,8090,7990,7921,7869,7808,7717,7569,7387,7241,7135,7017,6919,6824,6771,6719,6667,6649,6630,6619,6611,6632,6621,6474,6157,5727,5119,21.6,21.6,22.2,1567736,0.4,12.2,12.0,5.0,481,-1.00,-1.00,57.5899,-19.014664,0.000507,,,,,107 +SATSLF0720,2024246,4.760382,4.09,0.0573,0.1029,0.0184,0.00,16148,648,1,695,711,706,706,714,710,706,711,735,730,720,730,759,877,1197,1940,3123,4505,5737,6664,7313,7785,8215,8675,9173,9807,10549,11405,12410,13525,14700,15880,16976,17943,18661,19104,19238,19038,18675,18146,17553,17005,16532,16164,15933,15853,15930,16173,16587,17179,17925,18840,19902,21120,22455,23897,25389,26873,28292,29537,30544,31307,31685,31686,31362,30701,29793,28724,27483,26315,25140,24061,23059,22205,21484,20869,20390,20000,19712,19540,19450,19458,19563,19758,20010,20366,20808,21321,21876,22519,23177,23824,24448,25020,25485,25849,26115,26168,26057,25758,25269,24621,23909,23096,22231,21381,20518,19753,19044,18397,17820,17357,16955,16645,16384,16217,16112,16081,16101,16185,16339,16576,16877,17245,17660,18160,18717,19324,19965,20655,21381,22132,22865,23591,24297,24949,25561,26120,26549,26857,27111,27213,27234,27130,26907,26587,26181,25684,25106,24548,23894,23273,22598,21929,21294,20680,20096,19545,19041,18560,18150,17801,17466,17177,16906,16659,16471,16272,16072,15889,15682,15515,15376,15264,15162,15086,15021,14982,14955,14960,14976,14997,15021,15065,15082,15110,15161,15206,15218,15244,15261,15273,15288,15297,15289,15291,15237,15177,15109,15038,14951,14853,14714,14569,14409,14201,13984,13779,13542,13291,13032,12743,12442,12155,11852,11571,11286,11025,10800,10561,10292,9994,9673,9365,9080,8827,8615,8455,8293,8153,8065,7995,7921,7869,7797,7709,7566,7393,7229,7111,6997,6897,6808,6755,6698,6679,6645,6641,6621,6619,6629,6615,6464,6155,5730,5115,21.6,21.6,22.2,1567737,0.5,12.2,12.0,5.0,482,-1.00,-1.00,57.6682,-19.017470,0.000623,,,,,137 +SATSLF0720,2024246,4.760632,4.16,0.0582,0.1039,0.0184,0.00,16119,648,1,692,699,714,717,709,722,710,716,708,711,712,730,765,892,1236,1964,3117,4496,5732,6636,7279,7735,8178,8618,9139,9762,10495,11381,12373,13475,14657,15817,16925,17872,18617,19034,19164,18981,18619,18084,17508,16938,16464,16117,15883,15804,15885,16134,16536,17143,17867,18783,19858,21064,22398,23841,25314,26792,28201,29457,30466,31201,31616,31604,31275,30638,29701,28653,27420,26253,25092,24017,23016,22167,21430,20816,20337,19959,19669,19485,19406,19421,19517,19707,19977,20324,20754,21289,21837,22457,23127,23780,24395,24973,25433,25798,26068,26094,25981,25687,25219,24605,23874,23075,22213,21341,20480,19707,19010,18362,17795,17323,16919,16616,16361,16183,16090,16021,16055,16149,16317,16540,16834,17199,17636,18121,18698,19308,19934,20622,21353,22093,22822,23556,24245,24903,25505,26057,26487,26805,27064,27165,27181,27081,26863,26544,26150,25641,25085,24515,23873,23223,22567,21909,21266,20651,20069,19507,19022,18545,18147,17764,17431,17150,16869,16631,16439,16248,16054,15863,15687,15521,15373,15265,15145,15087,15004,14966,14934,14949,14949,14957,14989,15025,15085,15111,15153,15219,15228,15245,15239,15245,15271,15290,15282,15282,15221,15155,15110,15020,14949,14842,14711,14563,14395,14204,13985,13771,13542,13269,13008,12737,12442,12145,11853,11556,11280,11043,10797,10558,10302,9997,9682,9365,9079,8843,8619,8439,8299,8149,8059,7975,7911,7863,7801,7718,7565,7379,7239,7094,7005,6901,6822,6758,6685,6656,6628,6637,6626,6618,6625,6615,6461,6153,5723,5114,21.6,21.6,22.2,1567738,0.8,12.2,12.0,5.0,483,-1.00,-1.00,57.9333,-19.080076,0.000595,,,,,95 +SATSLF0720,2024246,4.760887,4.22,0.0591,0.1041,0.0187,0.00,16112,648,1,697,707,711,715,709,723,727,721,720,730,730,737,772,877,1214,1942,3110,4487,5729,6643,7287,7757,8189,8629,9159,9771,10522,11380,12385,13477,14661,15802,16920,17866,18597,19030,19163,18981,18601,18068,17473,16926,16464,16109,15870,15812,15881,16140,16553,17133,17873,18772,19844,21045,22378,23826,25302,26769,28195,29432,30443,31198,31577,31569,31271,30605,29682,28642,27417,26228,25069,24008,23000,22130,21416,20804,20316,19917,19639,19477,19394,19403,19517,19701,19972,20311,20750,21255,21815,22443,23101,23760,24364,24945,25410,25767,26036,26103,25966,25698,25211,24577,23866,23072,22204,21330,20471,19694,18999,18347,17786,17310,16917,16601,16348,16183,16081,16038,16057,16153,16315,16534,16835,17211,17632,18125,18681,19274,19930,20597,21331,22086,22820,23531,24240,24905,25484,26050,26485,26805,27058,27166,27168,27077,26846,26525,26120,25643,25077,24496,23842,23203,22561,21873,21258,20638,20058,19496,19013,18554,18141,17752,17433,17144,16872,16641,16434,16222,16035,15853,15678,15509,15360,15251,15145,15053,14979,14944,14932,14930,14950,14979,14999,15021,15073,15093,15153,15203,15223,15231,15227,15259,15272,15277,15291,15285,15229,15156,15099,15037,14949,14837,14704,14553,14382,14202,14004,13776,13548,13277,13005,12715,12423,12118,11819,11539,11277,11029,10795,10551,10289,9981,9659,9356,9067,8825,8631,8456,8297,8161,8071,7978,7915,7860,7800,7706,7566,7385,7239,7110,7000,6900,6828,6763,6701,6656,6646,6629,6611,6593,6627,6626,6469,6171,5749,5123,21.6,21.6,22.2,1567739,0.3,12.2,12.0,5.0,471,-1.00,-1.00,57.6024,-18.930857,0.000530,,,,,233 +SATSLF0720,2024246,4.761142,3.99,0.0559,0.1031,0.0185,0.00,16135,648,1,713,701,705,706,711,713,721,717,717,716,723,722,759,882,1211,1945,3127,4500,5750,6673,7334,7798,8235,8653,9176,9790,10550,11410,12397,13501,14689,15847,16971,17914,18639,19094,19229,19031,18673,18134,17529,16964,16503,16151,15921,15866,15929,16183,16585,17166,17901,18795,19875,21098,22422,23853,25351,26835,28243,29489,30487,31240,31655,31649,31334,30683,29757,28718,27465,26274,25113,24032,23022,22169,21442,20836,20341,19963,19683,19527,19438,19449,19556,19730,19998,20349,20777,21292,21875,22473,23145,23785,24395,24972,25459,25825,26091,26133,26013,25725,25239,24601,23884,23098,22225,21359,20512,19749,19032,18389,17817,17354,16942,16613,16375,16200,16093,16053,16075,16167,16346,16564,16853,17233,17649,18138,18709,19322,19957,20650,21374,22102,22845,23574,24278,24919,25520,26084,26510,26835,27072,27175,27191,27090,26881,26545,26160,25664,25098,24509,23885,23232,22568,21911,21281,20672,20081,19524,19033,18555,18163,17782,17444,17162,16890,16647,16449,16246,16055,15863,15676,15523,15385,15250,15152,15069,14997,14964,14949,14936,14947,14976,15001,15042,15077,15114,15165,15213,15225,15255,15249,15250,15260,15291,15286,15281,15227,15168,15107,15046,14959,14862,14737,14579,14388,14210,13997,13776,13561,13293,13027,12730,12441,12146,11848,11557,11297,11051,10814,10569,10298,9994,9683,9361,9078,8837,8622,8439,8282,8163,8070,7981,7917,7864,7795,7716,7564,7390,7234,7120,7002,6887,6823,6764,6702,6679,6645,6639,6609,6613,6616,6615,6469,6165,5726,5115,21.6,21.7,22.2,1567740,0.1,12.2,12.0,5.0,481,-1.00,-1.00,57.8500,-19.070747,0.000518,,,,,86 +SATSLF0720,2024246,4.761398,4.07,0.0570,0.1030,0.0178,0.00,16150,648,1,689,707,705,699,701,701,714,704,711,726,724,728,759,877,1209,1941,3118,4503,5753,6678,7331,7804,8218,8678,9199,9816,10563,11448,12437,13550,14715,15888,17001,17960,18681,19114,19250,19057,18691,18140,17560,16992,16528,16160,15930,15863,15938,16191,16598,17181,17922,18837,19915,21122,22453,23893,25376,26861,28285,29525,30532,31283,31683,31693,31365,30700,29787,28729,27473,26293,25129,24064,23068,22213,21474,20857,20382,19994,19718,19545,19444,19451,19548,19757,20005,20347,20796,21306,21865,22509,23173,23808,24416,24992,25445,25827,26102,26163,26045,25748,25253,24638,23926,23109,22239,21373,20521,19765,19041,18389,17830,17362,16965,16634,16389,16216,16119,16062,16082,16180,16341,16562,16875,17233,17669,18155,18726,19325,19969,20648,21369,22115,22860,23579,24278,24937,25549,26115,26541,26866,27108,27205,27217,27123,26916,26601,26193,25691,25122,24541,23900,23267,22576,21923,21297,20666,20087,19538,19034,18568,18165,17801,17470,17186,16914,16676,16456,16263,16061,15875,15701,15529,15393,15292,15187,15103,15031,14977,14980,14962,14978,14997,15019,15053,15089,15129,15173,15223,15239,15249,15249,15259,15290,15313,15293,15307,15241,15185,15129,15049,14953,14855,14731,14585,14398,14223,14021,13795,13553,13294,13018,12745,12439,12151,11856,11562,11301,11064,10822,10589,10324,10014,9697,9370,9078,8832,8621,8446,8302,8173,8076,7995,7938,7874,7813,7710,7568,7384,7246,7117,7003,6919,6826,6758,6702,6668,6649,6630,6631,6603,6631,6626,6468,6158,5739,5117,21.6,21.7,22.3,1567741,0.2,12.2,11.9,5.0,477,-1.00,-1.00,57.4481,-18.921568,0.000587,,,,,30 +SATSLF0720,2024246,4.761653,4.17,0.0584,0.1025,0.0179,0.00,16169,648,1,708,699,693,699,693,690,717,719,724,725,725,727,763,889,1216,1946,3133,4510,5761,6676,7318,7805,8233,8685,9198,9824,10570,11447,12437,13557,14732,15893,17017,17975,18701,19142,19272,19095,18712,18179,17570,17011,16553,16184,15957,15882,15969,16219,16634,17219,17965,18870,19943,21155,22480,23933,25413,26926,28330,29593,30593,31329,31743,31729,31401,30749,29822,28756,27531,26346,25182,24088,23104,22222,21492,20890,20396,20014,19725,19558,19466,19490,19594,19780,20036,20387,20824,21341,21906,22525,23192,23850,24461,25041,25521,25877,26123,26183,26066,25787,25310,24677,23961,23152,22273,21402,20552,19788,19072,18417,17867,17393,16978,16652,16403,16221,16131,16099,16117,16215,16372,16583,16875,17241,17671,18156,18729,19341,19981,20692,21429,22154,22905,23605,24314,24969,25571,26123,26552,26877,27125,27210,27250,27165,26929,26615,26221,25746,25157,24557,23922,23278,22629,21944,21315,20703,20109,19553,19060,18581,18184,17819,17480,17191,16934,16693,16484,16279,16093,15897,15713,15533,15381,15287,15181,15099,15035,15001,14976,14978,14978,15011,15038,15063,15115,15129,15184,15229,15235,15260,15282,15274,15306,15329,15336,15307,15265,15200,15127,15077,14968,14883,14746,14608,14433,14247,14037,13825,13576,13316,13030,12759,12452,12159,11861,11578,11306,11057,10812,10586,10305,10009,9697,9373,9090,8849,8637,8473,8308,8178,8087,8008,7941,7892,7805,7728,7577,7413,7253,7123,7003,6916,6826,6759,6721,6672,6659,6645,6625,6613,6627,6629,6476,6163,5754,5129,21.6,21.7,22.3,1567742,0.4,12.2,11.9,5.0,469,-1.00,-1.00,57.0595,-18.790194,0.000576,,,,,38 +SATSLF0720,2024246,4.761908,4.15,0.0581,0.1030,0.0179,0.00,16160,648,1,687,705,705,709,722,709,715,712,718,717,723,740,765,894,1222,1959,3127,4519,5774,6697,7346,7836,8251,8690,9210,9835,10579,11454,12461,13548,14742,15905,17009,17981,18715,19133,19277,19084,18717,18172,17573,17011,16550,16190,15948,15888,15974,16228,16633,17197,17943,18863,19923,21154,22475,23936,25408,26893,28325,29570,30568,31325,31705,31712,31393,30725,29800,28760,27509,26341,25157,24077,23079,22226,21485,20869,20384,19981,19686,19532,19444,19457,19554,19760,20022,20369,20802,21320,21892,22497,23173,23815,24426,25001,25475,25832,26102,26169,26053,25779,25289,24648,23950,23130,22263,21388,20537,19767,19046,18401,17853,17377,16960,16641,16393,16217,16124,16078,16087,16183,16355,16581,16880,17253,17673,18162,18728,19333,19972,20647,21379,22119,22873,23585,24293,24942,25536,26107,26528,26857,27101,27197,27220,27130,26917,26594,26197,25702,25120,24541,23898,23251,22598,21925,21291,20674,20093,19528,19049,18568,18173,17801,17476,17181,16910,16669,16462,16264,16066,15891,15706,15529,15383,15280,15169,15095,15020,14999,14972,14977,14985,15009,15046,15065,15096,15121,15175,15233,15247,15240,15253,15264,15275,15304,15306,15306,15256,15186,15125,15065,14965,14873,14737,14602,14422,14233,14021,13801,13566,13312,13034,12753,12450,12164,11866,11581,11307,11051,10812,10571,10314,10027,9693,9387,9097,8856,8647,8460,8311,8183,8086,8013,7932,7881,7807,7735,7576,7413,7258,7128,7003,6916,6834,6762,6709,6669,6663,6635,6620,6615,6646,6636,6480,6169,5736,5119,21.7,21.8,22.4,1567743,0.1,12.2,11.9,5.0,473,-1.00,-1.00,56.9290,-18.726204,0.000537,,,,,95 +SATSLF0720,2024246,4.762169,4.17,0.0584,0.1054,0.0192,0.00,16084,648,1,715,714,716,730,721,721,731,720,728,731,735,731,773,883,1207,1948,3105,4478,5725,6641,7269,7759,8173,8615,9139,9758,10482,11355,12334,13454,14622,15781,16873,17822,18546,18978,19121,18946,18569,18045,17445,16893,16432,16070,15851,15778,15850,16089,16496,17091,17838,18738,19785,21008,22333,23753,25243,26723,28136,29396,30369,31105,31505,31504,31179,30545,29625,28578,27349,26171,25012,23936,22944,22102,21353,20743,20261,19877,19587,19426,19339,19371,19469,19672,19933,20269,20708,21227,21775,22388,23058,23705,24313,24882,25357,25730,25993,26038,25929,25652,25170,24530,23812,23010,22159,21276,20421,19640,18944,18307,17742,17289,16880,16571,16331,16156,16053,16002,16009,16107,16293,16494,16807,17171,17601,18087,18658,19267,19911,20573,21301,22040,22786,23477,24200,24845,25446,26009,26426,26765,26990,27093,27109,27028,26811,26474,26103,25594,25022,24434,23801,23163,22517,21845,21221,20617,20023,19483,18986,18512,18117,17744,17400,17120,16858,16617,16410,16212,16018,15811,15643,15466,15335,15209,15119,15046,14979,14949,14946,14941,14937,14963,14990,15026,15049,15075,15115,15168,15197,15212,15213,15226,15249,15274,15253,15242,15184,15143,15083,15020,14934,14837,14684,14535,14362,14174,13963,13747,13515,13246,12992,12706,12420,12123,11819,11537,11263,11025,10781,10536,10273,9970,9633,9346,9066,8820,8604,8454,8288,8154,8070,7997,7931,7861,7799,7704,7562,7399,7223,7111,6977,6907,6821,6741,6695,6654,6635,6628,6615,6608,6632,6617,6465,6152,5725,5100,21.7,21.8,22.4,1567744,0.2,12.2,11.9,5.0,478,-1.00,-1.00,57.7909,-18.967240,0.000547,,,,,210 +SATSLF0720,2024246,4.762423,4.06,0.0568,0.1039,0.0187,0.00,16113,648,1,705,698,715,702,711,704,717,718,715,730,729,723,781,886,1218,1946,3125,4493,5734,6670,7313,7776,8199,8655,9173,9782,10519,11403,12407,13497,14673,15840,16941,17891,18611,19065,19186,19013,18636,18104,17502,16948,16489,16133,15910,15821,15908,16138,16542,17121,17869,18773,19847,21069,22392,23830,25314,26793,28198,29456,30454,31207,31594,31593,31258,30597,29692,28632,27415,26232,25061,23995,22981,22133,21397,20788,20302,19918,19658,19496,19404,19425,19513,19698,19958,20315,20736,21253,21810,22439,23115,23738,24359,24941,25417,25781,26035,26096,25977,25694,25206,24579,23858,23052,22201,21326,20479,19728,19009,18361,17801,17333,16909,16605,16328,16172,16081,16040,16057,16153,16308,16542,16837,17196,17631,18119,18684,19282,19939,20614,21346,22085,22813,23523,24231,24900,25497,26061,26485,26794,27028,27152,27149,27067,26851,26519,26132,25637,25066,24475,23844,23189,22556,21877,21248,20645,20038,19495,19003,18521,18123,17757,17419,17141,16874,16643,16430,16227,16045,15853,15665,15500,15359,15230,15132,15044,14990,14944,14930,14936,14951,14964,14978,15015,15046,15092,15138,15204,15208,15229,15228,15239,15263,15281,15275,15264,15202,15156,15099,15042,14937,14848,14724,14562,14396,14201,13985,13779,13529,13261,13003,12711,12419,12139,11829,11541,11276,11019,10793,10558,10293,10002,9670,9355,9068,8827,8609,8467,8284,8172,8086,7986,7917,7859,7808,7717,7578,7401,7242,7118,6994,6886,6823,6765,6697,6660,6633,6627,6619,6609,6627,6617,6460,6146,5727,5108,21.7,21.8,22.4,1567745,0.0,12.2,11.9,5.0,467,-1.00,-1.00,57.5121,-18.895415,0.000593,,,,,48 +SATSLF0720,2024246,4.762677,4.17,0.0585,0.1038,0.0185,0.00,16110,648,1,697,701,683,707,695,706,715,713,722,724,739,723,767,893,1205,1931,3110,4482,5727,6659,7309,7773,8203,8646,9178,9785,10519,11379,12382,13489,14663,15829,16940,17901,18628,19056,19184,18999,18622,18097,17507,16941,16468,16096,15874,15810,15902,16149,16565,17141,17896,18801,19849,21078,22376,23826,25297,26784,28192,29442,30457,31200,31594,31589,31265,30615,29695,28645,27405,26232,25064,24006,22996,22125,21393,20788,20313,19925,19634,19486,19409,19417,19513,19689,19969,20297,20714,21228,21793,22420,23093,23742,24365,24944,25412,25769,26042,26097,25977,25689,25217,24569,23859,23062,22197,21319,20481,19707,19001,18343,17787,17314,16912,16601,16346,16186,16069,16037,16061,16140,16316,16541,16845,17201,17621,18099,18667,19283,19905,20615,21326,22064,22808,23524,24240,24898,25480,26040,26460,26788,27045,27145,27161,27061,26848,26521,26129,25625,25064,24471,23828,23186,22541,21883,21252,20637,20042,19485,19011,18528,18116,17753,17442,17145,16889,16645,16433,16229,16042,15836,15650,15473,15356,15237,15141,15057,14995,14948,14929,14935,14941,14971,14992,15024,15065,15100,15137,15189,15213,15210,15223,15235,15262,15275,15289,15274,15232,15157,15107,15016,14935,14857,14717,14537,14365,14193,13985,13765,13536,13265,12992,12723,12421,12135,11837,11562,11290,11037,10797,10568,10285,9986,9671,9361,9082,8818,8613,8443,8279,8163,8054,7987,7914,7851,7788,7693,7564,7386,7234,7119,7002,6914,6824,6755,6700,6661,6629,6613,6595,6607,6633,6613,6461,6159,5720,5111,21.7,21.8,22.4,1567745,0.0,12.1,12.0,5.0,468,-1.00,-1.00,57.3507,-18.829693,0.000563,,,,,70 +SATSLF0720,2024246,4.762933,4.15,0.0581,0.1046,0.0188,0.00,16100,648,1,707,706,708,709,717,710,717,727,736,724,727,742,783,893,1212,1947,3105,4479,5723,6651,7301,7774,8180,8647,9159,9769,10517,11381,12366,13491,14654,15809,16918,17848,18584,19015,19156,18961,18586,18067,17484,16926,16466,16090,15853,15791,15875,16117,16527,17113,17848,18752,19829,21050,22357,23801,25271,26769,28176,29426,30401,31154,31553,31549,31240,30576,29661,28613,27382,26215,25041,23970,22968,22107,21399,20778,20292,19911,19633,19466,19374,19374,19485,19667,19928,20266,20701,21234,21803,22425,23093,23739,24340,24917,25381,25753,26019,26060,25958,25690,25208,24580,23843,23058,22181,21307,20466,19702,18990,18340,17781,17314,16909,16588,16343,16162,16078,16033,16058,16150,16293,16533,16826,17181,17617,18093,18665,19271,19916,20587,21325,22067,22803,23525,24213,24874,25467,26032,26456,26770,27004,27117,27120,27025,26826,26485,26093,25602,25061,24466,23847,23204,22536,21873,21252,20642,20048,19480,18985,18517,18123,17742,17419,17133,16865,16619,16424,16211,16033,15836,15653,15489,15357,15233,15139,15063,15000,14962,14930,14928,14935,14958,14984,15004,15057,15077,15135,15190,15208,15219,15221,15246,15261,15291,15279,15273,15221,15157,15097,15026,14938,14825,14695,14544,14389,14181,13979,13761,13527,13261,13000,12709,12430,12137,11832,11549,11278,11021,10781,10549,10263,9987,9658,9357,9061,8834,8615,8452,8277,8143,8052,7968,7909,7861,7804,7717,7569,7403,7245,7105,6989,6897,6812,6738,6687,6650,6619,6630,6618,6605,6618,6626,6483,6173,5726,5111,21.7,21.8,22.4,1567746,0.4,12.2,11.9,5.0,476,-1.00,-1.00,57.7742,-18.986022,0.000562,,,,,144 +SATSLF0720,2024246,4.763187,4.32,0.0605,0.1051,0.0194,0.00,16088,648,1,707,706,705,688,712,710,717,718,743,741,736,755,786,876,1223,1959,3108,4505,5738,6659,7289,7757,8169,8623,9139,9760,10504,11376,12361,13466,14630,15789,16890,17859,18587,19011,19141,18953,18583,18051,17453,16897,16428,16084,15846,15781,15873,16134,16533,17127,17852,18759,19806,21025,22333,23778,25265,26725,28142,29379,30388,31129,31534,31534,31209,30553,29625,28576,27354,26166,25013,23924,22951,22101,21354,20746,20267,19881,19589,19443,19351,19373,19467,19653,19914,20265,20681,21212,21768,22395,23066,23702,24328,24899,25386,25741,26004,26048,25920,25650,25177,24547,23824,23037,22160,21303,20460,19699,18989,18331,17771,17301,16902,16586,16317,16153,16061,16010,16037,16120,16288,16513,16821,17185,17617,18101,18672,19268,19901,20587,21309,22033,22792,23497,24205,24861,25456,26021,26449,26768,27009,27109,27111,27003,26811,26478,26097,25600,25042,24456,23814,23156,22523,21846,21197,20617,20013,19464,18981,18504,18119,17742,17412,17123,16849,16605,16417,16205,16024,15819,15650,15478,15351,15221,15109,15049,14971,14926,14906,14913,14920,14949,14961,14999,15034,15075,15140,15178,15204,15213,15227,15227,15248,15257,15261,15251,15203,15136,15077,15015,14926,14843,14701,14545,14382,14185,13969,13758,13514,13237,12981,12694,12413,12125,11828,11549,11271,11017,10775,10558,10274,9980,9652,9350,9073,8830,8609,8447,8289,8146,8065,7974,7912,7850,7777,7687,7550,7377,7232,7101,6994,6897,6817,6747,6696,6657,6636,6617,6605,6601,6630,6610,6467,6167,5725,5108,21.7,21.8,22.4,1567747,0.4,12.3,12.0,5.0,474,-1.00,-1.00,56.9459,-18.623006,0.000552,,,,,177 +SATSLF0720,2024246,4.763438,4.37,0.0612,0.1057,0.0196,0.00,16069,648,1,701,697,703,715,719,713,725,724,740,732,735,757,773,895,1216,1948,3096,4475,5720,6632,7279,7738,8171,8602,9126,9761,10472,11330,12329,13431,14609,15755,16863,17805,18538,18944,19094,18912,18539,18006,17421,16867,16423,16057,15837,15773,15853,16089,16486,17083,17810,18714,19780,20991,22298,23745,25197,26699,28109,29345,30330,31083,31477,31473,31161,30509,29611,28553,27318,26129,24984,23920,22909,22072,21328,20729,20249,19842,19582,19430,19325,19337,19457,19628,19902,20242,20665,21182,21755,22377,23026,23674,24295,24871,25351,25717,25971,26024,25889,25619,25152,24518,23797,23013,22147,21258,20416,19666,18946,18312,17746,17272,16861,16549,16311,16137,16037,16006,16021,16118,16274,16497,16796,17163,17589,18080,18665,19240,19891,20561,21280,22026,22757,23460,24156,24810,25419,25973,26392,26720,26969,27081,27081,27001,26789,26465,26073,25575,25004,24422,23789,23149,22499,21825,21190,20595,19994,19443,18963,18483,18081,17716,17381,17104,16841,16604,16401,16190,16005,15813,15615,15463,15330,15197,15105,15037,14952,14918,14907,14904,14906,14928,14951,14995,15029,15057,15101,15161,15177,15202,15209,15211,15242,15254,15250,15245,15202,15134,15069,14990,14900,14826,14680,14549,14362,14178,13948,13738,13504,13249,12981,12697,12410,12121,11821,11540,11262,11002,10775,10527,10257,9959,9643,9321,9047,8811,8607,8445,8288,8152,8065,7979,7901,7844,7773,7691,7555,7377,7232,7107,7003,6893,6812,6755,6696,6655,6640,6625,6613,6600,6610,6615,6457,6145,5715,5115,21.7,21.9,22.5,1567748,0.1,12.2,12.0,5.0,465,-1.00,-1.00,57.1982,-18.702100,0.000485,,,,,198 +SATSLF0720,2024246,4.763697,4.01,0.0562,0.1052,0.0193,0.00,16081,648,1,701,711,701,699,717,717,720,725,724,727,726,745,775,896,1225,1957,3121,4492,5734,6664,7317,7781,8199,8638,9157,9772,10506,11381,12356,13467,14638,15798,16913,17867,18585,19024,19154,18961,18597,18066,17464,16896,16433,16079,15857,15780,15859,16113,16503,17081,17835,18734,19799,21030,22348,23762,25251,26739,28160,29397,30390,31126,31533,31515,31188,30551,29614,28580,27355,26166,25025,23933,22954,22082,21352,20749,20258,19870,19602,19443,19347,19351,19453,19645,19908,20253,20690,21218,21765,22392,23061,23709,24306,24877,25346,25722,25990,26036,25914,25634,25169,24530,23827,23028,22170,21291,20449,19674,18969,18309,17749,17282,16869,16570,16323,16159,16053,15998,16019,16118,16286,16504,16795,17162,17602,18084,18643,19251,19895,20579,21297,22041,22788,23500,24189,24846,25433,25993,26418,26726,26989,27083,27101,27015,26801,26452,26078,25581,25018,24437,23795,23154,22498,21844,21202,20585,20004,19437,18949,18483,18088,17728,17401,17120,16849,16603,16402,16197,16011,15825,15629,15475,15325,15210,15113,15046,14960,14912,14897,14886,14897,14923,14963,14981,15028,15073,15114,15182,15194,15191,15197,15211,15233,15254,15273,15241,15185,15133,15080,15013,14925,14824,14679,14525,14347,14161,13949,13725,13510,13248,12985,12701,12396,12103,11834,11525,11255,11026,10771,10544,10261,9977,9649,9345,9053,8814,8605,8422,8262,8149,8045,7969,7888,7846,7783,7713,7570,7380,7236,7098,6983,6892,6817,6753,6698,6659,6625,6622,6602,6593,6609,6605,6451,6137,5723,5109,21.7,21.9,22.5,1567749,0.3,12.2,11.9,5.0,473,-1.00,-1.00,57.9690,-19.045862,0.000650,,,,,67 +SATSLF0720,2024246,4.763950,4.18,0.0585,0.1059,0.0199,0.00,16061,648,1,699,700,697,707,715,713,735,729,728,718,743,740,775,877,1205,1927,3096,4475,5709,6637,7266,7736,8168,8619,9126,9749,10490,11345,12336,13438,14609,15772,16862,17805,18516,18961,19098,18902,18526,18010,17428,16877,16425,16074,15835,15763,15835,16075,16477,17060,17787,18682,19752,20973,22296,23730,25208,26678,28096,29336,30338,31070,31472,31459,31129,30489,29581,28534,27305,26125,24977,23893,22903,22033,21320,20708,20228,19830,19552,19411,19318,19330,19431,19609,19862,20225,20647,21175,21750,22365,23021,23673,24285,24852,25338,25698,25957,26007,25900,25608,25122,24489,23765,22969,22119,21256,20414,19635,18941,18306,17741,17269,16873,16551,16293,16121,16034,15970,15997,16085,16247,16471,16776,17145,17581,18061,18641,19245,19867,20551,21284,21996,22747,23456,24153,24808,25409,25974,26401,26721,26961,27065,27082,26988,26778,26437,26050,25559,24998,24411,23778,23137,22493,21825,21198,20579,19992,19444,18947,18479,18077,17717,17385,17103,16838,16593,16375,16183,15993,15806,15618,15463,15325,15214,15104,15033,14960,14924,14905,14898,14889,14921,14946,14987,15017,15067,15125,15157,15183,15195,15191,15189,15212,15237,15238,15235,15191,15122,15061,14989,14890,14798,14668,14517,14357,14168,13957,13750,13513,13251,12997,12693,12398,12107,11813,11522,11257,10990,10761,10532,10265,9977,9654,9333,9053,8818,8594,8425,8273,8138,8042,7953,7895,7834,7787,7697,7549,7372,7216,7099,6978,6872,6807,6729,6675,6651,6631,6612,6610,6604,6617,6610,6448,6155,5714,5102,21.7,21.9,22.6,1567750,0.0,12.3,11.9,5.0,470,-1.00,-1.00,57.7163,-18.907285,0.000575,,,,,181 +SATSLF0720,2024246,4.764202,4.14,0.0579,0.1078,0.0212,0.00,16003,648,1,713,708,705,715,709,703,717,711,726,721,729,745,785,893,1211,1937,3105,4461,5709,6605,7256,7709,8131,8577,9077,9701,10429,11299,12274,13376,14561,15701,16792,17742,18448,18896,19016,18834,18453,17923,17339,16794,16332,15975,15753,15696,15776,16009,16417,16983,17721,18635,19669,20889,22190,23613,25082,26557,27957,29189,30178,30918,31319,31325,30999,30368,29448,28411,27185,26005,24845,23804,22792,21943,21223,20625,20144,19765,19481,19343,19237,19256,19349,19537,19799,20149,20576,21101,21657,22283,22930,23574,24177,24758,25227,25586,25852,25890,25757,25509,25037,24401,23697,22916,22037,21177,20336,19576,18873,18235,17673,17204,16792,16484,16238,16079,15977,15934,15957,16048,16193,16425,16713,17085,17515,18005,18571,19180,19785,20480,21180,21923,22663,23366,24065,24728,25305,25867,26291,26625,26877,26975,26998,26908,26693,26367,25975,25489,24928,24353,23699,23049,22395,21736,21109,20517,19927,19374,18881,18427,18029,17663,17332,17033,16776,16538,16328,16129,15940,15726,15559,15415,15285,15157,15067,14986,14907,14873,14858,14861,14858,14885,14917,14946,14995,15021,15071,15127,15125,15137,15159,15145,15191,15196,15209,15202,15139,15091,15017,14957,14860,14788,14625,14487,14307,14115,13907,13709,13469,13204,12939,12663,12372,12078,11792,11503,11233,10982,10757,10505,10243,9937,9627,9320,9037,8781,8571,8409,8241,8103,8019,7947,7873,7825,7769,7672,7530,7345,7193,7063,6959,6866,6794,6721,6669,6633,6615,6597,6590,6586,6596,6594,6435,6125,5701,5088,21.7,21.9,22.6,1567751,0.2,12.1,11.9,5.0,475,-1.00,-1.00,58.0528,-18.963854,0.000512,,,,,153 +SATSLF0720,2024246,4.764457,4.20,0.0589,0.1054,0.0194,0.00,16071,648,1,711,709,696,723,718,727,723,733,736,735,741,749,781,887,1216,1951,3125,4492,5721,6651,7288,7758,8186,8629,9139,9746,10495,11352,12333,13449,14616,15776,16890,17837,18565,18989,19117,18938,18557,18013,17441,16885,16429,16069,15845,15771,15853,16102,16505,17091,17816,18714,19780,20975,22304,23744,25213,26705,28113,29344,30325,31076,31484,31478,31154,30512,29602,28542,27309,26142,24983,23909,22922,22070,21344,20742,20263,19862,19578,19422,19341,19335,19435,19623,19879,20234,20668,21188,21763,22377,23036,23684,24290,24868,25341,25709,25955,26022,25905,25611,25130,24516,23792,22990,22127,21268,20426,19655,18958,18313,17750,17276,16875,16561,16313,16154,16050,16005,16023,16110,16272,16496,16797,17142,17582,18072,18616,19236,19878,20572,21287,22018,22759,23469,24181,24818,25417,25976,26393,26699,26963,27059,27070,26970,26773,26444,26065,25569,25008,24422,23794,23146,22498,21835,21201,20599,19990,19453,18968,18493,18065,17714,17382,17093,16833,16598,16411,16205,16011,15815,15627,15457,15331,15205,15112,15028,14963,14929,14913,14913,14918,14935,14958,14992,15021,15075,15114,15165,15178,15186,15202,15203,15237,15258,15268,15245,15202,15146,15077,15013,14916,14833,14692,14537,14360,14181,13968,13752,13499,13243,12971,12683,12405,12116,11841,11542,11268,11033,10789,10530,10280,9974,9645,9350,9054,8805,8607,8437,8290,8157,8052,7970,7907,7845,7783,7696,7559,7385,7221,7097,6988,6890,6797,6755,6704,6654,6622,6620,6597,6574,6603,6601,6460,6153,5721,5104,21.8,21.9,22.6,1567752,0.1,12.2,12.0,5.0,467,-1.00,-1.00,57.2848,-18.736961,0.000491,,,,,84 +SATSDF0720,2024246,5.009138,0.00,0.0000,0.0000,0.0000,0.00,649,0,1,629,625,621,617,625,616,631,626,628,629,638,622,619,635,629,628,630,641,640,641,639,645,645,657,650,657,661,653,647,651,647,661,650,654,665,653,651,655,654,640,653,645,650,642,648,657,653,645,661,656,651,651,660,662,664,664,665,663,661,665,667,673,649,653,648,641,645,650,653,648,658,657,651,652,659,657,657,650,645,658,652,642,651,659,661,646,651,659,656,659,663,651,653,653,653,661,648,645,638,635,643,645,643,645,636,648,657,663,669,653,653,648,651,659,653,650,662,650,657,657,648,650,657,658,651,637,639,635,645,634,631,647,653,653,650,653,650,659,650,653,632,624,633,625,638,641,647,649,636,633,643,645,641,641,654,654,650,638,639,647,652,644,647,653,647,646,649,660,665,665,662,665,657,652,661,649,654,653,647,647,655,642,647,658,659,653,658,645,658,661,649,648,653,634,643,645,657,669,649,657,653,643,643,648,650,641,643,647,657,655,660,662,656,647,643,648,656,657,652,655,646,659,644,647,647,633,647,649,650,661,645,650,650,653,649,639,647,640,653,659,641,647,656,641,659,649,647,650,643,658,646,647,648,646,647,475,0.0,0.0,0.0,1567751,0.1,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,254 +SATSLF0720,2024246,5.009693,4.10,0.0574,0.1000,0.0163,0.00,16233,649,1,699,697,697,708,703,711,707,715,724,731,714,739,761,877,1219,1954,3139,4532,5788,6734,7382,7862,8283,8741,9248,9869,10624,11506,12509,13625,14816,16001,17128,18090,18825,19261,19390,19203,18833,18282,17691,17118,16640,16269,16035,15969,16055,16314,16727,17306,18067,18983,20068,21285,22606,24056,25552,27033,28483,29739,30730,31490,31885,31898,31578,30913,29989,28917,27668,26477,25297,24203,23200,22333,21593,21003,20501,20117,19829,19685,19573,19584,19669,19866,20129,20476,20913,21434,22003,22628,23290,23947,24553,25106,25590,25966,26224,26286,26173,25883,25399,24762,24039,23234,22333,21463,20622,19833,19134,18485,17914,17451,17032,16698,16471,16288,16193,16141,16153,16250,16426,16657,16967,17325,17766,18261,18833,19429,20069,20754,21481,22231,22978,23685,24389,25063,25664,26233,26666,26986,27225,27335,27353,27245,27052,26721,26300,25823,25241,24642,24011,23364,22700,22030,21397,20783,20200,19636,19130,18651,18240,17875,17549,17250,16993,16741,16537,16341,16151,15957,15754,15587,15453,15337,15238,15156,15079,15042,15045,15021,15032,15060,15073,15111,15163,15173,15241,15273,15303,15315,15318,15320,15335,15342,15335,15343,15293,15240,15181,15107,15018,14924,14778,14644,14450,14263,14060,13841,13595,13332,13062,12784,12490,12197,11887,11618,11349,11089,10845,10615,10352,10034,9719,9397,9116,8865,8651,8487,8323,8191,8090,8017,7927,7895,7832,7746,7600,7415,7272,7149,7030,6935,6850,6788,6725,6685,6661,6653,6637,6622,6654,6649,6489,6181,5759,5133,21.6,21.6,22.0,1567752,0.6,12.2,11.9,5.0,599,-1.00,-1.00,56.6610,-18.719155,0.000557,,,,,175 +SATSLF0720,2024246,5.009874,4.09,0.0572,0.1006,0.0167,0.00,16216,649,1,709,709,701,705,711,696,715,708,711,719,727,734,769,895,1217,1960,3150,4537,5769,6713,7353,7837,8253,8705,9228,9858,10624,11493,12499,13608,14800,15969,17077,18052,18757,19205,19337,19157,18789,18229,17627,17067,16603,16234,16017,15933,16026,16275,16699,17271,18013,18928,20004,21248,22550,24027,25496,26983,28415,29690,30693,31443,31842,31834,31513,30867,29940,28857,27630,26457,25265,24196,23186,22315,21571,20955,20467,20081,19799,19642,19548,19551,19655,19832,20102,20454,20881,21412,21985,22611,23288,23929,24534,25122,25593,25963,26221,26268,26130,25870,25376,24743,24025,23221,22347,21459,20598,19835,19118,18454,17897,17410,17007,16693,16455,16292,16179,16149,16164,16247,16396,16641,16936,17301,17729,18228,18799,19415,20052,20742,21465,22218,22959,23677,24380,25042,25632,26213,26665,26973,27220,27321,27328,27240,27014,26685,26279,25802,25216,24631,23977,23341,22677,22004,21387,20774,20174,19616,19106,18634,18222,17853,17517,17243,16974,16729,16517,16320,16139,15929,15748,15576,15437,15328,15240,15138,15072,15030,15010,15019,15016,15049,15066,15101,15141,15166,15218,15267,15282,15305,15297,15301,15326,15354,15345,15333,15297,15231,15168,15104,15016,14920,14773,14616,14468,14261,14051,13833,13587,13331,13067,12791,12484,12200,11880,11603,11321,11075,10848,10605,10332,10033,9709,9396,9109,8868,8660,8481,8327,8201,8094,8012,7950,7911,7824,7735,7588,7415,7260,7138,7024,6936,6839,6782,6723,6690,6656,6655,6641,6643,6645,6647,6492,6187,5770,5129,21.6,21.6,22.1,1567753,0.5,12.2,11.9,5.0,485,-1.00,-1.00,57.3221,-18.963831,0.000538,,,,,183 +SATSLF0720,2024246,5.010133,4.11,0.0575,0.1015,0.0172,0.00,16189,649,1,697,712,710,700,695,699,704,711,714,717,715,731,763,873,1207,1943,3127,4501,5761,6685,7333,7815,8231,8683,9198,9825,10584,11445,12448,13568,14748,15925,17042,18000,18717,19154,19297,19113,18737,18189,17610,17029,16572,16207,15977,15897,15982,16233,16649,17236,17979,18913,19978,21200,22514,23971,25449,26930,28361,29628,30637,31377,31784,31781,31456,30818,29880,28819,27579,26398,25229,24144,23131,22267,21533,20928,20436,20041,19773,19604,19510,19531,19632,19808,20072,20423,20864,21369,21945,22557,23251,23897,24501,25069,25554,25917,26189,26229,26105,25808,25337,24697,23977,23182,22318,21430,20572,19805,19105,18440,17874,17408,17004,16676,16421,16261,16157,16118,16138,16222,16389,16612,16915,17285,17706,18189,18766,19389,20013,20705,21437,22179,22922,23640,24352,25000,25610,26173,26609,26937,27188,27269,27288,27188,26984,26652,26250,25752,25187,24597,23959,23325,22658,21978,21330,20740,20135,19588,19101,18618,18212,17856,17518,17219,16943,16701,16496,16294,16102,15901,15724,15545,15403,15287,15190,15123,15040,15015,14996,14997,15019,15028,15051,15085,15129,15152,15194,15251,15281,15282,15297,15302,15320,15340,15328,15323,15268,15203,15149,15080,14997,14901,14757,14601,14437,14234,14029,13818,13568,13307,13040,12759,12457,12167,11877,11590,11311,11059,10817,10590,10324,10017,9701,9381,9113,8861,8649,8467,8323,8200,8097,8012,7947,7888,7822,7732,7572,7407,7259,7128,7004,6905,6812,6763,6709,6665,6655,6644,6635,6621,6648,6641,6481,6173,5744,5129,21.6,21.6,22.1,1567754,0.4,12.2,11.9,5.0,480,-1.00,-1.00,57.5472,-19.023563,0.000550,,,,,167 +SATSLF0720,2024246,5.010385,4.06,0.0569,0.1026,0.0183,0.00,16157,649,1,701,705,697,693,703,691,699,701,705,718,714,729,757,883,1211,1949,3117,4510,5754,6684,7336,7814,8221,8676,9185,9835,10584,11448,12465,13565,14744,15904,17022,17967,18709,19139,19278,19084,18707,18171,17578,17013,16544,16180,15952,15877,15952,16218,16629,17220,17957,18873,19941,21161,22486,23914,25405,26886,28309,29571,30573,31324,31735,31739,31401,30755,29834,28768,27526,26348,25155,24087,23078,22237,21497,20888,20394,20009,19714,19571,19464,19474,19575,19777,20021,20359,20810,21325,21882,22507,23187,23826,24448,25022,25504,25856,26117,26158,26049,25756,25290,24641,23930,23118,22253,21379,20538,19772,19065,18394,17828,17362,16949,16635,16378,16200,16113,16071,16103,16190,16355,16576,16873,17241,17660,18162,18722,19329,19959,20662,21381,22119,22877,23584,24282,24954,25542,26110,26537,26877,27108,27218,27222,27133,26914,26588,26205,25685,25127,24531,23904,23257,22593,21943,21298,20683,20099,19541,19051,18558,18168,17806,17480,17190,16913,16665,16459,16259,16050,15872,15676,15512,15371,15250,15160,15104,15021,14985,14981,14966,14971,14993,15012,15053,15089,15123,15179,15218,15232,15252,15264,15253,15279,15321,15306,15299,15237,15180,15113,15053,14965,14870,14721,14577,14408,14222,14001,13790,13549,13303,13033,12740,12465,12170,11853,11577,11313,11040,10807,10570,10292,9993,9673,9353,9074,8832,8612,8453,8297,8155,8067,7987,7905,7867,7801,7712,7578,7394,7255,7120,7007,6906,6832,6761,6700,6669,6642,6630,6606,6596,6631,6618,6464,6162,5726,5120,21.6,21.6,22.2,1567755,0.3,12.2,11.9,5.0,480,-1.00,-1.00,57.5395,-18.987282,0.000537,,,,,153 +SATSLF0720,2024246,5.010636,4.32,0.0605,0.1019,0.0171,0.00,16182,649,1,710,690,695,699,698,704,715,717,729,730,725,739,762,877,1197,1942,3129,4520,5781,6702,7349,7829,8245,8679,9198,9834,10574,11438,12441,13566,14761,15917,17034,17989,18699,19147,19290,19097,18729,18199,17585,17030,16566,16190,15966,15905,15991,16238,16659,17246,17981,18893,19957,21198,22514,23981,25458,26942,28357,29613,30613,31360,31761,31757,31440,30774,29850,28793,27554,26376,25206,24122,23101,22264,21522,20903,20420,20033,19766,19601,19493,19509,19601,19786,20043,20410,20845,21361,21925,22560,23221,23844,24470,25048,25533,25890,26157,26219,26102,25815,25342,24709,23973,23170,22299,21414,20556,19767,19067,18431,17864,17387,16984,16654,16405,16241,16125,16086,16112,16218,16365,16609,16900,17280,17703,18206,18772,19374,20019,20677,21427,22168,22915,23620,24333,24989,25594,26167,26584,26897,27158,27257,27265,27173,26948,26631,26245,25730,25187,24588,23941,23288,22631,21974,21341,20732,20120,19575,19069,18593,18187,17819,17487,17207,16930,16689,16493,16291,16110,15898,15719,15566,15421,15312,15194,15127,15049,15008,14989,14994,15000,15021,15041,15081,15123,15146,15201,15265,15261,15272,15276,15273,15295,15319,15332,15321,15272,15208,15153,15100,14998,14896,14759,14593,14416,14227,14014,13800,13568,13317,13041,12759,12476,12173,11877,11582,11314,11061,10822,10573,10309,10011,9688,9363,9096,8846,8634,8468,8308,8182,8074,8011,7941,7903,7811,7739,7580,7403,7240,7114,7005,6907,6826,6777,6714,6679,6654,6650,6643,6621,6653,6645,6496,6194,5749,5131,21.6,21.6,22.2,1567756,0.7,12.1,12.0,5.0,481,-1.00,-1.00,56.5254,-18.586700,0.000562,,,,,110 +SATSLF0720,2024246,5.010890,4.31,0.0603,0.1026,0.0176,0.00,16168,649,1,684,700,705,697,706,708,712,713,724,723,734,747,770,886,1222,1954,3135,4510,5757,6682,7321,7801,8229,8667,9192,9824,10561,11433,12432,13537,14729,15895,16995,17960,18697,19118,19255,19075,18690,18167,17564,16999,16549,16172,15959,15882,15962,16215,16627,17221,17962,18873,19936,21161,22479,23925,25389,26880,28310,29561,30571,31316,31713,31719,31397,30740,29816,28761,27510,26327,25179,24094,23078,22217,21480,20884,20391,20007,19722,19573,19464,19482,19568,19771,20017,20381,20818,21337,21896,22524,23197,23840,24458,25032,25517,25868,26120,26171,26059,25792,25304,24657,23933,23129,22272,21377,20541,19772,19072,18425,17853,17397,16976,16650,16407,16214,16132,16086,16105,16210,16368,16602,16896,17259,17687,18181,18733,19339,19987,20692,21416,22171,22901,23605,24314,24985,25565,26133,26561,26892,27129,27234,27230,27139,26925,26613,26221,25714,25159,24575,23937,23296,22622,21955,21317,20710,20112,19553,19057,18585,18182,17809,17486,17203,16929,16699,16490,16284,16097,15904,15722,15541,15399,15274,15185,15104,15045,14994,14980,14973,14989,14998,15037,15062,15103,15132,15176,15240,15257,15261,15282,15289,15309,15332,15336,15324,15270,15197,15137,15067,14974,14879,14742,14594,14423,14237,14024,13815,13586,13321,13038,12772,12472,12164,11867,11587,11313,11079,10834,10581,10307,10013,9693,9376,9076,8836,8637,8449,8310,8185,8093,8018,7921,7883,7828,7730,7581,7415,7256,7131,7006,6912,6824,6778,6724,6688,6657,6649,6645,6641,6656,6647,6497,6178,5747,5126,21.6,21.6,22.2,1567757,0.2,12.2,11.9,5.0,479,-1.00,-1.00,56.6487,-18.609940,0.000503,,,,,17 +SATSLF0720,2024246,5.011143,4.16,0.0582,0.1020,0.0176,0.00,16163,649,1,714,727,709,709,711,711,718,716,729,713,731,753,773,887,1225,1961,3143,4510,5769,6693,7342,7809,8244,8691,9198,9837,10578,11444,12442,13556,14732,15877,16995,17947,18685,19124,19271,19079,18695,18156,17560,17013,16550,16184,15957,15885,15966,16237,16616,17205,17943,18862,19925,21150,22464,23913,25405,26901,28306,29558,30562,31315,31713,31718,31387,30731,29825,28754,27529,26337,25162,24085,23075,22210,21493,20874,20385,19997,19729,19581,19488,19489,19585,19756,20025,20369,20804,21313,21868,22500,23174,23827,24452,25013,25495,25876,26133,26185,26066,25777,25302,24657,23930,23138,22267,21385,20541,19768,19069,18409,17845,17378,16964,16651,16409,16225,16103,16061,16088,16186,16338,16582,16875,17236,17687,18176,18749,19345,19984,20679,21385,22149,22881,23594,24296,24954,25545,26114,26545,26870,27122,27209,27237,27136,26930,26606,26208,25725,25133,24551,23902,23262,22606,21949,21305,20705,20101,19550,19046,18581,18176,17813,17493,17174,16923,16684,16468,16279,16075,15902,15713,15542,15392,15282,15168,15097,15024,14978,14970,14979,14981,15009,15042,15060,15115,15141,15194,15238,15246,15249,15255,15273,15282,15308,15313,15301,15266,15206,15136,15063,14969,14871,14752,14613,14430,14240,14034,13810,13579,13313,13045,12741,12453,12170,11861,11569,11301,11058,10810,10579,10305,10004,9689,9377,9095,8851,8634,8459,8313,8185,8094,8004,7933,7880,7819,7723,7584,7398,7255,7127,7002,6919,6829,6775,6706,6674,6651,6655,6631,6626,6645,6629,6483,6183,5741,5127,21.6,21.7,22.2,1567758,0.0,12.2,11.9,5.0,482,-1.00,-1.00,57.1465,-18.816804,0.000486,,,,,65 +SATSLF0720,2024246,5.011398,4.16,0.0582,0.1035,0.0182,0.00,16138,649,1,703,703,709,712,722,708,709,707,709,716,729,729,765,898,1233,1965,3137,4514,5749,6667,7320,7793,8208,8654,9176,9785,10531,11401,12395,13523,14688,15873,16973,17922,18663,19092,19213,19030,18653,18130,17536,16964,16499,16139,15899,15849,15928,16186,16587,17162,17920,18825,19889,21106,22437,23850,25340,26821,28246,29490,30497,31236,31648,31640,31319,30675,29750,28692,27457,26277,25113,24037,23030,22176,21440,20832,20369,19956,19676,19522,19421,19427,19539,19722,19991,20344,20782,21307,21866,22470,23141,23797,24392,24967,25438,25803,26077,26122,26009,25724,25250,24614,23895,23101,22233,21346,20500,19736,19036,18384,17817,17359,16929,16605,16365,16192,16090,16062,16083,16194,16342,16573,16865,17232,17662,18153,18705,19318,19939,20625,21350,22115,22864,23566,24292,24950,25522,26097,26517,26839,27077,27185,27196,27098,26899,26576,26189,25680,25131,24536,23895,23240,22583,21923,21294,20672,20088,19525,19037,18554,18151,17790,17474,17169,16903,16637,16439,16249,16069,15863,15693,15509,15376,15265,15169,15094,15016,14977,14953,14962,14965,14994,15001,15049,15073,15104,15159,15217,15229,15240,15256,15265,15285,15291,15299,15287,15236,15178,15117,15043,14957,14866,14736,14595,14424,14226,13999,13792,13548,13273,13010,12736,12434,12153,11852,11563,11294,11061,10816,10581,10305,10017,9703,9380,9072,8827,8624,8453,8301,8172,8068,7990,7923,7877,7812,7725,7586,7418,7249,7123,6993,6887,6813,6748,6686,6657,6655,6645,6618,6616,6637,6622,6464,6163,5748,5123,21.6,21.7,22.3,1567759,0.4,12.2,12.0,5.0,472,-1.00,-1.00,57.3016,-18.839511,0.000517,,,,,247 +SATSLF0720,2024246,5.011654,4.21,0.0589,0.1047,0.0187,0.00,16097,649,1,699,707,704,697,707,705,710,714,714,718,716,740,770,886,1216,1942,3108,4495,5733,6655,7294,7773,8173,8618,9129,9750,10497,11360,12356,13479,14653,15806,16915,17877,18594,19026,19129,18975,18581,18035,17448,16912,16455,16093,15868,15810,15873,16106,16517,17100,17845,18752,19830,21038,22354,23802,25256,26745,28169,29413,30409,31153,31556,31549,31220,30585,29645,28603,27373,26192,25035,23953,22962,22104,21380,20764,20291,19905,19634,19463,19370,19385,19477,19675,19922,20290,20717,21243,21801,22405,23090,23728,24339,24918,25396,25748,26018,26053,25945,25673,25168,24547,23838,23029,22171,21299,20459,19698,18986,18337,17760,17306,16910,16586,16344,16166,16073,16024,16027,16139,16296,16521,16812,17185,17624,18117,18690,19289,19916,20603,21333,22053,22811,23513,24232,24891,25485,26038,26465,26768,27013,27130,27153,27058,26833,26515,26121,25624,25053,24465,23818,23175,22527,21862,21245,20634,20042,19496,18993,18517,18114,17737,17407,17117,16843,16612,16419,16226,16035,15845,15644,15480,15349,15222,15127,15067,14986,14965,14945,14929,14963,14961,14987,15022,15052,15099,15145,15176,15191,15207,15229,15216,15244,15278,15273,15264,15219,15160,15101,15033,14925,14833,14688,14536,14379,14186,13981,13760,13527,13265,12993,12717,12429,12128,11836,11537,11264,11025,10786,10547,10289,9980,9663,9337,9056,8814,8602,8434,8281,8146,8069,7985,7915,7866,7785,7701,7570,7380,7239,7098,6978,6890,6817,6751,6697,6668,6641,6630,6613,6602,6619,6612,6462,6157,5730,5109,21.7,21.7,22.3,1567760,0.1,12.2,11.9,5.0,469,-1.00,-1.00,57.6288,-18.919653,0.000605,,,,,90 +SATSLF0720,2024246,5.011909,3.78,0.0529,0.1062,0.0201,0.00,16054,649,1,690,703,707,722,721,733,732,729,724,721,721,731,774,885,1213,1943,3098,4507,5732,6659,7302,7774,8190,8629,9145,9755,10495,11372,12359,13472,14649,15810,16907,17876,18598,19030,19156,18981,18615,18070,17467,16920,16450,16080,15856,15783,15848,16090,16501,17081,17822,18710,19798,21012,22313,23754,25221,26693,28110,29357,30349,31101,31488,31495,31191,30533,29627,28557,27321,26147,24994,23914,22913,22071,21353,20725,20232,19863,19571,19409,19306,19322,19416,19610,19883,20224,20658,21164,21729,22334,23006,23641,24254,24842,25317,25693,25938,25977,25862,25586,25113,24486,23756,22967,22117,21242,20403,19633,18922,18265,17712,17243,16829,16523,16282,16121,16001,15969,15984,16085,16247,16466,16756,17122,17544,18033,18601,19202,19821,20510,21221,21969,22701,23419,24115,24771,25367,25938,26351,26677,26909,27019,27033,26941,26741,26416,26021,25523,24966,24385,23740,23091,22438,21770,21138,20548,19974,19416,18938,18469,18061,17689,17365,17090,16813,16585,16378,16177,15989,15788,15607,15429,15274,15161,15067,14994,14926,14894,14883,14877,14886,14917,14934,14973,15010,15032,15065,15139,15150,15156,15168,15169,15191,15223,15212,15211,15164,15108,15055,14992,14888,14802,14651,14507,14336,14133,13928,13709,13457,13207,12930,12667,12373,12085,11792,11514,11254,10997,10768,10533,10260,9956,9604,9319,9028,8797,8590,8436,8278,8134,8051,7956,7891,7858,7765,7677,7528,7364,7211,7083,6974,6853,6789,6725,6680,6645,6633,6621,6602,6592,6600,6597,6455,6132,5736,5096,21.6,21.8,22.4,1567761,0.0,12.2,12.0,5.0,479,-1.00,-1.00,58.2964,-19.164916,0.000582,,,,,142 +SATSLF0720,2024246,5.012168,4.28,0.0600,0.1035,0.0177,0.00,16144,649,1,705,719,722,721,719,737,730,736,728,731,722,739,777,889,1224,1953,3135,4517,5754,6695,7324,7806,8226,8656,9195,9797,10544,11408,12416,13521,14707,15877,16997,17946,18662,19104,19221,19043,18654,18117,17542,16977,16512,16157,15937,15857,15947,16180,16589,17184,17924,18821,19895,21122,22430,23876,25368,26852,28254,29516,30497,31255,31661,31661,31340,30682,29741,28689,27457,26272,25129,24040,23044,22196,21451,20840,20342,19971,19677,19521,19421,19434,19540,19734,20000,20353,20792,21317,21872,22490,23159,23798,24407,24981,25461,25829,26085,26138,26016,25745,25251,24632,23901,23104,22230,21369,20515,19723,19035,18382,17822,17353,16950,16628,16377,16208,16112,16075,16089,16165,16346,16577,16865,17229,17658,18146,18708,19339,19960,20653,21369,22117,22864,23575,24279,24938,25537,26093,26520,26849,27088,27191,27194,27101,26906,26553,26162,25680,25122,24525,23893,23248,22586,21916,21289,20669,20077,19509,19014,18555,18160,17789,17452,17169,16917,16677,16466,16254,16077,15872,15688,15525,15392,15270,15171,15112,15037,14982,14949,14955,14967,14985,15016,15054,15085,15127,15177,15234,15238,15251,15249,15254,15275,15297,15300,15281,15244,15186,15133,15057,14979,14874,14747,14597,14409,14224,14001,13791,13556,13301,13029,12756,12452,12163,11861,11573,11300,11053,10813,10565,10308,9997,9683,9363,9081,8852,8645,8472,8303,8175,8069,7993,7915,7882,7802,7719,7591,7414,7245,7130,7013,6915,6829,6764,6706,6669,6640,6647,6621,6609,6639,6630,6490,6185,5746,5115,21.7,21.8,22.4,1567762,0.1,12.2,11.9,5.0,477,-1.00,-1.00,56.6489,-18.573178,0.000554,,,,,77 +SATSLF0720,2024246,5.012422,4.20,0.0588,0.1050,0.0189,0.00,16091,649,1,702,699,702,710,715,730,726,723,725,725,728,739,765,893,1219,1938,3115,4486,5735,6656,7294,7772,8181,8619,9144,9763,10498,11377,12353,13459,14635,15809,16912,17860,18577,19014,19136,18955,18583,18043,17457,16894,16448,16081,15859,15790,15856,16119,16524,17108,17849,18750,19812,21026,22333,23774,25249,26730,28141,29389,30394,31147,31543,31552,31217,30561,29637,28599,27360,26163,25013,23938,22953,22100,21373,20769,20278,19879,19619,19456,19360,19371,19472,19660,19920,20275,20705,21213,21786,22404,23069,23717,24317,24896,25378,25742,26006,26051,25943,25657,25173,24551,23829,23034,22165,21278,20441,19665,18963,18312,17761,17286,16899,16580,16327,16156,16057,16032,16042,16124,16289,16509,16808,17173,17603,18105,18666,19266,19898,20577,21303,22043,22796,23514,24197,24866,25460,26018,26432,26747,26995,27102,27123,27031,26829,26486,26094,25603,25021,24438,23806,23168,22520,21867,21227,20633,20036,19480,18996,18509,18099,17733,17412,17114,16863,16624,16426,16218,16037,15841,15640,15480,15333,15234,15125,15062,14976,14943,14935,14929,14940,14960,14966,15005,15058,15090,15128,15195,15209,15207,15229,15230,15241,15265,15258,15259,15205,15151,15095,15011,14920,14835,14706,14549,14372,14189,13977,13766,13517,13271,12989,12705,12408,12121,11821,11536,11265,11015,10797,10546,10291,10005,9675,9364,9061,8819,8605,8447,8265,8152,8054,7977,7913,7861,7795,7699,7568,7382,7236,7107,6992,6884,6820,6749,6683,6651,6639,6637,6615,6612,6629,6621,6473,6160,5733,5119,21.7,21.8,22.4,1567763,0.2,12.2,11.9,5.0,478,-1.00,-1.00,57.5784,-18.889620,0.000567,,,,,62 +SATSLF0720,2024246,5.012674,4.14,0.0580,0.1041,0.0187,0.00,16112,649,1,693,708,710,708,720,713,724,721,725,714,715,727,769,880,1223,1954,3118,4507,5739,6647,7299,7780,8200,8649,9146,9788,10526,11397,12379,13490,14660,15821,16939,17904,18621,19042,19198,19005,18608,18091,17496,16930,16477,16114,15900,15829,15895,16141,16538,17127,17874,18777,19859,21070,22391,23830,25307,26798,28196,29443,30445,31175,31607,31609,31281,30609,29703,28635,27410,26225,25057,23984,23003,22132,21403,20793,20309,19920,19641,19470,19399,19418,19502,19702,19955,20313,20721,21254,21827,22445,23109,23742,24366,24932,25413,25769,26043,26089,25979,25701,25221,24584,23866,23057,22190,21314,20481,19712,19005,18350,17799,17323,16929,16602,16357,16181,16087,16037,16051,16151,16309,16533,16840,17197,17623,18125,18690,19297,19927,20609,21349,22081,22808,23517,24225,24883,25471,26030,26487,26797,27041,27147,27173,27066,26858,26532,26120,25627,25053,24481,23857,23210,22554,21877,21245,20633,20038,19497,18989,18529,18133,17765,17425,17143,16868,16645,16445,16236,16032,15850,15657,15491,15338,15227,15136,15064,14992,14951,14949,14926,14939,14974,14993,15040,15068,15101,15152,15205,15218,15241,15236,15233,15246,15277,15269,15264,15209,15161,15102,15021,14946,14853,14718,14561,14391,14194,13983,13769,13518,13256,13002,12718,12413,12141,11846,11557,11268,11027,10793,10568,10282,9986,9665,9356,9081,8840,8609,8446,8295,8167,8060,7986,7911,7859,7792,7694,7545,7378,7244,7109,6993,6893,6822,6747,6703,6659,6647,6631,6623,6614,6629,6609,6462,6153,5737,5108,21.7,21.8,22.4,1567763,0.0,12.2,11.9,5.0,471,-1.00,-1.00,57.5459,-18.910592,0.000599,,,,,133 +SATSLF0720,2024246,5.012929,4.10,0.0575,0.1059,0.0205,0.00,16053,649,1,703,694,698,697,714,705,723,725,725,726,725,738,769,881,1207,1927,3111,4484,5738,6657,7303,7770,8189,8618,9141,9751,10486,11358,12358,13469,14637,15802,16898,17854,18564,19012,19148,18962,18571,18055,17472,16901,16437,16077,15844,15781,15848,16105,16501,17095,17837,18741,19787,21008,22321,23769,25222,26706,28109,29357,30336,31082,31492,31497,31165,30513,29597,28557,27322,26135,24994,23914,22898,22046,21314,20717,20227,19838,19567,19416,19320,19328,19425,19610,19883,20225,20654,21167,21722,22344,23002,23653,24261,24842,25329,25700,25940,25998,25873,25581,25112,24492,23770,22980,22116,21236,20413,19637,18925,18268,17714,17252,16837,16531,16291,16113,16014,15969,16006,16081,16228,16473,16760,17132,17561,18050,18595,19211,19840,20513,21229,21982,22700,23428,24117,24784,25378,25927,26348,26680,26922,27024,27048,26964,26731,26409,26017,25537,24971,24381,23739,23101,22450,21802,21164,20540,19967,19409,18917,18457,18053,17685,17362,17074,16814,16576,16370,16156,15965,15769,15584,15431,15301,15174,15089,15000,14935,14900,14880,14869,14874,14903,14921,14967,14999,15038,15080,15147,15152,15158,15171,15176,15194,15217,15231,15202,15159,15105,15041,14990,14880,14787,14656,14510,14329,14144,13939,13728,13479,13220,12949,12677,12370,12080,11789,11506,11240,10993,10761,10525,10265,9954,9629,9327,9042,8810,8589,8435,8265,8131,8032,7943,7875,7827,7770,7689,7529,7357,7208,7089,6963,6883,6798,6728,6679,6634,6613,6603,6581,6590,6613,6594,6439,6138,5714,5101,21.7,21.8,22.4,1567764,0.0,12.2,11.9,5.0,478,-1.00,-1.00,57.2378,-18.721501,0.000542,,,,,133 +SATSLF0720,2024246,5.013183,4.28,0.0600,0.1051,0.0192,0.00,16088,649,1,699,710,713,728,716,723,725,713,716,712,719,731,776,901,1236,1957,3121,4498,5744,6653,7284,7771,8181,8621,9131,9762,10496,11370,12364,13463,14647,15801,16900,17851,18567,19005,19137,18954,18585,18048,17461,16900,16448,16080,15843,15778,15865,16105,16521,17096,17847,18766,19821,21034,22361,23770,25262,26726,28149,29397,30379,31136,31518,31530,31197,30549,29635,28570,27355,26161,25019,23944,22950,22085,21362,20761,20282,19900,19625,19458,19355,19375,19470,19646,19920,20257,20695,21221,21785,22413,23077,23723,24333,24887,25367,25722,26008,26058,25933,25648,25171,24535,23809,23025,22157,21285,20455,19693,18987,18332,17783,17302,16888,16593,16324,16155,16068,16016,16030,16127,16294,16520,16809,17181,17600,18084,18665,19254,19893,20560,21307,22048,22784,23506,24201,24856,25450,26009,26439,26753,27003,27113,27115,27027,26802,26485,26076,25596,25029,24455,23805,23159,22520,21854,21217,20606,20015,19472,18972,18515,18097,17736,17401,17106,16839,16615,16406,16211,16017,15823,15625,15468,15330,15214,15113,15040,14967,14937,14928,14921,14914,14955,14970,14999,15041,15078,15125,15191,15204,15217,15221,15223,15237,15258,15250,15251,15200,15131,15085,15003,14923,14830,14694,14554,14381,14195,13989,13773,13521,13253,12989,12704,12404,12122,11816,11528,11258,11005,10771,10524,10279,9986,9650,9353,9070,8823,8621,8446,8290,8147,8071,7982,7900,7843,7775,7703,7565,7383,7223,7095,6993,6900,6818,6762,6698,6668,6650,6634,6615,6593,6622,6617,6465,6154,5744,5110,21.7,21.8,22.4,1567765,0.3,12.2,12.0,5.0,474,-1.00,-1.00,57.1201,-18.694238,0.000599,,,,,35 +SATSLF0720,2024246,5.013435,4.25,0.0596,0.1054,0.0196,0.00,16065,649,1,700,711,727,717,713,723,732,730,734,737,737,743,772,895,1229,1953,3115,4489,5735,6641,7277,7752,8165,8611,9131,9739,10484,11345,12332,13431,14611,15770,16868,17819,18522,18971,19093,18925,18549,18009,17427,16870,16409,16064,15838,15760,15835,16071,16506,17069,17812,18722,19778,20996,22294,23739,25218,26689,28092,29338,30339,31074,31458,31465,31138,30482,29581,28542,27314,26148,24990,23902,22907,22049,21325,20713,20245,19856,19584,19433,19341,19339,19446,19643,19881,20231,20661,21173,21737,22359,23028,23678,24282,24864,25332,25700,25956,26020,25884,25616,25156,24498,23776,22977,22119,21249,20427,19648,18961,18314,17751,17282,16876,16557,16315,16145,16025,15979,16005,16107,16253,16495,16780,17163,17578,18070,18626,19246,19889,20550,21280,22000,22746,23456,24163,24832,25393,25974,26382,26720,26946,27064,27077,26992,26780,26465,26053,25561,24985,24407,23773,23125,22491,21821,21193,20571,19991,19437,18945,18477,18067,17721,17386,17098,16829,16597,16389,16183,15989,15798,15616,15445,15331,15197,15106,15026,14960,14934,14910,14903,14919,14944,14965,14988,15032,15045,15111,15169,15170,15181,15193,15193,15226,15237,15255,15234,15194,15120,15071,14986,14914,14812,14676,14524,14357,14161,13944,13741,13501,13261,12981,12704,12407,12114,11804,11531,11254,11018,10770,10535,10275,9980,9649,9341,9054,8805,8609,8422,8279,8132,8037,7972,7892,7851,7776,7693,7550,7374,7226,7097,6972,6886,6805,6736,6682,6648,6626,6613,6589,6597,6609,6598,6455,6155,5726,5113,21.7,21.9,22.5,1567766,0.0,12.2,11.9,5.0,475,-1.00,-1.00,57.4119,-18.785125,0.000507,,,,,41 +SATSLF0720,2024246,5.013690,4.25,0.0595,0.1061,0.0198,0.00,16061,649,1,703,701,706,700,709,711,712,713,722,731,728,752,785,890,1221,1949,3105,4483,5729,6629,7288,7751,8165,8608,9133,9741,10476,11337,12326,13436,14613,15764,16865,17809,18541,18968,19095,18919,18539,18008,17431,16871,16419,16066,15831,15752,15828,16075,16497,17061,17803,18707,19779,20978,22288,23731,25201,26674,28096,29332,30327,31078,31473,31482,31148,30486,29582,28530,27269,26113,24952,23886,22893,22046,21325,20730,20230,19836,19561,19409,19309,19326,19422,19610,19885,20228,20667,21186,21758,22358,23017,23656,24278,24851,25321,25696,25944,25995,25885,25606,25131,24477,23776,22967,22139,21258,20418,19652,18951,18302,17745,17269,16853,16558,16306,16130,16035,15984,16006,16099,16265,16493,16788,17153,17581,18061,18621,19219,19857,20556,21264,22015,22759,23454,24162,24811,25409,25965,26384,26706,26966,27065,27089,26996,26785,26439,26048,25552,24981,24395,23764,23115,22469,21827,21190,20595,20009,19442,18941,18471,18066,17706,17365,17076,16814,16589,16386,16184,15997,15811,15630,15468,15320,15193,15093,15018,14953,14906,14901,14896,14907,14939,14949,15006,15041,15056,15120,15162,15177,15172,15200,15209,15222,15230,15239,15229,15183,15106,15063,14986,14909,14801,14675,14533,14352,14154,13945,13737,13503,13247,12985,12696,12417,12106,11810,11524,11244,10990,10753,10522,10261,9963,9647,9333,9052,8813,8612,8430,8279,8147,8045,7972,7895,7851,7781,7687,7565,7378,7216,7098,6990,6884,6798,6733,6672,6635,6618,6613,6600,6600,6616,6610,6462,6156,5729,5114,21.7,21.8,22.5,1567767,0.4,12.2,11.9,5.0,477,-1.00,-1.00,57.3306,-18.745043,0.000594,,,,,73 +SATSLF0720,2024246,5.013943,4.07,0.0570,0.1061,0.0198,0.00,16055,649,1,703,697,694,688,703,698,708,717,721,727,729,729,767,885,1216,1942,3110,4481,5714,6638,7271,7755,8167,8612,9131,9761,10490,11355,12338,13432,14596,15748,16849,17805,18516,18960,19093,18913,18545,18007,17431,16868,16402,16037,15821,15740,15806,16062,16466,17053,17804,18699,19750,20980,22304,23728,25194,26673,28068,29307,30307,31056,31453,31456,31132,30496,29571,28522,27293,26112,24948,23885,22888,22037,21307,20707,20224,19850,19561,19408,19312,19320,19419,19611,19868,20221,20648,21175,21737,22355,23022,23660,24277,24848,25301,25680,25931,25994,25874,25614,25128,24485,23765,22985,22105,21251,20402,19639,18943,18290,17719,17276,16871,16545,16306,16136,16025,15978,15996,16091,16245,16482,16762,17139,17559,18059,18617,19233,19866,20544,21258,22016,22743,23451,24158,24811,25401,25973,26400,26709,26955,27052,27075,26965,26753,26427,26038,25546,24992,24390,23761,23129,22481,21820,21185,20586,19989,19432,18938,18484,18057,17693,17378,17073,16811,16573,16384,16174,15983,15815,15617,15456,15312,15202,15108,15021,14960,14933,14898,14898,14900,14928,14935,14970,14995,15051,15110,15172,15174,15196,15202,15202,15211,15238,15233,15220,15176,15117,15065,15000,14905,14807,14669,14522,14344,14157,13942,13739,13499,13229,12971,12685,12394,12107,11819,11538,11258,11016,10769,10525,10249,9947,9640,9313,9040,8805,8586,8413,8273,8128,8044,7964,7896,7844,7760,7685,7541,7369,7227,7089,6975,6888,6802,6726,6669,6643,6624,6609,6585,6577,6610,6602,6441,6143,5716,5085,21.7,21.9,22.5,1567768,0.0,12.2,11.9,5.0,472,-1.00,-1.00,58.1509,-19.081389,0.000606,,,,,102 +SATSLF0720,2024246,5.014194,4.14,0.0580,0.1063,0.0198,0.00,16055,649,1,709,694,697,682,701,694,703,710,737,729,743,745,769,883,1219,1925,3102,4466,5699,6633,7272,7745,8179,8612,9127,9742,10481,11333,12324,13434,14596,15767,16861,17813,18522,18957,19096,18917,18551,18010,17425,16883,16417,16040,15817,15740,15821,16073,16478,17074,17810,18696,19767,20970,22277,23719,25184,26670,28093,29328,30314,31056,31450,31447,31125,30488,29559,28527,27296,26116,24965,23898,22889,22048,21317,20705,20224,19845,19572,19397,19303,19316,19414,19594,19863,20221,20658,21174,21742,22358,23010,23662,24270,24834,25316,25665,25938,25992,25856,25599,25114,24495,23769,22977,22126,21239,20415,19642,18945,18301,17717,17259,16853,16540,16269,16103,16009,15979,15998,16087,16274,16481,16778,17142,17584,18057,18617,19208,19849,20533,21259,21994,22747,23461,24178,24817,25414,25971,26389,26697,26950,27048,27061,26966,26749,26432,26025,25539,24977,24397,23760,23127,22465,21805,21182,20580,19978,19440,18945,18468,18061,17706,17382,17088,16817,16585,16381,16170,15990,15785,15618,15461,15312,15191,15103,15025,14949,14907,14892,14882,14888,14919,14940,14977,15014,15050,15105,15156,15163,15174,15201,15198,15222,15227,15251,15226,15181,15131,15063,14986,14904,14816,14679,14522,14350,14164,13947,13736,13506,13242,12986,12696,12402,12105,11792,11519,11252,11011,10773,10532,10257,9959,9647,9335,9047,8802,8589,8425,8277,8141,8049,7964,7904,7845,7788,7689,7552,7379,7239,7105,6982,6884,6797,6737,6669,6647,6609,6599,6599,6590,6613,6607,6457,6158,5717,5115,21.7,21.9,22.6,1567769,0.2,12.2,12.0,5.0,477,-1.00,-1.00,57.7365,-18.908628,0.000543,,,,,180 +SATSLF0720,2024246,5.014450,4.14,0.0580,0.1073,0.0212,0.00,16014,649,1,707,707,717,730,728,728,725,728,738,733,744,742,773,894,1214,1949,3100,4479,5713,6626,7259,7722,8133,8583,9112,9714,10457,11325,12298,13407,14580,15712,16824,17769,18493,18921,19036,18854,18496,17968,17378,16824,16347,15995,15761,15707,15793,16021,16439,17010,17748,18644,19696,20913,22214,23664,25114,26610,28006,29246,30220,30983,31361,31364,31045,30397,29487,28436,27204,26017,24883,23818,22841,21989,21260,20647,20177,19772,19511,19354,19260,19275,19369,19559,19810,20160,20609,21105,21674,22282,22935,23585,24203,24774,25257,25616,25888,25934,25809,25530,25050,24405,23696,22909,22041,21179,20343,19579,18893,18243,17700,17229,16829,16505,16267,16098,15997,15932,15948,16050,16202,16439,16727,17102,17521,18010,18561,19189,19801,20490,21194,21946,22685,23378,24080,24731,25322,25875,26305,26628,26864,26964,26987,26891,26686,26357,25968,25473,24902,24323,23703,23059,22419,21755,21133,20509,19939,19366,18887,18410,18020,17651,17321,17036,16763,16531,16325,16137,15942,15763,15581,15415,15277,15164,15061,14981,14910,14871,14851,14848,14862,14883,14903,14952,14998,15030,15083,15129,15145,15137,15147,15155,15165,15189,15198,15185,15137,15081,15018,14948,14874,14768,14621,14474,14307,14131,13915,13705,13458,13210,12936,12655,12354,12077,11775,11495,11239,10978,10745,10509,10250,9942,9629,9313,9027,8777,8579,8406,8249,8128,8025,7941,7878,7837,7774,7673,7538,7365,7205,7087,6967,6861,6779,6728,6662,6627,6609,6588,6592,6582,6606,6601,6441,6145,5713,5109,21.7,21.9,22.6,1567770,0.3,12.2,12.0,5.0,476,-1.00,-1.00,57.8490,-18.901200,0.000632,,,,,91 +SATSDF0720,2024246,5.259139,0.00,0.0000,0.0000,0.0000,0.00,649,0,1,635,626,626,629,620,619,629,640,624,633,622,620,633,626,627,623,642,636,645,638,644,640,661,665,661,664,657,647,650,654,665,670,666,662,653,653,644,633,649,645,653,654,654,650,653,654,665,648,666,661,647,652,652,649,651,657,663,649,660,656,656,650,650,642,646,633,637,646,649,665,658,660,663,667,653,661,649,663,658,650,651,648,647,642,655,656,651,653,661,656,656,661,646,649,651,661,641,651,653,647,649,645,637,650,655,662,666,658,655,655,645,655,648,651,648,645,631,649,652,648,650,642,645,636,647,647,633,647,648,645,643,643,640,641,637,637,644,641,645,653,646,647,659,648,647,639,650,640,647,649,649,651,654,658,649,652,646,665,642,650,654,660,645,652,642,659,658,657,652,651,648,654,648,645,649,630,644,653,647,653,662,660,650,659,664,659,653,653,644,645,642,647,644,647,647,654,665,654,657,661,656,648,637,639,650,650,649,651,653,649,669,650,651,647,650,635,644,657,657,652,657,647,652,650,653,653,651,645,657,646,647,643,649,651,647,647,656,656,645,655,644,637,651,649,643,653,646,657,647,647,647,644,649,647,658,472,0.0,0.0,0.0,1567769,0.1,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,245 +SATSLF0720,2024246,5.259693,3.96,0.0555,0.1012,0.0169,0.00,16210,649,1,693,682,691,690,708,701,699,715,727,721,724,727,755,880,1197,1934,3123,4517,5769,6715,7360,7828,8261,8710,9226,9847,10599,11473,12488,13601,14796,15973,17074,18048,18774,19211,19339,19165,18781,18243,17642,17086,16602,16235,16002,15933,16014,16263,16677,17246,18014,18921,20001,21245,22550,24020,25496,26985,28408,29673,30675,31424,31820,31821,31495,30858,29917,28872,27613,26436,25272,24174,23182,22329,21554,20953,20468,20074,19774,19626,19521,19559,19657,19836,20103,20464,20896,21415,21991,22597,23260,23898,24514,25094,25577,25946,26186,26259,26121,25863,25377,24736,24016,23207,22336,21466,20601,19825,19125,18461,17893,17429,17015,16696,16448,16269,16165,16132,16148,16237,16400,16629,16923,17287,17723,18221,18781,19409,20048,20730,21457,22218,22939,23670,24384,25040,25628,26221,26645,26974,27211,27321,27337,27216,27010,26679,26292,25784,25224,24634,23988,23324,22669,22000,21362,20771,20182,19630,19124,18633,18231,17873,17531,17234,16962,16720,16522,16304,16123,15925,15752,15579,15445,15333,15224,15138,15081,15041,15006,15014,15012,15034,15056,15094,15135,15171,15221,15276,15277,15287,15293,15301,15328,15346,15351,15353,15290,15234,15161,15093,15004,14901,14772,14605,14451,14252,14039,13829,13593,13329,13061,12775,12492,12198,11893,11599,11339,11076,10826,10602,10322,10021,9713,9389,9115,8855,8643,8479,8322,8176,8086,8010,7933,7879,7821,7737,7589,7405,7263,7134,7022,6922,6843,6772,6714,6677,6641,6647,6633,6627,6637,6635,6485,6170,5751,5128,21.6,21.6,22.0,1567770,0.5,12.2,12.0,5.0,595,-1.00,-1.00,57.5313,-19.042640,0.000575,,,,,244 +SATSLF0720,2024246,5.259874,3.99,0.0559,0.1020,0.0180,0.00,16176,649,1,698,701,701,697,693,694,700,709,713,721,732,745,781,885,1219,1957,3128,4521,5777,6707,7348,7825,8251,8686,9219,9830,10586,11454,12454,13573,14755,15923,17053,17996,18728,19168,19310,19130,18737,18209,17617,17037,16585,16210,15979,15900,15988,16224,16640,17225,17975,18881,19957,21188,22511,23954,25434,26930,28352,29605,30610,31361,31762,31756,31442,30774,29850,28785,27550,26371,25201,24123,23114,22255,21515,20923,20426,20032,19756,19601,19488,19502,19594,19799,20052,20415,20853,21353,21938,22547,23222,23869,24470,25049,25534,25895,26140,26194,26076,25793,25303,24675,23946,23148,22280,21389,20550,19781,19072,18429,17853,17384,16993,16669,16414,16250,16142,16093,16113,16216,16365,16587,16893,17261,17690,18178,18754,19351,19994,20683,21422,22161,22903,23619,24336,24985,25578,26133,26549,26880,27129,27241,27274,27177,26953,26630,26213,25735,25149,24567,23930,23281,22626,21957,21319,20727,20144,19573,19064,18608,18197,17819,17476,17198,16928,16679,16490,16288,16078,15902,15713,15542,15405,15285,15186,15099,15038,14978,14967,14973,14985,14997,15022,15058,15108,15130,15186,15241,15246,15267,15271,15258,15279,15319,15321,15307,15249,15187,15125,15060,14967,14874,14742,14594,14434,14226,14007,13794,13549,13305,13028,12743,12451,12164,11861,11577,11302,11049,10816,10586,10304,9991,9670,9379,9081,8843,8646,8470,8300,8174,8087,8001,7936,7874,7808,7728,7578,7404,7245,7112,7011,6905,6816,6753,6700,6673,6651,6638,6628,6615,6634,6641,6482,6174,5752,5117,21.6,21.6,22.1,1567771,0.2,12.2,12.0,5.0,496,-1.00,-1.00,57.3031,-18.905411,0.000571,,,,,90 +SATSLF0720,2024246,5.260130,4.01,0.0561,0.1020,0.0169,0.00,16179,649,1,691,697,701,707,717,710,728,723,716,711,708,713,759,877,1209,1953,3138,4525,5765,6701,7338,7823,8228,8702,9218,9830,10583,11474,12456,13566,14743,15922,17022,17990,18709,19154,19293,19114,18728,18195,17597,17021,16567,16192,15964,15886,15971,16211,16627,17224,17965,18884,19953,21170,22508,23949,25443,26922,28343,29598,30594,31355,31753,31749,31433,30778,29844,28787,27541,26363,25192,24129,23117,22279,21512,20915,20425,20026,19750,19581,19489,19498,19594,19789,20053,20401,20832,21357,21933,22549,23221,23867,24471,25060,25507,25877,26144,26203,26071,25794,25320,24665,23942,23147,22283,21420,20560,19796,19100,18432,17873,17400,16983,16668,16405,16228,16135,16093,16116,16207,16384,16585,16898,17262,17696,18189,18757,19387,20014,20707,21433,22176,22922,23633,24337,24994,25590,26152,26592,26917,27148,27255,27283,27197,26977,26643,26233,25740,25173,24577,23941,23298,22633,21970,21326,20713,20118,19560,19080,18614,18185,17835,17483,17213,16949,16697,16497,16285,16086,15908,15714,15558,15403,15290,15187,15117,15048,15001,14993,14981,15009,15014,15037,15074,15124,15146,15203,15253,15261,15267,15278,15285,15294,15335,15325,15319,15268,15202,15160,15069,14981,14887,14754,14589,14426,14241,14032,13814,13576,13304,13041,12752,12451,12178,11864,11585,11309,11067,10834,10580,10304,10007,9669,9365,9099,8848,8648,8461,8314,8173,8083,8001,7916,7866,7807,7730,7580,7410,7258,7126,7025,6916,6839,6773,6717,6678,6645,6645,6626,6625,6641,6641,6485,6173,5753,5121,21.6,21.6,22.1,1567772,0.3,12.2,12.0,5.0,480,-1.00,-1.00,57.6211,-19.034531,0.000620,,,,,131 +SATSLF0720,2024246,5.260383,4.13,0.0578,0.1013,0.0168,0.00,16199,649,1,696,696,711,706,710,722,709,711,722,720,725,728,761,861,1199,1949,3137,4525,5786,6711,7358,7837,8249,8701,9225,9841,10583,11464,12466,13581,14775,15945,17061,18023,18738,19188,19318,19130,18749,18232,17645,17065,16599,16234,15996,15929,16005,16256,16657,17246,17991,18913,19985,21212,22547,23993,25488,26976,28418,29650,30664,31413,31810,31796,31479,30826,29896,28832,27593,26404,25230,24151,23143,22280,21553,20954,20441,20055,19781,19609,19517,19528,19629,19813,20077,20417,20871,21394,21949,22581,23237,23895,24509,25081,25561,25927,26193,26221,26111,25834,25350,24701,23986,23193,22309,21435,20597,19821,19107,18452,17886,17417,16995,16669,16439,16253,16141,16105,16131,16231,16397,16620,16921,17296,17723,18213,18773,19401,20026,20718,21437,22184,22934,23675,24366,25034,25610,26187,26624,26941,27176,27274,27298,27210,27005,26667,26268,25768,25202,24615,23973,23319,22654,21995,21353,20743,20153,19601,19095,18624,18229,17861,17509,17241,16970,16713,16514,16289,16104,15915,15723,15560,15409,15306,15205,15131,15051,15025,15004,15008,15004,15045,15048,15091,15139,15165,15205,15264,15281,15290,15305,15297,15309,15330,15330,15325,15272,15214,15165,15089,15001,14903,14758,14617,14450,14244,14039,13813,13582,13325,13060,12774,12477,12187,11881,11595,11319,11080,10838,10607,10324,10033,9703,9390,9106,8848,8637,8467,8310,8179,8082,8005,7958,7892,7830,7740,7586,7413,7260,7113,7022,6917,6833,6760,6720,6666,6653,6640,6626,6634,6653,6642,6493,6187,5763,5129,21.6,21.6,22.2,1567773,1.1,12.2,12.0,5.0,480,-1.00,-1.00,56.9872,-18.803123,0.000594,,,,,220 +SATSLF0720,2024246,5.260633,4.15,0.0581,0.1026,0.0174,0.00,16157,649,1,709,712,709,698,705,706,713,714,721,729,727,741,768,886,1201,1955,3130,4513,5749,6687,7316,7809,8228,8669,9191,9809,10549,11416,12406,13530,14713,15881,17004,17962,18677,19106,19236,19053,18653,18135,17533,16987,16528,16164,15929,15881,15945,16193,16594,17182,17922,18836,19904,21130,22452,23897,25381,26859,28285,29550,30541,31299,31690,31702,31364,30712,29800,28738,27506,26306,25147,24075,23069,22225,21481,20867,20384,19989,19712,19557,19461,19473,19581,19758,20026,20385,20808,21313,21875,22500,23164,23827,24429,25006,25490,25856,26122,26172,26033,25757,25276,24647,23925,23127,22251,21386,20542,19774,19057,18407,17853,17370,16957,16634,16385,16211,16121,16081,16094,16202,16353,16574,16869,17229,17671,18149,18715,19335,19991,20674,21405,22151,22896,23601,24315,24958,25547,26117,26533,26871,27097,27212,27232,27130,26925,26596,26206,25710,25155,24566,23917,23266,22600,21954,21317,20690,20090,19532,19041,18570,18153,17803,17483,17181,16919,16683,16490,16276,16082,15894,15706,15539,15397,15283,15191,15113,15031,15001,14973,14984,14995,15009,15020,15060,15105,15130,15175,15236,15253,15269,15284,15284,15302,15322,15322,15308,15259,15186,15143,15070,14990,14893,14749,14598,14427,14231,14014,13796,13553,13303,13037,12752,12455,12153,11867,11586,11305,11061,10827,10589,10300,10013,9680,9369,9093,8840,8633,8478,8308,8186,8082,7997,7931,7870,7808,7726,7581,7403,7253,7114,7013,6929,6829,6763,6712,6667,6649,6647,6629,6631,6635,6635,6475,6173,5745,5125,21.6,21.6,22.2,1567774,0.3,12.2,12.0,5.0,479,-1.00,-1.00,57.6063,-18.994280,0.000560,,,,,154 +SATSLF0720,2024246,5.260888,4.03,0.0565,0.1020,0.0169,0.00,16188,649,1,708,703,722,721,718,712,719,717,713,723,729,727,765,899,1224,1961,3133,4523,5765,6696,7352,7833,8260,8697,9219,9852,10583,11484,12457,13575,14765,15952,17056,18002,18730,19169,19300,19125,18742,18202,17608,17031,16568,16205,15969,15896,15985,16224,16656,17232,17972,18893,19962,21186,22509,23976,25458,26941,28369,29611,30617,31364,31752,31755,31432,30784,29869,28805,27562,26387,25235,24139,23127,22258,21518,20901,20423,20044,19738,19591,19490,19504,19607,19805,20071,20406,20859,21371,21933,22547,23219,23863,24481,25062,25539,25894,26167,26221,26098,25804,25329,24677,23963,23171,22289,21413,20579,19794,19074,18431,17861,17388,16997,16658,16426,16242,16154,16115,16127,16215,16389,16620,16921,17285,17705,18199,18769,19376,20007,20703,21434,22180,22913,23623,24342,24994,25586,26153,26587,26904,27152,27257,27271,27172,26952,26632,26256,25740,25179,24605,23956,23307,22645,21989,21351,20738,20146,19578,19072,18594,18202,17819,17481,17200,16931,16699,16501,16297,16114,15920,15737,15569,15426,15317,15210,15121,15055,15013,15008,15000,15006,15036,15053,15085,15117,15155,15201,15262,15261,15277,15279,15291,15317,15346,15337,15335,15295,15219,15159,15093,15008,14901,14761,14625,14437,14244,14043,13820,13573,13315,13058,12777,12486,12182,11877,11589,11301,11067,10824,10589,10321,10010,9706,9377,9111,8868,8659,8483,8325,8192,8101,8017,7941,7888,7825,7730,7599,7409,7262,7138,7017,6916,6829,6770,6717,6683,6658,6663,6633,6639,6657,6649,6490,6181,5761,5143,21.6,21.6,22.2,1567775,0.1,12.2,11.9,5.0,479,-1.00,-1.00,57.4505,-18.973389,0.000582,,,,,85 +SATSLF0720,2024246,5.261140,4.13,0.0579,0.1084,0.0229,0.00,15956,649,1,701,694,706,703,729,725,725,727,726,721,717,739,773,886,1197,1946,3108,4472,5702,6613,7257,7717,8143,8569,9080,9691,10443,11302,12291,13367,14539,15694,16790,17732,18437,18877,19011,18817,18441,17914,17329,16796,16332,15987,15749,15671,15758,15986,16389,16961,17688,18594,19658,20866,22168,23592,25048,26515,27915,29158,30141,30871,31275,31268,30954,30298,29399,28353,27129,25953,24818,23745,22779,21917,21184,20584,20114,19721,19455,19302,19213,19213,19309,19506,19752,20099,20517,21025,21591,22194,22861,23495,24102,24677,25137,25504,25765,25811,25682,25403,24929,24300,23600,22829,21970,21105,20264,19500,18816,18155,17605,17156,16741,16429,16180,16013,15898,15851,15893,15985,16147,16377,16672,17030,17457,17934,18507,19100,19725,20408,21126,21851,22581,23290,23973,24635,25217,25782,26194,26531,26770,26876,26881,26800,26583,26259,25889,25390,24838,24234,23610,22957,22313,21664,21031,20441,19857,19293,18812,18359,17962,17597,17265,16988,16709,16471,16275,16075,15880,15678,15512,15346,15223,15101,14999,14928,14855,14820,14801,14777,14782,14826,14850,14877,14923,14958,15006,15063,15063,15079,15093,15101,15115,15136,15139,15122,15090,15016,14960,14886,14801,14705,14589,14413,14245,14071,13846,13639,13396,13144,12891,12605,12305,12021,11733,11456,11186,10949,10699,10467,10200,9908,9578,9275,8985,8757,8529,8371,8213,8085,7981,7907,7853,7810,7739,7650,7501,7330,7165,7043,6944,6838,6760,6699,6640,6611,6585,6576,6567,6562,6581,6573,6419,6121,5685,5083,21.6,21.6,22.2,1567776,0.1,12.2,11.9,5.0,475,-1.00,-1.00,57.5318,-18.714616,0.000557,,,,,41 +SATSLF0720,2024246,5.261397,4.07,0.0571,0.1030,0.0173,0.00,16150,649,1,691,698,701,698,706,687,699,719,733,729,726,733,758,868,1206,1949,3127,4520,5766,6693,7328,7805,8208,8658,9182,9804,10549,11404,12398,13515,14711,15886,16989,17947,18677,19123,19233,19067,18684,18143,17556,16985,16519,16151,15944,15858,15947,16190,16599,17197,17929,18828,19904,21121,22441,23893,25381,26856,28279,29556,30533,31287,31694,31693,31346,30711,29781,28710,27483,26311,25133,24061,23059,22208,21466,20864,20374,19995,19700,19540,19445,19457,19560,19749,20018,20360,20792,21312,21879,22493,23173,23808,24431,24998,25472,25857,26107,26162,26051,25769,25293,24640,23937,23124,22246,21368,20517,19748,19045,18399,17827,17357,16941,16631,16384,16192,16111,16044,16087,16181,16346,16574,16871,17232,17654,18151,18721,19333,19951,20638,21380,22124,22870,23586,24293,24960,25556,26100,26530,26856,27106,27218,27229,27136,26905,26587,26187,25696,25145,24537,23902,23245,22581,21931,21291,20681,20094,19550,19056,18565,18157,17792,17460,17175,16906,16669,16477,16265,16065,15873,15689,15527,15385,15261,15173,15101,15029,14992,14976,14973,14965,15008,15026,15042,15088,15129,15165,15221,15234,15253,15272,15285,15287,15296,15323,15306,15258,15193,15147,15049,14975,14868,14725,14583,14401,14226,14007,13797,13559,13300,13030,12741,12446,12152,11860,11568,11301,11034,10810,10561,10301,10007,9690,9372,9085,8852,8643,8473,8306,8180,8083,8001,7935,7876,7824,7714,7571,7391,7251,7119,7006,6901,6835,6762,6711,6669,6646,6631,6621,6606,6631,6621,6473,6169,5736,5105,21.6,21.7,22.2,1567777,0.3,12.2,11.9,5.0,464,-1.00,-1.00,57.5228,-18.953293,0.000587,,,,,55 +SATSLF0720,2024246,5.261654,4.07,0.0570,0.1031,0.0180,0.00,16142,649,1,705,697,699,716,715,717,709,709,722,720,715,725,758,881,1211,1937,3124,4515,5761,6697,7330,7794,8231,8677,9191,9813,10562,11433,12429,13554,14722,15878,17009,17960,18692,19125,19266,19069,18685,18154,17554,16987,16513,16169,15936,15870,15953,16200,16604,17187,17921,18839,19905,21116,22462,23894,25380,26882,28290,29556,30540,31289,31681,31669,31353,30693,29778,28733,27475,26302,25129,24045,23048,22194,21451,20841,20365,19990,19686,19527,19441,19461,19542,19742,19995,20340,20785,21297,21861,22499,23172,23805,24423,24980,25463,25838,26099,26151,26032,25754,25257,24621,23897,23115,22238,21349,20512,19741,19042,18402,17833,17339,16946,16622,16379,16208,16097,16058,16083,16182,16329,16560,16855,17218,17645,18139,18717,19319,19955,20628,21346,22094,22851,23554,24267,24926,25521,26093,26514,26837,27082,27195,27201,27111,26903,26561,26184,25676,25122,24525,23883,23245,22577,21915,21275,20672,20065,19520,19025,18558,18139,17777,17446,17161,16907,16666,16458,16256,16061,15879,15685,15513,15374,15261,15168,15075,15009,14973,14949,14950,14950,14971,15015,15037,15077,15102,15157,15217,15227,15233,15245,15246,15261,15299,15301,15298,15249,15174,15125,15038,14953,14853,14716,14569,14390,14199,13999,13792,13561,13304,13024,12744,12437,12143,11836,11544,11287,11040,10806,10577,10289,9994,9670,9375,9077,8835,8628,8449,8305,8176,8053,7971,7905,7857,7800,7712,7574,7410,7242,7118,7010,6907,6825,6745,6701,6661,6634,6613,6593,6597,6620,6621,6470,6171,5733,5120,21.6,21.7,22.3,1567778,0.4,12.2,11.9,5.0,474,-1.00,-1.00,57.3257,-18.870699,0.000611,,,,,98 +SATSLF0720,2024246,5.261907,4.25,0.0596,0.1037,0.0184,0.00,16133,649,1,703,710,720,710,699,710,717,717,713,727,725,721,770,892,1221,1946,3136,4501,5746,6661,7300,7782,8197,8639,9162,9789,10538,11412,12407,13524,14690,15837,16947,17901,18629,19066,19201,19018,18644,18098,17510,16947,16500,16134,15913,15847,15925,16173,16590,17161,17906,18812,19872,21097,22397,23856,25337,26827,28237,29509,30498,31245,31650,31641,31306,30663,29741,28688,27460,26265,25107,24029,23025,22167,21435,20825,20343,19949,19659,19511,19413,19432,19532,19720,19991,20332,20757,21280,21847,22473,23118,23779,24389,24971,25460,25810,26078,26122,25997,25724,25251,24602,23877,23097,22222,21355,20496,19751,19034,18371,17819,17345,16939,16630,16377,16209,16104,16049,16071,16163,16333,16554,16858,17229,17650,18121,18724,19321,19948,20631,21367,22105,22852,23552,24271,24922,25514,26067,26507,26828,27061,27187,27197,27101,26886,26558,26162,25670,25085,24511,23862,23221,22595,21921,21271,20675,20087,19525,19029,18549,18151,17781,17443,17159,16896,16676,16460,16267,16061,15869,15676,15502,15360,15246,15148,15075,15001,14973,14961,14964,14973,15011,15009,15051,15097,15121,15178,15229,15227,15237,15255,15253,15276,15290,15287,15282,15229,15176,15110,15042,14949,14871,14722,14573,14410,14229,14002,13784,13541,13286,13019,12750,12449,12153,11851,11568,11292,11047,10794,10571,10296,9987,9667,9357,9081,8841,8629,8458,8315,8168,8083,8004,7926,7867,7805,7706,7559,7385,7232,7113,6999,6901,6823,6766,6703,6669,6650,6634,6625,6602,6627,6615,6472,6163,5737,5119,21.6,21.8,22.3,1567779,0.4,12.3,11.9,5.0,474,-1.00,-1.00,57.2589,-18.819366,0.000525,,,,,168 +SATSLF0720,2024246,5.262163,4.21,0.0589,0.1033,0.0182,0.00,16142,649,1,701,695,711,706,723,720,724,720,731,733,731,733,770,887,1216,1949,3121,4516,5751,6691,7336,7802,8215,8661,9186,9799,10530,11410,12410,13513,14699,15871,16979,17949,18657,19099,19225,19020,18660,18125,17534,16969,16504,16155,15925,15872,15936,16195,16581,17165,17910,18825,19891,21115,22421,23867,25347,26839,28266,29509,30491,31256,31657,31645,31328,30693,29752,28695,27457,26275,25105,24039,23035,22168,21440,20830,20350,19957,19674,19528,19433,19442,19553,19747,19992,20331,20771,21294,21858,22469,23135,23781,24405,24985,25449,25826,26096,26163,26037,25734,25266,24622,23897,23094,22233,21357,20513,19742,19037,18381,17815,17351,16939,16621,16384,16209,16116,16057,16087,16177,16326,16567,16867,17221,17643,18155,18717,19329,19954,20647,21387,22114,22856,23572,24290,24942,25529,26077,26517,26851,27085,27189,27223,27122,26901,26571,26173,25672,25120,24522,23891,23229,22581,21906,21280,20677,20089,19536,19051,18558,18161,17793,17459,17175,16910,16665,16464,16247,16079,15881,15686,15520,15378,15267,15165,15085,15013,14993,14973,14970,14973,15003,15014,15053,15074,15112,15163,15220,15225,15247,15265,15272,15290,15305,15312,15318,15260,15185,15118,15043,14955,14869,14720,14583,14416,14221,14001,13792,13559,13293,13023,12741,12448,12155,11861,11580,11304,11058,10796,10568,10302,10002,9678,9379,9085,8840,8628,8457,8313,8177,8089,8003,7933,7877,7795,7707,7587,7401,7261,7125,7009,6912,6828,6767,6718,6666,6653,6632,6631,6620,6644,6637,6477,6174,5734,5116,21.7,21.7,22.3,1567780,0.0,12.2,11.9,5.0,477,-1.00,-1.00,57.0337,-18.732078,0.000532,,,,,132 +SATSLF0720,2024246,5.262420,4.21,0.0590,0.1044,0.0187,0.00,16113,649,1,696,700,703,693,692,697,713,715,737,727,742,749,784,891,1221,1956,3116,4491,5738,6668,7318,7794,8212,8657,9175,9795,10528,11402,12413,13497,14685,15862,16957,17909,18630,19057,19209,19010,18636,18114,17517,16957,16497,16128,15914,15825,15917,16149,16563,17145,17898,18797,19862,21085,22402,23845,25320,26787,28217,29460,30455,31197,31607,31608,31274,30627,29698,28644,27418,26232,25068,24001,22997,22133,21415,20801,20317,19917,19649,19470,19385,19408,19494,19697,19961,20304,20737,21245,21825,22436,23101,23755,24359,24934,25405,25774,26030,26083,25963,25685,25213,24562,23851,23060,22196,21325,20486,19718,19017,18358,17792,17339,16929,16603,16344,16183,16069,16027,16059,16141,16310,16530,16817,17211,17629,18110,18679,19292,19916,20611,21336,22080,22805,23532,24225,24878,25457,26051,26472,26784,27046,27141,27145,27067,26842,26518,26121,25629,25061,24471,23838,23197,22542,21873,21243,20621,20043,19476,18997,18525,18141,17737,17427,17141,16870,16639,16433,16228,16049,15849,15654,15484,15354,15249,15149,15072,14992,14945,14923,14917,14922,14957,14976,15022,15073,15080,15155,15199,15213,15206,15235,15234,15248,15267,15274,15264,15213,15161,15099,15017,14952,14853,14710,14544,14394,14208,13984,13768,13529,13264,12993,12709,12413,12135,11832,11553,11281,11041,10789,10561,10288,9987,9675,9349,9069,8812,8606,8450,8293,8167,8048,7991,7901,7858,7778,7701,7561,7377,7222,7115,6986,6890,6818,6745,6691,6653,6638,6629,6618,6605,6624,6614,6464,6153,5729,5105,21.7,21.8,22.3,1567781,0.0,12.2,11.9,5.0,475,-1.00,-1.00,56.8563,-18.628480,0.000536,,,,,86 +SATSLF0720,2024246,5.262672,4.13,0.0579,0.1058,0.0198,0.00,16058,649,1,705,686,699,701,703,706,721,722,720,711,712,737,758,886,1209,1945,3106,4472,5707,6631,7256,7740,8150,8587,9099,9727,10464,11322,12312,13417,14584,15737,16841,17799,18524,18950,19085,18916,18525,18017,17413,16861,16402,16025,15809,15730,15817,16055,16480,17067,17801,18705,19765,20985,22285,23731,25194,26653,28072,29303,30308,31053,31447,31447,31140,30485,29561,28521,27303,26133,24968,23891,22891,22049,21325,20714,20236,19856,19569,19412,19323,19333,19433,19621,19879,20236,20649,21179,21730,22347,23015,23661,24282,24861,25330,25694,25960,26001,25868,25607,25128,24501,23781,22999,22129,21248,20423,19637,18945,18299,17738,17269,16847,16542,16301,16138,16027,15997,16018,16117,16269,16508,16785,17159,17589,18058,18643,19236,19872,20553,21277,22017,22744,23459,24151,24827,25417,25985,26402,26741,26972,27075,27081,26996,26776,26466,26062,25569,24994,24416,23760,23121,22479,21824,21198,20590,20004,19440,18952,18474,18069,17703,17383,17093,16821,16581,16386,16192,16009,15810,15615,15453,15323,15208,15104,15033,14939,14915,14907,14890,14913,14926,14947,14993,15037,15047,15111,15160,15166,15178,15186,15182,15222,15237,15251,15244,15198,15143,15065,14998,14899,14810,14654,14519,14357,14165,13963,13745,13500,13243,12970,12686,12394,12106,11818,11533,11262,11005,10779,10541,10273,9966,9629,9338,9058,8797,8605,8425,8285,8144,8045,7966,7905,7852,7781,7685,7540,7364,7227,7097,6979,6872,6791,6729,6661,6641,6614,6605,6587,6585,6599,6594,6451,6133,5713,5102,21.7,21.8,22.4,1567781,0.0,12.2,12.0,5.0,475,-1.00,-1.00,58.0979,-19.060205,0.000556,,,,,110 +SATSLF0720,2024246,5.262927,4.23,0.0592,0.1061,0.0197,0.00,16058,649,1,688,697,702,691,711,715,727,724,718,723,726,732,757,882,1205,1939,3107,4487,5719,6645,7282,7756,8161,8587,9115,9733,10468,11324,12321,13427,14605,15768,16857,17809,18520,18964,19082,18907,18514,17977,17411,16845,16398,16034,15813,15749,15827,16070,16473,17057,17789,18711,19770,20968,22279,23728,25194,26673,28087,29334,30327,31059,31450,31444,31120,30487,29572,28517,27299,26125,24971,23900,22890,22038,21316,20706,20243,19861,19569,19406,19311,19319,19434,19628,19881,20234,20653,21180,21744,22356,23010,23652,24269,24843,25344,25693,25963,26007,25890,25604,25149,24498,23776,22990,22133,21253,20403,19629,18935,18281,17726,17270,16866,16541,16285,16126,16018,15985,16009,16094,16261,16475,16779,17141,17572,18061,18642,19240,19883,20565,21273,22002,22758,23458,24160,24807,25397,25972,26397,26730,26961,27064,27083,26985,26763,26456,26061,25562,25001,24413,23771,23124,22474,21803,21195,20581,19986,19433,18944,18477,18070,17710,17373,17082,16829,16589,16389,16182,16002,15801,15616,15444,15308,15178,15091,15016,14938,14913,14897,14893,14896,14931,14955,14993,15035,15066,15117,15157,15172,15190,15189,15198,15220,15229,15239,15239,15189,15129,15067,14983,14903,14810,14672,14521,14353,14163,13947,13736,13512,13245,12980,12693,12407,12106,11801,11521,11255,11008,10759,10539,10277,9965,9662,9330,9047,8819,8583,8432,8274,8138,8051,7953,7879,7830,7767,7691,7543,7371,7216,7098,6977,6878,6806,6737,6675,6635,6637,6617,6601,6611,6629,6613,6453,6151,5725,5086,21.6,21.8,22.4,1567782,0.2,12.2,12.0,5.0,476,-1.00,-1.00,57.8590,-18.962034,0.000579,,,,,57 +SATSLF0720,2024246,5.263181,4.30,0.0603,0.1059,0.0198,0.00,16057,649,1,701,705,702,706,706,710,725,715,731,733,745,752,789,888,1228,1943,3119,4461,5707,6625,7262,7725,8151,8590,9110,9716,10458,11330,12323,13417,14594,15737,16838,17788,18494,18925,19061,18878,18513,17991,17390,16848,16383,16040,15803,15745,15805,16049,16457,17040,17795,18690,19760,20968,22285,23721,25184,26648,28064,29312,30293,31047,31441,31437,31122,30483,29557,28517,27290,26090,24939,23869,22882,22048,21303,20714,20233,19848,19569,19402,19319,19328,19425,19617,19883,20228,20666,21172,21742,22349,23015,23669,24278,24845,25309,25687,25943,25997,25874,25597,25125,24487,23768,22979,22134,21252,20413,19639,18949,18301,17735,17262,16866,16536,16301,16125,16024,15985,16005,16098,16257,16482,16773,17150,17581,18045,18616,19229,19857,20541,21258,22015,22749,23457,24174,24832,25408,25974,26392,26721,26961,27061,27086,26985,26774,26442,26059,25554,24995,24407,23783,23130,22465,21825,21205,20587,20006,19435,18948,18490,18074,17720,17381,17095,16832,16589,16397,16200,16005,15803,15620,15460,15319,15200,15101,15021,14945,14913,14914,14889,14896,14935,14948,14998,15029,15066,15117,15171,15188,15188,15202,15205,15228,15240,15240,15232,15189,15132,15065,14980,14903,14820,14673,14528,14363,14169,13950,13726,13493,13237,12976,12704,12402,12120,11821,11529,11249,11011,10769,10538,10260,9973,9648,9335,9063,8810,8594,8432,8266,8146,8049,7973,7901,7853,7789,7701,7553,7380,7220,7086,6975,6875,6801,6731,6678,6649,6621,6631,6600,6595,6610,6607,6457,6144,5724,5099,21.7,21.8,22.4,1567783,0.2,12.2,12.0,5.0,473,-1.00,-1.00,57.7508,-18.908663,0.000585,,,,,135 +SATSLF0720,2024246,5.263432,4.33,0.0607,0.1051,0.0191,0.00,16087,649,1,707,716,727,718,730,717,715,719,731,721,716,730,777,901,1237,1957,3143,4502,5739,6649,7277,7757,8174,8634,9141,9767,10512,11381,12366,13455,14649,15796,16902,17850,18571,19001,19127,18944,18568,18045,17444,16900,16438,16085,15862,15784,15867,16117,16525,17094,17837,18741,19800,21024,22341,23773,25264,26748,28146,29397,30381,31131,31512,31509,31193,30548,29633,28571,27338,26176,25013,23930,22924,22080,21365,20749,20264,19888,19618,19456,19354,19366,19461,19664,19920,20262,20702,21221,21770,22394,23069,23708,24322,24896,25381,25732,26006,26033,25931,25643,25175,24542,23826,23026,22160,21303,20442,19691,18976,18329,17778,17294,16902,16574,16338,16148,16061,16004,16035,16116,16282,16507,16823,17169,17607,18089,18656,19253,19898,20586,21310,22049,22785,23498,24199,24853,25445,26019,26441,26754,26993,27102,27121,27034,26817,26481,26089,25589,25029,24446,23816,23157,22510,21844,21224,20613,20025,19472,18979,18501,18113,17733,17411,17108,16852,16602,16411,16222,16013,15825,15637,15460,15335,15220,15121,15056,14977,14924,14916,14918,14922,14953,14982,15018,15053,15089,15133,15191,15195,15203,15206,15228,15249,15261,15265,15251,15204,15152,15086,15018,14920,14834,14690,14530,14362,14177,13955,13745,13514,13261,13011,12724,12433,12133,11834,11543,11271,11021,10792,10545,10267,9970,9641,9332,9067,8828,8601,8435,8279,8157,8054,7973,7905,7851,7797,7712,7563,7402,7240,7111,6989,6880,6809,6737,6685,6642,6626,6632,6600,6594,6602,6607,6436,6151,5722,5110,21.7,21.8,22.4,1567784,0.2,12.2,11.9,5.0,466,-1.00,-1.00,57.0346,-18.656776,0.000552,,,,,58 +SATSLF0720,2024246,5.263691,4.21,0.0589,0.1059,0.0203,0.00,16066,649,1,705,709,713,722,721,719,718,720,731,733,737,735,779,895,1209,1943,3114,4484,5722,6634,7283,7761,8181,8621,9152,9764,10494,11365,12337,13449,14626,15781,16891,17847,18561,18996,19129,18950,18568,18037,17445,16885,16427,16061,15843,15779,15851,16104,16519,17085,17825,18727,19777,20994,22311,23765,25221,26701,28107,29341,30333,31089,31489,31489,31157,30488,29591,28533,27313,26142,24999,23910,22931,22075,21333,20731,20269,19856,19569,19423,19321,19332,19455,19620,19875,20227,20657,21188,21761,22369,23052,23684,24290,24858,25329,25700,25970,26027,25902,25616,25129,24485,23778,22998,22129,21239,20414,19628,18946,18304,17750,17274,16871,16557,16298,16137,16043,15987,16009,16093,16267,16504,16770,17138,17573,18062,18617,19239,19864,20545,21269,22012,22750,23450,24164,24814,25402,25942,26374,26709,26946,27048,27072,26980,26764,26451,26065,25563,25000,24401,23767,23118,22480,21824,21186,20570,19994,19437,18944,18471,18071,17707,17379,17095,16827,16589,16392,16188,16009,15805,15610,15453,15306,15195,15101,15014,14961,14924,14899,14901,14907,14923,14951,14985,15027,15051,15111,15165,15166,15182,15191,15196,15243,15254,15239,15232,15184,15124,15049,14978,14901,14792,14657,14525,14338,14167,13958,13728,13505,13232,12974,12699,12397,12101,11819,11522,11258,11017,10787,10533,10279,9972,9653,9332,9053,8821,8601,8419,8270,8137,8050,7966,7897,7845,7799,7690,7547,7382,7218,7095,6965,6871,6799,6737,6679,6654,6629,6630,6600,6595,6609,6601,6461,6156,5736,5101,21.7,21.9,22.5,1567785,0.3,12.2,11.9,5.0,472,-1.00,-1.00,57.0781,-18.650522,0.000525,,,,,55 +SATSLF0720,2024246,5.263944,4.14,0.0580,0.1063,0.0205,0.00,16049,649,1,707,721,718,728,730,705,726,717,722,720,730,730,759,875,1202,1932,3094,4465,5701,6641,7288,7744,8167,8610,9113,9736,10483,11341,12322,13447,14608,15760,16854,17819,18538,18978,19099,18907,18557,18013,17424,16864,16407,16053,15818,15757,15833,16067,16487,17070,17792,18696,19745,20974,22281,23720,25191,26680,28077,29314,30315,31053,31434,31440,31113,30464,29554,28511,27282,26112,24954,23883,22893,22028,21305,20706,20233,19829,19559,19399,19304,19336,19412,19607,19866,20223,20644,21157,21714,22338,22997,23650,24264,24832,25310,25678,25941,25995,25869,25595,25122,24484,23753,22960,22096,21225,20395,19621,18941,18277,17730,17265,16855,16547,16299,16125,16001,15971,16000,16081,16253,16485,16758,17133,17562,18056,18613,19237,19856,20540,21265,21981,22728,23434,24138,24792,25363,25943,26375,26694,26940,27028,27057,26965,26742,26402,26035,25522,24980,24400,23770,23110,22468,21798,21171,20553,19965,19413,18912,18458,18049,17685,17377,17082,16829,16578,16374,16187,15982,15781,15611,15437,15293,15190,15098,15014,14944,14909,14894,14897,14897,14917,14937,14973,15012,15036,15092,15151,15157,15168,15173,15186,15202,15222,15223,15208,15161,15103,15040,14953,14889,14795,14660,14498,14334,14151,13937,13734,13491,13226,12948,12678,12378,12089,11798,11513,11237,10989,10743,10519,10265,9960,9645,9318,9031,8789,8576,8409,8262,8139,8046,7981,7888,7838,7769,7686,7545,7373,7220,7092,6976,6873,6795,6733,6669,6639,6620,6602,6599,6578,6613,6602,6444,6140,5730,5101,21.7,21.9,22.5,1567786,0.0,12.2,12.0,5.0,472,-1.00,-1.00,57.4920,-18.801091,0.000550,,,,,89 +SATSLF0720,2024246,5.264195,4.09,0.0573,0.1067,0.0209,0.00,16036,649,1,702,706,718,704,713,709,735,716,720,733,730,749,788,889,1217,1947,3109,4471,5710,6631,7287,7749,8164,8606,9122,9733,10491,11338,12344,13432,14599,15749,16852,17809,18533,18952,19085,18894,18531,17995,17400,16857,16409,16033,15803,15741,15816,16071,16468,17050,17784,18682,19744,20957,22261,23692,25161,26645,28058,29298,30292,31040,31432,31438,31127,30469,29550,28494,27282,26101,24935,23861,22850,22017,21289,20665,20197,19810,19541,19383,19286,19305,19397,19589,19851,20192,20617,21156,21698,22321,22976,23635,24234,24821,25285,25656,25920,25962,25853,25574,25093,24469,23752,22950,22090,21228,20384,19623,18917,18279,17725,17261,16841,16526,16281,16101,16013,15950,15969,16069,16221,16459,16752,17112,17544,18031,18597,19207,19839,20509,21230,21961,22693,23412,24129,24770,25376,25917,26352,26674,26908,27003,27024,26925,26709,26396,26000,25511,24947,24370,23739,23096,22442,21787,21146,20547,19963,19393,18899,18456,18042,17667,17346,17073,16804,16570,16363,16168,15969,15769,15581,15426,15274,15173,15065,14987,14906,14883,14862,14882,14882,14890,14913,14962,15005,15016,15078,15134,15153,15171,15188,15185,15199,15215,15215,15209,15151,15094,15027,14953,14872,14782,14645,14501,14324,14131,13917,13721,13473,13223,12961,12673,12373,12089,11794,11509,11232,10983,10739,10516,10249,9939,9623,9315,9030,8780,8573,8419,8258,8129,8026,7956,7888,7822,7759,7665,7528,7352,7208,7077,6970,6868,6790,6725,6663,6644,6613,6606,6600,6577,6603,6593,6437,6134,5712,5083,21.7,21.9,22.5,1567787,0.0,12.3,12.0,5.0,475,-1.00,-1.00,58.0581,-19.030410,0.000517,,,,,97 +SATSLF0720,2024246,5.264450,4.25,0.0595,0.1077,0.0212,0.00,16010,649,1,717,696,715,709,727,722,735,745,741,735,733,751,769,883,1215,1937,3096,4474,5703,6613,7250,7734,8133,8587,9104,9725,10445,11304,12301,13390,14553,15705,16791,17735,18464,18890,19033,18855,18466,17945,17357,16811,16340,15991,15774,15690,15784,16022,16434,17016,17732,18632,19699,20901,22200,23643,25101,26578,27986,29226,30224,30974,31370,31362,31025,30384,29462,28409,27182,26016,24869,23812,22816,21956,21235,20643,20161,19778,19517,19345,19242,19259,19368,19540,19827,20157,20593,21102,21656,22271,22939,23579,24185,24765,25233,25597,25869,25909,25789,25504,25046,24413,23699,22919,22053,21196,20352,19584,18877,18245,17686,17206,16805,16504,16249,16072,15972,15931,15956,16053,16219,16433,16721,17079,17518,18003,18560,19169,19799,20485,21197,21915,22665,23372,24072,24741,25321,25872,26304,26622,26871,26976,26995,26897,26689,26350,25973,25469,24912,24327,23709,23057,22416,21753,21133,20518,19941,19373,18877,18415,18019,17642,17312,17034,16769,16531,16334,16136,15955,15764,15592,15413,15283,15157,15053,14983,14914,14883,14864,14865,14866,14897,14921,14958,14991,15016,15060,15115,15122,15136,15147,15154,15189,15208,15209,15205,15151,15076,15019,14950,14857,14773,14632,14481,14317,14136,13927,13702,13477,13210,12938,12651,12363,12073,11778,11500,11240,10985,10744,10503,10247,9949,9634,9317,9041,8805,8578,8407,8242,8119,8015,7952,7881,7831,7762,7677,7541,7346,7207,7087,6982,6870,6787,6729,6665,6643,6601,6595,6588,6578,6583,6587,6442,6144,5705,5091,21.7,21.9,22.6,1567788,0.3,12.2,12.0,5.0,471,-1.00,-1.00,57.5813,-18.781232,0.000606,,,,,93 +SATSDF0720,2024246,5.509138,0.00,0.0000,0.0000,0.0000,0.00,648,0,1,627,629,626,632,618,631,618,627,620,635,613,623,617,627,625,638,634,633,641,637,629,630,647,651,657,653,659,657,653,655,662,663,644,670,666,648,654,648,655,652,652,645,645,649,648,641,655,650,657,653,653,670,657,651,653,648,641,647,657,657,658,659,662,670,665,663,653,657,660,650,661,650,657,662,657,662,650,641,646,641,631,635,651,663,657,656,663,651,655,663,661,650,647,653,653,653,648,644,640,635,651,646,637,647,643,645,643,646,658,649,666,656,643,651,657,641,650,637,638,665,646,655,652,647,650,647,651,639,643,636,655,648,650,657,651,643,647,659,647,647,624,631,651,654,649,643,661,662,651,648,645,651,644,647,646,651,653,660,650,642,645,644,649,634,647,654,653,655,664,664,660,659,654,658,645,652,649,649,656,663,645,648,653,629,643,631,633,647,640,645,654,659,649,648,648,650,651,637,645,641,652,650,635,645,659,658,658,649,640,640,648,661,656,661,653,645,644,645,629,627,626,635,657,645,647,663,650,641,634,636,659,645,650,641,643,650,654,648,649,649,644,648,658,642,651,653,641,649,647,653,663,666,658,665,661,481,0.0,0.0,0.0,1567787,0.2,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,42 +SATSLF0720,2024246,5.509695,4.13,0.0579,0.1014,0.0170,0.00,16199,648,1,700,706,681,704,712,717,725,723,719,711,715,717,767,893,1221,1977,3138,4535,5797,6710,7357,7841,8260,8704,9229,9848,10607,11486,12486,13605,14780,15949,17053,18020,18744,19181,19323,19134,18759,18218,17633,17058,16589,16217,16001,15928,16005,16253,16664,17254,18004,18905,19979,21204,22538,23991,25469,26954,28382,29636,30631,31389,31793,31789,31451,30810,29893,28812,27587,26406,25218,24153,23131,22281,21550,20949,20450,20064,19781,19622,19514,19532,19632,19816,20077,20423,20853,21379,21945,22570,23240,23885,24500,25073,25558,25936,26200,26241,26113,25813,25340,24696,23981,23171,22295,21419,20574,19803,19097,18437,17869,17395,17015,16685,16437,16258,16151,16124,16149,16225,16382,16615,16914,17268,17715,18192,18773,19375,20028,20725,21451,22196,22930,23661,24353,25025,25617,26187,26618,26945,27189,27285,27314,27205,26984,26665,26262,25777,25210,24613,23978,23325,22659,21991,21354,20736,20156,19584,19107,18625,18215,17840,17511,17238,16950,16709,16492,16311,16117,15910,15734,15573,15432,15323,15209,15125,15059,15022,15009,15000,15002,15037,15054,15095,15134,15152,15201,15260,15281,15297,15315,15317,15325,15347,15349,15325,15283,15213,15157,15077,14994,14893,14759,14614,14442,14264,14037,13830,13575,13299,13051,12761,12489,12192,11893,11593,11320,11069,10823,10593,10318,10030,9700,9397,9105,8865,8660,8494,8343,8199,8098,8010,7930,7891,7821,7733,7591,7416,7261,7130,7030,6925,6855,6778,6730,6679,6667,6659,6637,6633,6645,6644,6501,6193,5763,5144,21.6,21.6,22.0,1567788,0.5,12.2,11.9,5.0,598,-1.00,-1.00,56.8065,-18.719808,0.000497,,,,,171 +SATSLF0720,2024246,5.509877,4.07,0.0570,0.1006,0.0163,0.00,16215,648,1,690,686,700,689,694,705,715,711,723,726,724,714,760,873,1206,1949,3125,4531,5785,6728,7369,7841,8273,8720,9238,9865,10616,11495,12512,13609,14794,15973,17088,18059,18770,19226,19358,19179,18796,18251,17653,17083,16637,16257,16024,15953,16025,16265,16692,17270,18038,18953,20021,21262,22585,24029,25511,27013,28437,29704,30693,31449,31850,31861,31526,30880,29930,28873,27643,26453,25263,24187,23184,22324,21587,20966,20485,20098,19802,19645,19548,19572,19677,19849,20099,20461,20897,21413,21991,22600,23257,23914,24540,25108,25578,25950,26218,26273,26139,25859,25373,24739,23997,23188,22334,21465,20610,19835,19132,18464,17918,17429,17027,16693,16445,16275,16161,16131,16149,16233,16409,16638,16924,17305,17725,18223,18790,19403,20046,20747,21472,22215,22968,23669,24389,25042,25649,26208,26641,26944,27203,27304,27328,27232,27018,26675,26294,25783,25216,24617,24000,23332,22665,21993,21371,20761,20162,19605,19110,18627,18234,17861,17540,17233,16971,16717,16519,16321,16117,15925,15736,15570,15428,15325,15224,15147,15076,15042,15017,15002,15012,15031,15058,15091,15131,15176,15205,15283,15293,15306,15294,15293,15315,15344,15339,15341,15292,15245,15180,15103,15015,14905,14759,14624,14441,14251,14040,13821,13586,13325,13060,12774,12473,12172,11885,11588,11314,11065,10825,10599,10329,10021,9710,9384,9111,8857,8652,8478,8328,8183,8097,8005,7933,7888,7832,7744,7601,7419,7266,7132,7011,6905,6819,6755,6708,6661,6663,6651,6635,6618,6645,6626,6483,6173,5749,5133,21.6,21.6,22.1,1567789,0.5,12.2,12.0,5.0,493,-1.00,-1.00,56.9965,-18.835585,0.000576,,,,,177 +SATSLF0720,2024246,5.510132,3.95,0.0554,0.1007,0.0168,0.00,16221,648,1,690,711,702,709,718,708,715,720,714,724,717,732,759,877,1211,1959,3131,4545,5801,6731,7379,7850,8287,8729,9253,9883,10629,11497,12519,13637,14833,15996,17114,18075,18801,19242,19373,19193,18805,18281,17669,17107,16640,16249,16048,15972,16049,16279,16687,17274,18049,18949,20020,21253,22574,24032,25534,27014,28457,29701,30713,31471,31867,31868,31537,30893,29970,28897,27641,26459,25283,24183,23185,22318,21575,20969,20473,20089,19812,19649,19545,19552,19649,19849,20103,20461,20907,21413,21990,22604,23285,23924,24555,25117,25603,25969,26246,26273,26150,25868,25384,24729,24011,23226,22347,21467,20620,19834,19143,18476,17901,17429,17015,16685,16439,16265,16183,16137,16167,16253,16423,16648,16937,17331,17738,18229,18793,19410,20040,20729,21465,22217,22973,23684,24392,25053,25637,26217,26641,26957,27210,27302,27325,27227,27018,26698,26304,25798,25227,24632,23984,23343,22688,22017,21373,20757,20154,19609,19106,18631,18221,17854,17525,17240,16968,16734,16519,16306,16127,15934,15734,15570,15430,15319,15223,15162,15081,15033,15027,15012,15020,15049,15066,15097,15138,15173,15211,15259,15271,15291,15301,15313,15337,15363,15350,15341,15297,15234,15164,15084,15007,14918,14778,14642,14450,14263,14053,13825,13591,13317,13062,12766,12475,12181,11873,11591,11314,11073,10830,10599,10329,10026,9692,9372,9107,8865,8652,8476,8321,8197,8100,8019,7970,7901,7830,7741,7597,7418,7256,7125,7013,6930,6842,6784,6732,6694,6675,6655,6630,6625,6629,6635,6484,6180,5751,5129,21.6,21.6,22.1,1567790,0.3,12.2,11.9,5.0,482,-1.00,-1.00,57.2343,-18.941556,0.000567,,,,,193 +SATSLF0720,2024246,5.510385,4.17,0.0585,0.1006,0.0164,0.00,16226,648,1,695,697,709,712,717,729,731,732,728,735,722,733,767,885,1220,1966,3150,4553,5797,6712,7373,7851,8265,8735,9245,9876,10617,11497,12503,13623,14816,15985,17093,18061,18806,19229,19375,19178,18802,18254,17655,17085,16617,16252,16020,15959,16050,16297,16699,17307,18042,18953,20039,21257,22571,24045,25521,27009,28445,29693,30706,31458,31873,31865,31530,30882,29957,28881,27639,26440,25296,24209,23195,22321,21589,20957,20478,20081,19803,19645,19549,19571,19657,19851,20113,20465,20904,21437,21989,22613,23273,23933,24534,25111,25600,25949,26232,26278,26162,25880,25394,24742,24035,23213,22334,21473,20624,19856,19142,18490,17929,17441,17046,16704,16462,16288,16189,16136,16165,16242,16421,16643,16949,17325,17746,18223,18797,19411,20057,20741,21475,22230,22967,23694,24392,25061,25649,26219,26653,26977,27221,27321,27321,27232,27014,26686,26304,25809,25232,24653,24004,23341,22686,22027,21386,20773,20178,19614,19123,18650,18237,17869,17544,17242,16974,16728,16531,16320,16128,15931,15763,15581,15443,15325,15222,15144,15082,15041,15022,15020,15040,15065,15080,15110,15156,15178,15221,15272,15278,15305,15303,15320,15345,15361,15361,15358,15312,15249,15176,15105,15029,14919,14785,14640,14469,14273,14056,13835,13591,13328,13072,12784,12487,12197,11896,11613,11338,11103,10841,10612,10342,10041,9712,9400,9114,8865,8669,8485,8316,8192,8114,8029,7965,7917,7849,7762,7605,7430,7275,7146,7035,6937,6837,6784,6730,6690,6662,6659,6653,6646,6662,6663,6513,6202,5779,5141,21.6,21.6,22.2,1567791,0.1,12.2,11.9,5.0,479,-1.00,-1.00,56.5332,-18.646275,0.000559,,,,,207 +SATSLF0720,2024246,5.510636,4.18,0.0586,0.1007,0.0170,0.00,16222,648,1,697,709,724,697,711,725,722,712,715,727,729,741,765,879,1222,1957,3147,4537,5799,6725,7383,7849,8263,8715,9222,9863,10615,11501,12505,13617,14801,15966,17084,18051,18792,19226,19348,19168,18784,18267,17665,17097,16629,16250,16005,15947,16027,16285,16693,17294,18039,18952,20027,21257,22573,24035,25515,27002,28437,29692,30706,31453,31866,31853,31534,30861,29936,28872,27629,26433,25283,24204,23187,22320,21584,20981,20484,20097,19808,19638,19545,19565,19653,19853,20093,20479,20907,21416,21986,22608,23269,23924,24522,25107,25589,25961,26237,26290,26167,25881,25408,24746,24025,23222,22349,21477,20613,19843,19138,18465,17920,17444,17033,16701,16450,16285,16183,16137,16165,16257,16421,16650,16951,17319,17735,18233,18814,19421,20065,20753,21461,22226,22971,23697,24392,25048,25650,26213,26642,26963,27205,27314,27325,27236,27024,26705,26320,25797,25226,24627,23992,23345,22681,22009,21383,20771,20176,19605,19111,18638,18232,17862,17529,17236,16985,16732,16526,16322,16119,15940,15746,15588,15429,15337,15229,15157,15085,15042,15027,15025,15025,15047,15063,15107,15134,15169,15209,15275,15293,15314,15317,15335,15353,15370,15360,15357,15293,15229,15157,15088,15016,14913,14791,14639,14465,14280,14052,13833,13605,13334,13063,12788,12497,12212,11901,11601,11331,11075,10842,10605,10331,10033,9700,9403,9121,8861,8656,8471,8321,8199,8087,8023,7941,7896,7834,7752,7605,7416,7271,7137,7021,6914,6834,6750,6715,6682,6665,6665,6643,6644,6665,6647,6502,6185,5758,5138,21.6,21.6,22.2,1567792,0.5,12.2,12.0,5.0,480,-1.00,-1.00,56.5219,-18.636067,0.000586,,,,,204 +SATSLF0720,2024246,5.510891,4.04,0.0566,0.1021,0.0172,0.00,16189,648,1,696,704,696,705,705,710,709,709,713,717,715,731,765,889,1217,1954,3143,4533,5810,6738,7369,7840,8269,8721,9230,9851,10603,11482,12485,13587,14779,15957,17066,18029,18763,19196,19337,19154,18769,18227,17628,17054,16594,16221,16004,15941,16010,16262,16678,17259,17996,18907,19979,21190,22519,23965,25462,26949,28381,29637,30657,31386,31797,31797,31458,30807,29873,28818,27581,26389,25212,24129,23114,22267,21516,20919,20441,20037,19749,19585,19483,19500,19603,19805,20069,20405,20846,21371,21943,22561,23225,23879,24485,25050,25544,25897,26152,26215,26094,25809,25339,24693,23955,23181,22293,21417,20578,19802,19093,18433,17872,17404,16994,16662,16414,16252,16149,16103,16125,16219,16392,16609,16902,17277,17702,18195,18763,19378,20021,20702,21437,22168,22914,23626,24330,24997,25572,26158,26586,26914,27147,27250,27259,27177,26953,26625,26242,25746,25180,24586,23949,23303,22650,21970,21349,20728,20125,19582,19076,18599,18202,17818,17483,17209,16954,16698,16488,16285,16110,15924,15721,15545,15415,15289,15193,15136,15061,15001,14986,14984,14978,15010,15031,15063,15100,15147,15194,15264,15269,15269,15305,15304,15321,15338,15333,15314,15269,15214,15149,15084,14992,14894,14764,14609,14418,14238,14029,13818,13579,13302,13035,12754,12454,12157,11873,11585,11314,11057,10818,10570,10314,10009,9702,9385,9089,8843,8645,8453,8315,8172,8090,8007,7935,7880,7816,7739,7580,7411,7255,7133,7013,6917,6842,6773,6728,6694,6658,6655,6625,6619,6622,6617,6485,6169,5734,5131,21.6,21.6,22.2,1567793,0.5,12.2,11.9,5.0,481,-1.00,-1.00,56.8353,-18.729001,0.000517,,,,,41 +SATSLF0720,2024246,5.511143,4.07,0.0570,0.1029,0.0178,0.00,16157,648,1,695,695,705,701,706,707,712,717,720,717,723,727,762,878,1219,1961,3136,4520,5763,6699,7336,7811,8241,8682,9201,9824,10577,11453,12460,13556,14749,15915,17018,17965,18690,19132,19269,19083,18711,18169,17585,17026,16565,16183,15966,15885,15965,16197,16603,17198,17943,18867,19915,21163,22485,23926,25413,26884,28320,29570,30567,31319,31711,31721,31393,30738,29804,28743,27521,26346,25173,24090,23069,22227,21474,20872,20394,19989,19702,19540,19447,19456,19562,19776,20028,20372,20811,21312,21878,22504,23169,23827,24439,25003,25485,25845,26109,26157,26053,25769,25285,24642,23921,23120,22244,21369,20534,19748,19045,18400,17833,17376,16949,16629,16384,16214,16110,16075,16109,16201,16365,16569,16883,17236,17659,18155,18714,19335,19978,20667,21397,22129,22875,23590,24292,24957,25553,26109,26556,26880,27104,27211,27208,27126,26913,26592,26193,25713,25134,24557,23912,23271,22609,21945,21293,20696,20100,19536,19053,18571,18173,17803,17475,17194,16912,16662,16468,16251,16067,15869,15683,15515,15369,15241,15159,15089,15029,14982,14966,14963,14990,14990,15021,15053,15085,15133,15187,15233,15247,15261,15255,15271,15289,15312,15309,15289,15254,15176,15131,15053,14961,14867,14725,14581,14396,14219,14004,13773,13549,13290,13024,12737,12439,12159,11858,11577,11306,11061,10811,10565,10303,10009,9684,9372,9081,8833,8620,8450,8285,8184,8083,8002,7928,7883,7817,7723,7573,7397,7230,7115,6985,6899,6813,6756,6715,6670,6651,6643,6621,6617,6635,6619,6473,6161,5735,5118,21.6,21.6,22.2,1567794,0.3,12.2,12.0,5.0,476,-1.00,-1.00,57.2839,-18.874478,0.000570,,,,,61 +SATSLF0720,2024246,5.511400,4.13,0.0579,0.1030,0.0180,0.00,16151,648,1,704,696,685,699,709,701,711,723,724,733,737,724,759,887,1207,1955,3141,4502,5765,6684,7323,7801,8224,8672,9169,9819,10554,11429,12417,13527,14716,15886,16992,17945,18681,19109,19258,19054,18689,18162,17561,17013,16538,16161,15934,15864,15950,16195,16601,17184,17940,18842,19911,21133,22455,23913,25398,26868,28292,29563,30541,31293,31685,31677,31368,30697,29799,28730,27489,26309,25149,24064,23058,22218,21492,20868,20391,19994,19704,19537,19442,19450,19569,19753,20013,20369,20794,21321,21885,22527,23164,23806,24437,25013,25498,25856,26120,26155,26041,25757,25286,24646,23915,23131,22239,21359,20519,19762,19048,18394,17834,17374,16957,16637,16384,16212,16101,16069,16090,16181,16349,16574,16869,17246,17665,18165,18729,19330,19971,20657,21386,22147,22883,23586,24284,24945,25542,26101,26523,26850,27093,27194,27220,27120,26909,26597,26194,25696,25131,24530,23907,23257,22593,21929,21293,20682,20096,19541,19045,18560,18165,17800,17467,17173,16898,16668,16468,16272,16056,15879,15685,15522,15380,15266,15165,15095,15017,14993,14965,14969,14962,14995,15023,15060,15101,15136,15178,15232,15241,15251,15265,15266,15285,15288,15289,15286,15238,15175,15123,15047,14955,14860,14728,14577,14409,14225,13993,13783,13552,13308,13021,12743,12439,12152,11861,11557,11296,11044,10811,10573,10304,10005,9677,9362,9085,8837,8629,8461,8312,8169,8066,7987,7911,7868,7804,7706,7569,7386,7235,7098,7005,6901,6838,6757,6706,6669,6649,6639,6626,6618,6638,6625,6466,6163,5739,5115,21.6,21.7,22.2,1567795,0.0,12.2,12.0,5.0,481,-1.00,-1.00,57.1795,-18.815373,0.000583,,,,,210 +SATSLF0720,2024246,5.511654,4.00,0.0561,0.1030,0.0183,0.00,16145,648,1,695,711,708,719,724,722,729,735,733,735,721,743,777,900,1221,1961,3128,4519,5758,6681,7346,7798,8236,8662,9207,9797,10537,11417,12419,13521,14697,15861,16993,17937,18658,19114,19253,19061,18677,18151,17557,16987,16523,16165,15934,15864,15939,16174,16587,17177,17911,18811,19898,21118,22446,23893,25387,26852,28275,29525,30533,31272,31675,31667,31345,30679,29760,28708,27484,26288,25129,24061,23056,22176,21456,20853,20361,19965,19689,19529,19444,19445,19553,19735,19995,20349,20777,21301,21874,22473,23144,23797,24410,24989,25461,25822,26087,26150,26021,25753,25265,24636,23899,23109,22232,21357,20519,19739,19034,18384,17825,17348,16950,16633,16393,16218,16123,16080,16100,16199,16346,16557,16854,17219,17642,18145,18711,19319,19967,20645,21376,22137,22876,23595,24295,24951,25531,26106,26517,26850,27078,27189,27204,27109,26901,26553,26166,25683,25113,24519,23886,23237,22577,21917,21288,20662,20073,19528,19048,18572,18172,17817,17469,17188,16909,16649,16462,16258,16069,15877,15690,15529,15386,15261,15162,15092,15020,14971,14953,14959,14969,15004,15013,15052,15082,15127,15158,15223,15246,15244,15249,15261,15278,15294,15312,15290,15237,15174,15113,15047,14957,14856,14724,14577,14388,14211,14001,13786,13553,13295,13019,12745,12453,12154,11860,11578,11296,11051,10798,10558,10296,9997,9687,9373,9078,8846,8630,8459,8313,8181,8073,8010,7930,7874,7810,7709,7566,7397,7242,7130,7002,6907,6827,6769,6713,6669,6659,6640,6625,6612,6628,6617,6489,6164,5743,5122,21.6,21.7,22.2,1567796,0.3,12.2,12.0,5.0,479,-1.00,-1.00,57.5705,-18.965379,0.000616,,,,,228 +SATSLF0720,2024246,5.511906,4.13,0.0578,0.1040,0.0187,0.00,16112,648,1,717,706,721,705,711,723,709,706,711,714,720,731,762,873,1205,1966,3141,4528,5765,6672,7320,7787,8213,8653,9177,9797,10533,11419,12413,13517,14680,15857,16955,17907,18641,19069,19186,19026,18640,18097,17511,16946,16498,16128,15891,15831,15897,16151,16551,17149,17881,18794,19859,21077,22403,23848,25321,26803,28212,29460,30441,31201,31604,31609,31282,30637,29706,28645,27409,26237,25067,23989,22997,22133,21415,20805,20320,19936,19643,19495,19402,19402,19499,19694,19937,20293,20735,21267,21820,22443,23112,23745,24353,24921,25387,25758,26043,26098,25972,25685,25216,24574,23857,23065,22185,21319,20478,19707,18997,18357,17808,17326,16922,16605,16345,16171,16064,16021,16043,16136,16307,16537,16832,17196,17621,18098,18672,19277,19923,20612,21326,22077,22817,23533,24242,24893,25464,26043,26463,26781,27027,27134,27137,27057,26827,26507,26115,25628,25063,24468,23835,23182,22526,21869,21258,20637,20059,19484,18993,18519,18119,17753,17423,17145,16865,16616,16421,16210,16032,15848,15658,15497,15352,15236,15139,15058,14987,14951,14925,14921,14939,14954,14985,15022,15069,15081,15146,15205,15217,15224,15232,15229,15240,15285,15278,15258,15214,15155,15098,15021,14938,14842,14694,14557,14372,14196,13960,13767,13525,13254,12979,12702,12419,12124,11826,11555,11280,11036,10785,10554,10277,9982,9652,9350,9055,8817,8606,8438,8288,8149,8053,7978,7911,7860,7795,7709,7572,7390,7238,7100,6982,6887,6807,6747,6705,6674,6637,6643,6620,6618,6642,6632,6472,6172,5734,5119,21.6,21.7,22.3,1567797,0.0,12.2,11.9,5.0,473,-1.00,-1.00,57.3291,-18.826663,0.000581,,,,,99 +SATSLF0720,2024246,5.512162,4.08,0.0572,0.1042,0.0189,0.00,16097,648,1,712,712,692,695,703,706,713,714,717,739,725,724,755,882,1210,1938,3110,4494,5733,6668,7305,7774,8206,8641,9153,9760,10501,11367,12365,13480,14644,15808,16931,17856,18583,19033,19162,18980,18599,18081,17475,16922,16473,16098,15860,15793,15863,16123,16535,17122,17876,18754,19823,21045,22353,23803,25276,26764,28173,29431,30429,31169,31549,31563,31235,30596,29669,28613,27386,26209,25051,23969,22965,22109,21367,20763,20288,19906,19620,19479,19392,19409,19493,19683,19940,20285,20712,21240,21803,22408,23083,23736,24339,24920,25377,25751,26009,26073,25946,25665,25198,24561,23834,23047,22179,21299,20463,19697,18993,18339,17779,17305,16898,16596,16344,16162,16082,16037,16061,16121,16296,16525,16820,17188,17621,18096,18669,19273,19914,20604,21323,22058,22798,23521,24224,24874,25463,26028,26458,26788,27013,27125,27130,27031,26821,26505,26105,25624,25058,24461,23843,23189,22532,21872,21226,20627,20008,19465,18976,18508,18106,17732,17409,17121,16849,16614,16405,16213,16021,15834,15648,15496,15338,15230,15117,15064,14972,14939,14918,14924,14933,14950,14979,15002,15063,15087,15133,15189,15192,15208,15201,15208,15235,15265,15268,15269,15212,15152,15093,15021,14922,14838,14697,14522,14360,14178,13965,13755,13525,13258,13005,12714,12410,12128,11821,11543,11273,11029,10797,10549,10275,9982,9651,9351,9068,8824,8611,8444,8285,8164,8054,7977,7907,7856,7798,7689,7549,7385,7217,7095,6993,6897,6826,6745,6694,6651,6633,6624,6609,6589,6607,6605,6445,6144,5714,5106,21.6,21.7,22.3,1567798,0.0,12.2,11.9,5.0,475,-1.00,-1.00,57.8771,-19.031526,0.000590,,,,,101 +SATSLF0720,2024246,5.512416,4.08,0.0571,0.1030,0.0183,0.00,16143,648,1,683,698,698,699,705,713,722,725,733,718,723,732,765,890,1209,1940,3107,4500,5755,6682,7343,7824,8234,8674,9189,9817,10558,11421,12409,13530,14710,15856,16989,17956,18677,19121,19256,19067,18686,18151,17557,16983,16535,16149,15931,15861,15937,16197,16594,17187,17925,18844,19906,21131,22445,23894,25381,26876,28301,29550,30541,31287,31680,31692,31349,30713,29789,28717,27473,26286,25113,24037,23043,22199,21469,20846,20369,19971,19702,19534,19445,19451,19560,19729,20009,20333,20775,21290,21848,22474,23143,23793,24416,24993,25469,25835,26088,26139,26024,25751,25262,24633,23922,23120,22240,21367,20512,19739,19042,18389,17821,17363,16947,16627,16384,16209,16104,16065,16089,16178,16339,16564,16859,17218,17655,18147,18704,19321,19957,20651,21387,22114,22857,23576,24277,24941,25527,26087,26503,26835,27081,27177,27195,27117,26904,26565,26170,25677,25112,24516,23880,23232,22572,21909,21285,20683,20080,19526,19031,18557,18152,17783,17456,17169,16889,16672,16457,16251,16064,15873,15693,15508,15363,15248,15151,15083,15001,14969,14954,14957,14961,14973,15003,15044,15087,15110,15168,15211,15227,15235,15263,15268,15291,15313,15301,15283,15227,15172,15112,15035,14953,14853,14730,14597,14412,14209,14000,13769,13542,13268,13001,12741,12448,12144,11860,11570,11301,11041,10797,10557,10296,9994,9677,9365,9085,8849,8633,8467,8301,8165,8057,7991,7909,7867,7792,7708,7563,7400,7250,7114,6990,6898,6814,6745,6689,6666,6637,6631,6635,6618,6639,6637,6474,6150,5723,5107,21.6,21.7,22.4,1567799,0.4,12.2,11.9,5.0,476,-1.00,-1.00,57.3791,-18.893680,0.000654,,,,,62 +SATSLF0720,2024246,5.512667,4.09,0.0573,0.1046,0.0185,0.00,16108,648,1,705,697,711,712,721,726,733,724,733,741,738,733,774,887,1217,1943,3123,4498,5738,6667,7312,7770,8193,8625,9147,9762,10509,11365,12354,13468,14650,15797,16917,17852,18587,19026,19159,18984,18598,18070,17487,16923,16450,16103,15873,15804,15879,16116,16529,17116,17853,18745,19823,21029,22360,23825,25293,26778,28189,29441,30437,31173,31581,31563,31246,30597,29682,28613,27385,26208,25040,23972,22965,22120,21389,20775,20297,19900,19623,19473,19373,19385,19486,19671,19946,20285,20718,21257,21830,22429,23106,23741,24353,24939,25400,25773,26025,26076,25963,25682,25205,24583,23869,23053,22179,21303,20471,19700,19003,18362,17805,17323,16913,16599,16348,16173,16076,16032,16046,16129,16288,16528,16823,17205,17621,18122,18690,19291,19929,20618,21329,22084,22813,23540,24248,24888,25481,26045,26474,26800,27042,27131,27162,27057,26861,26522,26132,25621,25074,24489,23849,23217,22537,21867,21237,20626,20060,19496,19011,18549,18137,17778,17421,17149,16877,16642,16426,16226,16028,15849,15664,15511,15354,15245,15136,15050,14992,14967,14930,14934,14939,14953,14986,15010,15054,15088,15154,15200,15224,15233,15237,15249,15267,15281,15283,15267,15225,15153,15105,15028,14947,14857,14714,14561,14385,14199,13997,13766,13547,13277,13016,12717,12429,12149,11837,11554,11285,11041,10781,10560,10294,9982,9671,9370,9068,8823,8618,8445,8285,8151,8059,7995,7922,7866,7801,7714,7566,7393,7230,7114,6997,6889,6811,6759,6706,6665,6656,6621,6603,6599,6631,6616,6461,6167,5721,5101,21.6,21.8,22.4,1567799,0.2,12.2,11.9,5.0,473,-1.00,-1.00,57.9818,-19.079159,0.000646,,,,,69 +SATSLF0720,2024246,5.512927,4.12,0.0577,0.1047,0.0186,0.00,16110,648,1,716,715,717,712,720,727,724,729,718,735,730,744,781,887,1221,1958,3121,4496,5747,6669,7296,7775,8204,8637,9149,9776,10516,11383,12386,13482,14664,15821,16932,17878,18595,19035,19169,18998,18626,18077,17485,16937,16453,16091,15878,15785,15882,16136,16545,17131,17876,18785,19845,21060,22366,23805,25274,26749,28177,29412,30420,31153,31562,31568,31255,30614,29684,28615,27395,26199,25033,23966,22963,22105,21379,20772,20293,19909,19617,19461,19369,19385,19501,19669,19943,20297,20725,21232,21803,22426,23091,23723,24361,24917,25394,25767,26026,26078,25975,25685,25205,24575,23840,23043,22169,21312,20459,19709,19009,18354,17798,17333,16921,16582,16352,16167,16083,16033,16043,16139,16315,16529,16827,17191,17632,18113,18672,19288,19928,20609,21336,22080,22818,23525,24247,24874,25477,26034,26459,26794,27034,27130,27155,27065,26832,26518,26117,25630,25069,24475,23855,23205,22532,21899,21257,20650,20050,19492,19002,18549,18141,17773,17430,17148,16876,16635,16430,16244,16045,15847,15675,15496,15363,15234,15136,15063,14991,14954,14936,14941,14952,14982,14999,15043,15083,15099,15147,15207,15208,15243,15245,15257,15274,15301,15293,15285,15225,15163,15104,15037,14957,14858,14712,14570,14386,14201,13982,13771,13537,13280,13009,12733,12425,12143,11832,11543,11285,11040,10794,10565,10285,9980,9667,9358,9073,8836,8625,8445,8295,8163,8067,7992,7907,7864,7806,7717,7575,7401,7243,7107,7016,6913,6823,6759,6708,6665,6640,6644,6612,6615,6635,6628,6475,6170,5745,5128,21.6,21.8,22.4,1567800,0.6,12.2,12.0,5.0,476,-1.00,-1.00,57.5592,-18.901909,0.000563,,,,,62 +SATSLF0720,2024246,5.513180,4.04,0.0566,0.1037,0.0187,0.00,16125,648,1,705,688,695,699,692,695,714,725,726,716,735,736,773,893,1201,1938,3119,4515,5758,6681,7341,7789,8218,8668,9190,9798,10551,11408,12405,13518,14692,15860,16957,17934,18645,19079,19214,19035,18662,18116,17538,16968,16489,16133,15901,15832,15901,16171,16561,17141,17913,18811,19877,21090,22406,23850,25320,26812,28235,29467,30471,31223,31603,31623,31285,30651,29730,28671,27434,26250,25095,24026,23008,22152,21411,20811,20324,19937,19649,19498,19414,19428,19513,19705,19975,20318,20733,21264,21819,22444,23108,23755,24366,24950,25431,25801,26069,26121,26009,25721,25216,24594,23863,23062,22194,21320,20479,19703,19015,18365,17806,17340,16923,16609,16357,16190,16089,16049,16067,16160,16329,16552,16849,17221,17639,18141,18702,19303,19946,20628,21370,22088,22836,23546,24245,24889,25499,26054,26483,26813,27062,27160,27166,27077,26862,26536,26141,25643,25088,24485,23842,23203,22551,21888,21259,20656,20065,19509,19017,18542,18146,17769,17437,17154,16893,16649,16427,16247,16056,15853,15667,15495,15375,15248,15152,15080,15010,14965,14933,14928,14950,14985,14996,15027,15080,15099,15165,15197,15223,15229,15242,15245,15259,15280,15299,15285,15228,15166,15100,15032,14934,14848,14725,14564,14409,14213,14007,13797,13544,13268,13011,12725,12433,12150,11837,11547,11298,11045,10803,10565,10286,9989,9671,9358,9075,8837,8628,8455,8289,8163,8062,7978,7915,7866,7809,7724,7580,7419,7260,7130,7005,6906,6828,6764,6700,6673,6645,6643,6629,6617,6621,6625,6464,6155,5733,5112,21.6,21.8,22.4,1567801,0.1,12.2,11.9,5.0,468,-1.00,-1.00,57.5084,-18.911010,0.000565,,,,,162 +SATSLF0720,2024246,5.513432,4.26,0.0597,0.1054,0.0192,0.00,16077,648,1,700,697,689,699,702,701,702,708,724,725,734,736,776,882,1223,1945,3117,4487,5731,6658,7283,7755,8199,8634,9143,9775,10508,11375,12365,13463,14643,15802,16906,17853,18579,19022,19136,18963,18582,18058,17459,16902,16445,16086,15855,15793,15869,16106,16523,17104,17848,18753,19814,21026,22338,23796,25257,26737,28147,29405,30389,31117,31517,31520,31193,30544,29634,28573,27330,26171,25021,23936,22938,22089,21356,20750,20273,19886,19588,19429,19342,19357,19458,19641,19921,20269,20705,21221,21780,22385,23054,23698,24312,24885,25357,25718,25974,26032,25902,25638,25157,24517,23813,23017,22151,21288,20429,19668,18957,18299,17751,17281,16887,16582,16320,16158,16058,16010,16028,16105,16264,16499,16791,17155,17586,18072,18642,19241,19868,20577,21297,22024,22757,23485,24181,24832,25419,25969,26403,26726,26984,27098,27107,27003,26798,26461,26058,25573,25013,24413,23790,23137,22499,21828,21192,20581,20000,19439,18954,18485,18082,17712,17399,17105,16828,16607,16408,16181,16007,15808,15625,15465,15335,15204,15099,15035,14967,14917,14906,14908,14912,14935,14955,15011,15028,15063,15122,15173,15176,15185,15200,15207,15214,15246,15248,15241,15206,15138,15082,14989,14908,14795,14682,14537,14354,14167,13958,13747,13508,13252,12973,12701,12401,12113,11817,11524,11263,11001,10766,10536,10267,9981,9640,9329,9053,8798,8589,8418,8263,8147,8039,7974,7898,7845,7766,7679,7539,7370,7229,7088,6981,6873,6805,6734,6666,6640,6614,6603,6585,6590,6609,6602,6430,6143,5718,5098,21.7,21.8,22.4,1567802,0.3,12.2,11.9,5.0,475,-1.00,-1.00,56.9728,-18.631536,0.000581,,,,,43 +SATSLF0720,2024246,5.513688,4.17,0.0584,0.1054,0.0197,0.00,16078,648,1,680,715,705,707,717,702,719,732,738,727,731,743,758,877,1206,1942,3109,4497,5730,6653,7291,7761,8183,8628,9142,9763,10496,11390,12366,13472,14648,15793,16899,17858,18568,19022,19148,18973,18582,18055,17456,16898,16445,16082,15854,15789,15858,16115,16513,17107,17847,18750,19820,21041,22332,23779,25245,26728,28132,29392,30378,31128,31536,31521,31197,30554,29629,28571,27339,26169,25009,23940,22932,22080,21354,20738,20263,19867,19595,19449,19338,19349,19451,19642,19901,20256,20678,21222,21785,22377,23053,23684,24293,24864,25352,25723,25979,26033,25914,25646,25166,24527,23803,23025,22149,21267,20423,19643,18949,18320,17749,17291,16884,16573,16317,16153,16056,15976,16017,16108,16264,16492,16789,17174,17588,18083,18650,19250,19891,20562,21284,22019,22761,23477,24173,24816,25414,25992,26404,26743,26976,27086,27097,27009,26809,26459,26066,25588,25024,24432,23804,23149,22501,21827,21216,20601,20016,19450,18946,18487,18093,17730,17385,17099,16843,16593,16394,16183,15991,15800,15621,15457,15319,15207,15108,15030,14965,14926,14902,14895,14898,14938,14965,15004,15041,15081,15125,15185,15186,15207,15211,15211,15226,15257,15238,15237,15195,15117,15065,15003,14907,14819,14680,14534,14359,14177,13970,13757,13505,13239,12979,12692,12397,12125,11808,11528,11263,11002,10781,10541,10286,9979,9645,9333,9063,8825,8597,8439,8273,8135,8050,7970,7897,7841,7787,7703,7549,7379,7223,7085,6977,6894,6801,6741,6674,6649,6620,6617,6592,6582,6603,6601,6451,6145,5715,5093,21.6,21.9,22.4,1567803,0.4,12.1,12.0,5.0,465,-1.00,-1.00,57.3326,-18.781108,0.000582,,,,,30 +SATSLF0720,2024246,5.513943,4.40,0.0616,0.1049,0.0191,0.00,16093,648,1,704,715,726,708,722,723,729,733,730,730,726,731,777,883,1213,1954,3124,4497,5734,6651,7290,7774,8186,8632,9162,9789,10534,11374,12379,13475,14647,15816,16916,17861,18576,19013,19138,18955,18593,18051,17475,16916,16446,16106,15873,15795,15888,16125,16537,17122,17858,18761,19818,21040,22361,23785,25279,26754,28164,29417,30417,31154,31542,31538,31207,30569,29641,28597,27365,26180,25015,23945,22953,22094,21357,20765,20285,19890,19613,19456,19362,19377,19469,19671,19927,20276,20712,21213,21779,22402,23054,23707,24312,24887,25365,25719,25991,26056,25945,25668,25173,24547,23840,23037,22162,21299,20439,19696,18974,18320,17759,17301,16905,16577,16325,16155,16052,16004,16051,16125,16283,16516,16803,17179,17609,18101,18658,19267,19915,20589,21308,22053,22789,23517,24215,24869,25445,26007,26439,26757,27002,27101,27118,27016,26818,26488,26110,25609,25051,24457,23829,23177,22528,21848,21227,20596,20018,19471,18986,18517,18108,17744,17421,17121,16845,16605,16405,16197,16014,15834,15645,15477,15357,15226,15128,15053,14981,14941,14928,14930,14950,14957,14976,15016,15050,15078,15128,15185,15198,15206,15218,15233,15240,15270,15260,15243,15213,15134,15087,15008,14919,14835,14699,14548,14372,14182,13969,13765,13511,13256,12980,12709,12426,12113,11827,11545,11282,11024,10792,10531,10275,9973,9660,9349,9073,8822,8624,8452,8302,8160,8065,7991,7913,7859,7785,7691,7547,7378,7222,7111,6990,6898,6830,6758,6708,6660,6634,6614,6603,6594,6611,6605,6458,6157,5741,5137,21.6,21.9,22.5,1567804,0.9,12.2,12.0,5.0,466,-1.00,-1.00,56.6019,-18.490005,0.000529,,,,,120 +SATSLF0720,2024246,5.514197,4.32,0.0606,0.1067,0.0202,0.00,16038,648,1,711,702,709,706,713,714,731,718,744,730,729,730,780,884,1200,1943,3114,4475,5719,6630,7273,7732,8155,8595,9117,9722,10466,11325,12318,13419,14605,15729,16851,17783,18496,18925,19063,18897,18507,17986,17398,16853,16389,16017,15813,15734,15810,16050,16478,17045,17773,18685,19744,20958,22257,23697,25162,26642,28052,29285,30277,31009,31415,31397,31076,30455,29527,28483,27248,26077,24924,23858,22856,22007,21290,20681,20199,19808,19544,19394,19284,19303,19396,19595,19853,20204,20629,21146,21716,22321,22988,23621,24231,24792,25270,25639,25905,25960,25839,25577,25098,24471,23760,22958,22089,21224,20384,19623,18925,18256,17716,17245,16845,16533,16280,16102,15997,15967,15991,16078,16247,16465,16765,17122,17541,18037,18597,19206,19830,20518,21227,21991,22725,23447,24138,24782,25366,25928,26342,26676,26907,27010,27016,26931,26706,26405,26006,25522,24959,24389,23752,23104,22450,21778,21157,20544,19958,19405,18922,18450,18048,17682,17365,17080,16815,16565,16370,16171,15990,15789,15600,15447,15296,15165,15075,14999,14932,14901,14874,14877,14897,14918,14944,14967,15011,15033,15089,15149,15149,15159,15180,15186,15215,15237,15234,15226,15173,15111,15049,14959,14873,14780,14652,14506,14341,14154,13939,13728,13502,13233,12972,12675,12377,12087,11786,11515,11242,10990,10759,10506,10247,9945,9627,9324,9045,8800,8587,8418,8259,8133,8029,7946,7893,7836,7767,7676,7537,7351,7217,7082,6970,6856,6791,6734,6682,6643,6635,6629,6601,6590,6595,6594,6436,6140,5726,5111,21.7,21.9,22.5,1567805,0.1,12.2,11.9,5.0,474,-1.00,-1.00,57.0931,-18.617206,0.000525,,,,,30 +SATSLF0720,2024246,5.514453,4.17,0.0583,0.1068,0.0210,0.00,16032,648,1,697,703,709,705,712,713,717,721,721,743,729,736,775,876,1205,1956,3105,4494,5717,6645,7273,7751,8173,8619,9144,9761,10496,11353,12336,13440,14601,15763,16873,17827,18533,18957,19092,18921,18548,18021,17409,16876,16418,16038,15813,15752,15801,16055,16471,17061,17793,18706,19765,20971,22270,23705,25174,26649,28072,29298,30297,31037,31429,31435,31097,30459,29537,28491,27255,26091,24929,23861,22865,22032,21286,20689,20200,19811,19540,19377,19282,19294,19410,19600,19857,20198,20622,21143,21700,22325,22974,23616,24228,24821,25275,25639,25903,25960,25831,25566,25086,24457,23730,22946,22069,21214,20362,19607,18905,18250,17699,17239,16825,16525,16261,16115,16005,15960,15981,16058,16219,16450,16737,17109,17544,18032,18588,19198,19817,20514,21233,21961,22689,23403,24100,24757,25334,25912,26328,26647,26893,27013,27008,26913,26709,26376,25984,25486,24916,24338,23705,23072,22412,21768,21131,20538,19942,19394,18898,18438,18028,17674,17341,17053,16793,16540,16351,16141,15946,15749,15575,15425,15272,15155,15069,14986,14921,14881,14853,14859,14852,14888,14907,14946,14999,15020,15070,15126,15130,15142,15155,15174,15186,15204,15199,15196,15149,15089,15024,14942,14865,14774,14625,14483,14319,14118,13915,13697,13457,13195,12941,12665,12378,12079,11789,11508,11239,10991,10740,10499,10241,9934,9618,9304,9015,8783,8583,8420,8264,8125,8039,7958,7893,7835,7769,7685,7525,7358,7210,7065,6963,6869,6795,6731,6685,6647,6616,6611,6593,6577,6581,6573,6421,6122,5713,5094,21.7,21.9,22.6,1567806,0.4,12.2,11.9,5.0,467,-1.00,-1.00,57.2554,-18.693554,0.000593,,,,,53 +SATSDF0720,2024246,5.759138,0.00,0.0000,0.0000,0.0000,0.00,647,0,1,629,632,630,631,639,636,629,627,625,618,617,611,619,629,628,637,629,626,627,635,638,642,656,649,648,646,655,649,646,647,641,649,646,641,655,650,653,657,654,650,663,641,641,657,652,649,640,655,657,658,650,647,656,661,644,664,652,656,651,655,660,656,672,658,663,664,663,663,655,661,648,642,641,646,647,664,653,637,655,656,657,653,669,669,662,657,656,645,656,645,656,634,647,652,642,650,660,651,649,634,635,635,648,650,649,647,644,652,647,663,655,649,647,655,640,641,656,645,635,651,642,633,643,642,643,641,643,653,648,644,655,669,661,652,660,659,649,670,652,647,652,642,640,633,646,641,642,632,644,641,627,651,658,640,643,647,653,655,669,645,664,660,640,640,635,636,640,656,653,647,643,648,641,651,651,648,634,647,635,643,640,651,643,655,663,663,652,649,652,641,645,635,638,643,646,637,638,639,644,645,636,651,646,644,642,655,650,652,649,654,645,649,643,635,643,645,646,649,650,650,650,650,645,644,648,637,629,641,641,641,647,649,638,647,651,650,653,637,644,644,647,645,653,653,645,645,650,650,645,654,653,653,649,634,637,467,0.0,0.0,0.0,1567805,0.1,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,92 +SATSLF0720,2024246,5.759689,4.07,0.0570,0.1004,0.0164,0.00,16226,647,1,699,693,709,694,713,709,708,709,709,717,705,720,752,867,1210,1946,3131,4523,5777,6716,7381,7849,8270,8712,9234,9857,10621,11495,12493,13623,14813,15977,17091,18055,18791,19228,19373,19184,18816,18258,17651,17080,16626,16261,16021,15955,16042,16285,16705,17289,18035,18953,20019,21249,22581,24039,25527,27035,28443,29731,30722,31479,31867,31872,31544,30882,29947,28886,27651,26454,25290,24203,23189,22331,21596,20973,20484,20086,19811,19650,19555,19576,19677,19860,20112,20459,20898,21421,21995,22616,23274,23931,24550,25132,25603,25973,26247,26285,26176,25888,25410,24759,24040,23226,22341,21478,20622,19827,19125,18464,17897,17424,17018,16697,16455,16285,16198,16164,16161,16261,16429,16651,16938,17303,17739,18227,18811,19438,20059,20745,21486,22225,22970,23694,24394,25058,25652,26227,26657,26984,27229,27349,27349,27261,27041,26714,26322,25804,25235,24645,24013,23370,22711,22044,21402,20790,20195,19638,19136,18653,18252,17862,17531,17237,16976,16738,16525,16313,16139,15944,15776,15597,15452,15330,15235,15163,15081,15045,15019,15011,15035,15069,15084,15115,15153,15174,15217,15272,15297,15304,15325,15329,15339,15357,15347,15335,15272,15234,15176,15121,15033,14951,14797,14644,14469,14269,14057,13843,13588,13333,13060,12780,12485,12208,11893,11598,11331,11075,10851,10618,10331,10035,9718,9390,9117,8852,8655,8491,8324,8187,8093,8011,7944,7890,7828,7748,7604,7434,7253,7139,7021,6923,6839,6778,6725,6679,6651,6649,6633,6615,6635,6631,6490,6179,5761,5132,21.6,21.5,21.9,1567806,0.2,12.3,12.0,5.0,596,-1.00,-1.00,57.0515,-18.867008,0.000604,,,,,106 +SATSLF0720,2024246,5.759871,4.09,0.0573,0.1027,0.0180,0.00,16153,647,1,701,709,708,697,713,710,707,727,714,731,725,737,778,885,1217,1957,3131,4521,5760,6692,7341,7826,8236,8680,9209,9828,10573,11450,12438,13546,14732,15897,17017,17963,18685,19131,19269,19077,18711,18175,17585,17003,16533,16179,15941,15879,15952,16206,16620,17208,17949,18853,19925,21146,22485,23915,25402,26880,28290,29553,30574,31305,31710,31723,31386,30724,29809,28736,27501,26328,25161,24081,23077,22213,21486,20862,20389,20001,19721,19561,19454,19485,19572,19764,20022,20354,20812,21312,21890,22519,23170,23826,24433,24998,25490,25845,26122,26162,26049,25748,25269,24628,23906,23106,22237,21369,20526,19753,19051,18398,17837,17362,16960,16641,16378,16211,16105,16048,16084,16181,16331,16573,16866,17233,17665,18156,18737,19347,19985,20661,21392,22138,22874,23575,24288,24938,25525,26090,26518,26848,27105,27221,27216,27138,26917,26609,26180,25676,25120,24524,23896,23257,22614,21946,21314,20717,20101,19534,19042,18553,18155,17792,17456,17170,16901,16667,16475,16281,16084,15877,15677,15531,15384,15260,15157,15088,15017,14985,14973,14958,14944,14976,15006,15044,15081,15103,15164,15221,15234,15240,15261,15264,15275,15290,15293,15296,15255,15185,15123,15059,14960,14858,14713,14567,14389,14211,13992,13783,13537,13277,13009,12725,12431,12151,11850,11560,11274,11038,10795,10562,10292,9998,9661,9346,9071,8841,8625,8448,8291,8155,8070,7985,7926,7867,7813,7732,7585,7401,7240,7115,6994,6913,6829,6746,6711,6674,6641,6637,6621,6612,6633,6612,6455,6149,5726,5109,21.6,21.6,22.1,1567807,0.4,12.2,12.0,5.0,495,-1.00,-1.00,57.1983,-18.834106,0.000574,,,,,167 +SATSLF0720,2024246,5.760126,4.14,0.0580,0.1018,0.0174,0.00,16184,647,1,703,687,705,705,707,700,709,705,709,712,713,727,765,889,1219,1959,3144,4535,5774,6699,7352,7824,8240,8697,9229,9849,10597,11475,12483,13601,14770,15955,17073,18024,18752,19190,19329,19130,18757,18229,17632,17060,16596,16228,16008,15921,16007,16268,16664,17245,17997,18893,19975,21196,22509,23971,25463,26952,28379,29632,30640,31398,31796,31787,31447,30791,29853,28802,27556,26381,25197,24125,23120,22265,21530,20925,20432,20035,19755,19596,19496,19510,19614,19809,20059,20408,20854,21363,21930,22541,23223,23859,24475,25060,25533,25901,26150,26200,26073,25808,25322,24679,23970,23149,22279,21399,20571,19786,19072,18413,17848,17403,16981,16669,16426,16267,16146,16113,16123,16213,16375,16598,16894,17257,17683,18170,18746,19365,19996,20688,21422,22165,22909,23626,24328,24995,25589,26164,26589,26909,27152,27267,27261,27172,26944,26619,26233,25739,25152,24571,23926,23282,22634,21965,21333,20717,20133,19562,19080,18598,18203,17829,17496,17211,16926,16700,16497,16281,16080,15888,15703,15549,15405,15297,15191,15136,15061,15002,14989,14989,14988,14997,15037,15066,15109,15129,15187,15243,15267,15277,15291,15278,15304,15324,15319,15318,15261,15193,15141,15071,14988,14882,14747,14612,14435,14240,14037,13811,13577,13305,13034,12745,12453,12173,11864,11581,11320,11061,10816,10587,10299,10007,9683,9368,9093,8851,8641,8468,8301,8173,8077,7995,7928,7884,7818,7728,7585,7402,7252,7112,7011,6919,6832,6772,6723,6675,6668,6635,6624,6602,6627,6622,6472,6171,5747,5126,21.6,21.6,22.1,1567808,0.3,12.3,12.0,5.0,482,-1.00,-1.00,56.4068,-18.545236,0.000550,,,,,18 +SATSLF0720,2024246,5.760379,4.05,0.0567,0.1034,0.0188,0.00,16126,647,1,697,688,707,706,695,699,709,705,719,699,703,712,752,869,1209,1940,3115,4505,5765,6688,7313,7791,8213,8667,9178,9790,10544,11419,12412,13517,14699,15865,16976,17945,18669,19109,19252,19053,18674,18138,17549,16987,16522,16134,15907,15859,15923,16183,16585,17168,17927,18824,19895,21126,22445,23895,25355,26848,28264,29517,30497,31268,31665,31654,31333,30685,29753,28693,27469,26281,25116,24042,23033,22169,21449,20827,20361,19970,19682,19520,19425,19434,19540,19725,19989,20341,20760,21275,21847,22457,23134,23774,24389,24962,25435,25809,26074,26122,25998,25709,25238,24600,23873,23081,22210,21338,20497,19729,19021,18366,17800,17344,16922,16606,16353,16174,16077,16021,16077,16165,16330,16558,16857,17213,17637,18123,18699,19309,19941,20617,21345,22087,22836,23551,24261,24901,25495,26072,26489,26798,27049,27160,27173,27085,26874,26529,26130,25651,25090,24501,23863,23217,22562,21883,21267,20661,20058,19515,19017,18545,18134,17761,17426,17134,16862,16630,16419,16237,16029,15848,15659,15488,15359,15253,15153,15069,14992,14950,14946,14938,14953,14973,15004,15027,15068,15085,15134,15184,15207,15214,15226,15232,15257,15282,15275,15277,15226,15154,15096,15030,14937,14846,14706,14559,14377,14203,13974,13762,13516,13261,12991,12708,12416,12131,11819,11543,11273,11032,10791,10543,10283,9989,9657,9347,9061,8805,8597,8425,8276,8147,8048,7969,7913,7857,7786,7706,7549,7395,7237,7106,6989,6889,6803,6743,6688,6668,6638,6619,6603,6592,6610,6599,6442,6164,5724,5107,21.6,21.6,22.1,1567809,0.2,12.2,12.0,5.0,478,-1.00,-1.00,57.4359,-18.904418,0.000626,,,,,208 +SATSLF0720,2024246,5.760630,4.20,0.0588,0.1027,0.0175,0.00,16166,647,1,697,698,696,701,707,705,702,711,719,727,717,736,759,881,1206,1959,3125,4515,5761,6698,7320,7808,8224,8670,9193,9819,10567,11453,12453,13550,14746,15904,17017,17974,18692,19139,19261,19082,18700,18167,17565,17003,16541,16171,15943,15871,15954,16220,16636,17210,17957,18861,19943,21173,22485,23938,25417,26901,28311,29575,30579,31325,31730,31708,31399,30746,29813,28759,27515,26348,25161,24092,23081,22228,21496,20881,20395,20007,19720,19565,19454,19474,19577,19779,20029,20381,20800,21337,21905,22531,23205,23834,24463,25044,25505,25876,26128,26194,26069,25782,25296,24659,23947,23156,22281,21389,20537,19782,19065,18413,17842,17381,16988,16660,16410,16253,16136,16088,16099,16189,16338,16567,16877,17241,17687,18179,18753,19371,19989,20675,21401,22146,22885,23604,24320,24971,25583,26154,26570,26885,27125,27227,27237,27149,26938,26624,26221,25722,25154,24561,23922,23271,22618,21960,21333,20716,20112,19559,19065,18574,18179,17810,17480,17177,16916,16674,16479,16281,16085,15893,15719,15537,15399,15289,15189,15125,15025,14999,14978,14984,14987,15017,15043,15066,15116,15145,15193,15224,15249,15267,15264,15273,15301,15337,15325,15323,15266,15195,15139,15078,14979,14888,14733,14587,14417,14224,14025,13796,13565,13301,13032,12759,12465,12165,11868,11585,11301,11048,10804,10556,10302,10003,9680,9371,9080,8837,8619,8464,8309,8183,8080,8006,7936,7889,7813,7730,7575,7409,7244,7125,6992,6907,6824,6752,6711,6665,6651,6642,6621,6619,6640,6633,6464,6173,5735,5115,21.6,21.6,22.2,1567810,0.5,12.2,12.0,5.0,477,-1.00,-1.00,57.0882,-18.798761,0.000591,,,,,19 +SATSLF0720,2024246,5.760884,4.10,0.0574,0.1022,0.0172,0.00,16170,647,1,699,706,707,707,705,711,725,724,725,725,727,739,768,893,1225,1965,3139,4519,5773,6695,7338,7818,8249,8685,9194,9831,10558,11445,12445,13556,14739,15898,17006,17965,18692,19130,19281,19082,18694,18149,17571,17017,16556,16189,15975,15897,15966,16215,16619,17185,17940,18849,19941,21157,22478,23918,25397,26893,28297,29558,30565,31312,31717,31716,31400,30733,29814,28754,27518,26350,25155,24093,23085,22224,21497,20887,20393,20013,19720,19572,19476,19478,19585,19773,20021,20372,20819,21333,21899,22528,23188,23855,24449,25032,25504,25874,26134,26182,26069,25772,25312,24669,23953,23133,22263,21397,20546,19773,19063,18411,17847,17373,16968,16651,16387,16231,16125,16084,16112,16197,16370,16593,16888,17265,17685,18175,18750,19361,20004,20691,21416,22154,22905,23605,24317,24992,25581,26148,26568,26881,27141,27240,27252,27168,26952,26598,26219,25731,25153,24562,23938,23289,22617,21961,21330,20714,20115,19559,19067,18596,18176,17809,17483,17194,16934,16707,16494,16293,16097,15909,15721,15533,15388,15292,15210,15129,15038,15006,14990,14995,15008,15013,15030,15074,15125,15142,15174,15237,15245,15270,15281,15277,15321,15346,15341,15338,15272,15230,15149,15067,14972,14891,14745,14597,14422,14241,14024,13815,13581,13302,13047,12759,12479,12185,11886,11607,11315,11071,10819,10575,10317,10001,9690,9365,9095,8864,8646,8458,8317,8178,8078,8015,7933,7875,7811,7729,7573,7399,7243,7131,7031,6934,6841,6775,6720,6685,6660,6640,6633,6617,6622,6626,6476,6179,5755,5145,21.6,21.6,22.2,1567811,0.3,12.2,11.9,5.0,478,-1.00,-1.00,57.2146,-18.846191,0.000510,,,,,19 +SATSLF0720,2024246,5.761137,4.06,0.0568,0.1022,0.0178,0.00,16163,647,1,715,713,704,711,723,708,711,721,722,730,724,746,777,889,1228,1963,3146,4528,5769,6713,7341,7812,8229,8687,9201,9815,10572,11441,12433,13549,14726,15906,17001,17972,18697,19142,19270,19101,18706,18172,17581,17008,16552,16189,15955,15885,15964,16215,16605,17203,17933,18859,19921,21147,22469,23931,25422,26909,28312,29569,30571,31336,31721,31709,31385,30741,29805,28747,27517,26320,25157,24089,23077,22225,21480,20876,20386,20013,19729,19557,19478,19472,19563,19762,20018,20379,20805,21313,21885,22510,23190,23833,24448,25021,25500,25861,26116,26167,26037,25773,25285,24648,23930,23146,22265,21390,20539,19771,19049,18394,17836,17373,16953,16639,16396,16221,16125,16077,16125,16190,16356,16580,16896,17241,17680,18153,18723,19334,19970,20676,21390,22136,22888,23592,24300,24954,25550,26117,26554,26877,27125,27218,27227,27138,26924,26610,26198,25716,25143,24547,23912,23257,22608,21939,21322,20694,20099,19534,19055,18577,18193,17817,17495,17189,16921,16693,16465,16259,16076,15878,15698,15530,15395,15287,15197,15116,15047,15003,14970,14977,14973,14995,15018,15058,15092,15138,15173,15232,15237,15249,15275,15269,15289,15308,15314,15309,15250,15185,15127,15060,14972,14866,14741,14592,14422,14230,14021,13798,13566,13303,13037,12759,12462,12165,11869,11574,11307,11045,10818,10592,10316,10032,9690,9379,9089,8855,8629,8473,8303,8175,8090,8005,7936,7886,7824,7717,7578,7398,7247,7131,7012,6904,6832,6762,6708,6672,6653,6643,6634,6615,6636,6628,6479,6183,5744,5117,21.6,21.6,22.2,1567812,0.2,12.2,11.9,5.0,476,-1.00,-1.00,57.2728,-18.869311,0.000617,,,,,74 +SATSLF0720,2024246,5.761394,4.10,0.0575,0.1034,0.0186,0.00,16135,647,1,707,697,701,702,720,716,714,714,717,731,729,739,789,893,1227,1948,3117,4497,5743,6658,7307,7785,8203,8661,9181,9801,10537,11407,12394,13504,14682,15847,16971,17924,18657,19074,19226,19026,18654,18108,17531,16966,16507,16138,15908,15822,15907,16165,16569,17145,17897,18798,19883,21115,22427,23874,25360,26845,28264,29506,30512,31250,31655,31658,31325,30662,29732,28678,27464,26261,25101,24036,23041,22193,21446,20848,20353,19964,19673,19514,19427,19426,19532,19725,19990,20346,20768,21296,21860,22489,23146,23787,24402,24969,25445,25809,26069,26121,26009,25734,25253,24618,23894,23099,22218,21350,20493,19726,19029,18370,17817,17340,16939,16629,16366,16200,16094,16045,16072,16170,16332,16564,16857,17230,17648,18142,18708,19315,19940,20635,21352,22098,22836,23577,24275,24933,25531,26088,26516,26834,27082,27185,27205,27112,26896,26561,26167,25657,25107,24516,23881,23245,22581,21928,21284,20678,20089,19533,19033,18560,18149,17792,17454,17162,16894,16657,16466,16253,16065,15873,15693,15518,15370,15253,15158,15073,15003,14970,14941,14951,14949,14993,14993,15041,15090,15116,15162,15229,15245,15253,15270,15282,15277,15303,15303,15293,15225,15161,15101,15041,14939,14857,14722,14574,14392,14212,14010,13781,13551,13297,13026,12732,12436,12151,11843,11555,11296,11048,10807,10561,10296,9998,9675,9373,9085,8833,8640,8466,8315,8173,8080,7988,7914,7860,7811,7733,7577,7411,7246,7120,6998,6897,6819,6756,6696,6662,6640,6629,6621,6613,6621,6619,6467,6161,5741,5125,21.6,21.6,22.2,1567813,0.4,12.2,12.0,5.0,476,-1.00,-1.00,57.7213,-19.016308,0.000696,,,,,127 +SATSLF0720,2024246,5.761648,4.23,0.0592,0.1029,0.0185,0.00,16152,647,1,694,693,685,707,713,703,726,720,720,722,721,739,766,868,1206,1957,3128,4521,5767,6683,7346,7811,8233,8672,9197,9828,10567,11434,12430,13559,14752,15901,17016,17961,18694,19128,19260,19078,18690,18167,17569,16997,16556,16197,15957,15896,15965,16214,16618,17217,17962,18857,19930,21153,22466,23918,25404,26890,28304,29562,30568,31297,31719,31710,31389,30743,29828,28757,27525,26316,25165,24077,23077,22218,21481,20865,20393,19993,19706,19540,19448,19469,19564,19757,20010,20362,20797,21318,21883,22477,23166,23812,24431,25004,25480,25833,26108,26156,26043,25754,25273,24641,23927,23122,22254,21377,20539,19755,19050,18396,17825,17362,16946,16634,16381,16208,16112,16073,16090,16192,16357,16566,16864,17237,17659,18153,18718,19322,19953,20640,21371,22125,22866,23586,24288,24939,25527,26093,26518,26850,27095,27193,27202,27121,26910,26583,26201,25698,25133,24533,23917,23253,22596,21926,21270,20649,20072,19517,19028,18567,18161,17794,17460,17176,16905,16657,16459,16248,16065,15857,15687,15509,15372,15258,15166,15093,15028,14985,14976,14967,14961,14987,15009,15048,15085,15115,15177,15228,15249,15245,15255,15265,15287,15290,15292,15287,15230,15158,15105,15046,14955,14865,14725,14571,14408,14227,14016,13805,13559,13286,13017,12730,12429,12144,11852,11558,11280,11041,10805,10573,10304,10014,9669,9361,9065,8826,8618,8437,8289,8161,8062,7995,7940,7886,7810,7721,7584,7397,7252,7106,6989,6896,6820,6749,6698,6674,6642,6629,6630,6625,6636,6630,6469,6158,5730,5112,21.6,21.6,22.2,1567814,0.6,12.2,12.0,5.0,474,-1.00,-1.00,56.7640,-18.657865,0.000491,,,,,222 +SATSLF0720,2024246,5.761900,4.24,0.0593,0.1035,0.0187,0.00,16129,647,1,699,709,697,697,708,697,722,724,713,731,736,743,773,892,1213,1955,3134,4503,5755,6676,7308,7792,8224,8660,9190,9811,10554,11417,12405,13529,14677,15864,16973,17911,18652,19077,19219,19025,18644,18104,17516,16964,16512,16147,15930,15853,15936,16163,16584,17162,17893,18803,19883,21094,22424,23865,25345,26829,28258,29485,30504,31250,31645,31648,31319,30666,29745,28694,27437,26253,25107,24029,23034,22172,21433,20832,20358,19957,19673,19525,19422,19437,19533,19728,19988,20345,20770,21284,21829,22455,23117,23762,24375,24964,25437,25811,26085,26125,26011,25734,25246,24626,23885,23090,22221,21346,20490,19721,19018,18377,17812,17352,16935,16621,16361,16192,16103,16054,16084,16160,16323,16567,16838,17225,17645,18131,18696,19307,19943,20630,21354,22097,22849,23542,24253,24906,25498,26061,26490,26813,27057,27174,27197,27097,26870,26555,26160,25664,25097,24501,23869,23228,22571,21901,21271,20661,20073,19506,19014,18551,18152,17786,17440,17155,16889,16649,16439,16229,16046,15852,15681,15521,15366,15259,15147,15089,15016,14957,14930,14938,14948,14970,15005,15041,15073,15117,15165,15207,15223,15245,15253,15245,15260,15287,15290,15273,15217,15163,15100,15036,14941,14853,14710,14558,14390,14194,13994,13770,13531,13275,13024,12736,12437,12152,11838,11552,11284,11026,10777,10551,10277,9987,9665,9355,9073,8826,8618,8456,8301,8159,8064,7991,7917,7862,7788,7714,7560,7395,7236,7115,6984,6891,6817,6738,6695,6658,6637,6627,6611,6601,6624,6613,6456,6151,5737,5106,21.6,21.7,22.3,1567815,0.3,12.2,11.9,5.0,466,-1.00,-1.00,57.0081,-18.715852,0.000583,,,,,142 +SATSLF0720,2024246,5.762159,4.23,0.0592,0.1036,0.0186,0.00,16121,647,1,719,713,710,709,717,710,712,731,726,722,738,749,777,891,1218,1947,3132,4493,5738,6661,7318,7770,8203,8643,9154,9783,10505,11386,12380,13476,14670,15834,16918,17875,18610,19048,19187,18999,18640,18084,17508,16946,16484,16123,15885,15834,15909,16165,16563,17141,17882,18794,19866,21082,22403,23844,25318,26808,28220,29477,30478,31214,31629,31620,31282,30637,29715,28667,27440,26244,25083,24009,23013,22156,21421,20805,20317,19948,19666,19497,19415,19429,19525,19709,19959,20314,20766,21280,21824,22464,23125,23773,24385,24964,25442,25797,26045,26107,25988,25702,25230,24586,23861,23062,22193,21335,20478,19719,19008,18371,17815,17340,16925,16615,16370,16185,16090,16037,16065,16145,16315,16544,16832,17202,17642,18133,18678,19315,19943,20627,21357,22088,22825,23550,24237,24909,25493,26056,26469,26803,27036,27146,27169,27082,26877,26542,26153,25649,25081,24491,23853,23198,22562,21899,21273,20657,20058,19493,19011,18541,18142,17773,17437,17157,16880,16643,16442,16245,16041,15861,15666,15520,15369,15254,15159,15082,15003,14959,14939,14934,14945,14973,14982,15040,15065,15103,15157,15213,15202,15226,15249,15245,15269,15307,15305,15279,15237,15168,15101,15019,14938,14847,14705,14545,14398,14197,13997,13782,13543,13282,13005,12727,12424,12161,11841,11559,11291,11043,10800,10567,10290,9995,9673,9370,9066,8839,8615,8445,8306,8166,8075,7998,7924,7873,7810,7717,7561,7397,7255,7110,6998,6891,6817,6743,6699,6652,6650,6623,6615,6598,6619,6618,6471,6170,5734,5119,21.6,21.7,22.3,1567816,0.4,12.2,11.9,5.0,478,-1.00,-1.00,57.3612,-18.849240,0.000545,,,,,92 +SATSLF0720,2024246,5.762413,4.36,0.0611,0.1063,0.0201,0.00,16042,647,1,696,707,709,708,710,716,713,713,728,726,731,751,771,892,1214,1942,3105,4475,5701,6617,7252,7724,8133,8599,9105,9728,10457,11307,12304,13382,14564,15714,16817,17764,18479,18909,19044,18854,18484,17960,17389,16817,16367,15996,15779,15713,15785,16044,16445,17029,17760,18681,19741,20941,22253,23690,25173,26637,28038,29286,30283,31024,31404,31390,31068,30443,29505,28471,27248,26069,24935,23861,22866,22024,21293,20692,20213,19826,19538,19385,19302,19307,19406,19593,19854,20206,20626,21145,21712,22341,22990,23650,24260,24825,25309,25672,25921,25966,25818,25559,25085,24469,23744,22963,22103,21243,20398,19632,18922,18289,17716,17241,16837,16517,16278,16124,16016,15973,15994,16075,16255,16472,16776,17138,17561,18033,18609,19213,19842,20537,21260,22002,22740,23452,24147,24797,25383,25952,26361,26696,26932,27040,27036,26950,26746,26429,26026,25542,24987,24390,23765,23109,22460,21799,21158,20551,19972,19421,18937,18464,18052,17697,17367,17089,16813,16574,16377,16165,15978,15793,15623,15464,15317,15184,15092,15016,14934,14905,14876,14877,14892,14921,14938,14962,15015,15045,15101,15145,15171,15178,15190,15210,15229,15249,15237,15225,15170,15112,15052,14990,14897,14800,14646,14515,14337,14146,13939,13725,13495,13229,12978,12705,12401,12106,11803,11525,11249,10993,10759,10521,10242,9946,9643,9328,9032,8807,8609,8430,8281,8145,8036,7967,7894,7835,7765,7687,7549,7372,7217,7079,6977,6876,6813,6739,6689,6651,6629,6628,6608,6596,6617,6614,6451,6141,5729,5113,21.6,21.7,22.3,1567817,0.1,12.2,11.9,5.0,477,-1.00,-1.00,57.5815,-18.817773,0.000636,,,,,89 +SATSLF0720,2024246,5.762664,4.38,0.0613,0.1044,0.0186,0.00,16109,647,1,689,699,696,704,708,712,721,725,711,721,721,725,767,881,1214,1959,3123,4491,5753,6663,7303,7776,8195,8633,9151,9773,10510,11386,12379,13488,14668,15838,16945,17885,18611,19033,19168,18982,18617,18068,17492,16925,16469,16101,15870,15816,15914,16141,16557,17137,17877,18772,19843,21063,22390,23833,25306,26788,28194,29454,30455,31192,31597,31573,31251,30587,29678,28629,27400,26200,25070,23978,22976,22119,21403,20789,20304,19910,19627,19486,19381,19382,19505,19689,19952,20294,20725,21252,21813,22423,23092,23740,24357,24936,25395,25780,26028,26083,25964,25696,25213,24577,23853,23064,22203,21321,20466,19706,19002,18349,17784,17306,16903,16581,16343,16187,16101,16037,16058,16153,16318,16535,16829,17201,17629,18101,18679,19285,19905,20603,21330,22052,22811,23536,24234,24893,25486,26057,26468,26789,27034,27138,27149,27072,26858,26518,26123,25635,25074,24491,23860,23210,22549,21885,21243,20642,20049,19486,19004,18524,18118,17744,17424,17145,16876,16634,16438,16256,16044,15848,15657,15485,15350,15245,15140,15066,14990,14958,14933,14925,14939,14966,14989,15028,15060,15088,15143,15201,15206,15225,15243,15245,15261,15287,15273,15279,15221,15160,15101,15028,14933,14845,14708,14558,14391,14203,13988,13771,13543,13273,13008,12701,12419,12133,11826,11537,11275,11029,10779,10553,10281,9989,9665,9354,9077,8835,8640,8460,8301,8174,8066,7981,7902,7842,7803,7712,7566,7373,7239,7120,6993,6901,6811,6755,6678,6655,6635,6639,6614,6609,6617,6617,6467,6154,5739,5117,21.6,21.8,22.4,1567817,0.4,12.2,12.0,5.0,470,-1.00,-1.00,56.6919,-18.549938,0.000603,,,,,113 +SATSLF0720,2024246,5.762920,4.23,0.0593,0.1044,0.0194,0.00,16097,647,1,688,689,696,705,709,713,709,712,718,711,726,725,766,873,1211,1950,3125,4517,5769,6678,7322,7799,8222,8651,9167,9803,10542,11396,12389,13501,14672,15841,16965,17899,18625,19061,19194,18993,18626,18087,17493,16939,16482,16117,15895,15825,15913,16161,16554,17140,17890,18778,19847,21066,22376,23812,25299,26782,28202,29451,30449,31194,31593,31586,31245,30599,29671,28633,27404,26218,25063,23988,22985,22131,21404,20789,20290,19902,19608,19464,19384,19385,19493,19675,19943,20269,20715,21222,21792,22411,23076,23729,24340,24917,25400,25753,26008,26055,25943,25664,25175,24545,23826,23037,22180,21296,20449,19680,18979,18337,17778,17305,16897,16580,16328,16145,16043,16013,16024,16122,16293,16516,16811,17177,17610,18099,18656,19265,19909,20588,21314,22067,22794,23503,24198,24860,25445,26007,26426,26741,26987,27101,27117,27019,26805,26482,26101,25597,25047,24454,23810,23166,22516,21845,21210,20584,20027,19457,18964,18494,18096,17716,17403,17120,16853,16620,16405,16203,16021,15828,15641,15473,15336,15217,15121,15041,14961,14936,14919,14909,14917,14955,14969,15009,15044,15069,15136,15184,15200,15207,15201,15203,15229,15242,15234,15241,15190,15136,15075,15001,14924,14821,14685,14538,14380,14192,13977,13757,13515,13252,12968,12697,12398,12116,11830,11527,11263,11024,10793,10539,10261,9975,9638,9338,9055,8807,8607,8442,8286,8151,8061,7966,7895,7846,7773,7685,7545,7387,7229,7100,6993,6901,6817,6742,6682,6643,6621,6613,6593,6594,6619,6617,6473,6168,5730,5107,21.6,21.8,22.4,1567818,0.1,12.2,11.9,5.0,474,-1.00,-1.00,56.8413,-18.612559,0.000528,,,,,101 +SATSLF0720,2024246,5.763178,4.24,0.0594,0.1058,0.0196,0.00,16064,647,1,698,708,712,711,718,720,717,718,710,727,725,739,768,881,1203,1944,3121,4500,5736,6655,7299,7769,8183,8621,9123,9751,10486,11365,12344,13460,14629,15785,16887,17831,18556,18998,19122,18940,18562,18017,17445,16882,16421,16055,15845,15777,15851,16090,16498,17083,17815,18720,19774,20996,22313,23764,25232,26708,28115,29363,30352,31083,31479,31479,31140,30483,29597,28533,27303,26128,24984,23910,22916,22057,21339,20721,20240,19845,19566,19412,19320,19337,19439,19625,19889,20218,20663,21186,21744,22362,23013,23671,24289,24868,25350,25694,25953,26004,25864,25607,25122,24496,23774,22981,22112,21259,20405,19639,18935,18291,17740,17270,16856,16536,16289,16120,16025,15985,16004,16104,16264,16465,16779,17129,17566,18061,18612,19230,19877,20565,21269,22013,22753,23453,24152,24808,25406,25969,26393,26713,26960,27056,27081,26987,26778,26455,26056,25577,24998,24424,23784,23127,22483,21824,21191,20594,19981,19443,18947,18469,18084,17717,17385,17101,16839,16585,16391,16186,15989,15796,15616,15442,15303,15191,15086,15019,14937,14924,14909,14909,14893,14931,14940,14978,15014,15042,15108,15154,15180,15188,15197,15219,15241,15249,15252,15239,15179,15124,15069,14999,14905,14810,14669,14532,14354,14176,13975,13729,13503,13236,12966,12683,12390,12099,11797,11514,11249,10989,10761,10522,10262,9965,9647,9336,9065,8805,8584,8418,8267,8134,8033,7959,7905,7846,7770,7707,7549,7374,7219,7099,6982,6869,6803,6726,6673,6641,6618,6630,6602,6595,6621,6589,6435,6147,5707,5089,21.6,21.8,22.4,1567819,0.2,12.2,11.9,5.0,462,-1.00,-1.00,57.0405,-18.634851,0.000608,,,,,218 +SATSLF0720,2024246,5.763432,4.37,0.0612,0.1056,0.0193,0.00,16078,647,1,716,718,730,713,711,718,728,722,734,738,741,742,771,903,1232,1954,3129,4499,5730,6657,7291,7764,8185,8626,9134,9763,10499,11365,12358,13470,14642,15781,16899,17851,18557,18987,19123,18929,18583,18036,17449,16904,16436,16078,15853,15773,15854,16099,16522,17105,17836,18747,19789,21016,22338,23769,25249,26722,28123,29373,30364,31114,31504,31493,31173,30528,29613,28561,27320,26155,24995,23922,22928,22072,21348,20737,20258,19872,19589,19434,19330,19345,19456,19642,19917,20253,20675,21197,21766,22381,23054,23694,24301,24869,25336,25709,25954,26027,25906,25645,25165,24525,23809,22997,22145,21285,20437,19673,18965,18314,17750,17281,16878,16568,16331,16148,16051,15998,16015,16119,16276,16489,16801,17157,17597,18082,18656,19250,19883,20569,21279,22029,22773,23491,24197,24837,25417,25991,26406,26728,26968,27078,27097,27018,26794,26468,26083,25573,25018,24425,23802,23152,22501,21832,21202,20587,20002,19440,18961,18493,18077,17715,17398,17113,16846,16597,16407,16192,16006,15822,15618,15467,15328,15217,15107,15041,14961,14924,14917,14901,14914,14938,14953,14993,15036,15065,15129,15185,15193,15202,15211,15218,15232,15256,15249,15257,15194,15137,15079,15009,14909,14816,14684,14538,14365,14189,13985,13757,13517,13261,13003,12717,12403,12115,11810,11531,11278,11029,10784,10551,10272,9975,9656,9331,9059,8810,8602,8425,8270,8145,8053,7978,7899,7855,7788,7691,7568,7385,7235,7101,6981,6887,6803,6739,6683,6656,6641,6629,6611,6601,6615,6611,6458,6157,5737,5108,21.6,21.8,22.4,1567820,0.3,12.2,11.9,5.0,473,-1.00,-1.00,56.6960,-18.506494,0.000537,,,,,19 +SATSLF0720,2024246,5.763688,4.22,0.0591,0.1057,0.0198,0.00,16059,647,1,709,705,699,705,715,712,710,717,721,727,717,742,777,889,1222,1950,3117,4484,5719,6649,7270,7758,8173,8605,9131,9753,10473,11354,12334,13456,14617,15757,16875,17816,18536,18970,19098,18916,18528,18008,17424,16865,16409,16053,15829,15768,15833,16075,16483,17062,17810,18701,19755,20978,22293,23741,25189,26691,28081,29335,30337,31082,31492,31464,31133,30489,29589,28525,27298,26112,24961,23897,22901,22037,21321,20711,20236,19864,19589,19422,19326,19344,19430,19618,19865,20223,20641,21159,21735,22342,23019,23668,24277,24852,25334,25691,25956,26004,25881,25600,25121,24502,23772,22978,22115,21241,20426,19645,18960,18297,17744,17264,16868,16549,16291,16122,16021,15979,16010,16084,16263,16506,16774,17147,17577,18056,18628,19214,19857,20534,21257,22000,22733,23446,24146,24808,25398,25963,26382,26697,26962,27054,27083,26989,26765,26437,26026,25557,24995,24400,23785,23125,22465,21818,21205,20584,20002,19436,18948,18456,18067,17690,17365,17078,16811,16585,16387,16181,15982,15814,15629,15464,15309,15200,15097,15029,14943,14918,14904,14894,14899,14927,14936,14981,15025,15058,15110,15170,15179,15188,15203,15194,15223,15237,15243,15227,15187,15129,15061,14997,14917,14806,14663,14518,14349,14177,13968,13733,13503,13241,12986,12690,12395,12117,11818,11517,11253,11003,10760,10519,10259,9955,9645,9333,9043,8811,8588,8418,8268,8123,8048,7947,7897,7842,7776,7685,7540,7381,7233,7105,6981,6884,6793,6736,6673,6637,6637,6616,6603,6586,6610,6605,6460,6141,5726,5109,21.6,21.8,22.4,1567821,0.0,12.2,12.0,5.0,475,-1.00,-1.00,57.5662,-18.846064,0.000589,,,,,41 +SATSLF0720,2024246,5.763941,4.28,0.0600,0.1058,0.0192,0.00,16070,647,1,693,702,703,710,713,720,721,711,726,733,712,735,765,886,1215,1957,3117,4489,5720,6643,7291,7764,8168,8627,9120,9739,10480,11344,12333,13449,14622,15776,16878,17828,18546,18984,19100,18920,18550,18016,17435,16874,16408,16070,15849,15771,15859,16095,16501,17073,17805,18711,19779,20981,22313,23741,25219,26691,28112,29357,30368,31098,31488,31480,31145,30505,29573,28549,27313,26137,24974,23906,22918,22069,21329,20732,20242,19845,19578,19419,19323,19349,19444,19633,19894,20237,20673,21189,21747,22369,23031,23669,24290,24881,25349,25706,25966,26021,25900,25608,25145,24497,23808,22997,22136,21267,20417,19659,18949,18313,17751,17288,16875,16571,16321,16133,16035,16000,16001,16098,16269,16489,16793,17153,17586,18071,18629,19225,19883,20553,21271,22018,22762,23466,24168,24825,25422,25984,26421,26730,26970,27088,27097,26996,26786,26453,26064,25574,25010,24428,23788,23150,22487,21819,21195,20583,19995,19451,18962,18484,18075,17719,17389,17111,16849,16593,16407,16198,16009,15810,15619,15457,15329,15198,15117,15035,14973,14934,14903,14909,14923,14942,14965,14983,15034,15066,15110,15152,15180,15188,15204,15223,15224,15264,15261,15244,15207,15140,15081,15001,14908,14817,14676,14535,14368,14170,13970,13738,13506,13258,12982,12706,12417,12117,11816,11514,11259,11001,10775,10540,10272,9973,9649,9337,9053,8816,8611,8429,8291,8132,8044,7964,7905,7835,7776,7687,7555,7374,7227,7123,6993,6891,6807,6745,6679,6637,6629,6605,6597,6596,6617,6603,6460,6151,5725,5104,21.6,21.8,22.4,1567822,0.0,12.3,11.9,5.0,477,-1.00,-1.00,57.2077,-18.706439,0.000561,,,,,83 +SATSLF0720,2024246,5.764192,4.26,0.0597,0.1071,0.0208,0.00,16020,647,1,709,706,701,705,710,710,713,712,725,727,739,742,774,890,1219,1945,3111,4474,5707,6631,7279,7749,8161,8599,9108,9719,10461,11318,12304,13413,14582,15734,16842,17776,18497,18929,19063,18869,18516,17977,17387,16836,16378,16013,15801,15732,15815,16048,16455,17021,17783,18688,19732,20944,22251,23689,25165,26633,28034,29278,30268,31005,31410,31402,31074,30434,29515,28480,27247,26086,24921,23848,22843,22003,21273,20656,20195,19805,19530,19368,19266,19285,19383,19581,19837,20182,20608,21122,21692,22301,22965,23611,24218,24793,25263,25620,25886,25959,25820,25547,25078,24450,23730,22929,22077,21201,20349,19593,18892,18244,17685,17241,16821,16515,16266,16089,15989,15936,15965,16060,16218,16444,16729,17095,17521,17998,18564,19175,19797,20484,21223,21952,22661,23387,24093,24754,25333,25896,26308,26634,26874,26983,26987,26907,26698,26365,25979,25486,24923,24346,23718,23064,22435,21760,21121,20525,19934,19376,18882,18423,18020,17657,17333,17051,16786,16558,16342,16149,15949,15749,15563,15385,15259,15149,15052,14975,14923,14881,14861,14849,14867,14885,14909,14929,14977,15005,15051,15109,15127,15141,15155,15154,15182,15205,15198,15201,15146,15081,15029,14955,14850,14760,14617,14461,14299,14114,13901,13698,13456,13205,12946,12654,12375,12082,11792,11490,11223,10959,10735,10494,10237,9933,9623,9300,9025,8782,8574,8416,8245,8123,8022,7947,7873,7821,7750,7662,7517,7351,7200,7069,6953,6865,6788,6709,6660,6625,6611,6590,6571,6568,6587,6586,6429,6126,5697,5099,21.7,21.9,22.5,1567823,0.1,12.2,12.0,5.0,472,-1.00,-1.00,57.4741,-18.773237,0.000527,,,,,39 +SATSLF0720,2024246,5.764448,4.26,0.0597,0.1065,0.0198,0.00,16049,647,1,715,719,729,713,730,724,733,737,725,731,733,739,775,884,1222,1941,3127,4472,5723,6626,7271,7744,8166,8601,9117,9723,10467,11339,12324,13419,14586,15755,16844,17801,18505,18946,19069,18896,18526,17986,17400,16843,16400,16034,15810,15730,15826,16060,16464,17052,17797,18690,19765,20953,22275,23730,25181,26654,28054,29284,30289,31047,31420,31431,31105,30459,29554,28521,27277,26091,24933,23876,22864,22021,21285,20685,20211,19824,19554,19397,19291,19316,19408,19600,19873,20218,20631,21155,21719,22329,22997,23645,24258,24830,25305,25669,25933,25980,25857,25588,25111,24481,23761,22980,22100,21235,20395,19622,18938,18277,17720,17247,16849,16525,16283,16115,16019,15965,15996,16090,16253,16480,16765,17127,17572,18041,18616,19220,19850,20522,21249,21990,22718,23422,24125,24792,25378,25946,26380,26704,26930,27045,27056,26976,26745,26414,26024,25528,24954,24384,23749,23113,22471,21796,21175,20566,19985,19421,18933,18460,18053,17681,17366,17073,16810,16578,16371,16171,15980,15798,15617,15457,15313,15202,15090,15016,14956,14910,14898,14888,14893,14919,14944,14971,15020,15049,15107,15149,15159,15180,15177,15195,15204,15229,15236,15231,15181,15123,15061,14986,14893,14789,14659,14509,14335,14155,13966,13729,13507,13230,12975,12692,12402,12108,11814,11533,11253,10999,10765,10529,10275,9957,9639,9335,9047,8794,8582,8422,8274,8138,8053,7970,7905,7845,7786,7693,7549,7381,7220,7093,6977,6892,6801,6736,6682,6646,6631,6617,6613,6597,6618,6604,6457,6152,5719,5100,21.6,21.9,22.5,1567824,0.1,12.2,11.9,5.0,471,-1.00,-1.00,57.4779,-18.791322,0.000539,,,,,68 +SATSDF0720,2024246,6.009139,0.00,0.0000,0.0000,0.0000,0.00,649,0,1,629,631,627,624,619,613,625,619,632,641,644,641,645,633,631,631,630,629,621,635,618,618,645,640,659,660,654,663,661,666,660,658,657,654,660,657,656,643,634,638,643,644,641,653,650,644,657,646,653,659,653,660,665,662,657,647,647,659,653,663,659,660,661,669,660,661,658,637,660,663,673,656,652,667,645,652,653,649,637,655,658,662,648,650,642,651,657,652,655,644,655,646,647,646,660,657,649,647,657,653,655,657,657,645,643,636,647,643,642,647,644,659,649,656,666,653,653,654,635,647,633,651,654,662,643,649,647,636,647,645,657,645,663,653,653,655,659,654,663,646,647,633,636,648,657,647,637,643,643,640,658,646,654,641,640,653,653,656,658,653,658,661,659,645,647,647,658,654,650,655,658,643,645,636,634,644,646,662,659,656,661,649,655,646,645,646,647,644,640,655,645,630,651,640,665,660,657,657,659,659,649,646,651,649,645,653,641,648,649,663,657,665,649,656,646,641,641,646,647,652,657,661,654,641,647,661,653,649,645,646,645,637,632,635,637,647,640,656,649,641,642,651,641,649,643,635,642,643,646,656,652,652,647,659,649,494,0.0,0.0,0.0,1567823,0.2,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,234 +SATSLF0720,2024246,6.009693,4.08,0.0572,0.1008,0.0162,0.00,16221,649,1,708,702,710,704,723,701,720,705,718,731,732,753,784,897,1236,1974,3158,4524,5787,6709,7355,7843,8261,8715,9229,9865,10608,11491,12496,13609,14788,15959,17097,18059,18789,19218,19333,19163,18781,18251,17642,17085,16617,16238,16013,15945,16025,16262,16681,17273,18023,18933,20011,21234,22561,24022,25497,26995,28436,29693,30699,31447,31817,31831,31497,30839,29925,28870,27637,26437,25264,24177,23178,22316,21573,20963,20463,20079,19799,19643,19540,19560,19654,19852,20109,20451,20891,21402,21973,22597,23266,23921,24528,25120,25602,25953,26226,26261,26145,25861,25387,24736,24009,23206,22338,21453,20601,19844,19129,18464,17912,17445,17028,16718,16456,16289,16187,16145,16161,16252,16404,16633,16929,17301,17741,18221,18803,19424,20062,20753,21473,22219,22965,23677,24397,25053,25647,26221,26656,26973,27225,27337,27340,27242,27018,26705,26290,25799,25239,24648,24013,23354,22684,22016,21378,20774,20191,19618,19131,18638,18231,17867,17541,17237,16973,16725,16521,16320,16136,15941,15767,15592,15449,15328,15228,15155,15070,15045,15022,15033,15025,15041,15073,15125,15161,15187,15225,15289,15304,15313,15310,15316,15335,15360,15354,15359,15317,15245,15184,15109,15022,14916,14793,14641,14470,14282,14055,13850,13601,13341,13076,12777,12497,12189,11898,11611,11340,11089,10848,10619,10337,10045,9714,9417,9121,8869,8666,8481,8329,8201,8109,8029,7959,7892,7833,7745,7601,7431,7283,7146,7037,6930,6858,6786,6727,6697,6683,6661,6647,6635,6670,6641,6493,6168,5747,5131,21.5,21.5,21.9,1567824,0.5,12.2,11.9,5.0,596,-1.00,-1.00,57.0520,-18.848337,0.000555,,,,,160 +SATSLF0720,2024246,6.009875,4.09,0.0573,0.1009,0.0168,0.00,16206,649,1,692,695,704,697,701,693,713,713,717,729,720,726,757,871,1207,1948,3133,4528,5777,6699,7357,7830,8255,8715,9229,9861,10621,11482,12478,13590,14773,15948,17069,18023,18769,19200,19339,19160,18768,18221,17633,17056,16589,16231,16004,15918,16005,16261,16661,17259,17999,18928,20001,21227,22563,24009,25497,26989,28412,29680,30684,31427,31833,31819,31498,30826,29908,28853,27590,26407,25248,24166,23168,22304,21570,20945,20459,20083,19793,19637,19536,19537,19642,19828,20084,20437,20878,21393,21968,22581,23254,23898,24519,25097,25572,25948,26198,26250,26118,25852,25360,24729,24000,23202,22321,21450,20589,19821,19108,18450,17892,17417,17006,16674,16446,16272,16154,16109,16133,16227,16389,16618,16917,17289,17716,18224,18781,19398,20029,20736,21472,22213,22964,23665,24375,25032,25626,26181,26624,26963,27201,27314,27306,27221,27010,26674,26282,25795,25201,24627,23990,23328,22668,22013,21365,20748,20154,19603,19100,18627,18225,17842,17531,17237,16949,16711,16513,16306,16127,15931,15757,15572,15432,15321,15215,15149,15080,15027,15015,15009,15001,15031,15065,15097,15137,15168,15214,15266,15293,15305,15325,15305,15335,15349,15351,15342,15282,15216,15163,15098,14993,14913,14761,14604,14440,14261,14050,13835,13589,13325,13066,12762,12470,12189,11881,11600,11320,11075,10841,10605,10327,10019,9701,9389,9105,8849,8644,8484,8322,8194,8087,8023,7938,7885,7829,7736,7587,7415,7257,7137,6998,6914,6821,6770,6713,6670,6648,6655,6641,6627,6630,6647,6482,6181,5747,5126,21.6,21.5,22.1,1567825,0.5,12.1,12.0,5.0,493,-1.00,-1.00,57.1790,-18.891222,0.000685,,,,,164 +SATSLF0720,2024246,6.010130,4.22,0.0591,0.1012,0.0169,0.00,16204,649,1,701,715,720,709,709,707,722,720,724,715,722,753,788,886,1230,1962,3141,4525,5781,6697,7347,7821,8254,8689,9220,9837,10587,11472,12466,13598,14780,15936,17061,18010,18736,19176,19313,19129,18753,18219,17621,17046,16597,16233,16008,15936,16005,16269,16662,17251,17997,18909,19989,21211,22540,23992,25482,26976,28390,29658,30666,31413,31819,31812,31488,30820,29900,28829,27597,26405,25227,24146,23128,22295,21563,20944,20454,20061,19755,19614,19522,19524,19635,19830,20081,20421,20859,21388,21957,22575,23245,23882,24512,25080,25563,25927,26182,26241,26121,25839,25342,24704,23998,23189,22296,21424,20593,19826,19120,18452,17885,17428,17005,16676,16444,16268,16165,16112,16146,16232,16402,16636,16925,17286,17708,18194,18775,19392,20050,20709,21459,22208,22957,23666,24380,25025,25621,26187,26620,26945,27202,27284,27307,27212,26998,26669,26258,25764,25196,24624,23973,23330,22676,22011,21372,20755,20160,19589,19108,18625,18217,17850,17528,17229,16948,16725,16513,16315,16129,15925,15739,15579,15429,15310,15211,15130,15067,15029,15019,14998,15021,15022,15074,15093,15131,15173,15210,15269,15291,15308,15307,15309,15339,15350,15347,15329,15281,15227,15160,15099,15016,14912,14772,14625,14453,14251,14048,13840,13594,13321,13051,12768,12485,12170,11875,11604,11337,11076,10824,10583,10329,10024,9709,9401,9111,8866,8653,8487,8324,8195,8093,8028,7949,7906,7833,7739,7588,7418,7276,7154,7037,6933,6850,6787,6728,6674,6663,6650,6637,6611,6633,6644,6490,6196,5757,5147,21.6,21.6,22.1,1567826,0.3,12.2,11.9,5.0,481,-1.00,-1.00,56.7917,-18.722991,0.000544,,,,,152 +SATSLF0720,2024246,6.010383,4.10,0.0574,0.1006,0.0165,0.00,16218,649,1,693,702,697,705,693,699,712,718,719,727,728,740,777,886,1212,1959,3143,4533,5781,6711,7370,7848,8262,8719,9227,9859,10608,11469,12490,13606,14791,15964,17086,18041,18763,19205,19335,19162,18785,18229,17649,17091,16608,16251,16020,15953,16012,16270,16682,17270,18010,18934,20002,21243,22556,24018,25509,26989,28420,29674,30674,31441,31850,31829,31519,30848,29928,28861,27624,26439,25264,24178,23170,22307,21551,20951,20480,20089,19802,19637,19549,19565,19639,19831,20087,20461,20870,21394,21965,22582,23271,23912,24516,25102,25577,25943,26205,26263,26135,25862,25369,24727,24002,23205,22325,21453,20612,19842,19133,18461,17899,17432,17029,16702,16441,16273,16164,16125,16137,16244,16419,16637,16945,17320,17757,18226,18798,19400,20053,20728,21469,22220,22966,23670,24387,25041,25653,26220,26651,26973,27209,27307,27317,27221,27016,26682,26289,25800,25233,24654,24021,23357,22697,22012,21373,20771,20180,19613,19104,18634,18235,17869,17537,17253,16979,16748,16545,16326,16131,15938,15756,15581,15437,15326,15240,15153,15084,15046,15041,15021,15043,15057,15072,15107,15145,15180,15229,15285,15298,15315,15333,15318,15357,15362,15361,15347,15313,15242,15175,15111,15010,14913,14790,14619,14454,14269,14055,13849,13600,13337,13068,12785,12485,12187,11882,11614,11341,11089,10852,10597,10342,10032,9717,9393,9112,8857,8655,8478,8322,8205,8109,8032,7961,7918,7845,7753,7611,7428,7271,7140,7036,6933,6869,6796,6731,6689,6671,6653,6632,6631,6646,6653,6489,6179,5754,5137,21.6,21.6,22.1,1567827,0.7,12.2,12.0,5.0,478,-1.00,-1.00,57.0140,-18.831846,0.000530,,,,,244 +SATSLF0720,2024246,6.010633,4.29,0.0601,0.1019,0.0171,0.00,16187,649,1,699,701,710,716,717,721,717,718,727,728,725,737,771,891,1213,1969,3131,4535,5783,6698,7347,7827,8241,8699,9215,9841,10589,11474,12460,13574,14765,15945,17050,18015,18715,19155,19281,19117,18721,18197,17609,17045,16587,16226,15985,15921,15997,16241,16653,17233,17976,18898,19960,21191,22517,23973,25462,26951,28372,29629,30642,31385,31782,31777,31449,30777,29868,28801,27560,26379,25212,24142,23134,22275,21512,20927,20435,20039,19751,19592,19492,19510,19609,19807,20064,20426,20844,21377,21941,22555,23220,23880,24490,25060,25540,25904,26164,26210,26090,25805,25331,24693,23965,23173,22296,21419,20573,19805,19095,18451,17872,17402,16978,16660,16416,16242,16151,16109,16120,16211,16389,16637,16914,17277,17696,18192,18753,19357,20003,20689,21429,22171,22917,23645,24328,25015,25581,26163,26593,26898,27148,27266,27285,27173,26961,26635,26234,25748,25162,24582,23933,23288,22618,21952,21324,20721,20123,19576,19077,18612,18218,17832,17499,17213,16939,16698,16491,16301,16104,15915,15733,15554,15404,15301,15191,15118,15042,15003,14988,14988,14999,15025,15031,15079,15121,15155,15205,15270,15277,15274,15295,15293,15309,15335,15327,15316,15286,15217,15155,15097,14993,14893,14753,14613,14442,14237,14036,13810,13566,13315,13041,12770,12469,12171,11883,11588,11321,11084,10830,10593,10312,10017,9690,9372,9088,8859,8644,8464,8314,8179,8085,8001,7935,7892,7812,7720,7581,7406,7265,7140,7025,6931,6837,6764,6720,6677,6651,6657,6633,6627,6645,6635,6479,6169,5764,5120,21.6,21.6,22.1,1567828,0.3,12.2,11.9,5.0,483,-1.00,-1.00,56.5282,-18.593870,0.000551,,,,,118 +SATSLF0720,2024246,6.010888,4.19,0.0587,0.1026,0.0175,0.00,16158,649,1,699,692,694,698,694,701,701,711,705,725,729,725,767,868,1219,1953,3133,4513,5760,6685,7329,7808,8232,8686,9192,9818,10560,11420,12424,13546,14730,15900,17015,17971,18697,19125,19258,19065,18683,18157,17555,17001,16530,16173,15949,15883,15970,16193,16619,17193,17950,18861,19925,21141,22465,23926,25389,26874,28304,29552,30569,31317,31706,31715,31370,30712,29797,28745,27506,26337,25161,24080,23072,22216,21481,20857,20390,19992,19709,19545,19463,19482,19576,19769,20018,20371,20806,21330,21885,22523,23185,23830,24440,24999,25485,25849,26126,26165,26039,25769,25288,24648,23941,23120,22259,21369,20525,19760,19058,18396,17854,17365,16973,16650,16398,16214,16124,16090,16100,16193,16353,16579,16873,17245,17669,18148,18725,19339,19978,20657,21383,22131,22875,23594,24297,24963,25561,26121,26564,26853,27124,27228,27235,27129,26924,26596,26192,25694,25137,24539,23931,23262,22618,21952,21301,20701,20103,19541,19051,18571,18165,17802,17473,17188,16914,16685,16465,16249,16069,15875,15698,15533,15403,15281,15185,15098,15035,14986,14961,14956,14967,14986,15025,15067,15103,15137,15194,15255,15260,15257,15262,15287,15291,15310,15316,15302,15254,15203,15140,15077,14981,14876,14743,14594,14406,14205,13995,13795,13550,13291,13035,12750,12453,12151,11868,11561,11299,11040,10802,10593,10309,10014,9685,9379,9085,8851,8632,8465,8297,8170,8073,7986,7927,7872,7809,7733,7589,7414,7253,7121,7002,6906,6829,6756,6700,6681,6660,6633,6635,6631,6641,6630,6476,6165,5721,5119,21.6,21.6,22.2,1567829,0.0,12.2,11.9,5.0,469,-1.00,-1.00,57.1065,-18.794240,0.000542,,,,,30 +SATSLF0720,2024246,6.011144,4.19,0.0587,0.1030,0.0179,0.00,16159,649,1,694,694,721,705,706,714,715,716,711,709,731,726,769,890,1225,1958,3134,4502,5755,6679,7334,7796,8215,8654,9185,9811,10565,11432,12433,13539,14741,15876,16995,17953,18667,19117,19254,19045,18669,18147,17554,17003,16536,16173,15936,15875,15959,16201,16613,17187,17936,18837,19906,21125,22472,23921,25384,26892,28312,29573,30565,31316,31711,31704,31374,30713,29792,28733,27506,26331,25153,24093,23075,22221,21474,20866,20377,19991,19706,19550,19446,19479,19581,19769,20029,20370,20803,21334,21880,22503,23171,23828,24456,25024,25497,25868,26130,26186,26057,25778,25280,24645,23914,23120,22242,21368,20528,19761,19061,18405,17843,17362,16954,16633,16397,16226,16129,16076,16098,16202,16358,16582,16882,17237,17667,18157,18734,19360,19991,20672,21404,22137,22874,23603,24313,24960,25543,26124,26548,26881,27125,27219,27238,27155,26937,26604,26219,25712,25152,24554,23909,23259,22610,21957,21309,20705,20110,19556,19061,18566,18180,17800,17477,17181,16916,16679,16477,16279,16077,15886,15700,15541,15393,15279,15177,15098,15029,14980,14967,14961,14974,15010,15035,15069,15099,15143,15177,15231,15253,15258,15281,15269,15303,15317,15323,15313,15261,15193,15126,15061,14969,14873,14734,14588,14426,14233,14006,13807,13568,13312,13035,12754,12446,12165,11857,11585,11297,11031,10809,10561,10295,10006,9691,9374,9093,8845,8627,8460,8305,8182,8075,7999,7932,7882,7809,7725,7578,7405,7248,7129,7001,6921,6811,6755,6698,6668,6650,6645,6632,6617,6642,6646,6489,6181,5737,5115,21.6,21.6,22.2,1567830,0.2,12.2,11.9,5.0,478,-1.00,-1.00,57.3061,-18.876119,0.000595,,,,,71 +SATSLF0720,2024246,6.011401,4.12,0.0577,0.1031,0.0176,0.00,16148,649,1,709,708,705,701,699,711,709,727,722,733,726,741,772,897,1227,1963,3136,4518,5740,6649,7308,7773,8200,8656,9181,9800,10540,11427,12401,13522,14698,15853,16967,17908,18631,19083,19221,19033,18661,18117,17545,16969,16501,16131,15911,15838,15914,16169,16587,17170,17919,18835,19904,21120,22445,23881,25354,26846,28262,29509,30519,31264,31661,31657,31360,30701,29766,28720,27480,26292,25130,24042,23034,22192,21462,20845,20363,19982,19697,19546,19441,19472,19557,19740,20008,20357,20785,21308,21865,22501,23169,23808,24424,25017,25477,25830,26100,26166,26037,25761,25285,24646,23924,23117,22245,21370,20513,19738,19037,18390,17833,17357,16951,16641,16396,16225,16115,16069,16093,16168,16336,16566,16872,17239,17665,18168,18724,19338,19990,20681,21390,22155,22869,23585,24295,24949,25532,26100,26521,26855,27104,27205,27213,27127,26930,26601,26199,25695,25125,24536,23907,23254,22597,21947,21303,20685,20096,19533,19050,18576,18181,17793,17469,17185,16916,16664,16473,16269,16081,15893,15701,15527,15392,15292,15182,15118,15037,14992,14962,14954,14952,14993,15021,15061,15114,15144,15204,15253,15246,15251,15265,15266,15288,15314,15302,15309,15257,15194,15137,15060,14976,14859,14735,14592,14413,14222,14020,13797,13571,13300,13037,12752,12446,12159,11865,11570,11310,11042,10809,10573,10318,10020,9697,9371,9081,8831,8631,8455,8292,8168,8072,8001,7929,7879,7811,7713,7580,7406,7251,7131,7015,6917,6837,6763,6710,6659,6655,6636,6620,6602,6623,6619,6470,6164,5734,5119,21.6,21.6,22.2,1567831,0.3,12.2,12.0,5.0,470,-1.00,-1.00,57.8615,-19.086634,0.000596,,,,,240 +SATSLF0720,2024246,6.011655,4.15,0.0581,0.1038,0.0182,0.00,16135,649,1,695,696,691,719,716,713,711,735,737,733,745,752,791,900,1234,1961,3136,4509,5761,6675,7336,7782,8200,8647,9169,9787,10524,11389,12391,13508,14678,15841,16939,17904,18624,19067,19202,19017,18647,18105,17519,16967,16498,16133,15901,15834,15901,16159,16557,17155,17902,18811,19879,21104,22410,23867,25333,26811,28225,29466,30470,31226,31636,31637,31301,30662,29738,28670,27426,26272,25096,24014,23019,22164,21425,20832,20338,19952,19643,19500,19412,19419,19521,19712,19979,20331,20761,21297,21845,22474,23134,23776,24390,24970,25447,25821,26058,26111,26003,25722,25240,24621,23891,23085,22224,21345,20507,19733,19034,18380,17824,17349,16928,16627,16378,16201,16110,16073,16086,16175,16326,16557,16854,17204,17644,18132,18695,19318,19958,20635,21373,22115,22860,23568,24291,24933,25517,26086,26496,26820,27066,27182,27200,27109,26881,26560,26161,25680,25114,24525,23891,23239,22571,21907,21283,20661,20067,19514,19025,18557,18153,17799,17469,17176,16915,16678,16466,16263,16069,15866,15678,15511,15377,15256,15172,15102,15029,14966,14955,14967,14967,15009,15025,15065,15098,15125,15168,15219,15235,15253,15245,15271,15283,15307,15316,15304,15261,15181,15117,15045,14963,14857,14737,14581,14411,14219,14016,13785,13549,13288,13027,12741,12456,12154,11858,11568,11301,11037,10805,10560,10301,9995,9682,9377,9090,8848,8631,8467,8313,8173,8073,7994,7927,7868,7807,7722,7565,7401,7248,7122,6994,6899,6817,6755,6701,6661,6665,6637,6615,6624,6641,6637,6486,6169,5732,5119,21.6,21.7,22.2,1567832,0.4,12.2,11.9,5.0,476,-1.00,-1.00,57.4945,-18.910154,0.000563,,,,,177 +SATSLF0720,2024246,6.011906,4.25,0.0596,0.1037,0.0181,0.00,16123,649,1,701,690,710,714,715,725,739,733,736,722,711,711,750,880,1210,1955,3121,4503,5753,6669,7322,7784,8208,8649,9169,9781,10519,11386,12391,13485,14664,15822,16945,17900,18632,19064,19196,19009,18644,18098,17506,16932,16481,16117,15894,15823,15909,16158,16552,17152,17898,18805,19880,21090,22401,23861,25321,26801,28226,29467,30458,31208,31606,31609,31269,30624,29712,28661,27403,26242,25081,24002,23004,22156,21410,20823,20329,19949,19648,19499,19413,19409,19511,19693,19952,20313,20742,21261,21846,22458,23127,23776,24387,24956,25417,25781,26038,26101,25970,25712,25240,24597,23883,23081,22204,21323,20479,19726,19013,18366,17793,17329,16902,16595,16343,16192,16092,16047,16068,16164,16330,16556,16849,17225,17637,18126,18684,19301,19935,20621,21358,22100,22835,23545,24261,24910,25499,26071,26505,26812,27067,27165,27173,27076,26854,26538,26133,25645,25088,24513,23858,23224,22565,21908,21273,20653,20073,19513,19005,18535,18132,17766,17445,17171,16893,16651,16467,16245,16059,15864,15672,15496,15355,15246,15141,15068,15004,14962,14948,14949,14947,14983,15001,15026,15065,15095,15157,15207,15232,15240,15254,15252,15266,15288,15281,15274,15233,15179,15119,15045,14960,14856,14725,14574,14393,14205,13990,13765,13538,13269,13017,12726,12434,12145,11841,11574,11302,11049,10798,10557,10304,10007,9685,9367,9084,8845,8624,8435,8283,8169,8058,7987,7920,7879,7812,7704,7559,7406,7237,7115,6994,6909,6822,6751,6717,6669,6656,6645,6634,6614,6637,6618,6474,6162,5734,5124,21.6,21.7,22.2,1567833,0.6,12.2,11.9,5.0,476,-1.00,-1.00,57.0009,-18.692484,0.000603,,,,,168 +SATSLF0720,2024246,6.012163,4.13,0.0579,0.1043,0.0184,0.00,16119,649,1,706,717,724,711,711,704,703,715,706,711,723,741,773,888,1216,1962,3137,4501,5749,6670,7305,7773,8192,8631,9160,9781,10521,11381,12391,13495,14664,15843,16939,17892,18611,19059,19179,18995,18638,18100,17501,16949,16481,16131,15906,15835,15926,16151,16546,17137,17865,18778,19843,21070,22386,23824,25321,26798,28215,29448,30461,31207,31621,31616,31281,30629,29706,28667,27409,26230,25082,23987,22996,22144,21425,20802,20309,19920,19642,19499,19389,19411,19508,19701,19964,20288,20747,21266,21834,22448,23104,23757,24346,24947,25417,25783,26059,26100,25981,25694,25211,24579,23859,23085,22205,21328,20481,19721,19008,18343,17787,17315,16921,16608,16342,16183,16091,16037,16062,16164,16314,16551,16836,17213,17632,18113,18686,19292,19921,20605,21342,22075,22828,23540,24257,24913,25497,26058,26491,26802,27050,27156,27170,27069,26871,26546,26146,25653,25098,24504,23863,23225,22549,21896,21256,20653,20053,19515,19017,18547,18141,17757,17443,17157,16885,16647,16445,16253,16047,15853,15677,15509,15376,15258,15155,15077,14996,14961,14935,14951,14942,14977,15010,15045,15080,15111,15159,15206,15227,15242,15250,15253,15269,15293,15294,15273,15216,15162,15109,15038,14955,14849,14718,14576,14405,14204,13988,13778,13530,13277,13015,12725,12440,12145,11846,11561,11290,11043,10811,10569,10299,9995,9671,9365,9080,8822,8615,8437,8279,8141,8070,7983,7931,7877,7813,7718,7583,7393,7243,7127,7003,6898,6806,6745,6696,6660,6647,6629,6629,6615,6646,6630,6472,6145,5733,5085,21.6,21.7,22.3,1567834,0.2,12.2,12.0,5.0,476,-1.00,-1.00,57.5132,-18.902771,0.000579,,,,,162 +SATSLF0720,2024246,6.012416,4.15,0.0582,0.1040,0.0181,0.00,16128,649,1,698,717,701,712,717,718,731,721,726,728,724,720,764,878,1229,1964,3145,4521,5757,6679,7322,7795,8214,8665,9181,9799,10549,11424,12405,13522,14701,15849,16965,17925,18649,19078,19219,19033,18653,18114,17520,16957,16502,16126,15904,15838,15915,16162,16577,17159,17899,18811,19880,21096,22404,23858,25350,26852,28250,29501,30499,31252,31637,31651,31317,30654,29729,28666,27439,26250,25104,24027,23021,22171,21429,20829,20337,19959,19662,19504,19403,19419,19529,19717,19979,20320,20756,21286,21834,22452,23124,23776,24377,24954,25441,25802,26074,26130,26001,25714,25237,24605,23895,23073,22205,21319,20478,19713,19020,18355,17799,17344,16936,16611,16354,16187,16103,16057,16061,16153,16317,16555,16849,17205,17643,18134,18696,19297,19929,20616,21348,22081,22837,23557,24260,24913,25525,26061,26507,26816,27052,27165,27176,27086,26864,26561,26170,25652,25100,24498,23861,23220,22556,21905,21269,20662,20072,19506,19006,18536,18133,17765,17441,17153,16883,16629,16434,16248,16049,15857,15680,15512,15364,15255,15139,15083,15002,14970,14945,14939,14951,14969,14976,15019,15063,15108,15153,15217,15228,15237,15237,15241,15257,15298,15274,15282,15233,15178,15121,15042,14941,14851,14710,14569,14404,14204,13986,13779,13556,13287,13019,12722,12427,12143,11853,11570,11294,11042,10812,10573,10310,10003,9680,9362,9059,8823,8619,8450,8290,8168,8061,7984,7923,7857,7793,7701,7570,7388,7235,7109,6997,6882,6807,6756,6705,6672,6637,6642,6626,6615,6625,6613,6468,6158,5726,5112,21.6,21.7,22.3,1567835,0.0,12.2,12.0,5.0,478,-1.00,-1.00,57.3705,-18.862494,0.000664,,,,,164 +SATSLF0720,2024246,6.012668,4.23,0.0593,0.1041,0.0187,0.00,16125,649,1,702,701,713,713,709,715,730,733,725,741,738,743,775,891,1213,1947,3121,4503,5753,6679,7316,7785,8208,8646,9179,9806,10537,11412,12401,13518,14689,15860,16961,17913,18633,19069,19212,19021,18632,18101,17505,16952,16477,16131,15913,15843,15914,16169,16563,17146,17881,18793,19863,21093,22409,23853,25341,26818,28235,29477,30474,31216,31614,31611,31290,30633,29713,28654,27418,26231,25079,24005,23010,22161,21427,20832,20329,19930,19655,19505,19397,19415,19536,19728,19972,20321,20749,21257,21828,22445,23108,23762,24373,24953,25418,25799,26058,26125,25981,25708,25232,24596,23881,23078,22222,21329,20494,19725,19017,18375,17803,17333,16919,16621,16365,16198,16102,16041,16065,16162,16316,16554,16846,17210,17656,18117,18702,19308,19941,20618,21338,22083,22826,23533,24245,24897,25495,26066,26506,26829,27057,27174,27177,27095,26865,26555,26144,25638,25081,24509,23849,23206,22557,21901,21273,20657,20068,19510,19025,18541,18148,17759,17431,17136,16875,16633,16434,16222,16051,15853,15665,15505,15360,15241,15163,15069,15001,14960,14946,14941,14947,14985,15013,15037,15082,15107,15151,15201,15235,15237,15238,15253,15273,15291,15301,15277,15239,15157,15101,15042,14959,14865,14729,14577,14408,14211,14009,13776,13538,13279,13008,12726,12427,12135,11850,11550,11291,11050,10820,10582,10323,10022,9691,9369,9074,8840,8608,8437,8292,8168,8078,7989,7927,7878,7805,7706,7576,7397,7253,7112,7002,6902,6824,6755,6699,6663,6649,6647,6636,6618,6631,6609,6478,6153,5742,5114,21.6,21.7,22.3,1567835,0.2,12.2,12.0,5.0,467,-1.00,-1.00,56.9625,-18.679366,0.000622,,,,,213 +SATSLF0720,2024246,6.012924,4.29,0.0601,0.1038,0.0187,0.00,16118,649,1,708,705,695,708,713,711,715,721,742,725,737,739,778,889,1218,1949,3119,4496,5751,6669,7307,7775,8203,8647,9162,9777,10521,11401,12393,13501,14680,15849,16951,17904,18619,19046,19182,19008,18616,18086,17501,16938,16483,16117,15911,15821,15904,16162,16548,17142,17881,18788,19859,21080,22392,23835,25317,26801,28202,29463,30459,31197,31595,31591,31265,30609,29686,28640,27409,26241,25062,24001,22986,22132,21403,20794,20328,19925,19641,19496,19412,19412,19512,19703,19966,20307,20736,21250,21813,22425,23106,23750,24361,24955,25428,25802,26053,26101,25982,25712,25212,24598,23858,23076,22196,21318,20484,19714,18993,18344,17783,17332,16921,16607,16363,16181,16075,16048,16057,16139,16311,16538,16840,17201,17642,18110,18684,19293,19918,20603,21345,22094,22830,23538,24234,24896,25486,26046,26486,26818,27041,27149,27155,27067,26865,26528,26133,25637,25085,24491,23859,23217,22558,21893,21269,20641,20055,19501,19014,18541,18141,17755,17443,17140,16874,16629,16428,16229,16027,15846,15662,15494,15357,15241,15148,15067,15008,14960,14944,14950,14962,14994,15002,15031,15083,15093,15146,15198,15213,15218,15239,15242,15261,15287,15298,15277,15235,15170,15099,15034,14945,14845,14726,14562,14395,14199,13985,13779,13531,13275,13010,12722,12423,12128,11843,11563,11298,11041,10794,10568,10287,9986,9678,9356,9079,8848,8641,8460,8313,8173,8063,7994,7935,7873,7799,7703,7567,7378,7235,7114,7013,6911,6834,6765,6714,6685,6653,6632,6625,6608,6638,6620,6465,6161,5745,5132,21.6,21.8,22.4,1567836,0.4,12.1,12.0,5.0,476,-1.00,-1.00,56.8796,-18.635032,0.000537,,,,,154 +SATSLF0720,2024246,6.013177,4.15,0.0581,0.1052,0.0190,0.00,16088,649,1,706,705,705,714,713,717,717,726,730,718,739,736,774,891,1208,1939,3117,4493,5731,6660,7299,7765,8190,8627,9140,9751,10507,11382,12365,13479,14643,15798,16902,17862,18580,18994,19143,18968,18594,18071,17461,16914,16454,16078,15853,15772,15849,16118,16532,17102,17857,18749,19819,21030,22343,23787,25252,26725,28141,29397,30388,31139,31530,31546,31210,30562,29651,28605,27360,26174,25020,23934,22939,22100,21360,20761,20281,19901,19600,19455,19351,19379,19464,19645,19921,20270,20708,21211,21787,22413,23076,23716,24328,24894,25369,25726,26006,26048,25920,25654,25173,24558,23834,23024,22165,21283,20449,19681,18973,18309,17767,17287,16886,16576,16333,16162,16065,16016,16035,16116,16291,16509,16817,17180,17596,18080,18647,19245,19886,20572,21298,22041,22781,23507,24200,24868,25442,26007,26430,26754,26989,27105,27111,27021,26813,26491,26097,25609,25042,24457,23830,23181,22530,21866,21229,20603,20025,19474,18962,18507,18091,17730,17398,17109,16843,16613,16401,16186,16015,15835,15642,15474,15351,15228,15125,15045,14981,14942,14912,14915,14924,14941,14965,15018,15045,15087,15125,15200,15201,15199,15217,15218,15242,15264,15253,15239,15204,15139,15090,15026,14933,14834,14695,14542,14364,14189,13978,13749,13517,13255,12993,12715,12413,12128,11821,11537,11282,11015,10779,10549,10273,9981,9651,9351,9074,8827,8588,8435,8267,8134,8053,7972,7908,7865,7789,7698,7562,7371,7219,7089,6967,6885,6801,6743,6695,6667,6643,6628,6604,6590,6624,6605,6444,6160,5724,5103,21.6,21.8,22.4,1567837,0.5,12.2,12.0,5.0,475,-1.00,-1.00,57.6647,-18.926524,0.000571,,,,,183 +SATSLF0720,2024246,6.013428,4.22,0.0591,0.1059,0.0197,0.00,16049,649,1,706,711,702,711,708,699,704,697,719,713,722,731,772,886,1206,1949,3109,4463,5694,6613,7259,7726,8131,8583,9093,9714,10451,11316,12309,13405,14576,15724,16837,17784,18493,18916,19053,18880,18504,17959,17398,16845,16393,16041,15805,15733,15806,16055,16442,17029,17776,18673,19744,20957,22258,23707,25175,26642,28054,29287,30277,31034,31443,31429,31116,30470,29549,28494,27280,26109,24944,23866,22882,22017,21291,20693,20218,19829,19546,19404,19320,19337,19429,19622,19873,20215,20651,21169,21728,22353,23019,23658,24257,24833,25309,25689,25938,25980,25868,25578,25111,24474,23773,22966,22107,21254,20398,19641,18930,18289,17748,17269,16880,16548,16288,16120,16021,15982,16016,16100,16259,16487,16773,17139,17561,18057,18602,19225,19855,20540,21281,22021,22741,23463,24169,24804,25399,25968,26407,26710,26952,27042,27063,26968,26741,26423,26033,25552,24987,24395,23781,23133,22483,21821,21188,20574,19990,19414,18929,18454,18059,17685,17369,17099,16834,16606,16404,16189,16001,15797,15607,15433,15311,15184,15085,15013,14938,14922,14898,14906,14907,14925,14951,14989,15024,15051,15106,15163,15165,15187,15181,15195,15204,15229,15229,15232,15178,15134,15066,14995,14896,14803,14674,14507,14339,14160,13944,13740,13493,13237,12970,12677,12404,12117,11797,11543,11253,10999,10743,10523,10254,9953,9625,9325,9044,8788,8587,8418,8272,8139,8042,7968,7879,7853,7768,7683,7547,7367,7226,7088,6979,6873,6791,6736,6664,6641,6615,6615,6604,6590,6609,6608,6433,6143,5721,5100,21.6,21.8,22.4,1567838,0.0,12.2,12.0,5.0,476,-1.00,-1.00,58.0961,-19.046011,0.000541,,,,,43 +SATSLF0720,2024246,6.013687,4.17,0.0584,0.1054,0.0197,0.00,16080,649,1,695,706,701,707,736,722,727,721,727,715,734,733,775,881,1219,1957,3131,4491,5737,6654,7302,7770,8192,8637,9151,9769,10508,11370,12355,13451,14635,15786,16904,17846,18557,18999,19140,18960,18583,18034,17452,16899,16436,16081,15861,15785,15867,16114,16517,17101,17830,18740,19792,21013,22304,23768,25248,26723,28125,29386,30376,31131,31524,31517,31189,30542,29613,28563,27349,26165,25015,23925,22920,22087,21348,20742,20267,19882,19586,19437,19341,19348,19447,19628,19904,20250,20683,21213,21768,22381,23061,23693,24309,24873,25354,25714,25984,26029,25925,25634,25177,24529,23817,23016,22155,21279,20438,19684,18968,18321,17754,17286,16877,16565,16306,16137,16039,15995,16023,16117,16281,16481,16791,17159,17588,18095,18645,19270,19889,20573,21291,22029,22770,23479,24183,24834,25426,25989,26404,26731,26971,27074,27097,27009,26794,26466,26066,25579,25019,24425,23805,23162,22505,21833,21214,20599,20011,19462,18981,18500,18092,17735,17401,17117,16849,16605,16397,16197,16001,15819,15625,15463,15324,15206,15099,15035,14965,14938,14912,14915,14933,14944,14968,14995,15042,15074,15130,15176,15189,15208,15205,15219,15230,15260,15248,15245,15189,15136,15069,15010,14909,14813,14676,14525,14357,14170,13958,13770,13512,13261,12996,12720,12412,12129,11816,11516,11259,11000,10777,10536,10281,9968,9657,9354,9064,8818,8602,8438,8283,8142,8051,7976,7915,7845,7776,7685,7571,7379,7205,7093,6978,6880,6801,6736,6695,6652,6638,6617,6631,6611,6631,6613,6482,6154,5728,5093,21.6,21.8,22.4,1567839,0.0,12.2,11.9,5.0,474,-1.00,-1.00,57.4562,-18.827209,0.000540,,,,,79 +SATSLF0720,2024246,6.013941,4.23,0.0592,0.1060,0.0203,0.00,16055,649,1,701,693,706,721,723,725,728,711,731,739,738,753,792,902,1221,1965,3122,4490,5721,6644,7277,7746,8171,8612,9135,9729,10495,11352,12342,13446,14615,15773,16893,17814,18545,18970,19115,18934,18556,18025,17421,16872,16416,16038,15827,15757,15843,16082,16491,17072,17805,18718,19761,20978,22285,23746,25208,26685,28096,29344,30333,31061,31438,31440,31130,30469,29559,28508,27284,26119,24956,23891,22885,22050,21308,20699,20232,19827,19571,19408,19314,19322,19431,19609,19883,20217,20662,21189,21729,22348,23005,23638,24277,24841,25310,25689,25944,25985,25865,25603,25126,24485,23774,22986,22115,21251,20405,19632,18928,18268,17717,17243,16857,16538,16285,16128,16017,15975,15985,16093,16238,16471,16749,17123,17570,18049,18609,19232,19850,20549,21270,22000,22745,23444,24160,24794,25387,25944,26365,26670,26926,27034,27053,26972,26754,26443,26054,25556,24990,24401,23767,23131,22462,21799,21165,20581,19989,19425,18931,18461,18062,17689,17357,17078,16822,16582,16381,16181,15984,15796,15614,15449,15301,15188,15093,15021,14940,14902,14891,14897,14898,14923,14947,14977,15013,15047,15087,15156,15165,15175,15187,15207,15225,15245,15237,15220,15169,15113,15049,14985,14890,14798,14667,14513,14345,14155,13941,13735,13510,13252,12965,12679,12378,12100,11795,11510,11257,11008,10763,10523,10267,9972,9653,9341,9064,8829,8610,8434,8278,8134,8047,7954,7877,7827,7770,7677,7533,7373,7232,7097,6976,6883,6803,6742,6685,6660,6629,6610,6592,6589,6601,6605,6445,6143,5714,5109,21.6,21.8,22.4,1567840,0.0,12.2,11.9,5.0,471,-1.00,-1.00,57.1066,-18.646735,0.000589,,,,,85 +SATSLF0720,2024246,6.014192,4.26,0.0597,0.1055,0.0193,0.00,16070,649,1,699,694,694,714,724,713,731,737,741,738,745,752,781,892,1229,1960,3133,4501,5741,6680,7297,7764,8181,8624,9137,9756,10492,11362,12360,13461,14632,15800,16902,17842,18562,18995,19129,18941,18569,18026,17442,16890,16432,16063,15851,15794,15864,16086,16501,17086,17826,18733,19793,20997,22313,23746,25216,26698,28115,29377,30360,31109,31490,31499,31161,30523,29588,28544,27298,26125,24971,23901,22898,22055,21335,20722,20231,19853,19584,19429,19336,19345,19444,19619,19882,20232,20669,21189,21744,22355,23024,23660,24274,24860,25333,25707,25958,26013,25892,25602,25128,24496,23787,22994,22134,21268,20421,19664,18965,18305,17761,17271,16884,16553,16315,16130,16034,15981,16019,16104,16275,16501,16793,17163,17589,18065,18621,19235,19859,20547,21280,22022,22775,23477,24180,24814,25408,25973,26391,26711,26950,27056,27073,26981,26766,26455,26048,25581,25008,24420,23765,23136,22490,21813,21188,20590,19996,19444,18946,18480,18084,17713,17382,17093,16833,16592,16387,16189,15988,15811,15617,15457,15325,15201,15100,15041,14970,14928,14908,14906,14902,14931,14953,14986,15016,15055,15110,15165,15185,15197,15209,15205,15232,15245,15261,15248,15202,15143,15080,14997,14904,14805,14673,14525,14357,14157,13955,13744,13506,13254,12993,12705,12412,12107,11809,11528,11269,11013,10785,10549,10273,9973,9646,9345,9049,8813,8608,8443,8292,8146,8037,7968,7904,7838,7781,7697,7545,7361,7231,7101,6999,6905,6806,6743,6697,6648,6621,6627,6601,6593,6593,6606,6457,6146,5725,5109,21.6,21.8,22.4,1567841,0.2,12.1,12.0,5.0,473,-1.00,-1.00,56.9421,-18.597099,0.000603,,,,,107 +SATSLF0720,2024246,6.014447,4.14,0.0579,0.1064,0.0199,0.00,16052,649,1,692,717,717,712,718,702,713,705,713,717,727,733,773,883,1223,1949,3122,4480,5728,6645,7278,7745,8158,8613,9109,9719,10462,11322,12322,13429,14586,15733,16838,17798,18516,18954,19096,18912,18538,18008,17416,16846,16386,16034,15810,15746,15821,16059,16480,17045,17785,18705,19754,20972,22288,23734,25205,26677,28077,29317,30306,31048,31444,31445,31114,30487,29570,28525,27282,26106,24952,23893,22884,22032,21299,20696,20218,19829,19547,19395,19300,19328,19420,19636,19882,20218,20644,21177,21725,22338,23002,23655,24265,24833,25312,25689,25954,25989,25870,25593,25122,24477,23756,22961,22095,21247,20405,19641,18945,18288,17738,17261,16862,16549,16297,16129,16025,15991,16021,16101,16253,16465,16759,17133,17549,18044,18600,19225,19853,20537,21271,22001,22749,23449,24157,24805,25392,25949,26376,26705,26946,27044,27065,26969,26754,26428,26045,25544,24999,24401,23762,23117,22459,21793,21170,20568,19989,19421,18944,18462,18067,17707,17360,17078,16810,16592,16377,16170,15988,15802,15614,15465,15309,15213,15097,15013,14941,14905,14885,14885,14903,14915,14951,14987,15031,15053,15112,15165,15177,15189,15199,15202,15218,15223,15239,15233,15191,15118,15061,14978,14905,14809,14686,14519,14357,14157,13943,13737,13501,13245,12976,12692,12394,12096,11797,11522,11248,11002,10756,10525,10262,9959,9638,9332,9051,8809,8589,8413,8260,8119,8039,7959,7885,7831,7783,7682,7543,7365,7219,7095,6983,6876,6777,6724,6665,6643,6617,6603,6583,6590,6601,6589,6448,6143,5730,5117,21.6,21.9,22.5,1567842,0.2,12.2,12.0,5.0,473,-1.00,-1.00,57.9799,-19.007924,0.000626,,,,,22 +SATSDF0720,2024246,6.259138,0.00,0.0000,0.0000,0.0000,0.00,646,0,1,621,627,629,630,631,622,615,623,624,613,621,615,621,635,629,633,624,622,625,618,621,635,648,663,660,670,662,646,644,663,646,648,645,645,644,637,635,640,634,639,647,648,653,651,652,639,647,635,643,658,653,655,645,653,653,649,654,655,656,655,653,662,647,658,653,649,656,644,652,661,653,655,651,664,646,639,639,647,641,640,639,645,634,641,647,646,641,635,639,641,636,647,650,648,649,650,659,649,647,646,644,642,638,645,656,645,655,644,647,644,647,647,649,659,641,639,646,650,642,653,651,650,630,641,647,645,648,649,649,657,657,658,658,664,645,647,638,643,644,647,646,653,666,657,657,648,653,644,635,631,643,637,659,646,645,640,649,643,643,659,648,647,645,657,653,651,645,641,644,643,640,640,639,647,647,645,639,643,628,643,645,646,648,659,661,663,650,647,639,653,645,651,645,645,653,658,659,657,662,653,657,640,637,644,651,649,636,643,648,637,635,650,641,642,649,644,654,648,644,647,636,639,633,631,650,653,642,647,655,660,658,661,654,651,653,641,647,650,638,639,637,639,650,646,649,641,650,650,646,660,657,641,651,642,645,466,0.0,0.0,0.0,1567841,0.2,12.7,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,63 +SATSLF0720,2024246,6.259692,3.96,0.0555,0.1001,0.0169,0.00,16224,646,1,694,706,696,699,721,717,729,730,731,727,726,733,770,869,1214,1946,3139,4540,5799,6727,7381,7854,8296,8726,9257,9885,10619,11501,12502,13610,14807,15964,17094,18053,18795,19245,19370,19178,18801,18253,17659,17083,16635,16266,16034,15965,16038,16281,16677,17284,18033,18934,20017,21254,22576,24040,25520,27027,28470,29698,30712,31461,31860,31847,31531,30877,29977,28892,27647,26471,25306,24204,23193,22329,21585,20966,20480,20091,19799,19650,19568,19562,19658,19853,20116,20469,20893,21416,21989,22608,23289,23924,24539,25117,25589,25963,26208,26283,26144,25858,25389,24734,24025,23211,22349,21457,20618,19849,19130,18472,17922,17430,17033,16704,16459,16293,16186,16140,16154,16229,16407,16629,16936,17317,17738,18233,18813,19418,20061,20750,21460,22215,22969,23680,24395,25059,25652,26237,26654,26954,27217,27320,27341,27242,27035,26708,26306,25806,25226,24652,23997,23349,22676,22013,21382,20773,20196,19625,19126,18642,18240,17870,17538,17249,16976,16727,16544,16325,16130,15952,15753,15592,15440,15341,15225,15159,15085,15037,15037,15016,15033,15051,15073,15098,15136,15163,15212,15279,15301,15312,15336,15325,15341,15376,15362,15337,15280,15225,15157,15095,15016,14922,14777,14633,14466,14270,14053,13833,13602,13319,13075,12789,12488,12186,11893,11597,11325,11074,10842,10608,10341,10042,9724,9402,9115,8858,8639,8461,8309,8195,8094,8020,7950,7898,7838,7757,7606,7418,7257,7131,7031,6918,6852,6778,6729,6690,6665,6664,6648,6635,6651,6648,6497,6186,5764,5136,21.5,21.5,21.9,1567842,0.5,12.2,12.0,5.0,597,-1.00,-1.00,57.4095,-19.015164,0.000559,,,,,66 +SATSLF0720,2024246,6.259874,4.07,0.0571,0.1014,0.0172,0.00,16199,646,1,694,699,696,682,699,708,706,709,717,722,729,720,770,881,1205,1943,3127,4525,5783,6712,7349,7840,8241,8703,9232,9861,10596,11479,12475,13593,14790,15946,17067,18039,18756,19186,19331,19138,18777,18225,17630,17071,16602,16228,16000,15916,16000,16237,16653,17256,18006,18921,19993,21218,22551,23997,25504,26978,28407,29658,30664,31422,31824,31824,31493,30829,29897,28840,27600,26404,25244,24154,23147,22307,21562,20954,20461,20057,19779,19602,19513,19525,19634,19815,20085,20429,20862,21390,21959,22578,23238,23883,24501,25084,25577,25925,26179,26243,26114,25833,25355,24712,23984,23173,22312,21446,20589,19813,19122,18442,17885,17408,17011,16678,16424,16240,16155,16105,16136,16228,16400,16606,16928,17280,17700,18203,18792,19400,20037,20721,21458,22193,22954,23664,24360,25013,25606,26170,26614,26944,27188,27284,27318,27208,27000,26651,26251,25783,25198,24611,23973,23326,22656,21987,21370,20752,20154,19605,19100,18615,18215,17833,17504,17214,16941,16705,16512,16301,16119,15933,15741,15565,15425,15315,15212,15126,15054,15018,15005,15008,15010,15028,15051,15087,15134,15147,15206,15248,15267,15279,15284,15303,15312,15335,15331,15319,15283,15228,15149,15066,14993,14909,14762,14616,14433,14249,14028,13811,13575,13312,13046,12779,12478,12174,11879,11603,11317,11077,10840,10598,10325,10021,9704,9388,9105,8853,8647,8480,8308,8179,8080,7994,7909,7863,7812,7714,7581,7419,7253,7122,7021,6917,6853,6761,6711,6664,6667,6655,6640,6625,6642,6645,6491,6163,5731,5113,21.5,21.5,22.0,1567843,0.6,12.1,12.0,5.0,495,-1.00,-1.00,57.2251,-18.908570,0.000653,,,,,26 +SATSLF0720,2024246,6.260129,4.16,0.0583,0.1006,0.0165,0.00,16220,646,1,695,692,689,699,691,699,708,707,715,719,734,725,758,874,1219,1961,3149,4541,5789,6716,7368,7833,8262,8706,9244,9872,10616,11502,12501,13612,14797,15968,17080,18039,18773,19221,19357,19163,18791,18249,17657,17082,16631,16269,16037,15964,16047,16285,16692,17275,18048,18948,20017,21246,22562,24014,25501,27002,28430,29690,30704,31448,31853,31852,31521,30872,29948,28884,27630,26445,25284,24165,23175,22322,21576,20951,20462,20075,19803,19629,19544,19553,19657,19846,20114,20445,20891,21417,21989,22612,23286,23921,24537,25125,25597,25965,26219,26263,26135,25870,25388,24740,24011,23227,22339,21462,20608,19844,19130,18461,17908,17440,17026,16687,16437,16270,16179,16113,16151,16238,16409,16634,16926,17316,17741,18233,18805,19411,20058,20740,21488,22229,22961,23672,24389,25056,25658,26214,26650,26981,27228,27331,27339,27238,27022,26704,26294,25797,25221,24642,24001,23357,22701,22021,21381,20777,20167,19605,19113,18629,18233,17854,17531,17248,16977,16739,16533,16339,16127,15949,15753,15583,15445,15315,15215,15141,15073,15037,15024,15040,15045,15061,15093,15122,15157,15183,15237,15284,15298,15310,15308,15306,15329,15341,15359,15339,15291,15239,15171,15106,15002,14901,14772,14612,14459,14262,14061,13850,13613,13333,13075,12795,12497,12194,11893,11606,11328,11081,10845,10599,10329,10039,9719,9417,9129,8865,8661,8481,8327,8189,8104,8013,7947,7906,7844,7751,7598,7435,7269,7141,7026,6921,6845,6773,6721,6694,6664,6654,6638,6635,6647,6637,6487,6178,5755,5138,21.5,21.5,22.1,1567844,0.3,12.2,12.0,5.0,480,-1.00,-1.00,56.5319,-18.641094,0.000465,,,,,163 +SATSLF0720,2024246,6.260382,4.16,0.0583,0.1026,0.0172,0.00,16164,646,1,700,693,717,706,716,721,723,722,728,722,730,729,763,890,1223,1949,3143,4531,5768,6706,7354,7809,8236,8673,9197,9822,10565,11449,12442,13563,14753,15924,17042,17988,18697,19132,19264,19079,18689,18175,17581,17018,16545,16187,15953,15893,15978,16204,16624,17200,17947,18861,19941,21149,22483,23927,25412,26901,28321,29570,30585,31325,31723,31731,31405,30754,29829,28755,27528,26333,25168,24089,23085,22232,21497,20891,20401,20008,19722,19554,19459,19481,19577,19765,20037,20366,20820,21322,21888,22511,23188,23837,24448,25028,25493,25860,26118,26177,26068,25778,25301,24658,23945,23133,22271,21389,20525,19769,19049,18396,17830,17358,16952,16629,16382,16211,16113,16075,16103,16191,16367,16588,16883,17241,17682,18157,18726,19345,19974,20649,21386,22142,22882,23589,24310,24960,25562,26129,26548,26878,27116,27210,27221,27127,26913,26607,26197,25719,25152,24561,23906,23259,22598,21945,21312,20684,20099,19549,19047,18583,18178,17812,17488,17194,16929,16678,16478,16266,16083,15904,15706,15543,15402,15273,15165,15095,15028,14993,14984,14994,14984,15000,15036,15082,15107,15137,15185,15227,15234,15249,15257,15273,15289,15317,15313,15309,15259,15202,15146,15066,14989,14876,14744,14596,14420,14229,14022,13795,13559,13311,13043,12756,12457,12165,11863,11565,11293,11020,10791,10551,10298,10002,9685,9370,9089,8845,8635,8471,8317,8171,8076,8007,7927,7879,7801,7720,7579,7404,7253,7124,7006,6914,6826,6760,6720,6673,6645,6637,6617,6613,6640,6641,6485,6171,5748,5131,21.5,21.5,22.1,1567845,0.3,12.2,12.0,5.0,480,-1.00,-1.00,57.1282,-18.816478,0.000550,,,,,58 +SATSLF0720,2024246,6.260633,4.10,0.0574,0.1009,0.0166,0.00,16205,646,1,701,713,717,716,730,725,722,727,733,737,734,743,769,891,1220,1956,3145,4535,5796,6733,7380,7849,8265,8702,9236,9861,10599,11473,12489,13601,14801,15961,17084,18056,18775,19209,19342,19146,18787,18244,17652,17076,16626,16246,16004,15933,16029,16277,16673,17266,18014,18922,19992,21218,22552,24005,25495,26994,28398,29665,30670,31415,31814,31824,31496,30841,29898,28833,27618,26413,25240,24168,23153,22293,21544,20940,20450,20058,19781,19620,19532,19533,19622,19829,20069,20423,20855,21390,21949,22593,23253,23906,24514,25090,25581,25937,26193,26247,26116,25833,25333,24701,24002,23193,22309,21426,20595,19821,19112,18464,17893,17426,17012,16699,16441,16276,16164,16135,16144,16226,16392,16619,16921,17293,17709,18209,18781,19384,20027,20695,21451,22172,22923,23645,24361,25018,25613,26179,26621,26940,27189,27291,27302,27219,26994,26665,26249,25762,25190,24605,23973,23322,22665,21998,21344,20749,20154,19591,19101,18621,18210,17843,17515,17221,16948,16710,16509,16302,16115,15921,15751,15590,15437,15325,15216,15147,15063,15017,15006,15008,15014,15021,15067,15090,15136,15165,15213,15261,15277,15281,15295,15298,15329,15359,15354,15349,15269,15221,15169,15093,15019,14907,14765,14616,14426,14243,14041,13833,13583,13320,13046,12775,12476,12189,11874,11600,11322,11063,10839,10600,10317,10019,9701,9384,9105,8865,8653,8489,8321,8204,8101,8028,7950,7886,7827,7729,7581,7412,7258,7131,7011,6935,6846,6769,6722,6677,6664,6646,6637,6629,6654,6652,6481,6187,5756,5131,21.6,21.6,22.1,1567846,0.8,12.2,12.0,5.0,482,-1.00,-1.00,56.6826,-18.684510,0.000532,,,,,246 +SATSLF0720,2024246,6.260888,4.02,0.0562,0.1022,0.0171,0.00,16170,646,1,689,682,692,699,710,711,709,725,709,711,717,726,757,877,1218,1962,3145,4529,5765,6709,7344,7819,8249,8696,9205,9817,10553,11435,12429,13546,14734,15890,17012,17976,18713,19149,19280,19099,18710,18177,17573,16990,16534,16171,15959,15882,15965,16228,16632,17210,17955,18853,19936,21145,22473,23926,25422,26898,28304,29571,30579,31328,31724,31722,31397,30743,29824,28768,27532,26345,25170,24080,23079,22235,21513,20886,20401,20016,19733,19578,19476,19462,19576,19770,20026,20379,20816,21334,21913,22528,23186,23847,24440,25025,25497,25859,26117,26171,26059,25773,25305,24674,23936,23131,22271,21401,20548,19780,19073,18421,17859,17386,16981,16637,16388,16226,16115,16090,16109,16204,16371,16595,16903,17266,17701,18189,18757,19364,19996,20680,21408,22157,22894,23621,24313,24971,25565,26139,26558,26893,27145,27248,27255,27179,26961,26629,26202,25719,25165,24554,23930,23269,22631,21952,21335,20717,20113,19559,19069,18588,18181,17821,17511,17205,16941,16682,16499,16297,16110,15890,15714,15545,15405,15301,15178,15114,15038,15000,14987,14978,14987,15009,15019,15057,15117,15133,15177,15238,15266,15273,15284,15301,15325,15342,15325,15326,15282,15209,15152,15065,14984,14887,14741,14603,14421,14237,14015,13811,13569,13298,13041,12774,12458,12179,11873,11589,11312,11057,10811,10574,10304,10005,9692,9383,9099,8852,8644,8461,8305,8172,8061,8002,7939,7887,7821,7731,7596,7411,7256,7129,7013,6924,6842,6769,6716,6673,6650,6645,6632,6615,6631,6624,6480,6168,5748,5119,21.6,21.6,22.2,1567847,0.2,12.2,12.0,5.0,480,-1.00,-1.00,57.6028,-19.013677,0.000568,,,,,82 +SATSLF0720,2024246,6.261141,4.18,0.0585,0.1038,0.0180,0.00,16129,646,1,690,698,695,709,713,701,711,708,710,702,706,713,759,872,1205,1933,3114,4486,5727,6646,7292,7773,8188,8638,9162,9770,10516,11395,12386,13490,14657,15835,16937,17889,18621,19051,19176,18989,18614,18086,17509,16933,16461,16100,15895,15814,15904,16155,16567,17142,17892,18780,19846,21083,22401,23847,25317,26801,28236,29469,30471,31235,31617,31641,31293,30651,29726,28669,27445,26257,25106,24020,23012,22164,21430,20835,20350,19961,19680,19509,19407,19425,19525,19724,19985,20346,20772,21271,21842,22477,23132,23777,24387,24977,25437,25805,26069,26123,25993,25708,25237,24604,23874,23085,22216,21354,20493,19732,19031,18376,17809,17341,16932,16622,16359,16207,16096,16052,16080,16173,16325,16555,16856,17216,17659,18144,18714,19322,19953,20643,21373,22113,22848,23584,24277,24937,25529,26090,26525,26826,27083,27176,27189,27095,26882,26561,26157,25677,25114,24505,23877,23246,22574,21909,21280,20663,20073,19520,19028,18571,18152,17790,17463,17165,16893,16663,16464,16258,16066,15884,15680,15524,15374,15267,15157,15094,15009,14971,14953,14949,14962,14992,15000,15047,15076,15122,15168,15229,15236,15251,15261,15272,15274,15294,15296,15285,15257,15182,15120,15042,14965,14861,14725,14579,14406,14225,13997,13797,13545,13283,13022,12730,12443,12157,11849,11572,11288,11048,10801,10565,10289,9983,9668,9359,9093,8837,8625,8458,8292,8165,8061,7976,7920,7863,7805,7725,7575,7393,7243,7105,6999,6891,6823,6748,6696,6676,6653,6641,6630,6621,6638,6625,6467,6169,5730,5103,21.6,21.6,22.2,1567848,0.4,12.2,11.9,5.0,480,-1.00,-1.00,57.9477,-19.098004,0.000584,,,,,52 +SATSLF0720,2024246,6.261397,4.24,0.0594,0.1026,0.0178,0.00,16166,646,1,695,703,709,716,706,711,710,707,709,717,718,738,765,873,1218,1962,3142,4521,5775,6690,7349,7817,8252,8677,9195,9823,10566,11440,12459,13545,14731,15909,17021,17982,18711,19142,19270,19079,18711,18157,17586,17020,16566,16205,15976,15898,15978,16221,16619,17204,17941,18873,19946,21171,22501,23941,25431,26918,28330,29592,30578,31331,31726,31722,31389,30759,29834,28773,27523,26346,25163,24093,23081,22240,21501,20886,20384,19990,19714,19556,19460,19473,19589,19773,20040,20402,20813,21331,21905,22514,23186,23836,24441,25016,25515,25872,26132,26180,26081,25793,25296,24673,23947,23147,22272,21394,20540,19771,19053,18402,17845,17377,16977,16657,16393,16229,16141,16076,16101,16206,16357,16585,16874,17241,17677,18161,18722,19353,19977,20664,21405,22144,22881,23604,24292,24973,25561,26125,26571,26874,27125,27229,27249,27148,26937,26600,26209,25706,25148,24560,23917,23258,22618,21941,21313,20709,20113,19569,19045,18587,18173,17810,17485,17176,16924,16672,16478,16274,16077,15888,15702,15525,15388,15285,15170,15107,15042,14988,14980,14981,14988,15018,15033,15070,15112,15136,15189,15250,15252,15253,15258,15273,15285,15317,15312,15297,15253,15196,15129,15056,14966,14867,14733,14578,14408,14213,14009,13797,13569,13305,13035,12762,12468,12167,11859,11577,11301,11053,10801,10587,10313,10010,9682,9371,9083,8840,8633,8461,8304,8188,8084,7994,7934,7881,7828,7730,7587,7413,7262,7127,7012,6909,6829,6759,6705,6677,6657,6642,6615,6624,6629,6621,6456,6167,5737,5125,21.6,21.6,22.2,1567849,0.0,12.2,11.9,5.0,477,-1.00,-1.00,56.6769,-18.632625,0.000552,,,,,77 +SATSLF0720,2024246,6.261651,4.07,0.0570,0.1026,0.0172,0.00,16167,646,1,705,716,712,698,709,711,723,722,732,718,734,741,773,886,1223,1960,3146,4536,5787,6702,7346,7820,8246,8681,9198,9827,10569,11442,12429,13550,14732,15894,17019,17981,18697,19129,19270,19095,18713,18173,17577,17020,16544,16177,15946,15887,15949,16203,16620,17205,17946,18863,19931,21149,22491,23943,25413,26897,28327,29569,30566,31316,31693,31719,31400,30746,29832,28765,27515,26333,25173,24096,23078,22215,21483,20867,20381,20007,19717,19557,19458,19467,19564,19759,20028,20370,20813,21335,21906,22514,23179,23829,24455,25029,25509,25865,26141,26186,26057,25776,25285,24656,23929,23125,22263,21385,20562,19782,19072,18410,17866,17385,16966,16645,16403,16232,16121,16083,16110,16197,16358,16585,16876,17242,17685,18171,18741,19334,19981,20666,21397,22138,22884,23616,24325,24992,25565,26135,26578,26888,27140,27233,27248,27145,26932,26605,26205,25697,25139,24551,23908,23276,22608,21954,21306,20706,20102,19545,19066,18581,18201,17808,17483,17191,16915,16693,16470,16279,16093,15897,15722,15545,15409,15283,15183,15104,15031,14990,14980,14999,14987,15019,15046,15071,15114,15145,15191,15261,15264,15258,15280,15280,15299,15314,15310,15311,15260,15197,15147,15073,15001,14886,14763,14621,14443,14237,14025,13803,13565,13292,13028,12737,12441,12165,11872,11585,11309,11053,10824,10576,10307,9995,9703,9384,9105,8859,8638,8481,8314,8176,8081,8002,7943,7889,7809,7715,7580,7407,7244,7123,7009,6914,6837,6770,6726,6669,6659,6642,6627,6614,6648,6641,6486,6186,5758,5133,21.6,21.6,22.2,1567850,0.3,12.2,11.9,5.0,480,-1.00,-1.00,57.3788,-18.917877,0.000589,,,,,76 +SATSLF0720,2024246,6.261903,4.32,0.0605,0.1067,0.0202,0.00,16027,646,1,696,713,717,713,713,707,718,710,721,715,720,739,778,889,1216,1951,3101,4471,5697,6592,7233,7707,8110,8542,9056,9676,10406,11273,12259,13349,14522,15667,16768,17700,18423,18859,18984,18810,18434,17916,17330,16789,16328,15965,15748,15689,15757,16002,16417,17001,17720,18636,19696,20900,22197,23624,25122,26581,27984,29222,30211,30954,31349,31344,31048,30388,29474,28425,27216,26052,24885,23819,22839,21978,21247,20650,20181,19797,19515,19356,19281,19283,19393,19579,19848,20198,20613,21133,21696,22293,22959,23608,24232,24795,25278,25634,25908,25932,25820,25541,25053,24421,23705,22916,22057,21204,20373,19602,18901,18253,17707,17226,16830,16514,16266,16117,16000,15969,15985,16079,16243,16453,16759,17117,17548,18042,18597,19210,19844,20525,21229,21984,22725,23445,24136,24793,25370,25946,26361,26682,26925,27020,27044,26941,26736,26418,26033,25545,24976,24397,23756,23106,22458,21788,21165,20554,19973,19417,18925,18445,18070,17694,17365,17084,16813,16587,16374,16172,15988,15790,15602,15443,15298,15205,15080,15011,14947,14903,14899,14874,14884,14928,14937,14983,15021,15049,15093,15150,15158,15173,15182,15205,15216,15240,15231,15227,15186,15101,15047,14974,14896,14817,14672,14519,14343,14162,13944,13724,13496,13243,12987,12691,12398,12107,11800,11512,11253,11004,10754,10530,10257,9956,9623,9335,9057,8811,8606,8432,8264,8139,8052,7995,7902,7860,7782,7696,7545,7368,7213,7072,6965,6877,6808,6729,6684,6654,6629,6633,6615,6598,6610,6597,6432,6138,5709,5099,21.6,21.6,22.2,1567851,0.3,12.2,11.9,5.0,470,-1.00,-1.00,58.3203,-19.096640,0.000528,,,,,114 +SATSLF0720,2024246,6.262160,4.12,0.0576,0.1027,0.0176,0.00,16147,646,1,708,698,705,711,706,710,706,701,711,715,723,720,757,887,1218,1947,3128,4512,5754,6675,7336,7798,8212,8663,9181,9824,10565,11433,12429,13545,14728,15882,16987,17963,18682,19117,19258,19073,18684,18153,17556,16986,16545,16181,15937,15868,15956,16213,16601,17184,17931,18850,19909,21111,22451,23900,25389,26877,28293,29541,30538,31286,31696,31669,31347,30700,29789,28715,27499,26317,25125,24059,23053,22192,21453,20844,20349,19975,19700,19534,19453,19450,19553,19749,20009,20347,20764,21298,21856,22475,23156,23809,24411,24984,25466,25827,26098,26147,26038,25762,25271,24643,23928,23111,22246,21361,20515,19762,19044,18394,17827,17361,16958,16641,16394,16224,16119,16069,16093,16177,16345,16547,16859,17229,17657,18147,18717,19315,19965,20646,21377,22129,22867,23586,24294,24955,25531,26097,26501,26845,27084,27193,27209,27106,26886,26555,26178,25684,25118,24542,23899,23247,22597,21920,21296,20681,20082,19531,19042,18566,18156,17785,17441,17175,16897,16664,16461,16247,16058,15862,15681,15502,15378,15257,15154,15101,15019,14986,14962,14965,14957,14998,15017,15047,15085,15110,15163,15210,15231,15239,15253,15264,15285,15309,15306,15293,15243,15177,15133,15058,14964,14866,14729,14573,14401,14211,14005,13795,13543,13290,13028,12737,12432,12141,11845,11566,11297,11041,10807,10573,10302,10001,9677,9380,9081,8832,8626,8453,8308,8177,8073,7994,7920,7861,7804,7709,7573,7396,7255,7117,7015,6911,6823,6767,6697,6674,6651,6634,6621,6619,6636,6610,6470,6169,5737,5127,21.6,21.6,22.2,1567852,0.5,12.2,11.9,5.0,476,-1.00,-1.00,57.0987,-18.780467,0.000526,,,,,255 +SATSLF0720,2024246,6.262414,4.17,0.0584,0.1040,0.0179,0.00,16130,646,1,696,699,717,709,717,705,722,725,712,705,719,733,773,881,1214,1957,3129,4509,5750,6672,7306,7779,8206,8649,9173,9793,10537,11403,12408,13513,14687,15853,16961,17913,18653,19076,19202,19021,18644,18125,17510,16960,16501,16145,15893,15841,15914,16160,16571,17165,17906,18814,19877,21096,22417,23851,25320,26821,28240,29486,30477,31243,31637,31634,31301,30672,29719,28678,27453,26256,25085,24018,23008,22167,21429,20816,20330,19943,19662,19505,19398,19419,19526,19720,19976,20323,20758,21277,21840,22471,23117,23765,24381,24941,25431,25811,26076,26131,26008,25731,25238,24588,23873,23091,22221,21345,20489,19729,19020,18380,17822,17357,16933,16623,16357,16173,16083,16036,16065,16144,16324,16554,16856,17221,17654,18135,18712,19328,19948,20629,21350,22103,22824,23560,24276,24921,25525,26093,26506,26834,27082,27178,27189,27099,26886,26565,26167,25677,25112,24519,23884,23222,22556,21910,21278,20660,20083,19521,19019,18537,18163,17797,17454,17157,16894,16629,16442,16236,16061,15853,15670,15502,15368,15245,15169,15086,15019,14970,14949,14949,14974,14986,15002,15044,15086,15109,15164,15226,15228,15233,15249,15266,15277,15269,15283,15282,15223,15167,15125,15045,14956,14880,14722,14583,14402,14213,14005,13790,13537,13285,13010,12733,12439,12137,11847,11574,11288,11049,10802,10583,10295,10013,9677,9364,9075,8845,8619,8456,8309,8161,8071,7999,7931,7865,7815,7730,7581,7409,7245,7105,6995,6899,6801,6751,6701,6656,6645,6639,6634,6614,6643,6634,6481,6161,5735,5113,21.6,21.6,22.3,1567853,0.0,12.1,11.9,5.0,477,-1.00,-1.00,57.2950,-18.831040,0.000551,,,,,164 +SATSLF0720,2024246,6.262665,4.28,0.0600,0.1048,0.0189,0.00,16096,646,1,711,709,707,703,708,692,699,717,732,728,738,759,768,879,1216,1950,3118,4493,5732,6656,7297,7775,8190,8623,9147,9761,10492,11367,12365,13457,14631,15781,16901,17842,18560,18995,19122,18951,18580,18037,17441,16903,16433,16070,15856,15786,15849,16107,16515,17098,17849,18757,19802,21037,22340,23787,25255,26757,28162,29403,30413,31162,31545,31545,31214,30560,29634,28608,27348,26183,25015,23947,22961,22106,21369,20769,20277,19891,19613,19458,19366,19380,19488,19672,19925,20263,20698,21213,21789,22415,23065,23729,24325,24917,25372,25730,26008,26068,25936,25669,25200,24546,23832,23045,22172,21300,20457,19698,18982,18334,17770,17309,16903,16599,16330,16167,16061,16013,16035,16135,16307,16528,16836,17194,17616,18096,18683,19269,19911,20587,21322,22074,22813,23530,24239,24876,25473,26048,26448,26769,27020,27122,27152,27050,26844,26505,26112,25629,25061,24477,23837,23184,22536,21862,21241,20629,20039,19485,18998,18521,18113,17733,17410,17130,16867,16631,16429,16225,16029,15842,15661,15488,15341,15254,15138,15054,14995,14942,14932,14939,14932,14958,14987,15017,15048,15085,15141,15185,15205,15227,15221,15235,15259,15278,15268,15258,15218,15140,15091,15021,14928,14841,14701,14557,14406,14194,13973,13769,13525,13262,13009,12730,12437,12149,11834,11554,11278,11031,10776,10553,10283,9985,9668,9367,9069,8833,8621,8445,8301,8153,8049,7975,7915,7863,7794,7708,7570,7392,7230,7101,6989,6898,6807,6752,6681,6660,6638,6622,6608,6607,6630,6610,6458,6149,5722,5109,21.6,21.7,22.3,1567853,0.0,12.2,11.9,5.0,469,-1.00,-1.00,57.5747,-18.894539,0.000631,,,,,95 +SATSLF0720,2024246,6.262921,4.32,0.0605,0.1045,0.0184,0.00,16113,646,1,701,705,717,724,712,715,717,717,733,726,732,729,759,882,1213,1954,3132,4503,5747,6677,7326,7789,8212,8636,9179,9798,10522,11405,12393,13502,14679,15856,16941,17891,18615,19062,19178,19002,18628,18103,17497,16935,16482,16141,15904,15838,15916,16166,16561,17137,17882,18785,19838,21064,22390,23847,25323,26813,28217,29473,30459,31209,31608,31597,31254,30602,29693,28641,27396,26225,25075,23997,22988,22139,21403,20800,20298,19912,19634,19481,19378,19397,19494,19690,19955,20298,20740,21258,21817,22429,23098,23745,24361,24939,25412,25771,26025,26096,25970,25696,25213,24573,23852,23061,22202,21328,20480,19717,19008,18354,17786,17317,16921,16604,16339,16173,16077,16028,16059,16145,16302,16544,16822,17192,17637,18123,18682,19283,19915,20612,21330,22071,22816,23530,24239,24882,25478,26042,26484,26794,27044,27142,27168,27060,26858,26525,26121,25632,25066,24481,23825,23201,22533,21879,21243,20631,20055,19485,18986,18537,18121,17768,17413,17150,16881,16645,16433,16247,16041,15844,15660,15482,15357,15237,15126,15071,14993,14956,14946,14941,14942,14955,14989,15028,15066,15085,15149,15199,15208,15225,15235,15237,15261,15284,15283,15281,15234,15156,15106,15027,14941,14849,14709,14564,14377,14195,13985,13765,13519,13275,13003,12720,12439,12138,11848,11549,11288,11028,10791,10564,10277,9991,9666,9362,9062,8825,8626,8449,8309,8173,8072,7984,7916,7865,7802,7704,7558,7380,7229,7095,6989,6907,6822,6759,6718,6665,6633,6623,6605,6593,6616,6609,6461,6150,5730,5119,21.6,21.7,22.3,1567854,0.0,12.1,12.0,5.0,474,-1.00,-1.00,56.5372,-18.493856,0.000588,,,,,84 +SATSLF0720,2024246,6.263175,4.29,0.0602,0.1053,0.0192,0.00,16079,646,1,715,730,714,712,705,711,716,720,732,720,735,753,778,893,1217,1945,3113,4476,5735,6641,7275,7746,8171,8622,9125,9745,10487,11360,12341,13457,14624,15767,16878,17834,18538,18987,19105,18938,18562,18022,17441,16885,16416,16059,15843,15779,15858,16109,16501,17083,17824,18731,19773,21004,22332,23753,25229,26694,28109,29376,30368,31108,31493,31487,31179,30521,29595,28544,27317,26153,24985,23907,22917,22064,21341,20741,20262,19861,19587,19418,19344,19353,19457,19653,19909,20257,20706,21205,21769,22384,23048,23690,24309,24878,25349,25718,25984,26042,25914,25632,25154,24513,23799,22987,22145,21264,20429,19661,18954,18322,17764,17296,16889,16573,16314,16141,16051,16013,16020,16124,16277,16510,16806,17157,17586,18076,18645,19260,19880,20585,21304,22040,22793,23482,24183,24848,25429,25989,26410,26737,26997,27094,27109,27018,26816,26478,26085,25591,25030,24439,23813,23163,22506,21835,21218,20610,20014,19450,18962,18496,18086,17720,17388,17113,16845,16610,16421,16200,16011,15821,15634,15467,15329,15205,15111,15047,14969,14937,14907,14923,14908,14953,14965,15004,15062,15081,15131,15188,15201,15197,15207,15220,15238,15269,15266,15246,15200,15147,15082,15014,14922,14825,14684,14547,14377,14176,13965,13753,13523,13261,12988,12701,12427,12134,11821,11537,11256,11015,10779,10542,10288,9986,9660,9363,9073,8823,8618,8438,8273,8139,8053,7969,7911,7862,7799,7705,7566,7383,7221,7105,6979,6894,6808,6738,6695,6663,6635,6616,6603,6605,6615,6611,6476,6162,5733,5111,21.6,21.8,22.3,1567855,0.1,12.2,11.9,5.0,472,-1.00,-1.00,57.1428,-18.687453,0.000548,,,,,162 +SATSLF0720,2024246,6.263426,4.30,0.0602,0.1050,0.0192,0.00,16091,646,1,704,710,697,710,714,713,725,725,721,735,730,737,768,891,1217,1955,3129,4505,5738,6658,7300,7776,8178,8617,9146,9761,10507,11365,12366,13485,14650,15813,16919,17862,18581,19013,19142,18962,18580,18050,17463,16905,16449,16082,15859,15793,15876,16118,16517,17107,17847,18753,19830,21053,22348,23808,25283,26749,28163,29414,30398,31162,31556,31553,31221,30549,29664,28608,27361,26173,25024,23952,22961,22100,21374,20767,20288,19905,19617,19474,19357,19387,19467,19659,19932,20269,20702,21216,21790,22396,23061,23697,24317,24887,25372,25728,25991,26057,25926,25655,25180,24546,23841,23034,22167,21298,20445,19686,18976,18323,17767,17292,16899,16587,16345,16157,16045,16009,16025,16105,16288,16506,16816,17188,17604,18103,18667,19278,19908,20583,21315,22042,22787,23499,24189,24859,25441,26005,26421,26757,26985,27101,27110,27019,26800,26481,26089,25595,25037,24448,23809,23182,22527,21864,21228,20616,20029,19461,18976,18498,18105,17745,17402,17126,16848,16615,16404,16196,16017,15829,15639,15482,15356,15230,15145,15053,14981,14922,14915,14914,14922,14939,14981,15020,15057,15087,15143,15177,15190,15211,15217,15221,15246,15253,15251,15265,15205,15153,15081,15015,14926,14824,14706,14533,14371,14182,13979,13754,13512,13253,12973,12701,12416,12129,11831,11554,11273,11033,10799,10534,10272,9975,9648,9344,9061,8832,8614,8441,8286,8155,8056,7977,7901,7849,7789,7699,7553,7369,7229,7101,6992,6883,6808,6736,6683,6651,6636,6633,6598,6597,6613,6605,6449,6138,5723,5110,21.6,21.8,22.4,1567856,0.3,12.2,12.0,5.0,479,-1.00,-1.00,57.2127,-18.747297,0.000620,,,,,106 +SATSLF0720,2024246,6.263682,4.22,0.0592,0.1070,0.0207,0.00,16020,646,1,679,699,703,704,721,716,711,731,718,728,713,721,753,873,1217,1941,3107,4474,5689,6606,7242,7724,8122,8567,9073,9685,10434,11291,12277,13378,14535,15683,16783,17717,18448,18877,19005,18834,18452,17928,17352,16800,16334,15978,15752,15693,15766,16023,16416,17004,17729,18634,19698,20905,22217,23637,25115,26584,27986,29252,30238,30958,31356,31369,31043,30396,29490,28450,27213,26045,24887,23832,22827,21975,21253,20641,20171,19769,19497,19353,19271,19285,19380,19579,19832,20168,20606,21121,21682,22299,22960,23605,24200,24770,25243,25613,25870,25931,25812,25543,25065,24434,23720,22931,22061,21202,20358,19595,18893,18244,17689,17215,16827,16513,16273,16092,15997,15938,15971,16061,16210,16448,16750,17097,17531,18009,18586,19176,19827,20535,21226,21975,22708,23403,24106,24765,25357,25923,26337,26676,26926,27021,27036,26944,26720,26390,25997,25495,24946,24346,23710,23082,22434,21781,21149,20552,19960,19422,18917,18456,18048,17685,17351,17072,16793,16567,16362,16154,15955,15772,15581,15426,15285,15161,15077,14997,14924,14875,14870,14868,14858,14903,14905,14957,14998,15045,15080,15143,15165,15173,15172,15182,15201,15221,15210,15199,15174,15093,15031,14965,14875,14776,14648,14497,14335,14151,13933,13720,13483,13229,12955,12675,12373,12087,11789,11504,11238,10978,10752,10517,10245,9949,9635,9329,9035,8803,8596,8421,8269,8135,8041,7963,7884,7836,7780,7690,7537,7366,7211,7081,6957,6863,6791,6727,6669,6630,6611,6608,6589,6581,6593,6605,6444,6137,5715,5089,21.6,21.8,22.4,1567857,0.0,12.1,12.0,5.0,481,-1.00,-1.00,58.3880,-19.129816,0.000557,,,,,50 +SATSLF0720,2024246,6.263939,4.13,0.0578,0.1062,0.0204,0.00,16051,646,1,695,686,711,709,710,720,713,715,724,729,734,742,778,877,1215,1952,3115,4481,5729,6650,7287,7754,8185,8622,9130,9746,10490,11349,12333,13434,14597,15767,16874,17805,18528,18964,19113,18913,18547,18006,17429,16871,16410,16052,15826,15748,15831,16078,16482,17050,17797,18688,19755,20973,22283,23746,25197,26679,28087,29335,30324,31060,31472,31453,31136,30480,29569,28525,27290,26105,24969,23873,22900,22056,21318,20699,20218,19847,19544,19399,19302,19307,19408,19602,19878,20205,20641,21158,21722,22349,22997,23659,24266,24849,25320,25682,25928,25980,25873,25573,25115,24481,23760,22981,22121,21236,20403,19633,18920,18279,17721,17250,16857,16528,16273,16119,16030,15985,15992,16103,16261,16493,16782,17140,17562,18042,18606,19213,19856,20532,21259,22013,22730,23443,24139,24803,25377,25934,26370,26694,26928,27043,27049,26958,26741,26409,26026,25527,24976,24389,23755,23104,22458,21793,21175,20566,19966,19403,18923,18446,18053,17686,17374,17084,16821,16593,16376,16171,15986,15782,15604,15440,15298,15188,15106,15033,14937,14899,14903,14890,14901,14934,14933,14981,15002,15048,15085,15153,15170,15185,15186,15192,15213,15221,15230,15218,15157,15098,15042,14970,14895,14795,14664,14530,14349,14153,13955,13729,13479,13225,12945,12669,12393,12090,11787,11505,11256,10994,10753,10523,10254,9954,9626,9321,9038,8789,8595,8410,8279,8132,8041,7962,7889,7849,7774,7679,7555,7375,7213,7075,6975,6883,6789,6733,6674,6638,6605,6599,6593,6589,6601,6595,6439,6137,5719,5106,21.6,21.8,22.4,1567858,0.5,12.2,11.9,5.0,476,-1.00,-1.00,57.7082,-18.900375,0.000606,,,,,250 +SATSLF0720,2024246,6.264189,4.30,0.0602,0.1062,0.0201,0.00,16057,646,1,721,725,721,700,712,713,719,714,733,729,738,733,766,879,1203,1949,3128,4494,5737,6661,7297,7764,8185,8631,9138,9769,10504,11368,12362,13473,14628,15798,16885,17839,18553,18980,19120,18940,18565,18027,17448,16893,16413,16069,15838,15764,15850,16100,16497,17076,17821,18721,19785,21010,22317,23749,25214,26704,28096,29354,30325,31075,31470,31463,31147,30493,29574,28531,27302,26120,24976,23893,22897,22053,21315,20723,20231,19851,19560,19388,19303,19321,19425,19605,19888,20233,20665,21174,21749,22357,23025,23676,24269,24838,25310,25676,25929,25974,25869,25592,25106,24466,23767,22969,22103,21258,20412,19636,18938,18297,17725,17252,16858,16539,16295,16114,16011,15963,15995,16093,16235,16475,16781,17130,17570,18037,18619,19209,19831,20527,21266,21992,22736,23441,24148,24790,25372,25950,26353,26682,26914,27041,27058,26957,26738,26422,26032,25544,24977,24391,23757,23122,22470,21806,21162,20552,19968,19411,18920,18463,18061,17689,17365,17085,16824,16581,16388,16181,15990,15799,15613,15443,15317,15202,15100,15021,14938,14898,14888,14899,14888,14920,14950,14981,15018,15042,15108,15148,15164,15184,15189,15185,15212,15225,15235,15221,15169,15102,15050,14977,14899,14782,14655,14523,14350,14163,13950,13715,13487,13229,12954,12663,12379,12103,11796,11519,11248,11019,10771,10534,10277,9973,9634,9320,9043,8805,8594,8427,8263,8139,8043,7970,7889,7851,7781,7701,7542,7372,7212,7063,6971,6873,6803,6736,6689,6642,6628,6621,6591,6584,6609,6601,6441,6150,5717,5098,21.6,21.8,22.4,1567859,0.2,12.2,11.9,5.0,475,-1.00,-1.00,56.6935,-18.486695,0.000538,,,,,67 +SATSLF0720,2024246,6.264446,4.13,0.0579,0.1067,0.0204,0.00,16034,646,1,711,706,715,727,718,715,716,711,723,726,731,741,775,888,1213,1958,3124,4486,5718,6634,7253,7738,8149,8600,9101,9731,10464,11337,12301,13405,14570,15730,16840,17794,18509,18952,19088,18896,18523,17977,17397,16839,16378,16013,15792,15720,15806,16067,16453,17043,17790,18674,19744,20950,22265,23685,25170,26629,28041,29293,30266,31002,31401,31404,31074,30441,29543,28474,27255,26073,24938,23863,22865,22016,21274,20690,20201,19815,19528,19384,19284,19305,19392,19584,19846,20181,20613,21133,21702,22309,22957,23613,24226,24792,25275,25641,25909,25961,25844,25551,25094,24450,23739,22956,22069,21213,20380,19593,18901,18247,17688,17239,16820,16524,16282,16097,16004,15962,15977,16060,16227,16448,16741,17090,17532,18014,18576,19197,19833,20510,21229,21965,22704,23414,24119,24760,25354,25915,26331,26657,26901,27010,27035,26946,26741,26421,26019,25525,24971,24370,23732,23081,22454,21782,21158,20562,19957,19408,18917,18441,18042,17664,17360,17063,16802,16577,16362,16149,15981,15781,15594,15436,15282,15168,15065,14996,14925,14884,14869,14865,14876,14909,14925,14965,15007,15042,15093,15124,15163,15161,15179,15191,15202,15229,15237,15216,15161,15102,15042,14954,14888,14770,14621,14488,14318,14142,13938,13722,13485,13227,12958,12663,12371,12090,11792,11511,11250,10997,10751,10515,10243,9946,9623,9332,9039,8807,8602,8433,8276,8134,8037,7953,7878,7835,7762,7687,7541,7364,7221,7093,6981,6888,6811,6745,6681,6649,6639,6618,6598,6604,6600,6601,6454,6133,5722,5086,21.6,21.8,22.4,1567860,0.0,12.1,12.0,5.0,474,-1.00,-1.00,57.7228,-18.878801,0.000582,,,,,211 +SATSDF0720,2024246,6.509138,0.00,0.0000,0.0000,0.0000,0.00,646,0,1,648,622,618,616,631,613,615,621,627,621,623,619,621,623,632,624,634,632,643,641,638,633,639,647,651,654,640,651,645,648,661,648,643,652,658,651,652,647,663,646,663,666,652,649,645,641,643,641,649,648,641,647,651,657,651,672,659,655,656,653,649,646,633,647,659,656,645,645,641,637,639,633,643,659,656,649,658,644,659,656,649,643,645,640,654,665,658,658,665,662,666,660,658,641,636,649,645,630,645,661,653,654,647,646,653,650,652,641,631,655,640,650,646,660,649,648,649,656,644,639,637,646,641,643,657,644,643,644,631,635,632,633,631,645,645,633,629,647,646,645,648,630,641,651,647,644,651,650,646,643,638,638,639,645,637,639,643,647,658,666,649,649,646,643,632,639,641,645,641,638,643,647,647,644,646,644,651,645,648,645,654,649,651,647,644,628,635,647,636,648,645,642,641,645,648,655,652,657,649,647,654,649,645,652,653,654,653,642,645,642,646,657,643,647,647,638,651,644,648,652,657,649,649,649,637,638,642,641,668,652,656,649,643,647,649,650,652,658,642,645,653,663,649,651,649,645,638,633,645,641,659,651,651,649,662,481,0.0,0.0,0.0,1567859,0.1,12.6,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,29 +SATSLF0720,2024246,6.509692,4.05,0.0567,0.1001,0.0167,0.00,16225,646,1,695,697,697,699,702,701,703,713,724,725,724,732,768,894,1218,1972,3143,4545,5795,6722,7363,7850,8259,8714,9239,9862,10621,11492,12489,13602,14818,15969,17101,18049,18775,19230,19357,19176,18796,18269,17665,17079,16616,16256,16026,15957,16041,16284,16692,17282,18021,18945,20026,21257,22585,24043,25526,27020,28445,29709,30724,31466,31861,31874,31549,30889,29953,28891,27646,26464,25285,24224,23206,22338,21590,20981,20478,20093,19817,19643,19566,19568,19677,19859,20123,20477,20910,21421,21981,22615,23274,23921,24551,25128,25600,25979,26236,26283,26162,25867,25393,24741,24019,23207,22343,21453,20619,19833,19146,18474,17897,17434,17028,16693,16446,16283,16182,16136,16164,16253,16405,16624,16931,17318,17751,18240,18801,19415,20056,20738,21475,22232,22953,23696,24421,25073,25656,26221,26667,26993,27225,27321,27337,27237,27048,26690,26308,25830,25253,24659,24014,23365,22705,22036,21401,20778,20193,19628,19122,18640,18231,17870,17526,17235,16979,16740,16542,16322,16147,15942,15754,15595,15442,15330,15229,15179,15086,15040,15035,15019,15013,15054,15068,15110,15132,15175,15218,15267,15293,15312,15320,15331,15353,15368,15359,15341,15303,15238,15165,15095,15001,14907,14777,14629,14466,14268,14055,13843,13594,13323,13047,12767,12476,12185,11886,11601,11339,11083,10858,10606,10347,10033,9717,9399,9096,8857,8649,8483,8317,8192,8096,8017,7943,7886,7847,7737,7599,7431,7272,7147,7029,6930,6843,6778,6715,6697,6666,6664,6634,6621,6656,6658,6493,6205,5760,5133,21.5,21.5,21.9,1567860,0.5,12.2,11.9,5.0,597,-1.00,-1.00,57.2285,-18.941425,0.000573,,,,,75 +SATSLF0720,2024246,6.509874,4.13,0.0578,0.1009,0.0168,0.00,16206,646,1,697,691,701,703,691,699,698,702,691,704,705,723,766,868,1223,1977,3161,4549,5793,6709,7357,7827,8258,8704,9224,9845,10599,11494,12493,13606,14805,15971,17077,18037,18757,19200,19333,19157,18780,18228,17645,17069,16606,16238,16013,15945,16012,16264,16667,17271,18013,18937,20006,21251,22563,24014,25506,27015,28421,29681,30699,31444,31840,31846,31508,30843,29939,28857,27635,26441,25274,24187,23176,22314,21556,20945,20449,20077,19794,19629,19533,19559,19661,19856,20109,20461,20883,21411,21957,22570,23242,23889,24498,25083,25581,25936,26198,26245,26109,25842,25367,24730,24000,23197,22322,21437,20589,19817,19109,18450,17893,17407,17003,16683,16438,16257,16135,16109,16122,16212,16384,16610,16923,17287,17703,18210,18789,19390,20037,20727,21452,22208,22948,23661,24377,25026,25632,26202,26623,26964,27186,27292,27297,27210,26998,26662,26259,25771,25205,24603,23987,23332,22672,22012,21369,20743,20158,19592,19091,18616,18208,17838,17504,17220,16940,16705,16510,16308,16117,15938,15748,15578,15419,15299,15207,15123,15051,15016,14998,14985,15019,15060,15042,15092,15133,15166,15222,15257,15274,15272,15291,15296,15316,15341,15342,15337,15290,15223,15162,15104,15012,14910,14776,14621,14452,14257,14037,13812,13584,13318,13045,12774,12476,12189,11893,11609,11339,11077,10833,10604,10325,10028,9703,9368,9115,8858,8649,8465,8301,8184,8081,7995,7939,7885,7823,7734,7588,7419,7257,7130,7009,6917,6830,6763,6720,6682,6651,6638,6637,6625,6645,6634,6483,6187,5755,5139,21.5,21.5,22.0,1567861,0.3,12.2,11.9,5.0,486,-1.00,-1.00,57.1368,-18.888005,0.000580,,,,,114 +SATSLF0720,2024246,6.510131,4.07,0.0570,0.1014,0.0172,0.00,16198,646,1,693,692,705,701,706,691,711,693,715,721,712,731,761,866,1210,1939,3143,4521,5784,6715,7369,7831,8256,8701,9225,9852,10597,11488,12485,13601,14786,15954,17061,18038,18763,19197,19328,19147,18769,18241,17645,17076,16613,16229,16017,15925,16008,16255,16659,17251,17999,18921,19993,21222,22549,23990,25495,26977,28397,29653,30651,31419,31825,31814,31496,30821,29910,28837,27594,26401,25235,24165,23149,22293,21568,20945,20453,20063,19770,19610,19511,19525,19630,19826,20069,20414,20853,21363,21941,22562,23228,23888,24506,25095,25566,25934,26204,26250,26120,25829,25353,24708,23975,23177,22316,21429,20574,19815,19113,18441,17877,17415,16990,16685,16430,16265,16141,16104,16125,16221,16385,16615,16909,17273,17706,18194,18768,19374,20010,20703,21457,22197,22942,23661,24359,25017,25625,26177,26597,26915,27156,27267,27293,27194,26992,26668,26274,25762,25195,24614,23970,23328,22665,21990,21337,20738,20153,19588,19095,18618,18215,17852,17511,17239,16968,16713,16500,16290,16098,15915,15714,15557,15405,15297,15207,15126,15065,15013,14993,14998,14996,15026,15045,15089,15124,15157,15200,15261,15264,15280,15285,15281,15315,15333,15341,15322,15267,15207,15149,15087,14997,14894,14769,14609,14429,14243,14028,13812,13579,13320,13049,12757,12457,12179,11872,11593,11300,11064,10828,10592,10327,10022,9717,9397,9113,8864,8656,8481,8304,8163,8083,7993,7940,7893,7818,7741,7589,7411,7257,7137,7012,6909,6824,6760,6703,6679,6655,6651,6629,6625,6638,6651,6483,6190,5765,5126,21.5,21.5,22.1,1567862,0.6,12.1,12.0,5.0,484,-1.00,-1.00,56.9592,-18.795504,0.000588,,,,,62 +SATSLF0720,2024246,6.510384,4.11,0.0575,0.1027,0.0177,0.00,16156,646,1,695,699,704,692,699,699,705,695,712,729,718,733,765,883,1214,1944,3131,4505,5754,6658,7319,7789,8224,8672,9189,9820,10554,11417,12408,13522,14700,15862,16983,17945,18666,19100,19236,19052,18675,18142,17554,16986,16522,16171,15944,15858,15945,16202,16602,17170,17915,18827,19910,21120,22455,23908,25389,26888,28285,29546,30546,31309,31693,31692,31368,30730,29793,28743,27498,26325,25153,24073,23060,22222,21485,20868,20402,19991,19711,19549,19455,19472,19569,19767,20022,20371,20818,21339,21897,22515,23178,23825,24445,25013,25504,25849,26118,26162,26039,25757,25275,24640,23906,23109,22241,21374,20536,19753,19046,18403,17826,17375,16960,16650,16394,16208,16128,16069,16083,16188,16338,16574,16866,17249,17666,18155,18727,19351,19974,20666,21409,22146,22888,23589,24307,24962,25555,26128,26536,26880,27128,27232,27234,27132,26913,26594,26203,25712,25154,24564,23931,23262,22604,21945,21309,20701,20112,19545,19045,18569,18187,17813,17465,17185,16923,16667,16475,16277,16077,15895,15701,15524,15389,15263,15176,15101,15033,14993,14976,14971,15003,15016,15041,15056,15094,15127,15172,15251,15258,15274,15275,15289,15313,15321,15314,15300,15236,15190,15130,15070,14977,14881,14744,14592,14420,14233,13998,13799,13561,13293,13021,12755,12459,12171,11877,11589,11317,11044,10807,10565,10301,9993,9680,9373,9090,8845,8644,8464,8317,8181,8070,7991,7926,7877,7809,7726,7592,7405,7266,7128,7015,6911,6839,6773,6704,6666,6646,6637,6620,6609,6641,6635,6501,6185,5753,5129,21.5,21.5,22.1,1567863,0.5,12.2,12.0,5.0,480,-1.00,-1.00,57.7110,-19.042288,0.000565,,,,,110 +SATSLF0720,2024246,6.510635,4.14,0.0580,0.1024,0.0173,0.00,16159,646,1,701,697,697,701,713,714,717,711,714,707,727,733,758,890,1217,1961,3146,4517,5767,6699,7333,7793,8217,8652,9180,9792,10536,11403,12416,13528,14707,15860,16983,17938,18668,19089,19228,19038,18665,18133,17545,16974,16512,16146,15929,15861,15940,16190,16586,17171,17905,18830,19894,21127,22441,23892,25385,26863,28282,29528,30535,31281,31673,31687,31340,30711,29781,28718,27497,26309,25138,24077,23068,22217,21467,20858,20369,19976,19703,19545,19466,19472,19573,19745,20011,20366,20788,21302,21895,22506,23168,23816,24430,25001,25486,25853,26105,26167,26065,25757,25283,24630,23910,23121,22254,21367,20533,19741,19046,18407,17842,17383,16953,16639,16400,16226,16112,16077,16093,16188,16347,16567,16871,17248,17676,18176,18741,19353,19981,20679,21403,22154,22896,23616,24317,24973,25572,26137,26565,26886,27124,27230,27254,27173,26945,26608,26237,25718,25143,24567,23938,23289,22618,21956,21318,20702,20116,19541,19067,18585,18175,17820,17494,17207,16945,16680,16492,16296,16100,15914,15705,15545,15402,15300,15196,15115,15046,14997,14983,14973,14986,15010,15031,15065,15113,15141,15195,15249,15257,15271,15292,15269,15299,15317,15317,15321,15266,15204,15145,15068,14979,14898,14766,14593,14438,14237,14021,13819,13584,13311,13035,12761,12457,12170,11876,11579,11316,11054,10820,10588,10313,10016,9696,9383,9092,8842,8641,8459,8317,8182,8090,8012,7941,7894,7814,7724,7577,7411,7259,7118,7011,6924,6837,6794,6709,6679,6660,6647,6641,6620,6645,6637,6486,6177,5751,5126,21.5,21.6,22.1,1567864,0.6,12.2,11.9,5.0,482,-1.00,-1.00,57.6503,-19.007768,0.000558,,,,,47 +SATSLF0720,2024246,6.510891,4.15,0.0581,0.1027,0.0172,0.00,16162,646,1,705,710,713,724,708,705,705,708,723,716,725,736,777,882,1201,1962,3140,4516,5759,6682,7343,7820,8233,8691,9207,9814,10567,11445,12433,13541,14708,15876,16997,17950,18672,19120,19265,19085,18697,18174,17570,17015,16531,16171,15953,15892,15961,16223,16618,17195,17943,18860,19920,21128,22453,23898,25397,26885,28309,29569,30564,31319,31700,31709,31376,30708,29790,28740,27508,26317,25173,24093,23089,22217,21486,20884,20396,20004,19714,19544,19456,19479,19585,19772,20032,20365,20805,21323,21886,22506,23189,23830,24443,25015,25497,25856,26124,26158,26052,25766,25289,24652,23930,23133,22270,21385,20535,19767,19053,18398,17830,17364,16953,16637,16409,16229,16132,16076,16097,16193,16362,16577,16878,17250,17668,18158,18735,19344,19984,20666,21398,22141,22869,23589,24292,24960,25553,26129,26550,26873,27120,27221,27233,27152,26929,26584,26203,25715,25130,24551,23925,23274,22619,21961,21322,20707,20097,19554,19054,18569,18167,17799,17483,17189,16918,16674,16491,16295,16080,15893,15697,15532,15400,15289,15189,15101,15021,14989,14969,14978,14992,15014,15028,15059,15120,15138,15188,15236,15264,15264,15270,15270,15282,15316,15323,15309,15264,15189,15148,15067,14974,14887,14736,14597,14423,14227,14030,13819,13576,13309,13055,12769,12466,12173,11877,11569,11297,11046,10804,10571,10309,10005,9705,9389,9109,8848,8650,8476,8316,8167,8082,8002,7932,7892,7808,7727,7583,7414,7254,7123,7011,6911,6828,6753,6699,6663,6642,6652,6634,6624,6641,6641,6494,6181,5761,5124,21.5,21.6,22.1,1567865,0.0,12.2,11.9,5.0,470,-1.00,-1.00,56.9039,-18.708867,0.000539,,,,,21 +SATSLF0720,2024246,6.511146,4.08,0.0571,0.1035,0.0181,0.00,16134,646,1,692,702,700,699,714,709,709,715,716,713,722,717,763,867,1208,1945,3125,4502,5758,6682,7326,7788,8205,8659,9171,9800,10534,11406,12405,13521,14711,15857,16961,17917,18644,19078,19210,19035,18663,18130,17538,16964,16505,16142,15902,15844,15922,16160,16566,17149,17905,18810,19873,21096,22410,23880,25346,26836,28245,29500,30513,31264,31650,31645,31301,30665,29736,28678,27444,26280,25118,24033,23046,22174,21439,20821,20343,19964,19682,19522,19419,19445,19536,19713,19973,20329,20760,21276,21860,22473,23133,23784,24401,24986,25461,25829,26088,26125,26013,25718,25244,24608,23877,23081,22216,21347,20501,19732,19017,18382,17813,17337,16937,16601,16359,16184,16091,16057,16078,16162,16317,16550,16848,17201,17655,18125,18694,19325,19945,20630,21353,22112,22842,23550,24264,24920,25524,26070,26505,26833,27094,27178,27195,27097,26893,26562,26157,25669,25102,24512,23885,23242,22596,21926,21291,20667,20081,19526,19037,18570,18161,17794,17450,17156,16896,16653,16448,16260,16045,15873,15697,15522,15378,15261,15156,15083,15006,14981,14939,14972,14964,14987,15011,15059,15090,15117,15153,15211,15226,15241,15261,15273,15293,15303,15295,15300,15229,15173,15117,15041,14954,14855,14728,14562,14404,14227,14012,13793,13558,13301,13010,12735,12437,12129,11851,11561,11286,11043,10801,10564,10300,9995,9666,9361,9091,8849,8636,8475,8325,8168,8075,7976,7911,7867,7804,7715,7571,7401,7233,7111,6996,6891,6825,6755,6711,6666,6651,6632,6621,6618,6618,6619,6469,6158,5737,5113,21.6,21.6,22.1,1567866,0.1,12.2,11.9,5.0,469,-1.00,-1.00,57.6126,-18.968885,0.000618,,,,,14 +SATSLF0720,2024246,6.511405,4.03,0.0565,0.1032,0.0178,0.00,16147,646,1,708,710,705,702,702,698,693,693,711,717,725,747,777,897,1223,1963,3135,4517,5767,6688,7326,7811,8226,8678,9201,9814,10576,11437,12427,13545,14725,15888,17009,17970,18697,19129,19257,19077,18701,18165,17579,17020,16550,16177,15943,15869,15953,16180,16594,17173,17931,18833,19912,21135,22461,23910,25399,26875,28304,29542,30539,31296,31690,31681,31353,30697,29763,28725,27478,26309,25146,24061,23069,22209,21478,20865,20381,19969,19687,19524,19433,19447,19546,19750,20009,20342,20770,21302,21866,22489,23150,23797,24401,24981,25450,25827,26099,26132,26009,25763,25257,24647,23914,23108,22233,21349,20503,19758,19042,18387,17834,17361,16951,16632,16378,16208,16093,16052,16072,16170,16328,16547,16853,17227,17659,18144,18718,19341,19968,20649,21376,22108,22854,23573,24258,24919,25529,26080,26515,26843,27090,27202,27220,27135,26910,26589,26176,25685,25116,24535,23892,23238,22587,21922,21293,20689,20093,19526,19035,18566,18154,17793,17468,17165,16899,16648,16450,16254,16058,15873,15684,15531,15383,15269,15166,15082,15019,14978,14945,14959,14961,14996,15009,15055,15092,15121,15189,15213,15246,15252,15249,15255,15269,15286,15305,15304,15250,15188,15128,15041,14955,14873,14733,14591,14413,14232,14020,13786,13550,13289,13015,12743,12459,12142,11844,11559,11293,11040,10817,10578,10298,10000,9693,9381,9097,8843,8635,8469,8305,8187,8065,7993,7921,7855,7799,7718,7576,7405,7259,7124,6996,6907,6835,6765,6706,6660,6626,6622,6606,6605,6621,6617,6477,6170,5736,5111,21.6,21.6,22.2,1567867,0.2,12.2,11.9,5.0,469,-1.00,-1.00,57.1615,-18.805042,0.000631,,,,,1 +SATSLF0720,2024246,6.511659,4.37,0.0612,0.1052,0.0196,0.00,16076,646,1,700,710,706,717,713,725,738,729,717,714,729,730,766,872,1221,1953,3113,4473,5701,6621,7258,7731,8153,8581,9101,9710,10468,11318,12315,13425,14597,15761,16866,17810,18518,18962,19099,18916,18537,17993,17408,16851,16387,16029,15819,15754,15842,16091,16497,17080,17815,18740,19794,21002,22315,23767,25234,26710,28116,29365,30365,31106,31505,31502,31191,30534,29602,28560,27322,26145,24985,23909,22922,22074,21348,20736,20255,19867,19607,19433,19346,19344,19455,19642,19906,20253,20692,21210,21778,22398,23037,23681,24299,24881,25355,25714,25977,26024,25914,25637,25157,24522,23802,22997,22125,21275,20429,19657,18962,18327,17757,17274,16883,16569,16320,16141,16032,15995,16032,16116,16270,16499,16791,17160,17608,18082,18668,19253,19894,20581,21296,22053,22790,23489,24201,24838,25435,26005,26419,26760,27001,27094,27110,27034,26819,26485,26089,25597,25026,24446,23818,23169,22518,21850,21227,20610,20008,19466,18967,18501,18095,17724,17403,17129,16852,16598,16406,16196,16007,15818,15630,15464,15317,15208,15104,15034,14957,14935,14918,14922,14933,14958,14989,15017,15049,15076,15134,15178,15193,15194,15207,15227,15241,15254,15258,15246,15191,15138,15069,15001,14909,14813,14669,14539,14372,14177,13979,13763,13517,13253,13003,12706,12405,12127,11819,11532,11265,11020,10771,10559,10282,9966,9647,9341,9046,8811,8593,8435,8282,8145,8055,7973,7908,7860,7808,7707,7560,7377,7223,7099,6982,6893,6805,6746,6696,6645,6632,6625,6614,6592,6613,6610,6450,6147,5732,5113,21.6,21.6,22.2,1567868,0.0,12.1,12.0,5.0,479,-1.00,-1.00,57.7073,-18.927486,0.000667,,,,,177 +SATSLF0720,2024246,6.511911,4.29,0.0601,0.1038,0.0185,0.00,16127,646,1,727,714,712,705,728,718,714,717,726,722,722,747,774,893,1217,1949,3141,4525,5761,6679,7323,7799,8224,8665,9177,9794,10535,11419,12404,13515,14694,15861,16969,17924,18665,19095,19225,19028,18661,18117,17527,16962,16499,16138,15931,15862,15936,16180,16578,17178,17917,18838,19894,21111,22430,23866,25344,26825,28238,29494,30486,31237,31639,31644,31312,30656,29735,28684,27448,26262,25094,24013,23021,22169,21438,20833,20343,19946,19674,19505,19406,19430,19531,19706,19975,20317,20736,21271,21826,22457,23113,23764,24373,24973,25431,25785,26049,26100,25984,25699,25213,24563,23851,23056,22197,21328,20477,19728,19017,18366,17812,17332,16926,16617,16350,16184,16101,16048,16069,16151,16321,16544,16839,17211,17643,18115,18692,19303,19924,20608,21345,22070,22825,23546,24246,24890,25490,26053,26493,26797,27044,27157,27178,27095,26850,26545,26144,25640,25067,24505,23865,23206,22563,21898,21261,20649,20058,19512,19025,18546,18138,17769,17426,17153,16888,16645,16438,16248,16046,15853,15657,15507,15357,15246,15143,15077,15016,14957,14939,14941,14940,14971,14997,15034,15074,15105,15157,15213,15225,15234,15242,15257,15266,15294,15297,15285,15233,15177,15104,15025,14934,14847,14713,14557,14394,14210,13993,13783,13547,13269,13021,12729,12435,12144,11829,11559,11281,11035,10801,10569,10304,9998,9669,9359,9067,8832,8614,8439,8307,8154,8065,7978,7915,7870,7800,7713,7571,7395,7243,7120,6999,6894,6811,6751,6693,6662,6649,6634,6626,6611,6640,6623,6472,6169,5741,5129,21.6,21.6,22.2,1567869,0.0,12.2,12.0,5.0,476,-1.00,-1.00,56.5200,-18.512411,0.000518,,,,,110 +SATSLF0720,2024246,6.512168,4.18,0.0586,0.1033,0.0183,0.00,16133,646,1,705,699,701,702,699,705,729,721,721,727,740,747,773,884,1218,1946,3132,4520,5769,6693,7333,7786,8202,8649,9163,9780,10534,11401,12404,13530,14701,15857,16964,17917,18628,19073,19201,19033,18650,18110,17513,16968,16489,16136,15912,15845,15927,16172,16566,17159,17914,18820,19883,21105,22430,23859,25328,26823,28235,29491,30500,31255,31656,31653,31317,30661,29751,28685,27448,26291,25110,24027,23024,22163,21445,20829,20353,19954,19675,19511,19429,19433,19530,19723,19985,20345,20778,21280,21853,22471,23133,23786,24381,24988,25466,25828,26072,26123,26007,25723,25243,24609,23889,23096,22242,21349,20512,19723,19017,18368,17817,17357,16930,16620,16368,16194,16092,16049,16077,16163,16319,16549,16844,17209,17629,18135,18711,19317,19969,20646,21366,22112,22826,23551,24263,24920,25501,26073,26500,26832,27070,27174,27185,27092,26872,26557,26167,25644,25095,24510,23881,23229,22582,21925,21285,20667,20086,19521,19020,18551,18138,17769,17442,17159,16893,16660,16471,16242,16052,15877,15669,15510,15374,15253,15152,15089,15002,14984,14963,14954,14962,14983,15000,15045,15085,15101,15141,15219,15226,15250,15265,15269,15290,15305,15293,15301,15245,15184,15110,15046,14954,14851,14725,14580,14382,14203,14014,13788,13557,13290,13017,12750,12448,12153,11847,11571,11292,11044,10798,10562,10301,10005,9673,9367,9082,8853,8629,8464,8309,8169,8058,7975,7908,7865,7773,7699,7562,7392,7237,7115,7003,6899,6823,6769,6709,6675,6651,6644,6608,6615,6621,6609,6463,6161,5733,5123,21.6,21.6,22.2,1567870,0.3,12.2,12.0,5.0,468,-1.00,-1.00,57.4297,-18.895132,0.000527,,,,,186 +SATSLF0720,2024246,6.512424,4.21,0.0590,0.1040,0.0182,0.00,16118,646,1,697,701,709,697,699,699,707,705,718,715,721,727,771,883,1222,1961,3122,4504,5746,6662,7304,7777,8201,8651,9149,9789,10530,11380,12375,13484,14659,15817,16935,17878,18599,19040,19173,19009,18624,18103,17504,16949,16472,16123,15889,15821,15897,16149,16546,17143,17888,18787,19860,21066,22385,23840,25322,26805,28222,29479,30462,31226,31609,31602,31281,30629,29712,28649,27421,26235,25082,23995,22994,22146,21423,20796,20299,19926,19634,19486,19397,19413,19510,19703,19968,20309,20740,21256,21824,22452,23105,23765,24368,24941,25425,25766,26053,26101,25975,25696,25210,24602,23864,23075,22201,21333,20482,19718,19014,18352,17792,17322,16919,16605,16362,16182,16097,16051,16047,16134,16302,16518,16839,17189,17634,18112,18679,19293,19932,20621,21333,22074,22833,23541,24254,24910,25497,26078,26477,26811,27045,27163,27162,27063,26871,26546,26144,25649,25096,24493,23863,23217,22561,21898,21257,20665,20073,19528,19025,18549,18132,17771,17453,17160,16883,16652,16449,16237,16052,15844,15672,15505,15344,15246,15141,15057,14995,14955,14945,14936,14955,14976,14995,15043,15078,15106,15145,15215,15217,15226,15238,15237,15263,15292,15277,15271,15211,15165,15115,15034,14953,14865,14715,14557,14411,14204,13992,13770,13524,13263,13018,12732,12438,12147,11855,11569,11298,11059,10810,10549,10293,9981,9663,9357,9077,8850,8629,8461,8304,8174,8073,7997,7929,7858,7790,7704,7553,7372,7233,7112,6993,6898,6820,6761,6697,6656,6649,6625,6611,6602,6625,6613,6457,6161,5725,5105,21.6,21.7,22.2,1567871,0.2,12.2,11.9,5.0,468,-1.00,-1.00,57.3750,-18.849862,0.000590,,,,,112 +SATSLF0720,2024246,6.512678,4.19,0.0587,0.1043,0.0193,0.00,16112,646,1,702,697,715,709,715,709,708,717,702,707,722,728,770,886,1226,1948,3131,4515,5753,6683,7309,7787,8197,8654,9157,9781,10529,11399,12404,13509,14700,15853,16963,17912,18627,19059,19200,19017,18625,18102,17515,16958,16503,16136,15900,15826,15901,16155,16552,17143,17890,18789,19875,21081,22385,23847,25312,26811,28224,29477,30475,31214,31610,31607,31270,30634,29709,28650,27417,26229,25085,24002,23005,22146,21410,20803,20305,19922,19630,19479,19387,19401,19506,19714,19957,20307,20741,21248,21827,22446,23102,23736,24354,24941,25414,25758,26039,26074,25963,25683,25214,24573,23854,23066,22197,21314,20479,19712,19001,18341,17781,17305,16896,16593,16346,16169,16081,16028,16061,16150,16313,16528,16814,17185,17619,18105,18677,19283,19913,20603,21326,22084,22819,23551,24234,24887,25472,26041,26452,26786,27013,27143,27144,27059,26848,26519,26125,25627,25052,24475,23829,23195,22541,21872,21249,20629,20037,19481,18989,18531,18130,17760,17427,17143,16874,16634,16421,16217,16033,15838,15650,15489,15355,15245,15137,15067,15001,14945,14933,14941,14948,14976,14991,15041,15057,15084,15151,15189,15195,15205,15235,15233,15266,15282,15285,15272,15206,15151,15079,15015,14925,14838,14699,14554,14378,14197,13991,13768,13539,13269,12999,12722,12423,12110,11835,11555,11277,11025,10777,10555,10289,9973,9659,9362,9069,8819,8607,8430,8279,8156,8062,7970,7908,7860,7787,7705,7559,7387,7230,7109,6985,6894,6813,6748,6695,6645,6632,6620,6599,6599,6620,6619,6465,6162,5733,5114,21.6,21.7,22.3,1567871,0.3,12.1,11.9,5.0,475,-1.00,-1.00,57.0600,-18.718069,0.000588,,,,,141 +SATSLF0720,2024246,6.512935,4.10,0.0575,0.1052,0.0197,0.00,16080,646,1,718,708,721,720,720,723,720,709,713,709,723,723,771,885,1219,1963,3151,4496,5751,6675,7317,7774,8199,8642,9155,9782,10516,11387,12386,13504,14669,15826,16940,17885,18606,19034,19160,18976,18611,18077,17480,16919,16460,16094,15872,15790,15882,16135,16530,17105,17847,18760,19832,21041,22355,23803,25262,26741,28158,29397,30409,31150,31557,31554,31211,30567,29660,28593,27371,26203,25030,23937,22949,22082,21369,20757,20265,19889,19609,19438,19347,19377,19465,19651,19905,20243,20678,21207,21757,22385,23048,23706,24301,24861,25339,25717,25979,26036,25906,25637,25169,24525,23799,23000,22144,21272,20437,19665,18967,18301,17744,17261,16866,16560,16317,16148,16040,16004,16015,16119,16257,16493,16785,17141,17575,18056,18638,19232,19881,20566,21291,22027,22757,23477,24168,24832,25413,25966,26393,26743,26973,27074,27088,26993,26779,26455,26071,25579,25008,24425,23784,23138,22497,21828,21189,20586,19978,19451,18941,18484,18092,17716,17393,17097,16840,16595,16390,16198,16016,15793,15627,15454,15326,15192,15090,15031,14953,14919,14905,14921,14909,14945,14965,14990,15031,15070,15105,15157,15174,15205,15194,15202,15223,15243,15249,15229,15175,15127,15063,14979,14913,14809,14666,14529,14357,14160,13957,13741,13498,13251,12965,12683,12402,12097,11799,11539,11259,11012,10774,10535,10257,9962,9643,9325,9047,8801,8597,8427,8281,8157,8057,7977,7897,7857,7793,7701,7546,7373,7211,7093,6969,6881,6812,6733,6681,6649,6622,6615,6597,6599,6614,6604,6456,6149,5723,5119,21.6,21.7,22.3,1567872,0.1,12.2,12.0,5.0,478,-1.00,-1.00,57.4950,-18.864487,0.000527,,,,,255 +SATSLF0720,2024246,6.513188,4.29,0.0602,0.1056,0.0198,0.00,16068,646,1,707,703,717,713,710,717,720,713,725,731,748,748,791,909,1231,1972,3127,4488,5723,6653,7282,7754,8171,8606,9121,9745,10486,11357,12343,13456,14632,15791,16893,17840,18558,18982,19113,18942,18563,18021,17446,16888,16414,16054,15837,15774,15847,16101,16502,17083,17828,18721,19789,21002,22315,23753,25220,26704,28122,29365,30353,31104,31500,31498,31161,30519,29611,28532,27306,26122,24971,23897,22926,22065,21331,20745,20254,19864,19577,19425,19329,19335,19444,19636,19901,20230,20675,21186,21720,22366,23030,23674,24297,24864,25345,25703,25969,26020,25882,25614,25128,24503,23785,22994,22125,21252,20419,19642,18929,18295,17724,17272,16875,16554,16294,16123,16036,15989,16008,16103,16272,16497,16778,17153,17581,18041,18631,19221,19859,20545,21274,22016,22759,23473,24165,24813,25399,25953,26398,26718,26961,27061,27085,26993,26768,26453,26053,25578,25016,24412,23797,23147,22499,21824,21191,20587,19993,19430,18955,18472,18071,17704,17380,17092,16820,16594,16390,16202,16016,15818,15629,15467,15329,15213,15102,15019,14951,14909,14896,14897,14918,14933,14963,14992,15025,15062,15110,15152,15175,15191,15208,15194,15235,15251,15242,15236,15178,15125,15061,14991,14901,14812,14662,14525,14353,14171,13962,13746,13511,13249,12989,12698,12398,12108,11813,11516,11257,11001,10777,10540,10279,9992,9664,9364,9066,8817,8602,8433,8276,8125,8039,7959,7903,7851,7799,7712,7569,7389,7228,7104,6978,6889,6797,6749,6677,6647,6635,6625,6609,6606,6616,6601,6449,6143,5720,5095,21.6,21.7,22.3,1567873,0.2,12.1,12.0,5.0,477,-1.00,-1.00,57.0491,-18.644746,0.000601,,,,,130 +SATSLF0720,2024246,6.513440,4.11,0.0576,0.1063,0.0194,0.00,16063,646,1,691,715,713,710,709,707,721,710,723,718,727,728,772,892,1221,1949,3117,4496,5731,6649,7300,7756,8183,8619,9135,9739,10487,11350,12327,13445,14608,15782,16888,17833,18568,19005,19130,18932,18560,18017,17429,16865,16411,16057,15833,15771,15854,16083,16486,17063,17810,18725,19784,20989,22304,23746,25222,26692,28113,29336,30350,31098,31477,31491,31157,30503,29602,28517,27319,26116,24972,23902,22914,22051,21326,20730,20240,19840,19570,19405,19301,19319,19429,19614,19880,20226,20661,21172,21726,22350,23000,23654,24269,24837,25305,25671,25927,25991,25885,25597,25117,24502,23786,22994,22121,21237,20419,19646,18955,18297,17736,17261,16855,16552,16285,16123,16025,15972,15994,16093,16254,16496,16777,17138,17570,18058,18625,19237,19867,20534,21258,22003,22741,23461,24153,24820,25415,25972,26394,26713,26947,27059,27077,26977,26757,26432,26037,25545,24982,24413,23782,23125,22489,21812,21189,20578,20003,19428,18949,18464,18061,17706,17380,17099,16833,16592,16382,16194,15989,15797,15606,15450,15313,15197,15100,15038,14974,14930,14898,14907,14909,14925,14955,14997,15033,15063,15094,15151,15166,15173,15193,15193,15218,15259,15246,15235,15201,15138,15074,14999,14911,14805,14679,14523,14350,14169,13961,13757,13517,13259,12987,12702,12402,12092,11815,11524,11246,11008,10773,10553,10272,9987,9653,9332,9061,8813,8593,8423,8273,8145,8031,7985,7902,7859,7795,7701,7549,7381,7224,7099,6973,6883,6793,6739,6674,6643,6621,6627,6603,6597,6622,6605,6456,6162,5714,5097,21.6,21.8,22.4,1567874,0.0,12.2,11.9,5.0,477,-1.00,-1.00,57.6958,-18.908123,0.000652,,,,,106 +SATSLF0720,2024246,6.513695,4.30,0.0603,0.1061,0.0197,0.00,16059,646,1,695,689,695,706,722,721,734,725,725,719,731,726,760,874,1205,1945,3109,4490,5714,6645,7275,7739,8151,8605,9114,9727,10490,11348,12334,13440,14607,15763,16853,17810,18502,18947,19082,18893,18521,18012,17413,16861,16416,16058,15828,15750,15829,16073,16480,17059,17798,18698,19749,20971,22286,23714,25191,26688,28077,29326,30315,31066,31453,31458,31125,30491,29572,28509,27283,26117,24973,23892,22897,22041,21325,20712,20230,19851,19561,19405,19307,19323,19424,19605,19866,20219,20645,21184,21748,22349,23013,23655,24275,24840,25313,25680,25936,25989,25860,25592,25129,24498,23770,22992,22114,21262,20420,19642,18949,18293,17736,17257,16841,16537,16289,16133,16025,15985,16014,16113,16261,16482,16779,17146,17565,18058,18616,19230,19853,20553,21266,22010,22750,23465,24161,24816,25405,25965,26393,26716,26960,27066,27077,26982,26772,26461,26050,25568,25010,24419,23782,23127,22498,21814,21173,20580,20000,19449,18956,18487,18080,17729,17382,17089,16827,16594,16395,16193,16003,15822,15621,15450,15313,15200,15085,15028,14958,14925,14909,14907,14913,14934,14963,14982,15021,15045,15107,15161,15176,15191,15198,15204,15225,15238,15246,15227,15202,15137,15065,14992,14912,14813,14669,14519,14349,14168,13941,13742,13511,13245,12969,12708,12410,12114,11824,11538,11258,11011,10775,10541,10278,9977,9639,9352,9054,8809,8595,8421,8257,8136,8048,7961,7895,7839,7787,7698,7545,7374,7206,7095,6981,6887,6804,6757,6681,6655,6617,6625,6602,6601,6618,6605,6442,6140,5722,5085,21.6,21.8,22.4,1567875,0.0,12.2,12.0,5.0,478,-1.00,-1.00,57.2841,-18.722546,0.000533,,,,,155 +SATSLF0720,2024246,6.513951,4.28,0.0600,0.1059,0.0199,0.00,16060,646,1,690,707,725,710,721,715,725,714,710,717,717,725,769,870,1223,1946,3123,4489,5721,6639,7278,7744,8167,8617,9134,9750,10481,11339,12343,13446,14625,15771,16874,17822,18529,18972,19089,18919,18552,18023,17434,16869,16408,16059,15813,15756,15827,16091,16501,17066,17810,18705,19771,20993,22299,23741,25212,26696,28100,29355,30347,31092,31481,31459,31136,30496,29573,28514,27298,26126,24965,23899,22901,22043,21323,20717,20226,19846,19562,19387,19315,19329,19424,19616,19885,20225,20658,21174,21742,22355,23025,23670,24272,24850,25319,25682,25941,25991,25884,25605,25138,24509,23803,22989,22126,21256,20405,19653,18945,18285,17735,17259,16855,16541,16281,16122,16021,15977,16009,16096,16262,16477,16786,17141,17566,18077,18637,19229,19853,20545,21266,22002,22738,23466,24153,24813,25397,25959,26389,26705,26945,27056,27077,26985,26756,26458,26050,25554,24989,24414,23773,23150,22478,21827,21186,20578,19974,19429,18930,18468,18077,17720,17393,17098,16825,16586,16391,16173,15990,15799,15619,15451,15309,15201,15106,15029,14945,14905,14877,14898,14902,14916,14960,15000,15028,15054,15111,15163,15186,15190,15197,15209,15226,15258,15261,15233,15191,15124,15058,14974,14889,14801,14676,14522,14347,14160,13943,13735,13496,13233,12967,12694,12393,12107,11817,11529,11242,11016,10760,10518,10267,9960,9633,9331,9040,8811,8600,8430,8285,8153,8050,7979,7911,7848,7781,7693,7543,7373,7220,7090,6967,6873,6806,6745,6683,6659,6638,6622,6599,6591,6597,6603,6433,6139,5716,5098,21.6,21.8,22.4,1567876,0.1,12.1,11.9,5.0,465,-1.00,-1.00,57.2245,-18.707132,0.000608,,,,,44 +SATSLF0720,2024246,6.514205,4.41,0.0618,0.1078,0.0211,0.00,15993,646,1,707,705,710,697,709,708,729,732,730,730,718,727,768,888,1223,1945,3107,4453,5694,6592,7237,7705,8121,8553,9058,9683,10432,11285,12266,13359,14522,15677,16762,17689,18396,18833,18969,18786,18407,17891,17323,16765,16309,15949,15716,15653,15738,15979,16401,16977,17725,18612,19668,20882,22168,23594,25063,26529,27918,29184,30178,30906,31296,31284,30988,30329,29405,28373,27157,25992,24833,23782,22792,21946,21213,20627,20133,19744,19476,19321,19233,19245,19355,19528,19799,20138,20580,21082,21636,22259,22925,23563,24171,24736,25228,25577,25836,25888,25760,25485,25001,24379,23666,22883,22034,21165,20312,19563,18862,18208,17661,17194,16789,16480,16235,16068,15957,15921,15943,16037,16194,16418,16697,17066,17499,17994,18561,19156,19792,20474,21195,21927,22664,23366,24068,24712,25315,25858,26274,26611,26860,26973,26974,26898,26660,26349,25956,25457,24893,24325,23669,23043,22383,21737,21115,20504,19912,19355,18896,18409,18010,17654,17329,17038,16766,16537,16341,16134,15945,15744,15566,15402,15270,15154,15044,14977,14902,14867,14849,14856,14851,14887,14905,14950,14979,15003,15049,15129,15130,15136,15144,15153,15178,15201,15196,15185,15140,15074,15017,14957,14879,14773,14630,14490,14308,14126,13900,13703,13462,13201,12939,12645,12363,12073,11781,11502,11236,10980,10741,10501,10240,9939,9626,9315,9013,8779,8570,8394,8250,8111,8019,7935,7873,7831,7765,7661,7535,7355,7211,7081,6968,6870,6782,6712,6659,6642,6613,6604,6582,6579,6588,6595,6434,6139,5715,5099,21.6,21.8,22.4,1567877,0.1,12.2,12.0,5.0,474,-1.00,-1.00,57.6794,-18.795493,0.000555,,,,,205 +SATSLF0720,2024246,6.514461,4.37,0.0612,0.1061,0.0197,0.00,16063,646,1,714,705,695,709,701,710,722,726,730,737,738,740,773,886,1213,1953,3126,4489,5730,6649,7291,7771,8193,8621,9137,9747,10486,11342,12333,13457,14626,15757,16874,17816,18531,18950,19098,18899,18533,17989,17438,16866,16411,16045,15830,15751,15843,16094,16498,17064,17809,18716,19763,20977,22290,23727,25200,26695,28093,29329,30342,31081,31470,31468,31141,30490,29589,28530,27286,26120,24964,23885,22885,22050,21317,20714,20250,19860,19574,19413,19306,19319,19424,19610,19877,20241,20654,21162,21724,22347,23018,23665,24278,24864,25328,25683,25945,26004,25881,25600,25131,24485,23778,22980,22108,21261,20425,19657,18963,18293,17741,17273,16858,16551,16298,16128,16042,15985,15995,16091,16251,16478,16762,17138,17577,18062,18642,19237,19888,20553,21282,22012,22737,23443,24150,24818,25404,25963,26385,26715,26960,27070,27077,26977,26774,26441,26057,25561,25000,24418,23785,23141,22478,21811,21185,20560,19982,19424,18951,18482,18073,17719,17392,17096,16832,16592,16371,16166,15990,15806,15634,15463,15329,15212,15113,15029,14964,14923,14901,14900,14907,14937,14958,14986,15035,15063,15116,15168,15184,15193,15199,15190,15213,15250,15248,15237,15184,15125,15063,14997,14908,14807,14668,14509,14347,14156,13948,13743,13504,13248,12978,12702,12396,12119,11814,11521,11246,11014,10766,10525,10273,9973,9649,9348,9073,8814,8599,8433,8282,8144,8059,7976,7918,7853,7800,7701,7563,7377,7227,7107,6986,6882,6805,6733,6683,6661,6621,6627,6616,6587,6627,6609,6466,6152,5728,5113,21.6,21.8,22.4,1567878,0.6,12.2,12.0,5.0,475,-1.00,-1.00,57.0491,-18.632438,0.000540,,,,,80 +SATSDF0720,2024246,6.759138,0.00,0.0000,0.0000,0.0000,0.00,644,0,1,641,633,625,627,619,618,619,625,629,631,643,630,640,629,616,615,615,618,617,631,617,623,625,656,648,669,660,654,662,664,653,653,638,655,644,650,649,649,639,635,643,655,657,647,651,644,646,647,650,642,642,650,652,637,641,641,626,631,640,637,635,651,649,653,653,656,651,651,648,648,656,647,642,653,634,647,655,645,649,649,657,649,651,649,645,649,646,652,657,648,664,645,656,661,641,637,647,647,642,641,633,638,644,645,641,646,643,638,659,647,653,661,642,647,647,641,636,634,629,643,645,646,653,664,658,659,661,650,646,631,644,641,646,634,635,631,646,626,635,633,630,642,645,649,654,645,643,646,639,647,639,647,654,641,639,637,643,642,647,632,633,642,637,638,644,646,645,637,649,645,631,640,637,631,647,647,641,650,653,642,647,647,645,656,653,656,645,647,647,637,648,641,624,632,637,633,647,653,651,655,661,655,644,635,645,656,649,641,652,643,637,641,642,640,635,643,637,649,651,649,649,639,644,656,648,645,640,648,648,647,643,641,654,648,646,631,633,625,633,641,641,651,657,652,642,659,649,637,648,635,645,644,642,647,648,490,0.0,0.0,0.0,1567877,0.0,12.7,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,100 +SATSLF0720,2024246,6.759695,4.10,0.0574,0.1008,0.0165,0.00,16207,644,1,705,698,711,710,704,705,704,693,707,705,713,726,769,881,1206,1955,3137,4546,5774,6723,7365,7833,8244,8707,9235,9859,10613,11500,12489,13616,14796,15962,17070,18037,18771,19205,19355,19168,18777,18246,17660,17082,16610,16237,16005,15938,16018,16279,16673,17271,18020,18941,20005,21241,22560,24019,25508,26987,28432,29685,30689,31453,31834,31833,31497,30844,29923,28869,27605,26432,25258,24183,23186,22321,21581,20957,20479,20096,19796,19643,19537,19556,19650,19841,20097,20446,20859,21403,21953,22582,23253,23909,24504,25105,25566,25947,26217,26263,26131,25842,25357,24709,23985,23194,22310,21437,20579,19811,19108,18453,17890,17421,17005,16698,16437,16267,16161,16113,16138,16221,16401,16627,16925,17296,17714,18215,18785,19400,20045,20725,21453,22199,22954,23674,24373,25048,25625,26204,26632,26957,27207,27301,27317,27217,27003,26674,26283,25764,25198,24618,23978,23323,22674,21994,21371,20753,20158,19597,19106,18625,18230,17850,17517,17226,16941,16708,16498,16310,16118,15925,15741,15579,15433,15314,15217,15136,15056,15017,15002,15002,15014,15042,15057,15091,15117,15168,15205,15270,15293,15302,15317,15309,15329,15325,15329,15333,15275,15223,15168,15095,15012,14897,14768,14609,14440,14256,14026,13817,13568,13311,13042,12761,12466,12177,11877,11597,11317,11071,10834,10589,10314,10012,9702,9387,9093,8837,8643,8478,8317,8185,8084,8004,7933,7891,7824,7737,7585,7405,7251,7135,7010,6917,6825,6761,6708,6664,6648,6645,6634,6620,6643,6640,6497,6185,5751,5132,21.4,21.4,21.9,1567878,0.3,12.2,11.9,5.0,596,-1.00,-1.00,56.8412,-18.761850,0.000589,,,,,184 +SATSLF0720,2024246,6.759877,4.20,0.0588,0.1007,0.0167,0.00,16213,644,1,703,698,703,699,710,690,714,709,696,715,713,726,750,869,1207,1958,3152,4549,5787,6721,7375,7862,8279,8725,9241,9865,10607,11485,12486,13611,14794,15981,17105,18054,18776,19206,19339,19161,18770,18225,17634,17076,16609,16253,16026,15941,16023,16285,16689,17275,18032,18946,20009,21226,22550,23997,25500,26992,28422,29687,30691,31444,31847,31850,31525,30845,29941,28862,27637,26418,25266,24181,23168,22309,21568,20975,20472,20070,19791,19632,19540,19530,19645,19825,20096,20448,20893,21405,21966,22583,23258,23899,24516,25101,25581,25952,26212,26266,26134,25859,25373,24729,23993,23186,22315,21446,20595,19822,19122,18465,17909,17433,17032,16692,16448,16269,16176,16122,16145,16241,16401,16626,16920,17293,17728,18222,18781,19399,20043,20744,21466,22210,22954,23656,24373,25040,25643,26206,26637,26968,27201,27309,27317,27219,27003,26673,26285,25792,25216,24621,23982,23333,22674,22005,21379,20759,20168,19605,19124,18633,18224,17873,17532,17244,16964,16736,16514,16320,16137,15916,15746,15572,15426,15330,15228,15156,15075,15037,15012,15009,15017,15040,15065,15098,15146,15170,15226,15276,15291,15290,15328,15322,15333,15344,15345,15344,15285,15225,15163,15095,15002,14907,14767,14619,14445,14258,14052,13825,13591,13338,13076,12776,12491,12184,11882,11589,11312,11067,10826,10595,10315,10020,9709,9394,9111,8880,8653,8483,8314,8182,8101,8012,7927,7886,7808,7720,7581,7411,7261,7136,7016,6922,6854,6782,6722,6689,6658,6667,6649,6627,6655,6653,6485,6190,5752,5141,21.5,21.4,22.0,1567879,0.4,12.1,12.0,5.0,491,-1.00,-1.00,56.6578,-18.688753,0.000515,,,,,140 +SATSLF0720,2024246,6.760132,4.19,0.0587,0.1013,0.0174,0.00,16194,644,1,690,703,696,702,701,703,705,709,701,701,702,716,759,868,1218,1953,3153,4545,5782,6710,7362,7825,8251,8704,9229,9852,10596,11475,12488,13593,14787,15942,17061,18025,18769,19189,19325,19160,18777,18235,17613,17051,16599,16237,16013,15937,16024,16270,16679,17270,18006,18913,19974,21205,22540,23985,25483,26976,28428,29677,30669,31425,31818,31835,31486,30810,29899,28829,27595,26394,25234,24144,23136,22279,21554,20937,20449,20060,19766,19595,19513,19520,19621,19798,20080,20430,20861,21379,21949,22562,23223,23880,24489,25073,25552,25920,26185,26225,26109,25833,25345,24701,23984,23178,22308,21425,20572,19789,19082,18432,17868,17407,16997,16666,16423,16246,16161,16109,16139,16214,16385,16599,16903,17269,17703,18202,18757,19384,20017,20698,21441,22181,22928,23629,24345,25006,25591,26171,26601,26940,27169,27274,27291,27208,26986,26640,26244,25757,25180,24581,23963,23321,22656,21974,21353,20727,20144,19584,19086,18604,18205,17841,17504,17220,16938,16694,16494,16290,16109,15912,15725,15568,15432,15317,15222,15142,15072,15032,14997,14976,14977,15009,15033,15068,15106,15155,15205,15245,15267,15274,15287,15289,15306,15329,15325,15333,15272,15214,15140,15082,14995,14888,14750,14605,14428,14241,14026,13810,13568,13315,13049,12760,12461,12163,11871,11570,11309,11061,10837,10589,10322,10011,9703,9378,9091,8846,8637,8462,8305,8162,8070,8005,7922,7870,7799,7729,7579,7415,7270,7120,7022,6920,6838,6772,6715,6682,6666,6645,6634,6624,6637,6625,6469,6167,5739,5122,21.5,21.5,22.0,1567880,0.3,12.2,12.0,5.0,481,-1.00,-1.00,56.5096,-18.609686,0.000599,,,,,114 +SATSLF0720,2024246,6.760385,4.15,0.0581,0.1011,0.0164,0.00,16201,644,1,692,690,679,699,697,709,713,717,708,718,711,727,770,885,1207,1971,3154,4539,5799,6712,7373,7832,8253,8699,9210,9854,10602,11489,12482,13602,14795,15972,17098,18042,18775,19212,19345,19154,18765,18231,17641,17069,16589,16229,16000,15938,16025,16281,16678,17259,18013,18924,19989,21227,22563,24001,25499,26981,28406,29665,30661,31419,31833,31818,31498,30838,29904,28838,27602,26397,25229,24139,23159,22285,21547,20937,20456,20065,19774,19608,19524,19526,19617,19808,20065,20428,20865,21392,21946,22582,23254,23889,24505,25097,25557,25928,26208,26253,26118,25836,25351,24725,23994,23184,22315,21439,20573,19808,19113,18441,17877,17403,16999,16681,16424,16252,16163,16097,16127,16219,16395,16629,16906,17291,17717,18202,18781,19392,20033,20717,21437,22203,22936,23645,24363,25036,25609,26185,26614,26925,27170,27286,27290,27201,26981,26658,26258,25780,25189,24608,23979,23329,22661,21991,21352,20732,20135,19589,19098,18614,18198,17845,17506,17217,16945,16709,16506,16309,16118,15931,15735,15582,15429,15317,15217,15129,15054,15022,15002,15000,15009,15032,15059,15081,15124,15159,15209,15266,15295,15279,15303,15313,15326,15349,15342,15345,15285,15218,15171,15094,14997,14892,14762,14624,14432,14257,14045,13833,13601,13310,13063,12765,12468,12170,11864,11590,11306,11075,10829,10595,10328,10025,9715,9381,9099,8842,8631,8460,8307,8192,8077,7996,7933,7890,7812,7727,7595,7409,7255,7145,7016,6919,6830,6771,6715,6696,6666,6651,6634,6617,6637,6628,6481,6170,5745,5123,21.5,21.5,22.1,1567881,0.2,12.2,11.9,5.0,483,-1.00,-1.00,56.6293,-18.663146,0.000591,,,,,40 +SATSLF0720,2024246,6.760637,4.14,0.0580,0.1015,0.0173,0.00,16186,644,1,706,706,697,700,691,711,717,725,737,733,738,741,769,875,1209,1948,3143,4532,5779,6706,7365,7829,8261,8704,9233,9846,10589,11462,12453,13575,14764,15925,17045,18000,18717,19170,19301,19116,18722,18205,17616,17049,16592,16221,15986,15921,15998,16235,16651,17227,17977,18903,19965,21195,22505,23965,25453,26954,28364,29637,30645,31390,31789,31781,31464,30801,29876,28811,27573,26374,25211,24137,23118,22263,21533,20925,20432,20024,19745,19597,19506,19511,19610,19798,20064,20407,20837,21354,21922,22540,23221,23854,24469,25058,25533,25895,26168,26219,26085,25816,25320,24677,23947,23149,22288,21408,20553,19793,19080,18436,17863,17396,16992,16676,16414,16241,16138,16085,16121,16208,16373,16590,16887,17265,17705,18213,18775,19389,20021,20693,21420,22168,22908,23646,24349,25000,25589,26180,26592,26924,27162,27266,27268,27181,26962,26634,26247,25736,25183,24582,23947,23304,22648,21987,21334,20727,20126,19570,19080,18619,18203,17840,17509,17200,16923,16691,16481,16284,16103,15905,15734,15546,15409,15293,15195,15122,15038,15005,14992,14989,14994,15032,15050,15066,15115,15147,15189,15248,15275,15274,15281,15277,15315,15329,15333,15314,15269,15206,15142,15082,14992,14911,14765,14605,14439,14241,14024,13810,13564,13307,13046,12757,12448,12164,11868,11585,11317,11059,10818,10594,10318,10020,9718,9393,9101,8857,8637,8473,8320,8192,8069,8011,7930,7869,7818,7720,7591,7412,7265,7133,7015,6919,6839,6772,6711,6679,6657,6639,6631,6632,6642,6649,6493,6179,5747,5129,21.5,21.5,22.1,1567882,0.4,12.2,12.0,5.0,472,-1.00,-1.00,56.9920,-18.793216,0.000565,,,,,107 +SATSLF0720,2024246,6.760894,4.03,0.0565,0.1025,0.0180,0.00,16158,644,1,697,699,701,713,715,706,719,725,714,726,734,738,769,891,1223,1949,3143,4518,5777,6705,7341,7809,8228,8667,9177,9819,10569,11453,12445,13567,14741,15902,17017,17969,18702,19136,19276,19079,18707,18169,17565,17000,16529,16183,15944,15879,15945,16209,16603,17191,17931,18850,19918,21144,22468,23923,25405,26894,28325,29556,30558,31309,31710,31700,31367,30716,29805,28746,27501,26320,25152,24080,23065,22210,21477,20858,20368,19993,19708,19555,19462,19472,19569,19757,20002,20359,20804,21321,21885,22490,23184,23824,24430,24994,25477,25844,26116,26144,26039,25755,25287,24644,23909,23115,22248,21374,20528,19770,19062,18402,17837,17371,16953,16635,16384,16224,16109,16056,16099,16189,16342,16589,16872,17234,17668,18149,18715,19329,19972,20650,21391,22136,22889,23584,24301,24958,25543,26121,26545,26871,27138,27221,27227,27127,26916,26589,26184,25686,25127,24546,23918,23265,22618,21949,21310,20690,20100,19536,19059,18568,18183,17815,17474,17173,16914,16672,16485,16274,16087,15894,15693,15547,15397,15285,15169,15110,15031,14984,14973,14978,14979,14997,15035,15060,15106,15140,15181,15233,15236,15262,15274,15277,15305,15325,15314,15305,15244,15181,15120,15047,14955,14859,14739,14592,14428,14216,14011,13805,13557,13293,13027,12743,12445,12157,11857,11574,11318,11069,10830,10601,10317,10005,9687,9363,9091,8842,8633,8464,8304,8183,8089,8012,7928,7875,7819,7734,7580,7412,7253,7124,7024,6913,6827,6773,6707,6657,6647,6640,6626,6625,6629,6620,6472,6175,5746,5137,21.5,21.5,22.1,1567883,0.0,12.2,12.0,5.0,479,-1.00,-1.00,57.4188,-18.925961,0.000621,,,,,41 +SATSLF0720,2024246,6.761147,4.26,0.0597,0.1017,0.0175,0.00,16186,644,1,702,695,699,700,707,704,714,722,727,720,710,727,775,878,1220,1959,3144,4539,5789,6711,7363,7831,8251,8705,9224,9829,10594,11469,12460,13582,14765,15947,17065,18008,18729,19173,19297,19122,18737,18183,17607,17059,16600,16229,16001,15918,16007,16250,16644,17225,17982,18897,19983,21211,22530,23976,25458,26941,28382,29631,30622,31389,31770,31776,31440,30800,29864,28814,27561,26385,25218,24141,23124,22272,21521,20911,20419,20034,19757,19590,19497,19507,19611,19797,20051,20406,20825,21351,21920,22554,23209,23865,24473,25050,25538,25898,26152,26218,26102,25812,25345,24709,23973,23160,22283,21419,20556,19809,19088,18427,17879,17405,16989,16675,16412,16259,16141,16098,16118,16218,16378,16600,16909,17273,17700,18186,18759,19353,20002,20685,21440,22169,22904,23632,24332,25001,25591,26155,26584,26909,27165,27254,27274,27172,26949,26631,26237,25732,25175,24596,23941,23299,22652,21979,21340,20728,20120,19554,19074,18606,18186,17811,17485,17212,16941,16704,16493,16283,16103,15922,15720,15561,15416,15310,15196,15118,15032,14996,14983,14987,14985,15025,15049,15079,15127,15157,15191,15252,15264,15265,15300,15293,15307,15332,15329,15324,15270,15206,15136,15089,15001,14909,14762,14601,14429,14232,14019,13819,13569,13312,13038,12762,12468,12176,11874,11577,11322,11061,10827,10600,10332,10017,9698,9378,9099,8854,8641,8459,8307,8179,8083,8008,7930,7885,7831,7717,7587,7419,7265,7122,7013,6910,6837,6772,6725,6688,6664,6637,6639,6613,6644,6639,6489,6181,5747,5128,21.5,21.6,22.1,1567884,0.3,12.2,12.0,5.0,479,-1.00,-1.00,56.3715,-18.533249,0.000538,,,,,147 +SATSLF0720,2024246,6.761403,4.13,0.0578,0.1028,0.0181,0.00,16157,644,1,687,703,712,717,709,700,705,701,701,715,709,727,748,875,1216,1965,3143,4532,5770,6682,7326,7802,8231,8669,9202,9814,10569,11434,12433,13559,14741,15904,17013,17985,18705,19120,19271,19081,18711,18180,17588,17015,16561,16181,15965,15877,15963,16193,16624,17194,17944,18853,19942,21157,22494,23945,25424,26913,28327,29579,30573,31328,31732,31723,31403,30745,29824,28762,27514,26352,25180,24085,23067,22205,21477,20866,20377,20002,19706,19546,19449,19458,19565,19742,20007,20368,20811,21335,21899,22501,23190,23825,24443,25018,25482,25856,26114,26177,26042,25762,25289,24659,23940,23122,22259,21378,20531,19752,19037,18387,17844,17358,16958,16637,16392,16217,16126,16069,16084,16177,16342,16572,16872,17240,17675,18157,18724,19332,19971,20664,21389,22145,22869,23592,24293,24953,25557,26129,26538,26871,27118,27220,27237,27129,26931,26585,26199,25701,25125,24546,23913,23258,22595,21930,21300,20688,20093,19541,19046,18579,18167,17792,17475,17188,16919,16672,16459,16257,16061,15867,15683,15533,15389,15277,15174,15094,15015,14985,14972,14957,14970,15001,15013,15047,15099,15118,15156,15224,15229,15241,15257,15253,15280,15297,15303,15298,15254,15190,15117,15053,14963,14872,14731,14590,14413,14213,14007,13782,13554,13288,13016,12737,12436,12160,11868,11577,11309,11049,10813,10594,10309,10001,9686,9373,9097,8842,8615,8446,8294,8155,8064,7992,7917,7868,7801,7715,7575,7403,7242,7107,7003,6900,6819,6749,6699,6663,6654,6635,6625,6626,6654,6637,6477,6171,5742,5117,21.5,21.6,22.2,1567885,0.0,12.2,12.0,5.0,478,-1.00,-1.00,57.2270,-18.860028,0.000610,,,,,107 +SATSLF0720,2024246,6.761657,4.21,0.0589,0.1039,0.0184,0.00,16134,644,1,705,705,704,699,702,717,713,710,723,730,720,735,773,882,1208,1948,3129,4517,5765,6678,7316,7791,8220,8663,9204,9813,10576,11434,12420,13529,14707,15884,16999,17943,18650,19086,19235,19045,18673,18142,17542,16979,16533,16153,15931,15858,15942,16187,16587,17179,17911,18837,19893,21102,22435,23877,25363,26861,28268,29521,30519,31264,31667,31671,31323,30683,29760,28693,27466,26281,25101,24035,23028,22170,21450,20829,20339,19962,19664,19502,19399,19438,19528,19710,19990,20325,20759,21283,21832,22458,23129,23785,24387,24963,25456,25815,26068,26131,26002,25712,25227,24603,23885,23083,22218,21349,20496,19738,19021,18372,17813,17340,16925,16610,16360,16197,16083,16052,16077,16152,16315,16551,16844,17202,17643,18141,18693,19308,19946,20630,21363,22119,22856,23561,24269,24922,25499,26070,26500,26818,27080,27172,27189,27098,26896,26542,26145,25664,25097,24507,23883,23249,22570,21926,21269,20659,20067,19524,19029,18553,18133,17771,17462,17168,16906,16651,16459,16249,16062,15860,15664,15510,15368,15260,15162,15091,15012,14950,14947,14941,14963,14980,15003,15041,15090,15112,15165,15221,15225,15250,15244,15239,15281,15307,15305,15283,15238,15171,15104,15049,14953,14849,14725,14571,14396,14214,14006,13789,13549,13278,13007,12747,12445,12153,11837,11555,11273,11024,10781,10551,10293,9996,9671,9364,9095,8843,8615,8455,8301,8163,8066,7993,7937,7881,7821,7726,7573,7385,7235,7087,6985,6884,6805,6743,6689,6659,6637,6635,6612,6608,6629,6613,6475,6166,5742,5125,21.6,21.6,22.2,1567886,0.0,12.1,12.0,5.0,469,-1.00,-1.00,56.8410,-18.659739,0.000543,,,,,134 +SATSLF0720,2024246,6.761911,4.12,0.0577,0.1030,0.0177,0.00,16149,644,1,700,702,701,705,709,711,715,705,722,728,733,737,769,890,1225,1961,3144,4509,5767,6702,7357,7819,8241,8686,9201,9814,10557,11422,12420,13537,14733,15882,17011,17978,18682,19139,19264,19072,18690,18157,17568,17010,16540,16180,15948,15892,15957,16197,16603,17190,17922,18839,19926,21138,22466,23918,25387,26888,28285,29547,30554,31296,31693,31697,31362,30704,29794,28716,27491,26302,25140,24064,23061,22204,21462,20856,20377,19973,19697,19530,19441,19455,19557,19732,20008,20352,20784,21312,21873,22486,23138,23799,24417,24985,25478,25827,26097,26137,26024,25734,25266,24628,23914,23106,22246,21385,20525,19753,19057,18389,17831,17350,16941,16635,16383,16214,16105,16050,16081,16160,16327,16559,16853,17232,17664,18157,18723,19325,19964,20635,21376,22120,22853,23563,24272,24938,25529,26103,26528,26838,27082,27211,27224,27117,26900,26564,26171,25686,25117,24533,23899,23253,22588,21916,21287,20673,20080,19531,19029,18567,18146,17778,17464,17170,16896,16665,16449,16247,16085,15878,15693,15512,15385,15273,15161,15087,15024,14982,14948,14964,14972,15002,15027,15059,15080,15124,15170,15229,15241,15260,15257,15264,15281,15292,15292,15283,15231,15175,15128,15058,14965,14880,14737,14583,14407,14216,14009,13810,13555,13294,13016,12739,12448,12157,11849,11564,11289,11043,10811,10571,10300,10005,9669,9365,9073,8839,8644,8450,8299,8174,8070,7993,7917,7867,7801,7713,7585,7405,7252,7127,7016,6910,6827,6763,6701,6663,6652,6636,6617,6619,6641,6629,6474,6171,5756,5130,21.6,21.6,22.2,1567887,0.0,12.2,12.0,5.0,470,-1.00,-1.00,56.8685,-18.688430,0.000587,,,,,100 +SATSLF0720,2024246,6.762168,4.19,0.0587,0.1034,0.0178,0.00,16141,644,1,705,692,711,719,727,729,726,718,726,713,714,735,765,872,1215,1961,3133,4531,5779,6701,7337,7810,8221,8676,9197,9802,10569,11433,12425,13529,14731,15890,16993,17956,18669,19104,19234,19057,18673,18150,17548,16999,16534,16171,15945,15869,15949,16183,16602,17170,17925,18821,19906,21120,22438,23891,25376,26865,28273,29536,30529,31274,31669,31681,31362,30677,29764,28704,27466,26298,25124,24040,23052,22194,21461,20849,20362,19984,19700,19517,19421,19441,19549,19713,19992,20336,20771,21291,21845,22471,23141,23777,24401,24974,25445,25815,26065,26123,25990,25731,25250,24611,23895,23101,22222,21344,20502,19739,19038,18376,17830,17357,16951,16641,16374,16201,16107,16039,16087,16179,16334,16563,16858,17235,17655,18141,18709,19318,19953,20634,21363,22101,22841,23576,24285,24936,25523,26085,26507,26827,27063,27170,27185,27097,26890,26578,26185,25689,25121,24523,23880,23226,22566,21906,21271,20668,20073,19521,19013,18550,18150,17792,17466,17145,16891,16645,16453,16249,16058,15866,15677,15509,15363,15250,15152,15089,15011,14983,14943,14955,14957,14983,15015,15035,15082,15121,15162,15216,15227,15252,15254,15265,15278,15287,15311,15296,15239,15175,15124,15041,14957,14861,14714,14568,14409,14210,13994,13781,13537,13283,13019,12729,12448,12153,11851,11575,11314,11046,10807,10583,10317,10009,9677,9344,9083,8833,8628,8457,8302,8178,8069,7994,7929,7874,7807,7727,7580,7396,7238,7107,7001,6915,6829,6757,6711,6665,6651,6641,6623,6615,6637,6625,6481,6169,5743,5127,21.6,21.6,22.2,1567888,0.2,12.2,12.0,5.0,476,-1.00,-1.00,56.8035,-18.650006,0.000548,,,,,94 +SATSLF0720,2024246,6.762422,4.30,0.0602,0.1052,0.0191,0.00,16085,644,1,689,697,698,692,693,704,706,722,733,724,730,729,760,883,1212,1949,3111,4491,5718,6638,7269,7739,8161,8610,9122,9751,10485,11359,12354,13465,14632,15792,16876,17838,18537,18983,19122,18933,18579,18058,17454,16902,16452,16084,15856,15780,15838,16106,16521,17097,17838,18743,19815,21037,22352,23790,25275,26741,28157,29384,30389,31129,31529,31532,31208,30557,29652,28593,27365,26187,25028,23946,22942,22077,21349,20749,20263,19886,19597,19467,19344,19379,19470,19645,19921,20270,20697,21209,21778,22407,23065,23721,24325,24886,25371,25729,25994,26045,25923,25642,25165,24529,23815,23021,22149,21276,20435,19669,18969,18313,17769,17299,16894,16594,16333,16158,16057,16002,16029,16108,16273,16509,16804,17163,17605,18091,18665,19265,19899,20592,21318,22050,22793,23489,24197,24838,25442,26005,26438,26760,27001,27109,27124,27034,26826,26484,26097,25604,25046,24452,23813,23172,22514,21856,21237,20616,20029,19474,18970,18505,18112,17749,17402,17129,16857,16616,16419,16209,16039,15830,15648,15467,15335,15231,15113,15039,14967,14932,14923,14916,14937,14954,14981,15025,15056,15080,15125,15189,15207,15219,15220,15218,15242,15261,15258,15265,15197,15138,15083,15010,14914,14835,14701,14555,14368,14190,13962,13740,13511,13241,12983,12691,12402,12119,11825,11538,11266,11013,10759,10528,10257,9966,9639,9323,9054,8807,8596,8441,8281,8155,8049,7977,7908,7847,7786,7680,7559,7371,7214,7102,6978,6897,6812,6767,6702,6658,6642,6614,6603,6599,6625,6606,6451,6166,5724,5098,21.6,21.6,22.2,1567889,0.2,12.1,12.0,5.0,476,-1.00,-1.00,57.3939,-18.818076,0.000562,,,,,54 +SATSLF0720,2024246,6.762673,4.03,0.0564,0.1042,0.0186,0.00,16118,644,1,700,699,695,698,694,702,715,722,718,726,726,733,771,885,1216,1961,3133,4509,5728,6659,7305,7779,8199,8652,9179,9794,10539,11415,12416,13513,14684,15829,16949,17901,18614,19067,19198,19017,18634,18097,17510,16949,16481,16117,15891,15825,15899,16152,16567,17133,17887,18780,19860,21073,22394,23861,25329,26811,28221,29479,30474,31221,31606,31611,31285,30642,29725,28669,27449,26256,25077,23997,22996,22137,21397,20781,20311,19920,19633,19483,19386,19400,19504,19696,19949,20305,20737,21260,21828,22450,23116,23758,24385,24934,25418,25771,26029,26080,25957,25691,25204,24585,23869,23073,22213,21340,20480,19718,19024,18341,17799,17320,16920,16599,16349,16181,16090,16047,16065,16161,16311,16539,16849,17198,17635,18120,18699,19296,19931,20621,21337,22075,22824,23547,24251,24909,25511,26061,26496,26805,27057,27144,27159,27064,26852,26535,26144,25653,25084,24489,23847,23203,22545,21897,21257,20653,20061,19504,19014,18536,18130,17765,17448,17145,16885,16641,16437,16228,16034,15856,15668,15505,15369,15253,15137,15082,14997,14950,14945,14930,14957,14972,14999,15019,15074,15101,15154,15213,15232,15242,15250,15245,15261,15273,15275,15255,15232,15161,15100,15031,14944,14849,14710,14560,14398,14189,13979,13758,13525,13273,13012,12740,12442,12149,11845,11547,11282,11032,10795,10565,10273,9984,9659,9346,9060,8829,8622,8450,8309,8154,8057,7991,7925,7866,7815,7719,7574,7384,7243,7113,6987,6898,6809,6755,6694,6669,6638,6626,6612,6608,6627,6606,6445,6154,5714,5105,21.6,21.7,22.3,1567889,0.1,12.2,11.9,5.0,477,-1.00,-1.00,58.0197,-19.126288,0.000573,,,,,30 +SATSLF0720,2024246,6.762929,4.21,0.0589,0.1041,0.0184,0.00,16127,644,1,696,691,695,709,710,701,701,717,722,723,741,730,762,884,1216,1964,3138,4515,5783,6693,7330,7811,8208,8667,9188,9808,10549,11413,12402,13519,14703,15859,16970,17921,18634,19083,19221,19033,18653,18123,17521,16968,16498,16139,15926,15858,15929,16171,16579,17146,17908,18805,19874,21083,22419,23862,25341,26825,28242,29478,30484,31230,31625,31628,31307,30637,29719,28663,27426,26254,25090,24023,23013,22173,21431,20825,20332,19934,19662,19497,19390,19422,19514,19712,19968,20318,20753,21273,21834,22465,23127,23776,24377,24971,25429,25785,26067,26113,25993,25710,25237,24589,23867,23083,22221,21334,20487,19713,19016,18373,17792,17335,16920,16605,16347,16179,16091,16041,16071,16168,16330,16542,16838,17212,17636,18130,18711,19293,19952,20620,21368,22100,22846,23553,24251,24909,25513,26061,26474,26786,27040,27159,27161,27083,26865,26555,26149,25649,25083,24508,23869,23221,22557,21903,21270,20661,20065,19510,19021,18539,18134,17775,17446,17159,16890,16657,16444,16244,16059,15865,15685,15505,15361,15253,15149,15072,14998,14972,14966,14953,14950,14996,14997,15030,15074,15097,15158,15205,15226,15242,15255,15262,15273,15291,15287,15266,15221,15147,15104,15028,14939,14853,14720,14583,14412,14202,13997,13793,13549,13281,13010,12728,12435,12145,11840,11570,11284,11042,10812,10573,10285,9989,9671,9355,9075,8833,8619,8446,8302,8154,8070,7978,7906,7866,7797,7696,7565,7390,7249,7121,7001,6906,6820,6751,6699,6647,6641,6634,6626,6595,6630,6627,6480,6170,5737,5118,21.6,21.7,22.3,1567890,0.0,12.2,11.9,5.0,476,-1.00,-1.00,56.7065,-18.582352,0.000549,,,,,159 +SATSLF0720,2024246,6.763182,4.30,0.0602,0.1048,0.0188,0.00,16087,644,1,722,718,720,726,721,721,713,717,725,717,727,729,770,899,1229,1962,3130,4499,5733,6636,7299,7754,8162,8614,9129,9749,10480,11351,12345,13462,14629,15781,16888,17848,18569,19003,19126,18955,18568,18037,17449,16886,16433,16077,15866,15805,15878,16110,16519,17109,17845,18749,19809,21018,22342,23784,25241,26720,28134,29382,30354,31132,31537,31528,31214,30548,29655,28595,27361,26161,25005,23941,22929,22085,21361,20756,20288,19882,19605,19462,19364,19370,19461,19653,19907,20253,20706,21213,21766,22391,23074,23705,24331,24901,25372,25737,25993,26045,25920,25636,25165,24525,23826,23034,22162,21298,20438,19671,18983,18323,17756,17297,16890,16573,16317,16165,16042,16023,16036,16129,16292,16514,16813,17175,17623,18101,18657,19274,19907,20579,21315,22045,22792,23488,24192,24859,25434,26008,26422,26760,26992,27113,27125,27027,26813,26478,26088,25600,25043,24448,23819,23172,22513,21848,21217,20609,20023,19474,18980,18502,18103,17736,17405,17119,16864,16629,16418,16217,16023,15821,15637,15469,15342,15221,15131,15061,14974,14938,14921,14928,14936,14945,14974,15019,15052,15090,15133,15179,15199,15210,15229,15221,15253,15261,15262,15258,15197,15147,15091,15012,14921,14829,14694,14558,14377,14167,13963,13767,13521,13253,12992,12712,12422,12117,11829,11537,11264,11011,10769,10534,10264,9962,9645,9350,9056,8822,8605,8447,8278,8149,8050,7973,7905,7865,7796,7698,7562,7393,7234,7097,6990,6878,6815,6748,6690,6653,6635,6620,6617,6589,6610,6619,6470,6165,5741,5111,21.6,21.8,22.3,1567891,0.1,12.2,12.0,5.0,479,-1.00,-1.00,57.1509,-18.711622,0.000502,,,,,177 +SATSLF0720,2024246,6.763433,4.28,0.0600,0.1061,0.0194,0.00,16057,644,1,713,701,706,702,711,707,711,717,729,717,723,737,772,885,1213,1967,3142,4504,5731,6632,7274,7742,8160,8602,9120,9723,10460,11333,12331,13430,14589,15749,16840,17801,18507,18944,19087,18921,18525,18006,17425,16858,16404,16025,15809,15749,15830,16077,16469,17061,17801,18709,19781,20973,22284,23709,25185,26667,28074,29322,30315,31046,31435,31450,31117,30482,29553,28514,27281,26109,24945,23888,22896,22042,21313,20701,20231,19823,19571,19398,19306,19321,19422,19603,19859,20236,20657,21161,21739,22345,23011,23648,24256,24816,25303,25671,25936,25970,25857,25585,25117,24481,23766,22981,22093,21247,20405,19626,18926,18285,17741,17270,16855,16545,16293,16116,16014,15970,15993,16085,16255,16501,16786,17144,17574,18056,18610,19205,19849,20540,21265,22005,22745,23462,24171,24820,25402,25969,26390,26716,26949,27061,27069,26969,26766,26448,26057,25561,24993,24405,23770,23130,22487,21813,21178,20589,19994,19440,18942,18484,18067,17706,17381,17080,16800,16569,16375,16177,15994,15818,15644,15477,15327,15218,15105,15029,14947,14919,14895,14891,14906,14929,14962,14997,15032,15072,15102,15162,15179,15191,15209,15208,15227,15233,15240,15229,15180,15129,15074,14993,14907,14814,14682,14526,14359,14164,13954,13725,13499,13253,12978,12706,12408,12121,11821,11522,11269,11005,10768,10532,10257,9975,9652,9332,9057,8809,8596,8435,8291,8153,8043,7966,7884,7838,7773,7696,7557,7380,7232,7093,6983,6884,6798,6729,6677,6649,6639,6617,6603,6601,6621,6615,6476,6160,5729,5111,21.6,21.7,22.4,1567892,0.3,12.2,12.0,5.0,477,-1.00,-1.00,57.2286,-18.696697,0.000538,,,,,129 +SATSLF0720,2024246,6.763693,4.37,0.0612,0.1049,0.0196,0.00,16073,644,1,708,708,715,705,715,720,722,722,717,714,720,733,759,887,1210,1946,3123,4504,5747,6654,7285,7755,8187,8613,9125,9753,10486,11353,12347,13469,14646,15804,16921,17857,18572,18998,19136,18948,18576,18045,17460,16892,16456,16082,15867,15798,15856,16120,16528,17109,17857,18737,19807,21029,22349,23785,25232,26738,28138,29385,30374,31128,31533,31529,31201,30539,29634,28580,27345,26158,24993,23907,22907,22071,21325,20728,20274,19869,19597,19433,19356,19372,19452,19636,19890,20225,20681,21196,21757,22372,23044,23687,24301,24880,25345,25716,25973,26035,25912,25626,25142,24502,23794,22992,22141,21264,20430,19659,18961,18300,17734,17267,16877,16557,16305,16155,16036,16010,16025,16113,16269,16486,16776,17145,17575,18061,18634,19240,19862,20556,21273,22013,22770,23477,24157,24829,25398,25976,26405,26725,26968,27074,27095,26992,26777,26442,26055,25560,24996,24403,23777,23144,22489,21821,21194,20592,19991,19441,18945,18481,18086,17728,17397,17093,16838,16598,16391,16185,16002,15801,15621,15457,15331,15208,15114,15030,14950,14919,14889,14891,14900,14929,14948,14988,15030,15060,15111,15171,15189,15204,15194,15188,15217,15224,15245,15228,15179,15123,15067,15013,14912,14813,14678,14525,14350,14166,13962,13746,13508,13236,12969,12690,12395,12097,11808,11522,11252,10997,10772,10549,10277,9983,9645,9321,9047,8803,8600,8445,8281,8151,8049,7969,7906,7851,7777,7682,7554,7358,7213,7094,6978,6886,6809,6739,6683,6641,6615,6602,6599,6582,6603,6600,6445,6141,5715,5101,21.6,21.8,22.4,1567893,0.2,12.2,12.0,5.0,477,-1.00,-1.00,56.6584,-18.503480,0.000520,,,,,40 +SATSLF0720,2024246,6.763946,4.19,0.0587,0.1060,0.0201,0.00,16052,644,1,712,704,701,707,709,699,722,727,724,727,733,731,766,876,1216,1944,3116,4507,5738,6658,7294,7770,8186,8638,9141,9757,10503,11370,12360,13457,14632,15806,16897,17855,18564,18995,19136,18938,18573,18040,17460,16889,16437,16073,15856,15769,15865,16097,16496,17073,17824,18725,19794,20985,22299,23739,25221,26704,28107,29369,30359,31098,31490,31485,31152,30507,29582,28533,27310,26120,24971,23911,22907,22055,21319,20711,20227,19842,19542,19387,19309,19317,19424,19613,19853,20212,20641,21157,21718,22331,22998,23636,24275,24841,25314,25681,25932,25975,25856,25580,25106,24469,23765,22971,22111,21242,20417,19640,18936,18295,17725,17254,16849,16516,16272,16113,16020,15962,16012,16096,16245,16474,16765,17128,17554,18045,18617,19211,19848,20526,21259,21989,22729,23435,24125,24781,25367,25929,26362,26688,26930,27028,27049,26954,26739,26429,26025,25533,24970,24391,23761,23113,22464,21785,21169,20562,19970,19416,18928,18451,18057,17677,17358,17060,16795,16574,16369,16183,15978,15781,15605,15442,15301,15178,15063,15010,14930,14893,14866,14880,14881,14899,14935,14969,15011,15048,15085,15139,15155,15170,15185,15177,15201,15202,15219,15210,15159,15098,15049,14978,14885,14795,14653,14493,14330,14128,13936,13718,13485,13219,12957,12672,12374,12088,11795,11505,11235,10989,10744,10501,10230,9944,9613,9319,9038,8800,8596,8423,8268,8141,8037,7962,7879,7835,7773,7680,7524,7348,7211,7073,6969,6877,6798,6717,6668,6643,6622,6609,6592,6579,6598,6587,6428,6143,5701,5099,21.6,21.8,22.4,1567894,0.0,12.2,11.9,5.0,475,-1.00,-1.00,56.9558,-18.602008,0.000576,,,,,229 +SATSLF0720,2024246,6.764197,4.31,0.0604,0.1057,0.0191,0.00,16076,644,1,701,711,718,710,718,724,721,725,725,721,726,729,769,881,1213,1959,3119,4497,5738,6669,7297,7760,8182,8632,9137,9751,10497,11367,12333,13447,14630,15773,16893,17843,18553,18987,19116,18926,18560,18026,17441,16882,16421,16052,15837,15758,15841,16104,16497,17097,17845,18731,19806,21010,22324,23747,25234,26693,28113,29347,30365,31113,31493,31500,31173,30521,29610,28557,27312,26142,24965,23904,22906,22060,21330,20726,20257,19876,19584,19425,19324,19339,19449,19633,19899,20231,20673,21195,21758,22394,23040,23694,24301,24872,25351,25709,25973,26026,25913,25617,25145,24517,23804,23009,22147,21269,20430,19672,18953,18288,17744,17282,16871,16561,16313,16153,16070,16006,16032,16123,16275,16503,16796,17154,17581,18074,18645,19240,19882,20565,21298,22025,22785,23486,24178,24833,25429,25994,26406,26733,26980,27088,27097,27013,26794,26466,26071,25591,25033,24421,23796,23143,22483,21829,21218,20586,20003,19455,18962,18502,18092,17728,17401,17110,16827,16605,16395,16192,16001,15825,15626,15465,15335,15225,15122,15050,14966,14931,14904,14912,14918,14937,14976,15001,15051,15078,15117,15175,15178,15204,15209,15203,15238,15250,15259,15250,15208,15140,15082,15016,14922,14831,14681,14533,14373,14166,13970,13748,13520,13248,12981,12697,12397,12113,11829,11530,11258,11019,10774,10554,10282,9989,9669,9349,9060,8807,8596,8424,8274,8158,8053,7987,7906,7865,7792,7711,7555,7385,7221,7105,6985,6893,6797,6747,6702,6666,6633,6613,6615,6589,6615,6593,6438,6145,5723,5106,21.6,21.8,22.4,1567895,0.3,12.2,11.9,5.0,474,-1.00,-1.00,57.1161,-18.678501,0.000575,,,,,198 +SATSLF0720,2024246,6.764452,4.22,0.0590,0.1057,0.0196,0.00,16061,644,1,706,714,713,722,722,718,723,732,737,741,749,758,771,895,1227,1958,3122,4509,5745,6659,7299,7767,8183,8623,9141,9762,10507,11370,12350,13451,14626,15784,16893,17826,18554,18979,19100,18935,18574,18041,17451,16905,16441,16084,15849,15763,15847,16085,16488,17067,17801,18711,19785,20989,22295,23735,25213,26685,28090,29333,30325,31086,31477,31480,31147,30497,29563,28523,27280,26117,24946,23872,22890,22029,21303,20713,20224,19843,19572,19422,19325,19331,19427,19612,19872,20213,20646,21158,21725,22340,23003,23664,24262,24844,25319,25684,25933,25989,25857,25582,25111,24478,23778,22996,22125,21253,20410,19648,18933,18290,17738,17249,16855,16545,16281,16109,16018,15972,15998,16099,16265,16481,16784,17146,17570,18037,18610,19208,19856,20533,21268,22016,22754,23457,24164,24820,25401,25965,26372,26693,26920,27047,27045,26966,26754,26433,26032,25547,24980,24393,23753,23107,22450,21805,21177,20569,19979,19449,18951,18472,18081,17706,17377,17093,16821,16579,16386,16178,16000,15801,15620,15459,15319,15193,15109,15031,14955,14905,14886,14898,14904,14939,14949,14989,15019,15057,15110,15160,15170,15197,15193,15190,15210,15237,15234,15213,15176,15127,15065,14989,14902,14817,14686,14518,14354,14167,13952,13740,13498,13247,12976,12690,12409,12105,11815,11541,11253,11013,10780,10548,10287,9965,9647,9328,9050,8808,8601,8434,8272,8136,8059,7973,7906,7841,7775,7685,7543,7369,7215,7095,6982,6882,6811,6746,6695,6658,6639,6629,6605,6606,6613,6599,6443,6139,5721,5115,21.6,21.8,22.4,1567896,0.0,12.2,12.0,5.0,474,-1.00,-1.00,56.8143,-18.533683,0.000567,,,,,46 +SATSDF0720,2024246,7.009138,0.00,0.0000,0.0000,0.0000,0.00,644,0,1,614,618,617,618,629,614,627,627,636,617,619,611,617,620,618,621,622,624,631,625,619,642,625,646,649,664,650,653,661,661,654,658,646,637,642,646,649,654,652,652,640,640,640,642,651,661,645,651,653,647,650,652,656,659,659,656,665,645,651,663,648,645,647,651,653,659,645,643,632,647,654,649,653,657,659,643,659,642,649,647,641,643,636,647,646,652,657,651,650,669,657,663,663,640,642,645,648,641,641,640,648,644,643,644,649,649,644,660,654,640,647,646,636,651,641,649,647,656,657,657,646,664,649,646,623,627,625,631,638,637,640,658,660,645,653,653,651,653,645,632,625,637,644,645,642,648,649,641,643,642,641,644,649,641,639,630,641,629,637,633,644,634,643,638,647,638,647,659,653,661,657,650,646,654,646,642,640,646,650,658,644,640,629,644,648,641,639,643,645,649,651,637,646,634,647,641,655,647,650,653,648,646,654,645,649,645,645,644,640,633,643,649,640,646,650,648,650,651,649,653,641,646,643,645,641,659,649,641,647,651,634,641,648,628,639,641,640,647,645,651,661,663,657,660,646,639,654,643,633,643,629,630,635,640,643,473,0.0,0.0,0.0,1567895,0.0,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,142 +SATSLF0720,2024246,7.009693,4.03,0.0565,0.1013,0.0167,0.00,16208,644,1,713,703,709,715,705,707,707,711,726,726,727,723,756,865,1207,1964,3140,4541,5792,6721,7368,7834,8257,8696,9223,9862,10601,11472,12481,13601,14789,15965,17064,18033,18762,19197,19332,19165,18766,18237,17613,17063,16605,16230,16004,15927,16018,16257,16670,17257,17991,18909,19975,21210,22561,24006,25495,26993,28413,29657,30668,31419,31829,31826,31498,30836,29907,28853,27597,26411,25252,24172,23165,22302,21565,20938,20450,20080,19789,19616,19514,19529,19643,19808,20094,20440,20862,21387,21961,22570,23262,23904,24513,25093,25577,25934,26178,26226,26111,25840,25353,24727,23993,23204,22316,21447,20580,19826,19105,18451,17889,17418,16999,16667,16421,16254,16161,16107,16119,16235,16404,16631,16928,17300,17733,18213,18791,19401,20034,20723,21478,22197,22949,23680,24378,25045,25641,26208,26630,26944,27189,27299,27324,27214,27015,26680,26281,25786,25218,24629,23988,23340,22685,22014,21392,20749,20161,19603,19113,18628,18215,17847,17518,17235,16962,16734,16517,16315,16123,15922,15735,15573,15422,15313,15216,15133,15073,15034,15020,15013,15021,15042,15074,15101,15131,15170,15232,15284,15282,15299,15306,15305,15335,15342,15355,15335,15288,15222,15162,15106,14994,14916,14786,14625,14451,14263,14050,13824,13607,13325,13056,12775,12459,12194,11886,11602,11301,11067,10834,10589,10336,10026,9708,9402,9113,8881,8657,8481,8327,8197,8089,8020,7945,7895,7834,7749,7604,7423,7269,7140,7016,6919,6841,6782,6718,6695,6676,6661,6636,6637,6645,6649,6477,6181,5754,5129,21.5,21.4,21.9,1567896,0.4,12.2,12.0,5.0,597,-1.00,-1.00,57.3035,-18.944826,0.000624,,,,,216 +SATSLF0720,2024246,7.009874,4.22,0.0591,0.1016,0.0168,0.00,16192,644,1,701,682,683,690,708,697,695,698,712,719,736,740,767,887,1227,1957,3137,4512,5759,6693,7344,7811,8257,8693,9216,9846,10580,11464,12465,13559,14763,15931,17052,18001,18729,19161,19315,19118,18735,18211,17613,17038,16580,16210,15970,15910,16003,16245,16658,17234,17989,18901,19970,21193,22521,23981,25470,26946,28374,29645,30637,31390,31800,31790,31465,30794,29862,28796,27554,26381,25209,24132,23126,22269,21546,20925,20445,20053,19768,19622,19501,19537,19609,19815,20072,20419,20855,21376,21952,22562,23220,23869,24485,25063,25559,25911,26173,26225,26118,25825,25345,24699,23972,23152,22295,21413,20574,19793,19085,18433,17866,17405,16989,16677,16421,16257,16149,16102,16127,16217,16365,16619,16912,17271,17701,18202,18772,19381,20032,20714,21441,22194,22937,23650,24341,25019,25607,26181,26599,26939,27182,27285,27291,27206,26992,26653,26263,25762,25188,24597,23959,23321,22638,21985,21359,20741,20149,19579,19083,18615,18203,17838,17513,17202,16957,16713,16521,16311,16106,15922,15729,15563,15405,15304,15211,15138,15065,15021,15019,14994,15005,15006,15047,15086,15123,15172,15208,15269,15276,15297,15292,15290,15320,15333,15333,15327,15272,15214,15159,15085,15002,14901,14763,14622,14440,14255,14026,13814,13567,13317,13053,12753,12464,12186,11881,11605,11313,11063,10826,10584,10315,10011,9693,9397,9099,8861,8648,8473,8311,8199,8101,8025,7940,7888,7822,7740,7581,7403,7250,7127,7009,6911,6847,6773,6725,6685,6661,6647,6628,6629,6642,6641,6489,6180,5762,5128,21.5,21.5,22.0,1567897,0.4,12.1,12.0,5.0,494,-1.00,-1.00,56.6974,-18.670428,0.000620,,,,,185 +SATSLF0720,2024246,7.010129,4.12,0.0577,0.1011,0.0172,0.00,16200,644,1,705,699,691,711,713,711,716,717,725,721,721,732,761,898,1227,1967,3156,4535,5780,6707,7349,7831,8257,8697,9220,9845,10597,11479,12493,13585,14790,15961,17070,18033,18756,19189,19315,19137,18769,18229,17630,17063,16600,16240,16003,15922,16006,16267,16665,17255,17997,18920,19998,21205,22525,23991,25484,26974,28387,29661,30649,31402,31785,31800,31480,30830,29922,28839,27589,26411,25237,24154,23157,22289,21554,20942,20449,20050,19769,19605,19522,19521,19631,19819,20073,20442,20869,21394,21956,22586,23236,23888,24494,25075,25549,25911,26176,26222,26102,25831,25357,24717,23979,23174,22313,21433,20586,19800,19096,18435,17881,17408,17002,16679,16416,16251,16141,16113,16129,16230,16402,16622,16903,17288,17709,18201,18779,19373,20027,20724,21462,22197,22929,23651,24361,25012,25616,26182,26614,26940,27166,27292,27294,27201,26980,26658,26261,25780,25192,24595,23958,23302,22662,21965,21351,20736,20145,19579,19095,18610,18208,17837,17523,17227,16962,16722,16509,16319,16106,15927,15742,15565,15429,15307,15213,15120,15045,15020,14997,15016,15008,15043,15061,15104,15149,15162,15211,15276,15282,15285,15299,15303,15328,15334,15328,15317,15273,15220,15145,15091,15005,14906,14762,14598,14439,14243,14048,13821,13589,13322,13064,12789,12482,12169,11863,11580,11300,11057,10833,10597,10333,10035,9709,9402,9123,8874,8653,8471,8314,8185,8072,7998,7943,7893,7828,7742,7587,7427,7257,7140,7022,6921,6837,6764,6718,6695,6670,6649,6647,6632,6649,6635,6486,6189,5751,5126,21.5,21.5,22.1,1567898,0.3,12.2,11.9,5.0,484,-1.00,-1.00,56.8833,-18.762853,0.000499,,,,,153 +SATSLF0720,2024246,7.010382,4.01,0.0562,0.1027,0.0186,0.00,16140,644,1,690,693,697,697,701,715,717,723,714,719,725,738,772,889,1222,1966,3125,4514,5773,6691,7323,7810,8226,8687,9210,9834,10549,11424,12429,13545,14737,15893,17018,17986,18690,19151,19278,19080,18704,18158,17562,17005,16538,16172,15940,15883,15959,16205,16600,17197,17952,18853,19917,21139,22465,23926,25381,26880,28300,29555,30555,31317,31693,31713,31382,30725,29792,28737,27501,26321,25145,24065,23069,22205,21479,20864,20387,19982,19707,19552,19454,19453,19546,19730,20005,20348,20783,21303,21870,22500,23161,23805,24406,24977,25462,25822,26093,26144,26007,25738,25263,24617,23892,23108,22240,21357,20513,19738,19033,18382,17817,17341,16929,16604,16349,16187,16090,16045,16062,16165,16327,16553,16843,17211,17643,18136,18713,19307,19928,20611,21349,22096,22848,23557,24264,24925,25518,26090,26497,26809,27047,27164,27178,27080,26861,26567,26165,25661,25097,24514,23873,23220,22573,21917,21272,20666,20081,19525,19021,18550,18141,17774,17431,17144,16877,16656,16448,16228,16043,15842,15659,15506,15369,15249,15146,15089,15005,14953,14945,14947,14944,14990,15005,15028,15077,15099,15155,15194,15223,15220,15235,15248,15259,15287,15299,15273,15235,15162,15098,15025,14938,14845,14697,14561,14395,14191,13999,13776,13555,13278,13022,12726,12423,12142,11831,11549,11289,11024,10796,10569,10293,9986,9657,9356,9069,8837,8613,8458,8320,8161,8065,7987,7918,7865,7800,7706,7559,7393,7230,7096,6976,6901,6821,6757,6697,6676,6636,6627,6614,6609,6616,6614,6461,6158,5738,5127,21.5,21.5,22.1,1567899,0.3,12.2,11.9,5.0,480,-1.00,-1.00,57.4078,-18.919900,0.000591,,,,,85 +SATSLF0720,2024246,7.010634,4.26,0.0596,0.1029,0.0181,0.00,16139,644,1,695,699,696,701,696,698,713,711,727,725,723,721,761,876,1213,1946,3143,4520,5753,6682,7321,7786,8201,8643,9176,9793,10543,11398,12407,13518,14718,15874,16980,17920,18651,19077,19222,19041,18661,18118,17533,16979,16521,16140,15931,15861,15927,16179,16599,17161,17901,18819,19881,21117,22450,23885,25371,26864,28281,29540,30536,31284,31665,31669,31333,30688,29760,28692,27470,26283,25114,24053,23065,22184,21454,20853,20364,19974,19694,19543,19444,19456,19549,19733,20007,20354,20764,21309,21858,22490,23134,23783,24396,24971,25441,25825,26093,26129,26025,25737,25253,24610,23894,23091,22229,21337,20490,19730,19021,18370,17811,17334,16929,16619,16365,16186,16096,16054,16074,16173,16336,16576,16869,17242,17658,18149,18707,19328,19963,20655,21369,22125,22854,23560,24262,24912,25515,26097,26523,26845,27085,27208,27220,27125,26909,26570,26181,25681,25111,24524,23886,23235,22578,21920,21281,20681,20096,19538,19033,18551,18150,17788,17448,17176,16897,16670,16464,16253,16071,15853,15681,15517,15381,15257,15142,15095,15014,14984,14969,14973,14976,14990,15007,15040,15065,15121,15173,15226,15227,15247,15254,15265,15273,15298,15300,15284,15248,15188,15114,15043,14948,14853,14737,14578,14410,14222,13999,13789,13549,13285,13025,12740,12441,12154,11849,11555,11297,11033,10806,10565,10305,10002,9662,9360,9072,8826,8622,8455,8303,8173,8073,7996,7925,7878,7802,7723,7588,7394,7233,7106,6984,6883,6816,6749,6691,6664,6650,6625,6615,6602,6619,6613,6472,6153,5739,5117,21.5,21.5,22.1,1567900,0.5,12.2,12.0,5.0,482,-1.00,-1.00,57.0495,-18.750380,0.000629,,,,,97 +SATSLF0720,2024246,7.010889,4.17,0.0585,0.1011,0.0168,0.00,16202,644,1,700,692,719,706,715,709,723,714,718,706,727,731,760,878,1218,1965,3149,4535,5791,6711,7371,7841,8257,8705,9227,9848,10601,11472,12471,13592,14779,15970,17069,18031,18753,19185,19331,19145,18761,18218,17632,17059,16599,16233,16010,15936,16024,16261,16680,17268,18001,18925,19977,21218,22546,24005,25484,26980,28406,29663,30666,31422,31813,31814,31501,30842,29921,28855,27612,26402,25227,24148,23143,22285,21531,20930,20442,20049,19778,19621,19524,19528,19622,19817,20069,20426,20859,21388,21962,22569,23245,23886,24498,25082,25573,25921,26196,26237,26124,25845,25346,24699,23991,23185,22314,21437,20585,19814,19096,18469,17902,17413,17011,16692,16435,16266,16159,16117,16126,16222,16396,16628,16912,17291,17718,18211,18785,19403,20043,20725,21463,22198,22930,23642,24348,25026,25617,26176,26617,26955,27196,27296,27301,27200,26981,26653,26262,25773,25204,24624,23966,23317,22658,22001,21355,20733,20151,19594,19101,18621,18205,17837,17513,17231,16953,16717,16525,16308,16114,15914,15733,15565,15402,15293,15199,15134,15067,15021,15003,15015,15009,15033,15038,15086,15121,15157,15205,15268,15272,15294,15300,15316,15323,15349,15344,15329,15281,15221,15160,15089,14998,14909,14763,14615,14457,14253,14050,13844,13594,13312,13051,12756,12455,12170,11879,11601,11321,11092,10840,10597,10322,10016,9686,9383,9105,8861,8649,8485,8324,8183,8084,8014,7940,7900,7832,7744,7584,7417,7265,7133,7011,6925,6832,6774,6728,6677,6652,6650,6634,6628,6650,6641,6474,6168,5751,5128,21.5,21.5,22.1,1567901,0.2,12.2,11.9,5.0,483,-1.00,-1.00,56.8183,-18.743452,0.000521,,,,,39 +SATSLF0720,2024246,7.011141,4.29,0.0601,0.1036,0.0180,0.00,16131,644,1,684,700,704,708,713,712,706,707,718,717,729,734,768,877,1216,1954,3128,4506,5752,6676,7312,7781,8198,8646,9157,9782,10525,11397,12406,13509,14684,15853,16965,17917,18641,19069,19197,19013,18620,18091,17513,16956,16482,16144,15913,15845,15922,16175,16565,17143,17897,18805,19878,21085,22410,23869,25341,26817,28227,29495,30484,31232,31644,31634,31317,30657,29729,28673,27434,26255,25101,24037,23014,22171,21430,20836,20343,19961,19652,19512,19412,19425,19540,19728,19992,20334,20771,21283,21848,22459,23137,23782,24373,24974,25433,25787,26058,26117,25993,25717,25233,24605,23875,23086,22211,21332,20488,19723,19008,18363,17801,17333,16928,16620,16359,16207,16113,16062,16076,16167,16321,16555,16855,17205,17645,18137,18701,19305,19953,20642,21373,22128,22868,23585,24284,24933,25518,26091,26513,26813,27075,27188,27191,27102,26891,26560,26153,25668,25106,24521,23880,23239,22582,21917,21275,20663,20077,19513,19032,18568,18165,17785,17448,17158,16903,16669,16444,16254,16069,15872,15693,15522,15389,15253,15152,15070,14999,14961,14937,14941,14944,15001,15010,15050,15104,15122,15173,15218,15241,15250,15250,15245,15283,15289,15276,15280,15236,15163,15120,15061,14969,14851,14732,14568,14391,14194,13992,13777,13543,13274,13031,12741,12448,12161,11852,11560,11282,11035,10797,10560,10294,10004,9682,9358,9075,8826,8619,8443,8299,8167,8074,7997,7925,7858,7808,7726,7564,7404,7238,7123,6995,6915,6826,6758,6701,6663,6637,6637,6620,6600,6615,6604,6469,6160,5729,5106,21.5,21.6,22.1,1567902,0.0,12.1,12.0,5.0,470,-1.00,-1.00,56.9989,-18.708728,0.000567,,,,,161 +SATSLF0720,2024246,7.011400,4.23,0.0593,0.1022,0.0170,0.00,16174,644,1,698,709,721,715,711,727,722,728,725,727,724,741,764,883,1203,1959,3156,4531,5769,6690,7355,7807,8233,8669,9205,9830,10588,11434,12431,13549,14730,15897,17001,17955,18685,19130,19265,19081,18699,18167,17583,17024,16552,16181,15957,15883,15970,16210,16609,17202,17954,18867,19947,21162,22504,23941,25426,26909,28322,29584,30586,31339,31726,31717,31407,30746,29829,28769,27508,26336,25165,24087,23080,22229,21486,20889,20417,20021,19730,19581,19476,19488,19580,19760,20021,20386,20817,21347,21899,22513,23197,23833,24432,25024,25506,25864,26146,26173,26052,25794,25294,24663,23947,23144,22271,21399,20566,19776,19063,18399,17841,17376,16969,16645,16421,16248,16141,16094,16119,16209,16372,16601,16905,17265,17705,18187,18771,19371,20008,20688,21413,22161,22898,23610,24321,24979,25568,26148,26572,26897,27136,27251,27264,27164,26940,26619,26224,25733,25157,24567,23949,23293,22643,21979,21328,20718,20115,19570,19065,18587,18183,17823,17493,17205,16941,16711,16493,16302,16105,15911,15724,15538,15411,15298,15205,15133,15057,15010,14989,14990,15001,15021,15045,15081,15117,15153,15190,15255,15266,15261,15283,15281,15307,15323,15328,15332,15260,15219,15152,15090,15000,14907,14772,14614,14429,14240,14034,13827,13574,13307,13037,12763,12472,12188,11877,11595,11312,11077,10816,10583,10316,10009,9691,9388,9104,8859,8653,8480,8316,8194,8094,8005,7940,7868,7819,7725,7582,7411,7266,7133,7017,6922,6829,6779,6725,6681,6660,6652,6620,6629,6651,6648,6493,6189,5757,5133,21.6,21.6,22.2,1567903,0.0,12.1,12.0,5.0,461,-1.00,-1.00,56.8371,-18.698346,0.000603,,,,,157 +SATSLF0720,2024246,7.011657,4.11,0.0575,0.1026,0.0178,0.00,16166,644,1,709,715,712,721,726,717,711,719,721,727,738,745,770,890,1217,1966,3141,4542,5754,6688,7326,7793,8232,8680,9201,9820,10576,11445,12449,13554,14737,15906,17024,17979,18709,19142,19278,19084,18711,18175,17584,17018,16561,16197,15973,15905,15965,16223,16620,17208,17957,18861,19934,21141,22475,23924,25408,26889,28309,29573,30579,31313,31715,31725,31389,30742,29834,28763,27525,26333,25165,24085,23079,22225,21489,20866,20385,20000,19722,19545,19457,19479,19569,19769,20021,20375,20803,21325,21893,22530,23193,23827,24437,25012,25495,25842,26117,26170,26041,25770,25295,24656,23944,23136,22261,21377,20521,19752,19047,18397,17835,17379,16965,16642,16404,16241,16125,16091,16100,16189,16354,16573,16871,17251,17673,18157,18743,19355,19985,20692,21410,22155,22903,23605,24310,24973,25568,26129,26536,26871,27122,27218,27248,27133,26918,26603,26212,25717,25148,24562,23916,23284,22617,21941,21312,20697,20105,19565,19058,18583,18184,17805,17483,17193,16919,16679,16485,16254,16077,15882,15706,15538,15403,15281,15182,15110,15033,14989,14978,14985,14986,15013,15042,15067,15113,15137,15201,15262,15264,15265,15282,15294,15293,15330,15324,15303,15250,15196,15124,15073,14993,14888,14762,14606,14417,14230,14021,13805,13553,13303,13035,12764,12477,12181,11874,11584,11319,11061,10821,10576,10329,10016,9689,9383,9092,8849,8629,8459,8313,8189,8075,8003,7936,7872,7815,7722,7581,7412,7251,7129,7034,6917,6845,6792,6720,6688,6648,6631,6619,6613,6627,6630,6477,6160,5735,5118,21.6,21.6,22.2,1567904,0.1,12.1,12.0,5.0,479,-1.00,-1.00,56.9569,-18.743160,0.000477,,,,,137 +SATSLF0720,2024246,7.011909,4.22,0.0591,0.1033,0.0178,0.00,16152,644,1,678,695,686,679,703,697,697,703,715,721,734,744,766,881,1220,1956,3138,4522,5781,6693,7339,7808,8237,8666,9195,9835,10570,11446,12424,13546,14717,15879,16994,17963,18671,19101,19253,19061,18689,18153,17577,17001,16547,16154,15949,15874,15953,16201,16609,17186,17929,18848,19915,21137,22466,23906,25390,26890,28301,29555,30554,31306,31710,31696,31366,30699,29788,28726,27488,26323,25133,24061,23072,22210,21470,20861,20370,19975,19687,19532,19427,19454,19537,19733,19995,20347,20787,21325,21869,22499,23164,23808,24422,24989,25469,25837,26104,26157,26054,25761,25271,24653,23909,23106,22233,21358,20512,19748,19046,18390,17835,17354,16951,16621,16387,16206,16118,16069,16093,16185,16353,16574,16876,17233,17665,18167,18721,19339,19970,20676,21394,22146,22895,23589,24304,24945,25533,26096,26523,26850,27104,27210,27205,27132,26903,26571,26177,25691,25122,24523,23906,23262,22602,21940,21298,20679,20088,19533,19037,18551,18150,17781,17446,17179,16909,16672,16466,16269,16071,15870,15686,15529,15389,15278,15183,15103,15029,14993,14978,14965,14973,14992,15022,15058,15097,15129,15181,15234,15253,15245,15261,15274,15282,15303,15305,15293,15245,15188,15124,15070,14974,14885,14760,14602,14421,14213,13997,13791,13549,13286,13022,12751,12452,12170,11865,11586,11321,11062,10824,10578,10293,10004,9680,9366,9082,8838,8627,8464,8311,8178,8075,7998,7939,7897,7817,7720,7583,7402,7245,7126,7008,6907,6821,6753,6707,6660,6663,6649,6631,6628,6635,6628,6481,6169,5744,5115,21.6,21.6,22.2,1567905,0.3,12.1,12.0,5.0,477,-1.00,-1.00,56.8509,-18.684526,0.000568,,,,,229 +SATSLF0720,2024246,7.012165,4.18,0.0586,0.1029,0.0178,0.00,16155,644,1,685,698,698,697,701,698,711,717,727,723,723,731,747,871,1219,1962,3140,4533,5769,6705,7338,7794,8219,8679,9201,9841,10576,11445,12445,13542,14730,15888,17002,17973,18690,19138,19254,19067,18688,18165,17561,17000,16532,16161,15939,15880,15965,16209,16624,17194,17949,18854,19911,21143,22470,23914,25419,26893,28320,29562,30563,31306,31722,31701,31364,30717,29803,28752,27509,26321,25157,24067,23063,22202,21467,20869,20373,19969,19696,19561,19445,19455,19570,19744,20017,20357,20787,21317,21868,22497,23158,23813,24423,25002,25492,25856,26114,26172,26050,25762,25282,24646,23920,23112,22251,21383,20537,19778,19062,18397,17838,17355,16948,16633,16384,16216,16116,16073,16090,16188,16345,16567,16877,17250,17675,18168,18721,19331,19974,20641,21383,22130,22885,23600,24298,24949,25551,26109,26541,26850,27107,27196,27210,27126,26918,26583,26190,25700,25137,24538,23905,23248,22587,21927,21309,20693,20101,19528,19035,18557,18166,17796,17452,17176,16904,16669,16473,16261,16075,15894,15697,15537,15394,15277,15178,15099,15027,14996,14985,14983,14986,15002,15015,15049,15083,15127,15169,15213,15241,15253,15254,15276,15292,15309,15311,15293,15248,15169,15125,15058,14967,14881,14733,14585,14412,14232,14013,13793,13555,13302,13026,12724,12439,12158,11870,11584,11298,11042,10811,10566,10300,9999,9677,9367,9094,8832,8619,8472,8310,8177,8087,8011,7931,7879,7819,7729,7586,7397,7241,7104,6999,6901,6827,6757,6704,6674,6653,6644,6643,6622,6641,6631,6476,6165,5747,5129,21.6,21.6,22.2,1567906,0.2,12.2,11.9,5.0,479,-1.00,-1.00,57.0355,-18.768699,0.000587,,,,,41 +SATSLF0720,2024246,7.012419,4.29,0.0600,0.1032,0.0173,0.00,16154,644,1,709,715,708,704,721,709,721,725,717,731,730,733,776,901,1239,1971,3155,4532,5765,6693,7319,7815,8234,8676,9205,9808,10553,11438,12418,13536,14717,15881,16999,17953,18678,19108,19245,19062,18696,18140,17547,16993,16535,16162,15942,15863,15943,16193,16605,17197,17959,18858,19921,21138,22469,23894,25383,26861,28279,29537,30541,31285,31687,31687,31364,30719,29783,28718,27473,26297,25132,24061,23057,22202,21466,20862,20362,19981,19696,19548,19429,19447,19547,19734,20017,20346,20787,21310,21869,22489,23154,23813,24413,24983,25477,25841,26090,26150,26042,25754,25289,24656,23924,23121,22227,21363,20518,19745,19035,18411,17837,17380,16971,16636,16393,16222,16124,16073,16089,16199,16344,16571,16887,17241,17655,18151,18713,19336,19970,20653,21379,22133,22877,23592,24319,24968,25553,26118,26553,26856,27098,27211,27220,27114,26893,26584,26173,25685,25122,24539,23881,23255,22592,21943,21304,20690,20098,19538,19069,18572,18171,17800,17474,17191,16904,16674,16464,16266,16069,15871,15689,15520,15387,15285,15161,15099,15017,14985,14962,14964,14970,15002,15034,15057,15110,15146,15189,15242,15249,15257,15277,15257,15283,15307,15306,15287,15251,15194,15141,15074,14969,14873,14744,14596,14421,14226,14010,13805,13561,13299,13029,12743,12443,12156,11863,11577,11307,11065,10824,10583,10323,10002,9689,9376,9093,8841,8633,8467,8298,8179,8072,8009,7949,7894,7821,7744,7597,7411,7248,7121,6998,6908,6813,6765,6721,6681,6662,6642,6635,6625,6646,6627,6476,6159,5744,5129,21.6,21.6,22.2,1567907,0.0,12.2,11.9,5.0,478,-1.00,-1.00,56.5348,-18.546772,0.000562,,,,,238 +SATSLF0720,2024246,7.012670,4.32,0.0605,0.1030,0.0176,0.00,16155,644,1,689,694,698,699,707,717,725,740,733,735,737,738,779,890,1228,1957,3138,4535,5773,6690,7336,7816,8230,8680,9208,9829,10586,11444,12437,13556,14722,15883,16997,17961,18681,19109,19240,19059,18690,18161,17562,17004,16545,16164,15943,15885,15957,16205,16608,17207,17945,18852,19917,21133,22449,23902,25369,26870,28292,29545,30545,31301,31701,31694,31367,30711,29778,28729,27477,26283,25134,24061,23061,22199,21475,20871,20361,19969,19685,19535,19439,19457,19550,19746,20004,20355,20789,21299,21874,22494,23160,23813,24418,24984,25467,25826,26107,26146,26040,25766,25271,24640,23910,23097,22242,21369,20518,19735,19028,18381,17829,17357,16953,16633,16395,16226,16129,16087,16101,16208,16346,16570,16872,17229,17659,18154,18711,19340,19979,20664,21381,22118,22862,23579,24303,24970,25556,26120,26550,26866,27115,27216,27232,27137,26917,26583,26192,25713,25130,24533,23886,23255,22598,21920,21299,20681,20088,19544,19042,18574,18169,17795,17463,17181,16920,16680,16477,16277,16067,15890,15697,15541,15397,15273,15173,15099,15031,14989,14969,14962,14955,15000,15030,15063,15101,15137,15173,15217,15250,15270,15271,15273,15311,15309,15313,15303,15258,15186,15133,15075,14979,14881,14738,14589,14416,14216,14019,13807,13563,13303,13039,12765,12466,12183,11861,11584,11301,11058,10820,10588,10298,10010,9676,9366,9080,8846,8645,8474,8313,8189,8087,8017,7932,7891,7827,7730,7594,7425,7260,7131,7016,6919,6827,6771,6705,6675,6660,6643,6616,6623,6645,6638,6480,6180,5748,5126,21.6,21.6,22.3,1567907,0.0,12.2,12.0,5.0,476,-1.00,-1.00,56.2566,-18.431572,0.000532,,,,,52 +SATSLF0720,2024246,7.012926,4.28,0.0600,0.1035,0.0186,0.00,16133,644,1,702,708,710,705,720,722,725,726,731,733,733,728,763,871,1208,1961,3141,4521,5769,6696,7329,7805,8226,8658,9171,9803,10540,11410,12409,13536,14705,15863,16969,17933,18647,19074,19213,19029,18662,18139,17553,16964,16515,16153,15925,15837,15918,16165,16578,17165,17905,18818,19892,21121,22440,23861,25346,26848,28256,29509,30502,31242,31645,31642,31309,30653,29735,28668,27435,26261,25095,24027,23040,22169,21445,20819,20331,19959,19658,19506,19418,19421,19527,19710,19974,20330,20765,21289,21848,22469,23131,23785,24398,24953,25447,25805,26062,26104,25989,25723,25245,24597,23890,23085,22216,21347,20497,19741,19020,18364,17805,17339,16934,16614,16365,16194,16078,16048,16060,16167,16329,16566,16845,17216,17640,18137,18718,19318,19954,20622,21357,22092,22827,23535,24251,24908,25508,26076,26508,26833,27074,27181,27194,27091,26880,26537,26149,25657,25094,24498,23872,23217,22586,21897,21261,20672,20057,19517,19018,18540,18136,17775,17454,17162,16887,16636,16441,16253,16058,15857,15687,15522,15371,15257,15159,15083,14990,14969,14971,14962,14950,14990,15009,15053,15094,15123,15161,15209,15223,15242,15241,15250,15269,15295,15293,15285,15229,15156,15100,15043,14941,14856,14733,14588,14409,14213,14011,13794,13547,13290,13014,12736,12440,12141,11841,11555,11289,11036,10811,10573,10297,10001,9672,9373,9093,8842,8634,8458,8300,8169,8077,7989,7937,7874,7806,7722,7581,7393,7247,7114,7017,6896,6815,6753,6698,6663,6637,6637,6625,6613,6648,6646,6490,6172,5751,5124,21.5,21.7,22.3,1567908,0.0,12.2,12.0,5.0,477,-1.00,-1.00,56.5351,-18.519729,0.000608,,,,,100 +SATSLF0720,2024246,7.013180,4.21,0.0590,0.1044,0.0187,0.00,16108,644,1,702,698,702,715,730,720,715,714,716,714,721,712,755,890,1226,1957,3141,4513,5748,6675,7290,7773,8199,8629,9153,9771,10528,11394,12396,13501,14677,15829,16953,17882,18605,19041,19180,18985,18608,18099,17494,16942,16466,16109,15880,15797,15883,16133,16552,17125,17869,18792,19862,21073,22389,23825,25302,26777,28197,29433,30450,31190,31581,31579,31242,30604,29689,28641,27397,26216,25072,23986,22988,22125,21381,20780,20289,19900,19622,19466,19381,19392,19477,19678,19948,20289,20720,21240,21812,22432,23093,23738,24341,24922,25405,25745,26019,26092,25964,25682,25195,24565,23845,23049,22182,21313,20484,19699,18999,18344,17782,17307,16914,16593,16347,16181,16064,16032,16049,16153,16305,16524,16832,17191,17629,18105,18678,19275,19909,20594,21321,22054,22811,23522,24225,24866,25453,26035,26465,26792,27029,27147,27165,27083,26858,26524,26134,25626,25079,24464,23827,23191,22541,21866,21233,20636,20045,19485,19001,18531,18121,17757,17425,17138,16870,16638,16424,16213,16035,15852,15672,15485,15355,15244,15146,15069,15000,14965,14925,14934,14941,14972,14993,15029,15062,15099,15156,15201,15205,15223,15225,15226,15258,15284,15272,15256,15227,15143,15096,15024,14921,14841,14709,14565,14402,14209,13994,13780,13532,13275,13010,12708,12423,12130,11838,11562,11284,11043,10798,10568,10297,10002,9669,9365,9078,8829,8616,8434,8293,8149,8071,7982,7917,7858,7791,7703,7567,7394,7218,7097,6979,6881,6808,6744,6691,6637,6623,6630,6613,6604,6624,6616,6449,6159,5729,5117,21.6,21.7,22.3,1567909,0.0,12.2,11.9,5.0,473,-1.00,-1.00,57.2160,-18.770909,0.000596,,,,,74 +SATSLF0720,2024246,7.013430,4.02,0.0563,0.1054,0.0191,0.00,16083,644,1,710,704,709,709,712,711,716,717,727,723,736,737,763,887,1219,1953,3125,4498,5733,6651,7312,7765,8192,8641,9149,9766,10506,11371,12368,13465,14630,15789,16899,17852,18590,19016,19145,18964,18589,18051,17467,16896,16421,16069,15841,15783,15860,16109,16502,17093,17848,18741,19819,21024,22352,23778,25241,26724,28135,29385,30377,31133,31525,31517,31194,30548,29641,28600,27373,26190,25021,23928,22932,22081,21346,20730,20258,19872,19595,19436,19335,19352,19455,19640,19905,20247,20679,21208,21768,22391,23059,23693,24305,24885,25350,25712,25987,26034,25923,25644,25172,24541,23805,23016,22138,21281,20450,19677,18987,18308,17762,17281,16873,16567,16301,16125,16017,15995,16021,16107,16285,16509,16805,17187,17600,18094,18661,19264,19880,20571,21293,22045,22781,23492,24196,24857,25440,26017,26432,26770,26997,27100,27125,27019,26796,26473,26077,25581,25025,24442,23808,23175,22517,21851,21220,20605,20017,19453,18961,18490,18092,17709,17402,17122,16839,16598,16407,16210,16009,15827,15645,15477,15326,15229,15125,15040,14964,14936,14918,14925,14921,14951,14985,15017,15039,15091,15125,15178,15191,15201,15205,15221,15246,15259,15259,15272,15221,15143,15081,15024,14925,14811,14682,14532,14374,14172,13963,13745,13521,13240,12982,12697,12414,12129,11834,11533,11253,11014,10782,10552,10270,9975,9641,9332,9050,8802,8589,8422,8265,8147,8053,7981,7913,7864,7797,7713,7554,7380,7233,7102,6993,6888,6811,6752,6680,6657,6622,6598,6595,6583,6615,6615,6477,6149,5723,5104,21.6,21.8,22.3,1567910,0.2,12.2,12.0,5.0,477,-1.00,-1.00,58.1779,-19.140130,0.000552,,,,,11 +SATSLF0720,2024246,7.013686,4.23,0.0592,0.1053,0.0197,0.00,16069,644,1,699,695,703,701,711,707,720,725,732,719,735,737,773,898,1217,1959,3125,4512,5736,6646,7285,7765,8170,8608,9111,9732,10487,11345,12339,13452,14626,15783,16878,17837,18553,18981,19115,18925,18553,18026,17429,16890,16413,16067,15843,15771,15851,16098,16497,17076,17808,18711,19782,20992,22306,23746,25238,26696,28129,29366,30357,31112,31501,31484,31161,30525,29589,28547,27322,26140,24986,23909,22913,22065,21335,20723,20247,19854,19572,19417,19341,19342,19456,19642,19893,20232,20676,21180,21740,22356,23026,23685,24291,24859,25336,25700,25946,26007,25882,25605,25154,24496,23779,22992,22123,21245,20420,19661,18953,18306,17742,17274,16869,16547,16304,16137,16025,15993,16005,16096,16275,16495,16787,17168,17582,18065,18629,19229,19876,20549,21281,22023,22759,23466,24157,24837,25418,25985,26415,26741,26965,27081,27088,26989,26760,26445,26036,25586,25010,24419,23787,23145,22490,21831,21202,20585,19998,19450,18960,18491,18075,17705,17387,17090,16835,16599,16398,16193,16007,15812,15634,15461,15333,15201,15099,15026,14966,14913,14897,14922,14913,14930,14954,14987,15037,15076,15117,15168,15180,15194,15207,15193,15227,15249,15249,15251,15190,15127,15063,14983,14912,14819,14677,14529,14361,14178,13956,13739,13497,13239,12983,12699,12422,12122,11824,11533,11262,11020,10769,10534,10257,9968,9648,9342,9060,8809,8601,8436,8277,8150,8045,7971,7909,7832,7779,7688,7549,7378,7216,7098,6989,6889,6806,6738,6685,6643,6619,6613,6606,6601,6620,6623,6467,6157,5735,5112,21.6,21.8,22.3,1567911,0.1,12.2,12.0,5.0,475,-1.00,-1.00,57.4340,-18.807828,0.000581,,,,,240 +SATSLF0720,2024246,7.013940,4.26,0.0597,0.1055,0.0188,0.00,16075,644,1,715,709,707,719,714,713,732,737,740,729,731,739,773,885,1224,1956,3142,4502,5744,6670,7307,7770,8178,8643,9138,9764,10494,11359,12355,13457,14617,15770,16880,17845,18540,18987,19121,18947,18580,18043,17435,16895,16429,16066,15851,15761,15863,16105,16514,17077,17818,18731,19780,21011,22322,23753,25253,26722,28130,29392,30354,31111,31505,31493,31160,30525,29601,28545,27331,26134,24983,23913,22929,22059,21338,20736,20257,19863,19595,19421,19333,19339,19449,19624,19890,20234,20682,21193,21760,22370,23042,23682,24292,24871,25345,25720,25985,26022,25911,25616,25144,24503,23783,22998,22131,21259,20426,19676,18964,18319,17755,17277,16865,16546,16308,16138,16036,15990,16027,16118,16285,16506,16789,17160,17590,18060,18635,19244,19867,20552,21283,22023,22766,23485,24194,24838,25422,25988,26412,26742,26976,27061,27085,26987,26772,26458,26069,25570,24992,24435,23799,23154,22505,21849,21198,20596,20008,19454,18966,18485,18083,17725,17400,17113,16843,16580,16387,16187,16008,15800,15641,15468,15332,15216,15110,15043,14962,14925,14906,14907,14904,14930,14966,15005,15045,15067,15131,15178,15189,15203,15209,15206,15224,15248,15246,15242,15198,15138,15091,15018,14922,14812,14688,14533,14363,14168,13958,13745,13504,13246,12987,12698,12397,12119,11819,11539,11273,11015,10778,10544,10267,9955,9660,9346,9066,8817,8609,8447,8280,8159,8058,7977,7907,7866,7793,7709,7561,7378,7230,7104,6995,6895,6806,6755,6686,6651,6628,6613,6610,6601,6617,6609,6451,6163,5730,5119,21.6,21.8,22.4,1567912,0.0,12.2,11.9,5.0,473,-1.00,-1.00,57.0635,-18.657284,0.000614,,,,,103 +SATSLF0720,2024246,7.014195,4.05,0.0567,0.1131,0.0268,0.00,15818,644,1,709,709,697,706,707,709,708,711,713,719,712,727,768,893,1208,1939,3096,4468,5667,6577,7229,7685,8101,8530,9037,9649,10382,11220,12179,13295,14438,15577,16683,17616,18330,18750,18877,18696,18329,17785,17207,16661,16200,15835,15616,15539,15621,15870,16266,16848,17571,18469,19486,20692,21984,23389,24826,26289,27688,28906,29881,30618,31013,30985,30678,30032,29146,28101,26893,25720,24595,23532,22553,21704,20995,20400,19929,19549,19260,19104,19006,19026,19114,19310,19560,19894,20328,20841,21389,22002,22657,23285,23881,24456,24919,25277,25540,25585,25467,25193,24706,24097,23390,22613,21752,20904,20085,19319,18628,17984,17446,16988,16592,16288,16038,15869,15765,15721,15735,15829,15992,16225,16512,16871,17291,17762,18324,18901,19527,20219,20921,21637,22375,23078,23771,24427,24986,25547,25957,26262,26515,26609,26628,26548,26331,26021,25629,25130,24583,24011,23381,22753,22098,21440,20830,20250,19669,19129,18644,18185,17787,17417,17096,16810,16561,16332,16129,15918,15745,15552,15383,15220,15077,14976,14861,14798,14705,14672,14656,14655,14661,14693,14724,14752,14800,14841,14894,14945,14944,14951,14973,14973,15001,15009,15008,15002,14930,14885,14827,14768,14680,14592,14451,14305,14137,13947,13737,13520,13288,13034,12773,12503,12225,11945,11642,11366,11086,10851,10614,10373,10121,9826,9508,9209,8917,8699,8475,8322,8178,8026,7937,7846,7784,7726,7670,7579,7435,7283,7125,7001,6884,6800,6714,6639,6591,6546,6547,6525,6503,6503,6533,6525,6367,6075,5656,5034,21.6,21.8,22.4,1567913,0.5,12.2,12.0,5.0,477,-1.00,-1.00,57.4731,-18.532318,0.000553,,,,,48 +SATSLF0720,2024246,7.014450,4.31,0.0603,0.1059,0.0195,0.00,16062,644,1,699,701,695,700,713,713,716,722,717,714,739,744,768,892,1221,1957,3126,4493,5714,6647,7288,7755,8164,8608,9117,9745,10469,11338,12330,13440,14612,15773,16882,17834,18546,18985,19097,18920,18550,18014,17427,16869,16410,16057,15829,15767,15835,16090,16493,17073,17831,18730,19764,20992,22297,23735,25197,26685,28084,29326,30341,31080,31474,31476,31142,30503,29573,28531,27284,26112,24954,23891,22895,22054,21335,20717,20227,19859,19575,19422,19316,19335,19422,19614,19870,20221,20657,21177,21748,22371,23017,23659,24277,24844,25313,25683,25956,26012,25892,25616,25144,24509,23787,22995,22123,21254,20410,19642,18935,18285,17752,17261,16865,16547,16301,16113,16029,15969,16019,16090,16256,16485,16777,17137,17575,18064,18621,19227,19872,20549,21291,22007,22759,23464,24157,24816,25410,25970,26398,26722,26970,27061,27082,26980,26753,26438,26030,25555,24989,24400,23786,23144,22493,21834,21202,20593,19997,19436,18955,18481,18074,17713,17387,17089,16845,16584,16375,16183,15994,15805,15629,15450,15329,15185,15107,15033,14963,14920,14906,14899,14889,14922,14946,14976,15009,15044,15102,15158,15173,15184,15217,15214,15242,15249,15241,15234,15177,15120,15070,14992,14903,14807,14678,14514,14359,14169,13971,13746,13505,13259,12980,12705,12401,12118,11819,11521,11265,11009,10765,10521,10245,9952,9629,9331,9037,8803,8578,8427,8273,8143,8049,7964,7886,7858,7778,7688,7543,7374,7224,7083,6980,6877,6796,6729,6667,6639,6623,6620,6594,6594,6621,6589,6447,6154,5725,5110,21.6,21.8,22.4,1567914,0.0,12.1,12.0,5.0,468,-1.00,-1.00,56.9327,-18.584754,0.000557,,,,,54 +SATSDF0720,2024246,7.259138,0.00,0.0000,0.0000,0.0000,0.00,645,0,1,634,624,631,625,625,619,631,618,622,621,617,622,619,631,633,628,621,635,614,607,619,627,649,648,647,669,658,653,651,670,653,661,638,643,658,637,643,649,641,647,640,647,650,658,658,650,655,645,653,653,646,643,660,645,662,651,646,656,647,657,649,643,651,662,642,647,663,658,659,660,666,657,639,655,650,646,648,650,649,645,649,643,647,649,650,651,641,651,641,647,649,652,645,643,635,645,636,647,646,650,653,651,664,645,646,641,626,638,643,642,645,645,650,646,637,639,649,649,651,654,643,646,636,647,633,644,638,647,644,639,648,644,639,647,649,645,635,647,646,650,649,646,659,640,647,657,646,638,637,638,631,634,648,652,645,647,664,647,647,667,653,648,644,642,646,641,645,645,642,644,645,642,650,657,654,657,653,641,650,640,637,623,631,637,648,652,646,658,649,657,650,648,647,645,656,654,637,627,626,639,633,637,639,647,645,644,638,635,639,647,647,643,651,652,642,647,651,645,648,642,633,637,635,651,630,646,641,640,658,649,641,644,638,638,635,637,642,641,651,653,663,656,648,637,639,641,634,650,649,661,653,660,665,645,647,471,0.0,0.0,0.0,1567913,0.2,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,52 +SATSLF0720,2024246,7.259692,4.06,0.0568,0.0994,0.0157,0.00,16254,645,1,691,699,697,708,705,697,696,711,714,723,724,737,765,893,1212,1979,3165,4558,5809,6734,7401,7874,8285,8735,9259,9894,10636,11524,12520,13650,14842,16024,17159,18117,18846,19283,19429,19238,18840,18307,17709,17141,16658,16283,16065,15978,16076,16322,16738,17329,18087,18993,20083,21305,22644,24085,25595,27089,28500,29757,30775,31525,31933,31938,31602,30948,30023,28948,27700,26501,25327,24247,23250,22384,21632,21035,20519,20136,19842,19686,19597,19618,19699,19880,20145,20491,20923,21469,22032,22644,23326,23969,24599,25160,25637,26016,26280,26328,26197,25915,25428,24782,24051,23240,22369,21505,20641,19875,19172,18514,17940,17465,17040,16728,16484,16320,16221,16177,16192,16279,16444,16673,16966,17345,17770,18269,18842,19441,20084,20779,21516,22270,23013,23739,24434,25108,25698,26279,26697,27028,27268,27366,27380,27287,27073,26736,26342,25853,25278,24685,24039,23390,22728,22058,21421,20797,20203,19650,19149,18681,18272,17893,17562,17271,16995,16749,16547,16342,16154,15945,15776,15616,15468,15358,15275,15192,15121,15078,15061,15054,15053,15083,15089,15125,15169,15196,15236,15306,15312,15329,15341,15348,15369,15385,15385,15365,15319,15253,15197,15125,15038,14939,14790,14650,14474,14277,14075,13856,13605,13352,13088,12805,12499,12214,11901,11627,11354,11117,10857,10630,10350,10041,9729,9413,9134,8872,8667,8493,8338,8206,8119,8030,7960,7919,7846,7749,7627,7445,7277,7160,7046,6947,6866,6794,6741,6691,6667,6655,6645,6622,6659,6658,6501,6198,5765,5145,21.4,21.4,21.9,1567914,0.3,12.2,12.0,5.0,597,-1.00,-1.00,56.6668,-18.744872,0.000600,,,,,204 +SATSLF0720,2024246,7.259874,4.13,0.0579,0.0994,0.0155,0.00,16255,645,1,705,697,693,715,704,721,709,708,726,715,733,729,774,887,1234,1962,3159,4566,5818,6748,7390,7868,8293,8724,9253,9891,10645,11521,12548,13665,14862,16041,17152,18106,18846,19287,19435,19245,18873,18326,17725,17159,16673,16311,16096,16005,16087,16336,16742,17338,18082,18990,20069,21316,22649,24105,25600,27104,28536,29787,30803,31554,31953,31944,31611,30929,30007,28957,27690,26503,25349,24253,23238,22380,21629,21021,20525,20136,19857,19696,19597,19611,19701,19883,20164,20496,20949,21469,22032,22645,23323,23964,24592,25166,25626,25985,26277,26322,26209,25924,25453,24792,24072,23261,22373,21497,20648,19870,19165,18506,17939,17479,17062,16739,16481,16306,16205,16165,16178,16267,16439,16669,16973,17347,17771,18259,18827,19449,20081,20770,21507,22267,23013,23725,24443,25101,25689,26270,26685,27000,27254,27362,27372,27273,27079,26739,26340,25842,25265,24685,24029,23384,22722,22055,21433,20818,20208,19655,19159,18681,18256,17882,17549,17276,16990,16759,16563,16358,16170,15976,15779,15604,15472,15341,15244,15175,15081,15059,15042,15045,15050,15072,15088,15136,15173,15203,15257,15306,15307,15330,15348,15334,15367,15385,15381,15367,15322,15266,15203,15129,15030,14939,14805,14647,14469,14288,14074,13859,13617,13357,13085,12810,12507,12213,11915,11618,11338,11094,10859,10611,10353,10049,9718,9412,9122,8879,8653,8491,8336,8215,8122,8047,7968,7923,7846,7755,7609,7429,7261,7153,7018,6926,6846,6788,6734,6698,6682,6678,6660,6638,6663,6656,6502,6182,5753,5130,21.4,21.4,21.9,1567915,0.3,12.1,12.0,5.0,496,-1.00,-1.00,55.9761,-18.461001,0.000612,,,,,35 +SATSLF0720,2024246,7.260130,3.91,0.0548,0.1005,0.0164,0.00,16228,645,1,693,699,701,707,706,702,715,721,725,721,721,744,784,890,1219,1960,3159,4557,5793,6727,7379,7873,8277,8727,9252,9861,10623,11497,12504,13620,14817,15994,17113,18078,18817,19261,19394,19193,18819,18270,17685,17113,16644,16274,16033,15967,16050,16288,16695,17292,18034,18955,20023,21255,22579,24044,25532,27030,28471,29724,30725,31488,31877,31879,31547,30888,29952,28888,27655,26468,25289,24217,23196,22326,21591,20962,20489,20080,19803,19645,19549,19580,19674,19865,20119,20465,20899,21426,21991,22610,23282,23915,24536,25120,25600,25961,26218,26277,26153,25867,25391,24740,24037,23222,22354,21464,20613,19835,19124,18490,17921,17446,17027,16701,16451,16281,16162,16131,16153,16239,16409,16644,16937,17298,17732,18214,18794,19418,20071,20757,21502,22245,22969,23683,24390,25040,25636,26228,26650,26978,27233,27322,27342,27241,27027,26696,26294,25804,25234,24634,24019,23377,22702,22034,21409,20788,20185,19611,19114,18641,18253,17873,17540,17241,16964,16723,16521,16324,16135,15938,15760,15594,15444,15329,15245,15175,15085,15053,15035,15018,15018,15063,15077,15111,15160,15170,15230,15307,15293,15307,15332,15320,15338,15364,15376,15338,15303,15249,15173,15111,15008,14923,14785,14636,14473,14268,14066,13842,13614,13341,13072,12781,12490,12199,11891,11609,11341,11083,10843,10603,10343,10049,9725,9413,9130,8888,8654,8488,8322,8192,8106,8036,7940,7911,7841,7741,7602,7429,7277,7137,7022,6921,6842,6770,6723,6697,6674,6663,6657,6637,6667,6649,6502,6196,5774,5141,21.4,21.5,22.0,1567916,0.3,12.2,11.9,5.0,483,-1.00,-1.00,57.2029,-18.934039,0.000583,,,,,206 +SATSLF0720,2024246,7.260383,4.11,0.0575,0.1012,0.0169,0.00,16206,645,1,689,688,705,690,703,709,718,718,723,729,737,747,766,886,1229,1962,3149,4547,5789,6709,7374,7838,8281,8722,9234,9847,10611,11480,12486,13601,14793,15959,17074,18039,18777,19218,19338,19154,18771,18237,17651,17076,16612,16245,16019,15945,16019,16262,16685,17257,18011,18921,19997,21234,22557,24018,25493,26999,28429,29684,30680,31426,31821,31819,31496,30848,29908,28857,27616,26418,25258,24169,23161,22289,21559,20946,20465,20057,19773,19613,19517,19534,19633,19835,20086,20437,20862,21403,21945,22577,23238,23893,24497,25089,25566,25912,26185,26231,26113,25837,25364,24718,24000,23202,22325,21445,20576,19810,19101,18444,17892,17421,17005,16690,16437,16267,16165,16132,16144,16224,16395,16613,16916,17282,17725,18206,18771,19385,20032,20710,21433,22194,22939,23674,24365,25030,25634,26193,26604,26939,27184,27298,27316,27204,27008,26677,26265,25761,25193,24604,23965,23331,22669,22014,21369,20745,20154,19590,19092,18626,18217,17856,17518,17240,16965,16731,16521,16306,16123,15926,15728,15569,15426,15305,15194,15143,15065,15030,15010,14999,15019,15036,15067,15102,15141,15169,15222,15271,15293,15291,15303,15293,15330,15349,15342,15341,15288,15221,15158,15095,15000,14905,14768,14613,14446,14249,14047,13821,13574,13310,13044,12781,12473,12195,11882,11603,11337,11089,10856,10605,10329,10041,9697,9391,9097,8854,8645,8475,8334,8200,8104,8021,7943,7895,7822,7738,7586,7404,7266,7129,7021,6914,6839,6781,6725,6695,6660,6659,6643,6637,6640,6643,6502,6181,5763,5133,21.5,21.5,22.1,1567917,0.3,12.2,11.9,5.0,472,-1.00,-1.00,56.8001,-18.739486,0.000565,,,,,136 +SATSLF0720,2024246,7.260637,4.23,0.0592,0.1020,0.0174,0.00,16171,645,1,704,700,704,705,696,692,709,705,710,714,709,731,770,890,1219,1963,3130,4519,5780,6684,7334,7801,8229,8669,9186,9816,10570,11432,12436,13554,14733,15892,17014,17973,18693,19115,19253,19091,18704,18173,17572,17009,16539,16177,15956,15893,15977,16205,16611,17219,17944,18865,19950,21165,22481,23948,25429,26904,28320,29581,30581,31336,31730,31735,31402,30745,29829,28777,27524,26354,25171,24104,23099,22235,21495,20890,20400,20013,19726,19569,19482,19481,19570,19771,20040,20384,20805,21339,21913,22528,23190,23837,24454,25033,25523,25874,26126,26186,26070,25774,25292,24657,23932,23139,22266,21380,20551,19756,19052,18407,17847,17371,16970,16645,16405,16229,16133,16081,16100,16192,16359,16589,16890,17255,17693,18179,18757,19370,20000,20701,21428,22163,22894,23623,24329,24989,25586,26156,26574,26904,27154,27254,27266,27173,26949,26624,26229,25749,25165,24585,23941,23289,22626,21961,21323,20719,20118,19559,19067,18583,18190,17829,17488,17199,16933,16697,16490,16290,16097,15908,15712,15555,15410,15293,15189,15118,15056,15020,14993,14985,15000,15011,15037,15071,15123,15158,15181,15251,15252,15283,15285,15291,15294,15315,15322,15313,15259,15205,15141,15080,14996,14898,14738,14599,14417,14222,14030,13813,13570,13310,13049,12760,12473,12178,11871,11578,11303,11051,10811,10571,10316,10005,9687,9383,9093,8854,8653,8469,8322,8173,8073,8003,7922,7880,7812,7726,7588,7414,7258,7120,6997,6913,6835,6775,6719,6683,6653,6646,6625,6612,6632,6626,6465,6160,5741,5123,21.5,21.5,22.1,1567918,0.6,12.1,11.9,5.0,484,-1.00,-1.00,57.0627,-18.794447,0.000559,,,,,161 +SATSLF0720,2024246,7.260891,4.05,0.0567,0.1024,0.0172,0.00,16175,645,1,696,689,701,693,700,710,701,705,715,721,731,738,763,877,1217,1966,3140,4535,5777,6709,7338,7812,8242,8682,9205,9837,10582,11459,12459,13566,14755,15917,17038,17982,18715,19149,19286,19104,18721,18187,17618,17044,16593,16206,15993,15901,15999,16214,16626,17227,17973,18870,19941,21153,22485,23952,25443,26940,28365,29621,30610,31367,31767,31765,31436,30789,29869,28810,27566,26361,25213,24108,23091,22247,21501,20907,20401,20007,19730,19568,19465,19483,19592,19793,20051,20399,20826,21347,21907,22525,23188,23853,24456,25049,25524,25886,26155,26208,26077,25805,25321,24683,23950,23145,22268,21389,20521,19771,19066,18420,17849,17385,16973,16663,16400,16251,16133,16092,16109,16199,16343,16592,16881,17243,17680,18168,18739,19374,20012,20689,21415,22155,22905,23628,24322,24985,25589,26153,26583,26892,27147,27237,27265,27154,26942,26616,26231,25728,25165,24576,23940,23296,22645,21970,21320,20711,20118,19549,19054,18595,18181,17826,17485,17195,16932,16689,16492,16297,16085,15899,15714,15551,15402,15293,15190,15111,15029,14989,14979,14989,14993,15011,15042,15066,15117,15145,15194,15245,15260,15268,15276,15271,15297,15332,15314,15309,15264,15189,15146,15090,15002,14902,14748,14599,14419,14229,14017,13812,13576,13299,13035,12757,12457,12157,11854,11581,11313,11045,10816,10570,10307,10003,9681,9372,9082,8848,8633,8462,8302,8179,8081,8003,7942,7868,7813,7718,7581,7398,7255,7117,6999,6895,6834,6769,6711,6679,6648,6638,6624,6615,6635,6615,6471,6161,5745,5113,21.5,21.5,22.1,1567919,0.2,12.2,12.0,5.0,474,-1.00,-1.00,57.4310,-18.965110,0.000585,,,,,52 +SATSLF0720,2024246,7.261146,4.10,0.0575,0.1023,0.0177,0.00,16164,645,1,695,703,697,705,710,708,733,721,726,711,721,725,753,881,1220,1957,3143,4537,5783,6717,7358,7823,8237,8692,9204,9835,10581,11449,12455,13573,14737,15916,17039,18007,18733,19170,19301,19098,18714,18185,17572,17026,16568,16196,15987,15893,15981,16232,16645,17210,17971,18871,19943,21169,22489,23938,25428,26902,28323,29591,30594,31337,31743,31735,31400,30745,29817,28770,27547,26352,25181,24100,23095,22238,21493,20891,20404,20004,19738,19558,19470,19488,19578,19750,20013,20358,20795,21317,21892,22510,23173,23835,24445,25011,25498,25865,26106,26163,26032,25755,25282,24642,23926,23113,22247,21374,20519,19759,19058,18402,17854,17369,16969,16646,16398,16221,16132,16072,16103,16197,16350,16572,16875,17237,17675,18173,18738,19354,19991,20673,21399,22153,22896,23598,24304,24953,25559,26115,26554,26880,27121,27234,27228,27138,26921,26588,26198,25701,25138,24555,23941,23270,22617,21952,21316,20707,20094,19553,19041,18581,18170,17794,17473,17180,16918,16657,16482,16273,16086,15881,15703,15529,15383,15275,15183,15115,15029,14983,14977,14967,14974,15002,15017,15064,15080,15127,15179,15218,15248,15256,15269,15267,15295,15316,15319,15305,15249,15188,15130,15056,14973,14870,14736,14592,14404,14224,14016,13806,13568,13300,13015,12739,12456,12163,11869,11566,11289,11035,10803,10562,10297,9998,9683,9360,9081,8842,8630,8466,8301,8183,8072,8009,7930,7891,7817,7735,7581,7415,7261,7121,7006,6911,6830,6753,6701,6662,6641,6631,6614,6619,6650,6629,6482,6175,5745,5135,21.5,21.6,22.1,1567920,0.0,12.2,12.0,5.0,479,-1.00,-1.00,56.9018,-18.728243,0.000533,,,,,177 +SATSLF0720,2024246,7.261402,4.15,0.0581,0.1030,0.0181,0.00,16142,645,1,699,701,721,705,721,720,733,718,727,723,725,735,772,883,1232,1969,3156,4522,5765,6688,7318,7790,8227,8673,9187,9811,10560,11425,12409,13522,14693,15867,16977,17938,18670,19102,19240,19042,18667,18132,17540,16992,16513,16161,15908,15838,15928,16171,16597,17178,17925,18834,19890,21121,22442,23895,25377,26848,28279,29533,30521,31272,31657,31658,31324,30693,29765,28701,27476,26281,25125,24035,23036,22181,21446,20833,20354,19960,19661,19508,19440,19435,19549,19730,19994,20339,20779,21297,21852,22475,23133,23785,24393,24960,25451,25824,26074,26135,26013,25730,25232,24612,23888,23105,22241,21365,20517,19744,19032,18377,17806,17343,16941,16615,16379,16202,16109,16067,16082,16165,16318,16549,16853,17223,17650,18149,18709,19315,19945,20641,21376,22113,22856,23579,24283,24936,25533,26101,26528,26842,27107,27201,27210,27119,26898,26576,26180,25690,25121,24518,23898,23236,22577,21911,21272,20677,20077,19534,19037,18576,18165,17799,17478,17175,16915,16658,16450,16259,16065,15869,15693,15522,15381,15277,15174,15090,15011,14979,14960,14966,14963,15003,15013,15044,15093,15125,15184,15234,15248,15260,15257,15257,15277,15306,15301,15295,15237,15175,15115,15041,14953,14862,14721,14587,14401,14220,14010,13777,13547,13288,13010,12734,12441,12149,11849,11564,11286,11051,10818,10579,10305,10018,9685,9371,9076,8835,8628,8456,8297,8163,8072,8004,7938,7892,7821,7722,7584,7407,7251,7124,7002,6911,6823,6745,6699,6676,6642,6643,6631,6624,6631,6617,6482,6158,5728,5115,21.5,21.5,22.1,1567921,0.2,12.1,12.0,5.0,461,-1.00,-1.00,57.2453,-18.830374,0.000626,,,,,187 +SATSLF0720,2024246,7.261659,4.29,0.0600,0.1042,0.0185,0.00,16103,645,1,693,706,709,708,709,712,709,699,707,697,718,737,760,877,1204,1956,3125,4501,5746,6674,7306,7785,8198,8646,9157,9776,10501,11382,12365,13488,14657,15819,16932,17885,18609,19042,19172,18981,18610,18073,17480,16930,16464,16097,15872,15808,15895,16138,16537,17137,17873,18782,19849,21060,22379,23836,25302,26779,28194,29440,30445,31186,31590,31586,31249,30599,29675,28625,27397,26201,25051,23977,22973,22130,21399,20796,20305,19921,19633,19484,19389,19397,19498,19685,19950,20297,20736,21248,21803,22420,23085,23737,24345,24917,25394,25749,26023,26069,25957,25681,25194,24556,23845,23048,22173,21304,20464,19705,18994,18336,17783,17301,16901,16586,16341,16165,16071,16022,16059,16144,16302,16535,16831,17197,17622,18096,18670,19269,19908,20597,21318,22059,22793,23495,24221,24876,25461,26051,26473,26796,27034,27136,27156,27060,26841,26505,26105,25605,25046,24464,23834,23201,22541,21873,21244,20629,20032,19476,18989,18516,18109,17744,17415,17125,16875,16638,16443,16225,16029,15851,15641,15477,15341,15229,15127,15058,14993,14945,14946,14938,14941,14965,14989,15020,15054,15082,15130,15188,15210,15216,15222,15232,15245,15269,15272,15264,15211,15156,15103,15032,14938,14846,14705,14550,14370,14183,13977,13765,13518,13281,13010,12712,12410,12127,11821,11533,11271,11022,10779,10546,10291,9981,9669,9333,9051,8820,8609,8442,8280,8147,8055,7995,7910,7858,7797,7701,7565,7391,7236,7115,6992,6888,6807,6748,6683,6651,6630,6619,6611,6596,6611,6602,6455,6158,5737,5121,21.5,21.6,22.2,1567922,0.1,12.2,12.0,5.0,474,-1.00,-1.00,57.0596,-18.703051,0.000615,,,,,117 +SATSLF0720,2024246,7.261911,4.18,0.0586,0.1035,0.0177,0.00,16143,645,1,695,697,707,706,718,713,717,716,733,722,718,717,761,879,1217,1969,3142,4515,5768,6692,7335,7801,8219,8669,9193,9818,10560,11432,12417,13528,14710,15883,16998,17946,18662,19097,19232,19055,18683,18145,17556,16973,16519,16161,15933,15847,15927,16172,16597,17177,17926,18852,19917,21120,22459,23899,25381,26856,28285,29513,30514,31274,31668,31659,31340,30686,29757,28713,27485,26301,25128,24042,23050,22173,21443,20853,20357,19975,19676,19515,19419,19444,19528,19739,19990,20349,20783,21296,21872,22481,23146,23789,24406,24978,25464,25817,26091,26139,26022,25742,25258,24617,23902,23104,22238,21373,20508,19744,19027,18379,17819,17353,16948,16632,16377,16205,16098,16065,16082,16170,16331,16566,16845,17223,17660,18137,18713,19314,19971,20635,21364,22128,22864,23562,24272,24933,25513,26087,26515,26842,27092,27202,27210,27121,26904,26573,26183,25681,25113,24525,23889,23232,22587,21911,21281,20679,20069,19520,19032,18548,18139,17783,17441,17166,16906,16664,16455,16251,16056,15863,15699,15533,15387,15270,15170,15085,15011,14964,14944,14961,14961,14994,15013,15049,15098,15123,15161,15247,15242,15259,15264,15258,15278,15319,15294,15291,15252,15179,15130,15045,14950,14864,14729,14576,14401,14206,14008,13794,13553,13297,13030,12753,12444,12166,11856,11569,11305,11036,10818,10577,10308,10013,9692,9376,9093,8849,8624,8451,8296,8158,8060,7988,7917,7861,7794,7707,7562,7400,7244,7113,7011,6905,6829,6755,6711,6668,6644,6631,6628,6609,6628,6635,6465,6154,5725,5109,21.5,21.6,22.2,1567923,0.4,12.2,12.0,5.0,473,-1.00,-1.00,57.0462,-18.751132,0.000580,,,,,55 +SATSLF0720,2024246,7.262167,4.20,0.0589,0.1041,0.0189,0.00,16102,645,1,694,699,704,704,712,705,710,715,717,719,726,723,779,889,1221,1962,3125,4502,5732,6675,7302,7773,8197,8626,9152,9770,10509,11384,12381,13488,14660,15819,16940,17885,18600,19027,19170,18996,18627,18080,17514,16926,16473,16109,15884,15815,15893,16135,16535,17130,17866,18779,19849,21063,22377,23802,25283,26786,28186,29446,30450,31197,31603,31602,31261,30599,29687,28624,27393,26197,25044,23981,22980,22130,21398,20798,20321,19921,19627,19473,19392,19389,19495,19690,19943,20290,20714,21232,21806,22410,23079,23725,24345,24915,25394,25764,26016,26058,25960,25656,25174,24551,23832,23031,22162,21307,20465,19694,18993,18338,17787,17325,16912,16581,16337,16171,16066,16019,16034,16125,16288,16504,16811,17185,17620,18109,18666,19283,19921,20581,21314,22035,22807,23517,24228,24870,25481,26037,26472,26774,27030,27136,27133,27051,26833,26500,26104,25606,25056,24465,23824,23166,22519,21869,21232,20618,20033,19473,18984,18520,18121,17749,17435,17141,16868,16622,16435,16205,16020,15822,15626,15481,15345,15229,15142,15071,14995,14966,14937,14936,14920,14958,14973,15003,15048,15093,15125,15189,15197,15203,15239,15221,15248,15265,15271,15255,15204,15152,15091,15024,14929,14842,14706,14540,14370,14182,13969,13751,13522,13253,12993,12702,12416,12123,11825,11533,11261,11023,10781,10547,10294,9994,9665,9361,9080,8834,8630,8439,8274,8147,8049,7981,7897,7863,7794,7703,7553,7374,7228,7109,6997,6888,6805,6734,6695,6654,6633,6631,6609,6604,6610,6595,6451,6151,5723,5108,21.5,21.6,22.2,1567924,0.3,12.2,11.9,5.0,475,-1.00,-1.00,57.2290,-18.773871,0.000613,,,,,199 +SATSLF0720,2024246,7.262421,4.08,0.0572,0.1079,0.0213,0.00,15993,645,1,699,711,704,703,716,707,725,721,715,718,722,727,763,887,1207,1943,3113,4489,5716,6627,7255,7731,8145,8576,9098,9704,10449,11284,12288,13379,14545,15697,16802,17749,18461,18896,19033,18841,18475,17936,17352,16825,16342,15985,15777,15694,15769,16013,16413,16986,17726,18617,19691,20900,22197,23638,25096,26561,27981,29201,30198,30949,31333,31322,31014,30372,29464,28416,27200,26014,24861,23804,22801,21947,21229,20627,20152,19758,19481,19323,19229,19235,19339,19538,19797,20145,20562,21081,21634,22244,22887,23547,24150,24730,25203,25574,25813,25866,25767,25478,25015,24389,23684,22893,22036,21154,20314,19553,18858,18199,17656,17182,16783,16475,16228,16081,15966,15916,15940,16037,16173,16400,16694,17053,17477,17970,18532,19141,19772,20449,21159,21900,22642,23350,24055,24693,25294,25857,26283,26597,26836,26945,26956,26872,26661,26342,25943,25458,24888,24307,23676,23021,22378,21739,21098,20486,19899,19348,18863,18407,18011,17648,17322,17038,16769,16529,16325,16125,15929,15744,15541,15390,15257,15137,15049,14977,14901,14863,14842,14833,14833,14862,14895,14928,14965,14998,15044,15098,15109,15130,15127,15130,15154,15181,15174,15151,15110,15064,15009,14925,14849,14750,14631,14473,14298,14113,13905,13681,13438,13186,12914,12635,12353,12069,11768,11492,11224,10955,10721,10480,10232,9934,9601,9288,9011,8777,8573,8388,8253,8118,8020,7940,7876,7818,7751,7663,7517,7355,7197,7063,6946,6861,6792,6698,6659,6637,6607,6597,6568,6564,6578,6566,6426,6114,5708,5093,21.5,21.6,22.2,1567925,0.7,12.1,12.0,5.0,480,-1.00,-1.00,58.0704,-18.980617,0.000545,,,,,7 +SATSLF0720,2024246,7.262673,4.36,0.0611,0.1050,0.0188,0.00,16086,645,1,709,712,714,722,721,728,725,721,725,723,731,747,779,909,1234,1975,3134,4498,5731,6647,7279,7757,8184,8611,9125,9751,10493,11363,12352,13446,14636,15785,16886,17834,18546,18990,19117,18944,18565,18022,17433,16881,16418,16075,15845,15777,15861,16104,16517,17089,17834,18737,19794,21011,22333,23766,25251,26728,28149,29394,30372,31120,31512,31492,31169,30536,29613,28557,27329,26160,24995,23933,22934,22077,21357,20752,20269,19873,19603,19445,19353,19352,19454,19635,19901,20250,20684,21210,21778,22400,23053,23696,24301,24889,25345,25717,25980,26023,25894,25626,25154,24514,23802,23002,22139,21267,20443,19669,18980,18330,17764,17299,16905,16581,16322,16155,16054,16029,16041,16134,16283,16506,16802,17186,17600,18090,18652,19261,19893,20587,21305,22043,22803,23498,24193,24858,25437,26005,26436,26759,26993,27094,27117,27024,26806,26496,26097,25620,25041,24459,23825,23174,22526,21865,21214,20615,20021,19480,18971,18503,18101,17749,17421,17128,16853,16614,16401,16208,16025,15818,15634,15481,15344,15229,15124,15063,14977,14943,14929,14914,14940,14952,14976,15007,15050,15086,15142,15196,15220,15224,15223,15230,15250,15269,15253,15256,15211,15159,15093,15031,14935,14843,14687,14546,14361,14178,13965,13767,13526,13259,13005,12718,12408,12115,11829,11543,11272,11026,10792,10550,10280,9988,9668,9349,9068,8817,8603,8445,8296,8165,8067,7995,7912,7865,7794,7701,7559,7387,7226,7122,6998,6901,6813,6760,6705,6677,6645,6627,6612,6607,6625,6614,6461,6165,5731,5114,21.6,21.6,22.2,1567925,0.9,12.2,12.0,5.0,472,-1.00,-1.00,56.9864,-18.631824,0.000587,,,,,201 +SATSLF0720,2024246,7.262929,4.26,0.0597,0.1044,0.0190,0.00,16103,645,1,713,699,699,699,712,708,718,709,721,727,717,743,762,891,1224,1959,3141,4521,5754,6674,7301,7773,8193,8641,9156,9792,10520,11401,12386,13483,14678,15823,16943,17893,18616,19045,19177,18993,18606,18069,17493,16938,16482,16125,15898,15819,15904,16142,16555,17125,17876,18779,19841,21076,22373,23819,25287,26760,28194,29421,30427,31181,31576,31570,31250,30611,29680,28626,27396,26214,25064,23985,22976,22121,21388,20782,20298,19904,19633,19481,19382,19392,19483,19669,19937,20293,20718,21233,21793,22416,23078,23712,24333,24912,25392,25746,26025,26068,25947,25680,25193,24542,23832,23034,22164,21306,20452,19685,18992,18337,17774,17313,16896,16588,16340,16162,16062,16015,16037,16128,16290,16521,16816,17181,17614,18098,18678,19277,19920,20594,21317,22072,22796,23518,24218,24873,25457,26026,26453,26765,27015,27130,27133,27049,26829,26505,26105,25634,25049,24470,23835,23185,22536,21860,21225,20618,20026,19470,19001,18530,18114,17749,17421,17146,16862,16622,16421,16217,16021,15842,15655,15494,15346,15249,15125,15059,14991,14948,14941,14935,14935,14951,14967,15003,15051,15076,15140,15189,15217,15232,15238,15248,15257,15269,15261,15233,15207,15146,15088,15013,14939,14849,14721,14568,14389,14185,13968,13774,13521,13245,12989,12704,12416,12129,11830,11549,11282,11029,10792,10552,10283,9999,9672,9361,9056,8798,8611,8427,8275,8155,8062,7994,7916,7867,7797,7703,7560,7372,7225,7102,6980,6885,6816,6754,6689,6658,6635,6612,6603,6604,6617,6617,6461,6149,5734,5107,21.6,21.7,22.2,1567926,0.1,12.1,12.0,5.0,468,-1.00,-1.00,56.8223,-18.601866,0.000482,,,,,85 +SATSLF0720,2024246,7.263185,4.25,0.0595,0.1057,0.0195,0.00,16071,645,1,702,699,695,701,693,703,702,717,712,731,722,733,756,877,1207,1956,3118,4488,5728,6633,7273,7757,8153,8599,9124,9729,10485,11328,12337,13442,14596,15763,16865,17808,18539,18954,19095,18929,18560,18032,17433,16877,16400,16058,15830,15760,15829,16097,16489,17071,17818,18722,19779,21003,22312,23744,25222,26704,28116,29350,30363,31108,31492,31491,31169,30523,29600,28555,27326,26137,24974,23888,22903,22062,21328,20731,20251,19873,19579,19426,19322,19340,19441,19621,19883,20224,20663,21175,21749,22357,23034,23687,24293,24871,25345,25723,25984,26038,25909,25629,25149,24517,23798,22994,22126,21252,20425,19652,18956,18316,17753,17277,16864,16554,16295,16134,16033,16007,16013,16095,16271,16490,16793,17157,17579,18059,18647,19242,19887,20571,21291,22033,22773,23482,24192,24840,25426,25987,26407,26746,26973,27082,27108,27005,26796,26462,26075,25598,25009,24439,23801,23158,22496,21838,21216,20610,20013,19457,18976,18497,18083,17723,17398,17111,16846,16599,16397,16199,16009,15816,15630,15467,15324,15216,15113,15048,14959,14937,14905,14918,14912,14939,14969,15002,15047,15073,15115,15174,15200,15205,15221,15217,15235,15250,15250,15246,15191,15131,15069,15001,14912,14823,14696,14538,14363,14157,13959,13745,13507,13241,12976,12695,12400,12118,11810,11539,11265,11017,10777,10540,10277,9975,9655,9353,9069,8813,8607,8417,8282,8150,8040,7963,7912,7840,7787,7697,7550,7378,7236,7104,6977,6881,6797,6726,6672,6641,6622,6620,6605,6588,6619,6615,6455,6141,5715,5100,21.6,21.7,22.2,1567927,0.4,12.2,11.9,5.0,477,-1.00,-1.00,57.6455,-18.896257,0.000583,,,,,99 +SATSLF0720,2024246,7.263437,4.05,0.0568,0.1053,0.0196,0.00,16072,645,1,704,703,707,700,715,712,711,719,721,711,715,714,752,883,1211,1959,3143,4513,5745,6675,7301,7775,8181,8628,9134,9749,10487,11380,12349,13474,14642,15805,16912,17864,18574,19016,19149,18966,18580,18039,17445,16887,16429,16080,15837,15784,15860,16105,16509,17107,17824,18732,19802,21000,22322,23760,25229,26724,28137,29377,30358,31102,31512,31508,31195,30546,29622,28569,27341,26152,24989,23909,22916,22069,21331,20741,20254,19868,19574,19435,19340,19354,19456,19637,19890,20240,20662,21187,21751,22370,23022,23685,24282,24855,25328,25696,25974,26020,25896,25622,25129,24500,23793,22996,22144,21275,20419,19675,18958,18313,17741,17277,16869,16544,16294,16141,16045,15987,16009,16105,16261,16494,16777,17141,17586,18067,18645,19232,19877,20553,21289,22026,22756,23469,24150,24825,25405,25976,26405,26725,26979,27080,27090,27008,26786,26463,26070,25565,25000,24416,23786,23139,22487,21826,21196,20585,19989,19445,18950,18494,18082,17725,17399,17098,16838,16592,16389,16186,16005,15812,15627,15473,15333,15197,15112,15029,14939,14923,14905,14905,14917,14940,14961,14990,15028,15051,15108,15168,15182,15178,15191,15207,15225,15243,15248,15235,15194,15128,15066,14997,14907,14807,14677,14528,14365,14173,13957,13746,13500,13237,12985,12703,12389,12103,11792,11520,11254,10996,10771,10525,10267,9981,9645,9343,9053,8820,8612,8437,8274,8134,8050,7962,7888,7844,7779,7694,7562,7381,7225,7094,6987,6878,6799,6742,6681,6648,6635,6617,6596,6585,6594,6596,6447,6141,5719,5119,21.6,21.7,22.3,1567928,0.4,12.1,11.9,5.0,478,-1.00,-1.00,57.8023,-18.970866,0.000577,,,,,4 +SATSLF0720,2024246,7.263692,4.20,0.0588,0.1058,0.0198,0.00,16064,645,1,702,703,715,717,717,713,728,713,727,729,728,746,774,895,1227,1976,3136,4504,5741,6658,7285,7767,8178,8629,9141,9763,10509,11374,12360,13451,14620,15778,16889,17822,18548,18972,19117,18934,18551,18011,17435,16874,16427,16052,15833,15767,15848,16087,16500,17082,17810,18711,19765,20983,22295,23741,25205,26698,28105,29324,30336,31070,31467,31465,31149,30507,29594,28534,27312,26125,24976,23889,22888,22030,21303,20704,20240,19860,19569,19424,19319,19342,19422,19619,19866,20211,20647,21165,21730,22346,23024,23653,24261,24855,25318,25680,25936,25984,25874,25596,25120,24486,23770,22969,22116,21246,20404,19643,18930,18289,17728,17263,16851,16549,16294,16136,16029,15990,16027,16106,16249,16491,16768,17137,17562,18042,18617,19218,19851,20550,21284,22025,22773,23475,24165,24817,25398,25962,26394,26714,26963,27056,27072,26990,26764,26437,26069,25565,25009,24398,23782,23124,22466,21821,21200,20593,20000,19445,18963,18487,18062,17716,17373,17094,16823,16582,16382,16185,15995,15804,15625,15464,15329,15211,15122,15056,14973,14940,14912,14912,14903,14932,14956,14986,15030,15053,15101,15163,15173,15188,15207,15197,15228,15244,15251,15247,15195,15137,15061,14994,14901,14809,14670,14510,14359,14164,13958,13746,13522,13241,12985,12700,12419,12118,11824,11526,11245,11002,10762,10529,10269,9970,9656,9331,9058,8805,8605,8447,8285,8142,8049,7978,7918,7866,7788,7690,7555,7381,7225,7097,6969,6878,6803,6739,6682,6652,6633,6618,6613,6590,6621,6596,6451,6143,5720,5115,21.6,21.7,22.4,1567929,0.2,12.2,12.0,5.0,476,-1.00,-1.00,57.3722,-18.770542,0.000510,,,,,123 +SATSLF0720,2024246,7.263945,4.28,0.0600,0.1050,0.0194,0.00,16079,645,1,701,718,718,706,711,705,713,711,731,725,733,738,772,889,1214,1965,3134,4517,5757,6683,7325,7785,8188,8626,9142,9782,10502,11361,12356,13450,14649,15813,16909,17860,18586,19010,19152,18965,18601,18070,17466,16912,16458,16077,15871,15801,15878,16131,16533,17104,17841,18763,19805,21015,22345,23792,25261,26745,28157,29412,30392,31137,31533,31541,31210,30547,29637,28573,27336,26166,25009,23912,22933,22078,21350,20754,20266,19878,19589,19440,19356,19353,19446,19648,19907,20253,20689,21204,21768,22375,23056,23686,24307,24868,25349,25709,25975,26039,25898,25630,25164,24505,23787,22998,22125,21266,20427,19674,18964,18302,17756,17285,16879,16573,16313,16151,16034,16002,16013,16109,16279,16505,16790,17160,17589,18075,18644,19250,19881,20564,21285,22018,22770,23468,24170,24834,25411,25990,26417,26740,26962,27078,27084,26997,26780,26469,26072,25573,25005,24418,23795,23145,22499,21847,21206,20594,20000,19451,18960,18480,18093,17728,17389,17115,16845,16588,16387,16185,15982,15808,15630,15469,15320,15216,15121,15044,14964,14932,14903,14903,14904,14929,14969,14992,15029,15065,15114,15162,15185,15189,15202,15203,15223,15253,15254,15244,15192,15131,15075,15002,14901,14807,14676,14523,14361,14157,13957,13742,13502,13241,12973,12683,12391,12107,11813,11527,11259,11018,10785,10537,10273,9972,9645,9333,9059,8804,8600,8432,8261,8139,8052,7977,7910,7854,7785,7701,7557,7385,7222,7099,6981,6886,6803,6738,6684,6642,6627,6626,6599,6610,6627,6613,6455,6155,5724,5105,21.6,21.8,22.4,1567930,0.0,12.2,12.0,5.0,475,-1.00,-1.00,56.7184,-18.531148,0.000576,,,,,168 +SATSLF0720,2024246,7.264196,4.21,0.0590,0.1070,0.0206,0.00,16033,645,1,709,711,698,695,705,697,711,722,727,733,736,737,771,878,1211,1956,3125,4485,5719,6626,7271,7732,8162,8594,9110,9735,10492,11345,12331,13409,14591,15760,16852,17785,18507,18944,19075,18885,18532,18001,17403,16843,16375,16032,15802,15718,15808,16058,16466,17059,17774,18688,19750,20949,22261,23700,25175,26650,28054,29297,30288,31029,31410,31427,31077,30446,29546,28472,27257,26091,24925,23854,22845,21997,21274,20672,20197,19808,19521,19366,19270,19313,19393,19597,19848,20195,20628,21144,21717,22317,22984,23621,24218,24800,25275,25636,25899,25945,25834,25549,25079,24441,23721,22941,22081,21213,20365,19604,18899,18246,17699,17230,16830,16505,16254,16088,15994,15951,15969,16070,16229,16460,16746,17121,17537,18039,18586,19200,19834,20512,21239,21975,22712,23413,24103,24775,25361,25920,26346,26662,26920,27000,27025,26921,26711,26385,25995,25508,24953,24369,23748,23096,22449,21785,21147,20529,19960,19401,18904,18445,18048,17686,17341,17067,16807,16573,16369,16166,15976,15778,15602,15426,15281,15159,15069,15001,14929,14885,14865,14857,14869,14899,14926,14971,15016,15042,15104,15145,15165,15169,15177,15181,15209,15218,15210,15193,15143,15098,15035,14964,14875,14786,14660,14490,14323,14135,13935,13703,13479,13214,12960,12665,12378,12083,11781,11497,11235,10984,10752,10516,10252,9957,9629,9309,9039,8795,8581,8421,8266,8133,8044,7957,7889,7841,7748,7679,7533,7366,7196,7094,6970,6868,6785,6701,6663,6626,6601,6607,6592,6592,6613,6587,6439,6153,5712,5085,21.6,21.8,22.4,1567931,0.1,12.1,12.0,5.0,476,-1.00,-1.00,57.4983,-18.792267,0.000580,,,,,26 +SATSLF0720,2024246,7.264455,4.16,0.0582,0.1064,0.0209,0.00,16032,645,1,691,703,704,710,714,722,726,729,738,726,713,730,777,869,1210,1941,3114,4473,5707,6635,7276,7753,8178,8612,9121,9738,10473,11323,12311,13408,14585,15742,16830,17798,18518,18948,19079,18903,18529,17995,17409,16848,16381,16020,15807,15729,15808,16053,16471,17042,17787,18689,19733,20941,22251,23705,25168,26635,28055,29288,30295,31021,31418,31415,31082,30447,29518,28480,27261,26070,24926,23854,22861,22004,21272,20669,20189,19817,19528,19380,19293,19301,19397,19589,19837,20183,20612,21141,21690,22298,22952,23614,24224,24808,25265,25655,25896,25952,25842,25556,25062,24448,23736,22949,22070,21203,20364,19612,18901,18267,17707,17234,16821,16512,16264,16094,16007,15953,15969,16066,16231,16443,16755,17121,17536,18013,18589,19199,19820,20508,21227,21969,22699,23405,24123,24770,25353,25931,26342,26669,26914,27006,27005,26939,26716,26386,25994,25522,24947,24364,23735,23088,22449,21785,21153,20557,19965,19432,18920,18440,18056,17680,17333,17053,16785,16538,16338,16153,15976,15785,15613,15437,15281,15159,15074,15000,14931,14884,14857,14872,14873,14897,14924,14961,15002,15036,15091,15141,15165,15174,15178,15177,15193,15207,15213,15194,15159,15084,15024,14956,14867,14782,14646,14490,14325,14134,13931,13709,13476,13217,12954,12668,12391,12104,11787,11504,11231,10994,10752,10519,10249,9965,9637,9321,9036,8794,8577,8414,8252,8118,8023,7952,7869,7845,7765,7683,7529,7358,7198,7084,6970,6869,6775,6729,6663,6634,6605,6607,6583,6573,6595,6600,6453,6147,5712,5097,21.6,21.8,22.4,1567932,0.0,12.1,12.0,5.0,467,-1.00,-1.00,57.5216,-18.798262,0.000582,,,,,83 +SATSDF0720,2024246,7.509138,0.00,0.0000,0.0000,0.0000,0.00,645,0,1,636,638,626,635,633,614,611,615,619,631,625,631,616,614,619,626,631,638,635,637,645,637,651,651,643,653,653,657,645,654,650,647,649,653,650,652,657,647,654,658,657,653,648,641,659,645,652,645,656,647,650,654,647,654,666,661,663,653,652,659,650,653,662,663,653,651,651,654,653,640,659,640,642,644,657,653,647,661,640,656,642,650,644,632,648,658,642,663,656,660,647,645,645,642,632,639,641,649,637,639,635,644,647,637,647,642,645,654,659,658,672,657,655,640,631,639,634,637,645,643,653,637,647,637,651,653,645,639,629,639,643,638,641,642,640,627,629,655,656,658,664,657,640,643,643,633,639,639,641,642,651,649,653,649,632,649,645,633,633,635,629,625,636,637,650,644,651,657,663,654,662,661,652,657,645,644,645,637,647,647,643,637,646,652,645,640,643,645,655,650,661,642,636,637,631,631,635,635,654,637,659,657,638,643,639,651,653,642,635,637,646,633,634,658,652,636,637,634,643,638,641,651,649,650,653,653,644,645,651,654,641,649,634,645,641,640,654,641,637,645,644,647,654,656,665,652,642,653,661,648,653,646,653,644,657,487,0.0,0.0,0.0,1567931,0.1,12.7,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,130 +SATSLF0720,2024246,7.509695,4.09,0.0573,0.1000,0.0158,0.00,16240,645,1,699,704,709,695,699,711,696,703,709,720,726,742,765,888,1217,1974,3149,4541,5785,6725,7378,7853,8275,8730,9263,9876,10652,11521,12530,13648,14834,16014,17138,18108,18831,19259,19403,19229,18837,18312,17700,17114,16645,16284,16057,15979,16070,16324,16733,17321,18074,18981,20040,21290,22613,24081,25570,27063,28497,29774,30770,31539,31922,31914,31578,30928,30000,28932,27685,26490,25320,24242,23214,22359,21627,21008,20525,20132,19831,19666,19573,19584,19682,19873,20138,20480,20933,21450,22016,22636,23309,23949,24558,25148,25605,25985,26242,26300,26174,25894,25415,24778,24055,23259,22357,21484,20626,19844,19157,18481,17930,17442,17027,16709,16462,16281,16186,16147,16167,16264,16438,16653,16945,17316,17741,18248,18814,19438,20080,20756,21503,22234,22985,23701,24407,25066,25664,26250,26680,27002,27239,27349,27371,27272,27067,26733,26331,25824,25245,24654,24010,23362,22701,22053,21414,20809,20214,19645,19146,18659,18254,17877,17543,17268,16991,16755,16561,16325,16155,15944,15749,15597,15456,15342,15227,15171,15099,15061,15035,15037,15036,15057,15078,15127,15161,15181,15232,15282,15294,15305,15319,15335,15358,15377,15371,15361,15305,15254,15193,15104,15027,14928,14794,14642,14466,14269,14061,13836,13590,13335,13082,12790,12490,12199,11895,11609,11333,11088,10850,10626,10341,10038,9723,9393,9114,8865,8637,8472,8317,8186,8101,8026,7954,7907,7831,7744,7601,7420,7269,7132,7030,6940,6857,6777,6733,6689,6675,6666,6642,6618,6647,6632,6494,6189,5753,5145,21.4,21.4,21.9,1567932,0.2,12.1,12.0,5.0,599,-1.00,-1.00,56.6341,-18.722090,0.000594,,,,,182 +SATSLF0720,2024246,7.509877,4.05,0.0567,0.1005,0.0167,0.00,16222,645,1,713,712,709,693,703,708,698,704,708,714,723,725,768,884,1219,1974,3171,4553,5823,6746,7389,7868,8285,8737,9251,9876,10630,11500,12499,13628,14810,15985,17107,18082,18809,19258,19385,19197,18821,18265,17669,17101,16637,16264,16053,15958,16059,16305,16705,17300,18034,18954,20034,21258,22594,24041,25544,27033,28470,29721,30731,31481,31879,31886,31557,30881,29957,28896,27645,26466,25296,24202,23201,22333,21581,20967,20471,20087,19803,19637,19549,19562,19659,19857,20107,20467,20901,21425,21969,22592,23260,23914,24527,25104,25584,25944,26231,26266,26138,25856,25383,24759,24010,23195,22327,21456,20600,19837,19125,18469,17898,17429,17021,16705,16453,16281,16179,16133,16153,16237,16395,16627,16950,17309,17745,18236,18788,19396,20033,20737,21449,22184,22950,23672,24372,25027,25646,26210,26626,26954,27201,27329,27323,27233,27024,26669,26293,25785,25216,24630,23985,23355,22685,22014,21373,20754,20158,19607,19107,18648,18240,17865,17532,17246,16970,16724,16513,16320,16100,15931,15741,15578,15436,15319,15238,15140,15077,15038,15029,15015,15022,15045,15063,15091,15141,15175,15221,15277,15292,15298,15317,15320,15321,15353,15339,15338,15277,15235,15165,15104,15013,14918,14774,14615,14455,14263,14049,13841,13594,13315,13051,12771,12473,12195,11895,11602,11332,11083,10841,10601,10333,10039,9717,9400,9121,8866,8647,8481,8324,8195,8087,8005,7949,7891,7841,7752,7601,7415,7267,7141,7034,6931,6857,6780,6730,6667,6656,6643,6631,6621,6659,6647,6506,6188,5771,5142,21.4,21.4,21.9,1567933,0.5,12.2,12.0,5.0,485,-1.00,-1.00,56.7724,-18.756475,0.000579,,,,,166 +SATSLF0720,2024246,7.510136,4.20,0.0589,0.1010,0.0168,0.00,16204,645,1,695,697,705,702,698,690,695,700,707,711,705,736,780,897,1229,1966,3142,4519,5779,6699,7351,7822,8249,8697,9217,9847,10596,11466,12465,13578,14761,15950,17057,18026,18756,19200,19331,19141,18763,18220,17642,17056,16581,16217,15997,15921,16027,16268,16679,17269,18012,18934,19997,21226,22542,23997,25485,26966,28398,29643,30664,31412,31821,31817,31489,30822,29893,28826,27610,26401,25239,24157,23133,22291,21554,20941,20452,20055,19767,19618,19526,19538,19640,19817,20096,20427,20868,21387,21948,22577,23245,23888,24496,25086,25562,25940,26178,26247,26132,25825,25355,24715,23994,23184,22315,21433,20580,19815,19097,18441,17883,17402,17010,16681,16433,16257,16160,16116,16141,16227,16401,16629,16930,17301,17730,18205,18796,19402,20044,20736,21456,22187,22931,23649,24359,25037,25610,26177,26619,26938,27195,27302,27318,27247,27013,26676,26285,25781,25209,24618,23984,23335,22676,22006,21369,20755,20171,19602,19120,18634,18221,17856,17517,17239,16965,16727,16517,16311,16131,15930,15740,15575,15437,15330,15223,15155,15080,15037,15020,15017,15019,15040,15064,15107,15145,15162,15224,15285,15293,15321,15314,15315,15339,15341,15351,15343,15295,15235,15160,15104,15011,14919,14779,14619,14461,14260,14043,13831,13598,13322,13067,12753,12482,12176,11895,11601,11345,11084,10843,10607,10310,10007,9698,9393,9107,8865,8649,8481,8329,8194,8089,8007,7942,7869,7827,7744,7593,7416,7267,7133,7008,6912,6826,6769,6705,6682,6658,6651,6639,6622,6639,6647,6489,6178,5748,5131,21.4,21.4,22.0,1567934,0.4,12.1,12.0,5.0,484,-1.00,-1.00,56.5717,-18.634994,0.000564,,,,,142 +SATSLF0720,2024246,7.510389,4.17,0.0584,0.1009,0.0169,0.00,16204,645,1,690,691,699,693,709,697,699,701,716,713,723,731,764,891,1226,1957,3137,4531,5781,6708,7359,7836,8240,8703,9225,9857,10597,11477,12485,13593,14766,15947,17066,18027,18744,19187,19319,19138,18765,18226,17638,17071,16587,16231,16007,15920,16005,16257,16669,17257,18003,18929,20005,21214,22551,24009,25490,26985,28401,29653,30676,31419,31831,31825,31501,30841,29899,28849,27602,26407,25242,24160,23150,22297,21557,20936,20443,20071,19760,19623,19532,19537,19638,19824,20089,20430,20862,21378,21945,22572,23249,23890,24493,25077,25573,25940,26194,26256,26136,25845,25350,24729,23996,23197,22317,21445,20584,19821,19122,18461,17894,17417,17012,16676,16430,16258,16150,16113,16144,16228,16413,16628,16937,17290,17721,18212,18770,19391,20025,20726,21459,22204,22953,23665,24378,25037,25630,26193,26622,26944,27186,27306,27314,27213,27011,26681,26277,25784,25221,24625,23972,23321,22658,22005,21381,20742,20154,19605,19106,18643,18230,17861,17521,17238,16953,16723,16529,16314,16131,15933,15753,15584,15442,15312,15224,15140,15057,15019,15012,15013,15018,15046,15061,15098,15143,15163,15219,15271,15291,15286,15305,15301,15319,15349,15329,15341,15291,15236,15158,15093,15005,14914,14761,14615,14446,14261,14041,13826,13577,13319,13062,12764,12470,12191,11884,11600,11337,11060,10839,10589,10309,10020,9692,9381,9106,8864,8634,8466,8300,8179,8097,8023,7941,7890,7825,7735,7596,7412,7254,7121,7007,6905,6829,6774,6710,6683,6665,6660,6637,6624,6643,6633,6491,6178,5761,5127,21.5,21.4,22.1,1567935,0.5,12.1,11.9,5.0,480,-1.00,-1.00,56.9026,-18.777738,0.000588,,,,,247 +SATSLF0720,2024246,7.510639,4.17,0.0584,0.1019,0.0172,0.00,16174,645,1,679,699,703,700,715,722,714,718,713,711,714,720,759,878,1218,1949,3151,4541,5783,6702,7337,7815,8247,8682,9206,9834,10584,11457,12465,13579,14761,15931,17057,18008,18737,19168,19307,19114,18731,18176,17600,17029,16571,16202,15976,15898,15984,16229,16640,17228,17986,18892,19966,21195,22513,23972,25440,26932,28363,29613,30622,31370,31773,31754,31447,30776,29841,28800,27542,26362,25195,24123,23109,22245,21517,20900,20405,20018,19738,19580,19488,19497,19594,19782,20035,20387,20817,21345,21905,22525,23208,23853,24464,25045,25522,25877,26135,26182,26083,25797,25301,24669,23946,23133,22257,21397,20536,19773,19063,18424,17854,17384,16977,16643,16398,16219,16121,16069,16097,16197,16358,16585,16884,17257,17685,18171,18757,19349,19993,20669,21403,22149,22882,23617,24318,24977,25568,26124,26563,26877,27143,27234,27256,27169,26939,26628,26206,25730,25161,24567,23934,23272,22615,21949,21324,20715,20114,19563,19057,18571,18179,17808,17488,17197,16922,16697,16494,16293,16109,15898,15715,15538,15405,15272,15186,15106,15035,14997,14986,14981,14987,15003,15026,15062,15101,15139,15180,15248,15259,15277,15287,15281,15305,15316,15316,15302,15267,15195,15145,15061,14985,14884,14738,14597,14422,14240,14016,13807,13554,13309,13038,12753,12457,12157,11867,11586,11309,11065,10824,10583,10318,10009,9687,9371,9091,8847,8637,8457,8302,8165,8081,7997,7921,7883,7813,7735,7573,7416,7250,7116,6995,6902,6825,6770,6709,6685,6660,6647,6621,6624,6653,6623,6471,6164,5733,5119,21.4,21.5,22.1,1567936,0.8,12.2,12.0,5.0,483,-1.00,-1.00,56.8605,-18.726899,0.000621,,,,,220 +SATSLF0720,2024246,7.510894,4.15,0.0581,0.1015,0.0170,0.00,16201,645,1,699,702,701,705,713,717,724,728,727,743,737,743,765,883,1220,1965,3149,4539,5808,6745,7386,7857,8280,8717,9243,9856,10607,11484,12478,13611,14801,15966,17101,18038,18777,19216,19331,19159,18787,18263,17648,17073,16613,16254,16029,15958,16045,16297,16691,17264,18013,18917,19997,21219,22544,24007,25499,26978,28416,29661,30665,31425,31822,31818,31498,30837,29927,28844,27606,26426,25246,24161,23168,22312,21562,20937,20444,20067,19765,19603,19507,19513,19612,19812,20081,20426,20871,21389,21964,22568,23227,23879,24486,25077,25545,25899,26193,26233,26114,25829,25347,24711,23978,23181,22320,21442,20573,19805,19098,18449,17881,17420,17017,16685,16429,16253,16146,16093,16123,16213,16379,16613,16921,17293,17703,18186,18771,19389,20020,20705,21430,22160,22928,23627,24339,24999,25602,26182,26600,26933,27171,27269,27285,27195,26969,26638,26245,25750,25187,24598,23957,23309,22653,21986,21342,20723,20129,19584,19081,18610,18197,17842,17517,17236,16960,16720,16512,16295,16113,15917,15723,15553,15409,15299,15200,15123,15053,15002,14982,14999,14994,15030,15049,15077,15123,15159,15189,15260,15281,15273,15299,15294,15320,15342,15325,15319,15269,15211,15153,15095,14997,14906,14769,14615,14447,14262,14041,13828,13589,13318,13054,12775,12473,12181,11890,11592,11331,11081,10832,10597,10326,10029,9712,9398,9097,8850,8642,8461,8315,8187,8085,7992,7940,7883,7817,7729,7585,7412,7277,7130,7031,6909,6843,6775,6712,6691,6675,6660,6643,6641,6654,6642,6499,6178,5770,5131,21.4,21.5,22.1,1567937,0.4,12.2,11.9,5.0,471,-1.00,-1.00,56.3479,-18.548204,0.000464,,,,,42 +SATSLF0720,2024246,7.511149,4.28,0.0600,0.1022,0.0182,0.00,16173,645,1,695,692,689,689,707,715,725,718,727,721,727,727,775,887,1219,1960,3150,4539,5779,6711,7362,7837,8260,8702,9244,9853,10605,11480,12484,13593,14784,15964,17073,18035,18758,19188,19318,19137,18769,18218,17617,17056,16599,16228,16004,15932,16022,16261,16665,17249,17998,18897,19986,21200,22530,23993,25482,26977,28397,29643,30653,31392,31776,31781,31448,30785,29866,28795,27566,26385,25208,24136,23127,22258,21527,20904,20427,20021,19745,19575,19477,19491,19600,19781,20035,20396,20827,21344,21923,22528,23205,23853,24467,25041,25521,25878,26144,26187,26077,25804,25317,24685,23952,23149,22269,21398,20550,19795,19075,18423,17861,17373,16974,16649,16395,16226,16132,16088,16111,16200,16363,16592,16877,17251,17674,18162,18722,19352,19977,20665,21390,22149,22881,23594,24288,24962,25553,26116,26541,26876,27101,27213,27236,27145,26930,26588,26211,25713,25148,24552,23913,23263,22605,21931,21319,20701,20085,19539,19046,18560,18171,17801,17466,17181,16929,16690,16490,16270,16067,15886,15689,15520,15379,15261,15164,15087,15015,14984,14959,14964,14967,15002,15021,15053,15100,15137,15177,15225,15237,15269,15269,15262,15270,15293,15301,15286,15236,15186,15114,15053,14946,14862,14730,14585,14409,14218,13986,13791,13557,13293,13029,12737,12435,12149,11849,11561,11298,11052,10808,10566,10301,9992,9670,9371,9083,8827,8635,8456,8299,8169,8065,7993,7928,7880,7809,7725,7584,7410,7251,7119,6990,6903,6817,6759,6690,6651,6651,6637,6613,6630,6637,6642,6489,6176,5740,5111,21.5,21.5,22.1,1567938,0.2,12.1,12.0,5.0,480,-1.00,-1.00,55.9285,-18.351104,0.000564,,,,,45 +SATSLF0720,2024246,7.511405,4.14,0.0580,0.1024,0.0175,0.00,16175,645,1,695,695,688,697,709,713,716,723,725,729,722,736,768,891,1229,1958,3143,4533,5781,6710,7350,7816,8247,8694,9223,9837,10597,11466,12462,13579,14762,15924,17037,17984,18722,19168,19312,19121,18747,18199,17602,17040,16573,16206,15986,15909,15990,16237,16645,17235,17981,18888,19961,21186,22512,23954,25447,26951,28364,29613,30621,31362,31767,31750,31424,30781,29845,28794,27540,26367,25190,24126,23099,22247,21513,20897,20411,20025,19725,19581,19465,19493,19596,19785,20044,20392,20829,21345,21911,22531,23200,23844,24465,25046,25525,25889,26158,26197,26065,25786,25301,24683,23957,23150,22277,21410,20563,19785,19081,18429,17853,17376,16971,16654,16396,16231,16123,16087,16113,16201,16365,16581,16884,17246,17683,18171,18741,19364,19989,20679,21409,22152,22903,23605,24322,24972,25575,26134,26561,26891,27137,27248,27253,27171,26946,26613,26221,25722,25157,24574,23936,23274,22631,21964,21325,20724,20117,19549,19074,18581,18178,17814,17485,17193,16922,16689,16472,16265,16085,15897,15709,15553,15412,15304,15193,15134,15033,14997,14968,14978,14971,15009,15041,15074,15101,15131,15174,15241,15257,15261,15275,15284,15297,15313,15316,15307,15254,15201,15136,15049,14973,14888,14741,14581,14416,14228,14014,13799,13562,13311,13043,12753,12467,12157,11868,11565,11299,11045,10803,10576,10309,10017,9691,9398,9098,8858,8637,8469,8298,8175,8069,8007,7944,7893,7835,7732,7581,7413,7245,7113,6989,6894,6814,6749,6715,6669,6659,6641,6625,6613,6640,6629,6487,6169,5739,5129,21.5,21.5,22.1,1567939,0.5,12.2,11.9,5.0,474,-1.00,-1.00,56.7058,-18.660747,0.000569,,,,,218 +SATSLF0720,2024246,7.511659,4.24,0.0594,0.1035,0.0179,0.00,16139,645,1,700,695,707,701,709,707,705,711,717,717,717,731,761,875,1224,1960,3138,4523,5770,6677,7323,7799,8219,8669,9189,9819,10560,11424,12425,13529,14716,15873,16993,17946,18672,19108,19223,19056,18684,18134,17550,16981,16520,16133,15920,15857,15924,16187,16618,17193,17930,18843,19915,21141,22439,23867,25356,26850,28267,29520,30530,31276,31653,31671,31334,30684,29757,28708,27474,26277,25116,24034,23038,22181,21444,20839,20375,19965,19679,19530,19417,19446,19532,19714,19977,20338,20766,21290,21851,22466,23136,23792,24397,24978,25450,25810,26081,26128,25997,25721,25260,24610,23876,23100,22214,21343,20496,19731,19021,18362,17805,17351,16936,16626,16373,16211,16110,16059,16087,16181,16342,16560,16836,17207,17645,18136,18707,19309,19949,20630,21385,22107,22854,23562,24263,24929,25532,26084,26503,26839,27085,27201,27210,27121,26892,26565,26163,25659,25101,24521,23877,23235,22593,21922,21301,20674,20077,19523,19016,18552,18133,17778,17447,17159,16890,16660,16466,16258,16066,15881,15690,15513,15370,15255,15157,15093,15009,14970,14965,14971,14969,14992,15012,15045,15074,15099,15158,15221,15232,15245,15250,15255,15282,15287,15305,15292,15236,15182,15122,15027,14959,14857,14711,14567,14388,14203,14013,13794,13563,13280,13024,12744,12446,12140,11840,11553,11281,11045,10802,10565,10294,10007,9698,9373,9084,8840,8614,8454,8296,8166,8070,7996,7933,7872,7802,7714,7558,7380,7240,7113,6992,6895,6819,6757,6705,6664,6647,6643,6616,6610,6633,6616,6457,6164,5729,5111,21.5,21.6,22.1,1567940,0.0,12.1,11.9,5.0,478,-1.00,-1.00,56.7455,-18.622106,0.000582,,,,,162 +SATSLF0720,2024246,7.511911,4.36,0.0611,0.1030,0.0178,0.00,16152,645,1,695,695,701,700,700,705,717,714,731,733,742,747,778,898,1226,1970,3141,4534,5770,6695,7338,7791,8227,8681,9200,9817,10562,11433,12432,13533,14711,15881,17000,17955,18684,19112,19245,19059,18690,18142,17547,16992,16537,16163,15947,15869,15962,16212,16619,17194,17943,18864,19920,21143,22467,23917,25397,26877,28297,29546,30539,31287,31703,31692,31362,30711,29784,28729,27476,26315,25141,24067,23074,22197,21469,20864,20370,19976,19696,19537,19439,19459,19554,19730,20004,20338,20779,21299,21867,22481,23157,23816,24425,24983,25479,25844,26095,26155,26028,25741,25261,24627,23901,23101,22227,21364,20519,19741,19053,18401,17841,17379,16960,16633,16381,16205,16101,16068,16081,16183,16355,16570,16869,17238,17666,18155,18723,19325,19963,20638,21371,22135,22868,23587,24299,24954,25533,26097,26529,26845,27088,27194,27200,27105,26905,26585,26189,25693,25138,24561,23909,23267,22589,21915,21287,20681,20087,19533,19051,18562,18166,17801,17465,17176,16905,16668,16483,16262,16079,15865,15703,15530,15383,15271,15168,15096,15025,14980,14960,14960,14976,14996,15025,15065,15102,15128,15186,15245,15246,15253,15272,15266,15298,15307,15299,15284,15237,15170,15126,15056,14980,14889,14742,14596,14432,14210,14011,13794,13545,13286,13024,12743,12456,12153,11859,11572,11294,11033,10805,10574,10311,10009,9692,9390,9085,8835,8631,8457,8299,8172,8082,7993,7931,7881,7817,7726,7576,7409,7260,7130,7010,6909,6825,6777,6713,6671,6653,6650,6617,6614,6632,6613,6477,6169,5725,5116,21.5,21.6,22.2,1567941,0.0,12.1,11.9,5.0,480,-1.00,-1.00,56.3090,-18.456766,0.000530,,,,,54 +SATSLF0720,2024246,7.512167,4.13,0.0579,0.1037,0.0184,0.00,16133,645,1,691,693,700,705,701,718,720,725,729,737,746,748,775,896,1231,1965,3154,4517,5767,6696,7330,7809,8214,8661,9186,9797,10540,11404,12389,13527,14682,15871,16973,17923,18661,19090,19235,19026,18657,18112,17540,16970,16508,16138,15925,15863,15930,16180,16594,17157,17892,18800,19853,21106,22418,23863,25338,26822,28229,29492,30491,31242,31653,31649,31319,30653,29728,28680,27430,26259,25101,24029,23018,22161,21434,20816,20336,19943,19667,19511,19412,19422,19513,19699,19972,20318,20761,21284,21851,22474,23134,23780,24370,24971,25442,25810,26064,26116,25996,25732,25229,24594,23882,23076,22209,21343,20493,19722,19017,18373,17810,17337,16931,16606,16370,16192,16099,16049,16069,16164,16337,16552,16856,17221,17650,18134,18699,19316,19937,20633,21357,22098,22840,23549,24259,24925,25513,26088,26497,26818,27074,27192,27183,27097,26880,26548,26155,25661,25110,24503,23879,23241,22577,21916,21285,20673,20082,19508,19022,18540,18141,17778,17458,17178,16899,16662,16455,16259,16057,15859,15676,15509,15365,15250,15156,15084,14997,14980,14966,14951,14965,14986,14989,15037,15089,15113,15174,15229,15236,15246,15250,15273,15286,15307,15304,15286,15233,15164,15108,15042,14968,14858,14722,14575,14414,14213,13994,13783,13541,13273,13018,12728,12429,12143,11848,11571,11293,11033,10799,10558,10299,10002,9685,9364,9089,8851,8635,8457,8310,8194,8073,8003,7940,7881,7819,7721,7584,7394,7235,7123,7000,6901,6809,6746,6701,6669,6645,6639,6630,6619,6642,6630,6473,6162,5738,5123,21.5,21.6,22.2,1567942,0.0,12.2,12.0,5.0,479,-1.00,-1.00,57.0644,-18.736081,0.000575,,,,,64 +SATSLF0720,2024246,7.512421,4.14,0.0580,0.1048,0.0191,0.00,16095,645,1,723,709,719,709,712,720,712,710,709,721,718,717,771,885,1213,1956,3130,4498,5747,6661,7306,7773,8184,8631,9147,9770,10528,11390,12373,13482,14656,15798,16920,17873,18595,19026,19163,18987,18613,18080,17496,16933,16469,16103,15885,15805,15877,16123,16541,17113,17849,18761,19833,21049,22369,23819,25290,26768,28181,29436,30432,31170,31566,31562,31240,30586,29670,28612,27393,26209,25056,23976,22984,22121,21385,20771,20288,19902,19613,19457,19362,19373,19496,19666,19931,20280,20709,21231,21793,22411,23073,23714,24330,24902,25382,25748,26009,26054,25928,25653,25181,24558,23825,23029,22149,21278,20443,19676,18966,18336,17770,17300,16903,16582,16325,16151,16048,16005,16034,16122,16285,16509,16819,17169,17609,18093,18675,19267,19893,20562,21287,22043,22781,23495,24219,24866,25444,26014,26434,26772,27005,27105,27121,27028,26806,26499,26106,25593,25051,24448,23829,23178,22517,21861,21225,20622,20025,19465,18989,18509,18101,17738,17421,17131,16865,16624,16418,16206,16029,15837,15649,15487,15346,15223,15111,15037,14979,14946,14905,14917,14924,14957,14979,15005,15034,15073,15133,15176,15189,15218,15229,15236,15242,15277,15264,15251,15200,15136,15083,15008,14908,14810,14683,14534,14381,14185,13979,13773,13527,13257,13002,12720,12426,12133,11843,11537,11259,11024,10777,10535,10267,9978,9645,9339,9051,8820,8606,8431,8283,8156,8064,7974,7914,7858,7804,7707,7541,7365,7219,7101,6978,6883,6798,6734,6675,6645,6642,6613,6606,6613,6625,6613,6462,6156,5732,5111,21.5,21.6,22.2,1567943,0.7,12.1,12.0,5.0,469,-1.00,-1.00,57.4723,-18.867069,0.000572,,,,,181 +SATSLF0720,2024246,7.512675,4.14,0.0580,0.1049,0.0189,0.00,16085,645,1,697,707,699,701,700,709,694,705,715,716,701,724,763,864,1201,1954,3124,4499,5743,6662,7298,7766,8162,8616,9141,9745,10481,11353,12346,13458,14627,15785,16886,17847,18554,18999,19133,18944,18577,18037,17454,16902,16450,16074,15851,15780,15851,16101,16507,17089,17829,18738,19803,21015,22343,23781,25244,26727,28137,29391,30391,31140,31541,31534,31221,30560,29637,28584,27353,26162,25012,23938,22940,22087,21367,20752,20277,19883,19610,19461,19358,19379,19475,19669,19918,20251,20685,21207,21785,22382,23056,23706,24303,24901,25380,25730,25997,26049,25916,25639,25169,24542,23829,23026,22162,21290,20448,19681,18964,18323,17761,17296,16885,16574,16325,16150,16042,15988,16019,16122,16278,16500,16808,17174,17597,18099,18642,19255,19900,20593,21316,22052,22789,23498,24201,24866,25448,26020,26433,26746,27002,27111,27117,27045,26824,26474,26101,25617,25044,24449,23814,23176,22518,21842,21213,20613,20026,19472,18981,18501,18101,17738,17407,17134,16860,16631,16425,16212,16025,15825,15639,15477,15329,15227,15127,15052,14964,14940,14925,14923,14933,14961,14970,15011,15045,15071,15128,15186,15192,15193,15209,15221,15245,15264,15266,15243,15193,15137,15089,15006,14925,14818,14681,14535,14374,14193,13969,13757,13524,13253,12978,12707,12423,12121,11817,11536,11269,11016,10769,10557,10280,9966,9656,9343,9053,8808,8590,8439,8276,8146,8033,7991,7917,7853,7782,7690,7541,7368,7217,7080,6979,6889,6817,6744,6688,6654,6630,6612,6588,6585,6609,6607,6455,6162,5720,5121,21.5,21.6,22.2,1567943,0.3,12.2,11.9,5.0,472,-1.00,-1.00,57.8727,-19.011612,0.000609,,,,,168 +SATSLF0720,2024246,7.512931,4.31,0.0604,0.1053,0.0186,0.00,16085,645,1,701,690,697,701,699,699,704,707,724,722,739,749,777,883,1200,1943,3119,4493,5737,6642,7269,7747,8165,8613,9111,9749,10486,11337,12343,13436,14603,15767,16882,17824,18546,18965,19107,18922,18549,18029,17418,16879,16432,16065,15830,15757,15863,16089,16501,17082,17825,18728,19796,21005,22311,23777,25240,26706,28130,29377,30382,31126,31516,31511,31193,30532,29627,28567,27342,26150,24996,23918,22931,22073,21353,20749,20273,19894,19604,19455,19342,19367,19461,19648,19913,20270,20701,21217,21773,22383,23047,23689,24297,24885,25356,25725,25976,26028,25915,25629,25158,24529,23813,23006,22149,21285,20429,19681,18965,18326,17780,17290,16893,16580,16331,16147,16053,16010,16040,16132,16297,16525,16804,17176,17605,18093,18657,19264,19902,20579,21300,22055,22800,23510,24213,24864,25437,26013,26426,26762,27008,27113,27138,27041,26837,26506,26106,25613,25045,24456,23829,23184,22517,21837,21219,20615,20015,19470,18974,18503,18113,17723,17407,17108,16861,16630,16421,16229,16034,15841,15641,15476,15334,15207,15128,15052,14979,14952,14936,14941,14937,14965,14978,15013,15036,15079,15131,15190,15200,15221,15229,15245,15266,15281,15273,15272,15205,15154,15100,15029,14935,14837,14706,14561,14390,14182,13981,13777,13520,13260,12992,12718,12422,12126,11825,11546,11274,11030,10780,10560,10286,9986,9658,9349,9064,8813,8600,8447,8293,8167,8060,7975,7914,7854,7801,7714,7561,7384,7229,7085,6973,6885,6804,6747,6688,6645,6647,6613,6611,6600,6618,6609,6459,6150,5722,5116,21.5,21.6,22.3,1567944,0.0,12.2,11.9,5.0,469,-1.00,-1.00,57.5790,-18.879950,0.000599,,,,,217 +SATSLF0720,2024246,7.513187,4.38,0.0613,0.1048,0.0188,0.00,16096,645,1,716,705,708,702,708,699,709,710,735,717,737,725,767,901,1223,1962,3133,4510,5763,6664,7305,7767,8191,8635,9159,9773,10518,11384,12384,13480,14635,15814,16908,17872,18596,19031,19161,18980,18593,18057,17478,16904,16458,16093,15872,15795,15889,16121,16545,17120,17860,18775,19853,21049,22365,23825,25293,26760,28168,29410,30416,31169,31546,31553,31232,30574,29655,28585,27363,26176,25030,23956,22977,22126,21386,20790,20312,19913,19612,19452,19362,19357,19459,19661,19931,20276,20710,21228,21796,22394,23061,23717,24320,24904,25386,25740,26007,26057,25930,25643,25180,24537,23826,23040,22166,21297,20453,19677,18971,18305,17752,17292,16878,16583,16332,16173,16065,16024,16026,16130,16294,16514,16806,17173,17595,18074,18649,19254,19906,20589,21314,22055,22797,23525,24213,24865,25440,26007,26448,26765,27005,27114,27128,27029,26811,26493,26099,25618,25047,24457,23815,23179,22521,21859,21224,20609,20029,19459,18981,18506,18104,17746,17417,17125,16855,16618,16404,16211,16027,15821,15648,15485,15350,15241,15141,15056,14989,14938,14910,14915,14931,14953,14977,15026,15062,15088,15136,15198,15196,15202,15217,15230,15230,15267,15271,15265,15212,15169,15093,15019,14916,14843,14701,14557,14391,14181,13961,13763,13514,13253,12994,12719,12434,12141,11845,11553,11282,11021,10774,10544,10277,9977,9669,9362,9071,8832,8629,8457,8290,8144,8055,7984,7897,7845,7795,7699,7557,7390,7241,7108,6980,6902,6813,6763,6701,6660,6637,6641,6624,6608,6629,6612,6453,6149,5720,5119,21.5,21.7,22.3,1567945,0.0,12.2,12.0,5.0,479,-1.00,-1.00,56.5257,-18.464508,0.000627,,,,,153 +SATSLF0720,2024246,7.513439,4.08,0.0572,0.1051,0.0193,0.00,16088,645,1,713,711,717,713,724,726,725,729,715,729,724,734,767,894,1217,1965,3146,4503,5751,6666,7304,7779,8189,8641,9146,9773,10497,11367,12369,13473,14649,15812,16925,17865,18588,19027,19162,18970,18601,18055,17475,16921,16464,16096,15867,15789,15874,16110,16519,17091,17835,18759,19826,21029,22336,23783,25258,26744,28153,29398,30382,31157,31541,31538,31213,30546,29643,28589,27355,26176,25016,23925,22944,22092,21356,20763,20273,19884,19618,19444,19349,19349,19460,19657,19901,20248,20681,21202,21781,22385,23054,23701,24304,24883,25354,25736,25981,26026,25906,25646,25145,24519,23818,23020,22147,21285,20443,19677,18966,18320,17752,17287,16886,16570,16310,16152,16053,16008,16025,16119,16295,16509,16806,17168,17592,18078,18637,19249,19879,20571,21288,22032,22778,23485,24192,24836,25435,26005,26433,26769,27005,27097,27118,27021,26812,26493,26085,25599,25037,24454,23822,23152,22511,21853,21221,20609,20013,19460,18977,18498,18115,17750,17410,17131,16867,16625,16406,16205,16008,15821,15633,15479,15346,15236,15136,15058,14984,14943,14932,14916,14923,14945,14967,15005,15055,15077,15130,15187,15193,15204,15229,15248,15253,15279,15262,15248,15213,15141,15078,15004,14925,14829,14699,14547,14370,14187,13992,13769,13530,13251,12986,12705,12403,12123,11819,11533,11265,11021,10792,10573,10286,9991,9669,9349,9069,8820,8591,8435,8274,8147,8051,7985,7905,7857,7794,7701,7573,7384,7241,7113,6986,6890,6795,6755,6699,6658,6645,6634,6620,6594,6627,6585,6447,6167,5722,5115,21.5,21.7,22.3,1567946,0.5,12.2,12.0,5.0,479,-1.00,-1.00,57.5148,-18.865146,0.000583,,,,,47 +SATSLF0720,2024246,7.513694,4.15,0.0581,0.1067,0.0193,0.00,16052,645,1,693,693,701,717,718,712,717,713,716,718,710,737,768,889,1208,1963,3136,4507,5734,6650,7281,7751,8154,8615,9122,9735,10487,11349,12342,13453,14620,15768,16878,17822,18533,18969,19099,18923,18560,18024,17413,16856,16404,16041,15818,15750,15821,16075,16478,17057,17797,18692,19764,20979,22297,23728,25198,26667,28085,29313,30314,31049,31436,31428,31113,30461,29547,28505,27287,26113,24957,23892,22888,22052,21309,20700,20211,19835,19545,19392,19280,19305,19402,19592,19858,20205,20647,21160,21709,22324,22993,23637,24250,24821,25309,25665,25928,25960,25861,25584,25100,24475,23753,22955,22101,21232,20394,19624,18931,18278,17705,17242,16829,16529,16278,16102,16009,15970,15992,16093,16257,16465,16755,17134,17550,18034,18600,19216,19834,20528,21249,21993,22737,23442,24138,24802,25401,25957,26377,26704,26962,27056,27061,26967,26761,26429,26029,25538,24976,24394,23757,23107,22458,21796,21160,20552,19972,19425,18934,18469,18060,17703,17383,17095,16817,16581,16372,16169,15991,15798,15614,15442,15299,15198,15104,15017,14951,14904,14897,14901,14889,14921,14946,14981,15028,15057,15113,15157,15171,15197,15188,15197,15215,15251,15234,15241,15181,15110,15076,15002,14890,14815,14669,14529,14345,14169,13946,13733,13504,13261,12986,12695,12411,12115,11809,11514,11239,11008,10764,10515,10253,9968,9645,9332,9058,8801,8601,8428,8275,8133,8040,7952,7899,7846,7773,7689,7528,7378,7210,7078,6983,6885,6803,6746,6701,6637,6627,6608,6603,6581,6599,6605,6458,6149,5725,5113,21.5,21.7,22.3,1567947,0.0,12.1,11.9,5.0,479,-1.00,-1.00,57.4333,-18.779172,0.000577,,,,,72 +SATSLF0720,2024246,7.513947,4.40,0.0616,0.1057,0.0195,0.00,16070,645,1,688,694,713,709,705,705,706,727,723,729,733,749,781,901,1218,1954,3121,4493,5739,6644,7281,7763,8181,8622,9138,9745,10482,11366,12345,13460,14641,15796,16896,17847,18566,18997,19115,18935,18579,18028,17438,16887,16433,16057,15842,15789,15861,16109,16505,17104,17837,18746,19805,21006,22336,23781,25244,26716,28141,29363,30353,31104,31508,31493,31168,30523,29618,28557,27329,26139,24983,23915,22928,22086,21346,20738,20251,19867,19586,19419,19324,19341,19438,19635,19891,20231,20678,21198,21746,22371,23029,23671,24279,24858,25326,25696,25960,26016,25881,25618,25144,24507,23805,22992,22142,21268,20417,19644,18945,18297,17746,17262,16854,16548,16311,16149,16028,15981,16025,16104,16270,16484,16793,17153,17587,18065,18629,19237,19874,20560,21282,22022,22766,23461,24166,24828,25422,25974,26409,26731,26968,27067,27083,26995,26763,26443,26053,25554,24999,24414,23768,23142,22489,21832,21197,20587,19994,19434,18938,18477,18082,17714,17387,17097,16829,16589,16407,16194,16005,15820,15646,15468,15324,15197,15118,15026,14961,14925,14896,14899,14902,14922,14968,14993,15042,15061,15105,15158,15175,15172,15187,15199,15217,15249,15237,15249,15198,15141,15069,14997,14910,14810,14678,14527,14371,14161,13960,13738,13502,13229,12955,12695,12401,12109,11808,11538,11260,11005,10782,10534,10260,9968,9641,9338,9050,8809,8608,8429,8277,8138,8045,7962,7893,7849,7769,7692,7542,7383,7223,7104,6983,6884,6801,6733,6667,6637,6621,6614,6598,6593,6606,6596,6449,6144,5725,5098,21.6,21.8,22.4,1567948,0.5,12.2,12.0,5.0,472,-1.00,-1.00,56.6221,-18.476041,0.000561,,,,,188 +SATSLF0720,2024246,7.514198,4.20,0.0589,0.1051,0.0197,0.00,16075,645,1,690,695,697,711,705,711,728,722,717,720,723,727,777,889,1226,1950,3143,4509,5735,6646,7294,7754,8174,8621,9133,9752,10501,11376,12369,13483,14649,15808,16906,17845,18557,19006,19124,18963,18580,18061,17473,16902,16435,16083,15861,15782,15849,16099,16512,17083,17833,18738,19805,21033,22332,23773,25243,26709,28123,29387,30369,31109,31497,31496,31176,30525,29610,28557,27329,26155,24989,23925,22914,22075,21345,20741,20267,19873,19596,19443,19349,19356,19447,19635,19897,20229,20678,21200,21749,22368,23040,23693,24304,24877,25351,25726,25977,26016,25896,25617,25143,24505,23789,22990,22135,21264,20423,19656,18953,18293,17735,17267,16879,16557,16321,16149,16053,16008,16029,16123,16277,16497,16792,17142,17569,18054,18636,19242,19874,20566,21288,22038,22769,23484,24164,24832,25410,25990,26410,26716,26953,27075,27105,26997,26786,26475,26084,25582,25021,24429,23786,23136,22504,21829,21209,20589,20010,19453,18976,18490,18077,17720,17397,17102,16837,16598,16391,16184,15997,15815,15625,15476,15310,15207,15115,15043,14958,14921,14915,14907,14907,14944,14957,15005,15029,15065,15121,15171,15177,15207,15222,15213,15245,15258,15250,15233,15193,15133,15062,14999,14893,14808,14671,14525,14353,14167,13961,13749,13508,13251,12992,12698,12409,12123,11840,11549,11272,11018,10761,10543,10262,9969,9648,9325,9048,8810,8599,8428,8277,8155,8057,7980,7907,7850,7790,7702,7554,7378,7226,7099,6989,6885,6802,6743,6678,6646,6635,6618,6605,6589,6604,6608,6440,6145,5716,5097,21.5,21.8,22.4,1567949,0.0,12.2,11.9,5.0,478,-1.00,-1.00,57.0226,-18.643095,0.000564,,,,,252 +SATSLF0720,2024246,7.514457,4.16,0.0583,0.1056,0.0198,0.00,16070,645,1,704,694,711,709,701,700,709,710,725,735,745,757,789,904,1233,1953,3124,4507,5747,6666,7307,7781,8180,8637,9157,9756,10491,11351,12355,13453,14629,15794,16896,17863,18573,18999,19120,18949,18580,18022,17451,16869,16423,16062,15835,15769,15842,16103,16504,17080,17815,18728,19789,21013,22312,23765,25236,26714,28110,29350,30356,31100,31495,31497,31172,30521,29591,28549,27322,26141,24981,23910,22915,22053,21328,20725,20254,19862,19584,19422,19330,19332,19431,19622,19880,20220,20655,21168,21736,22361,23024,23668,24283,24861,25330,25706,25967,26011,25902,25609,25127,24503,23781,22977,22125,21256,20423,19655,18961,18301,17751,17274,16875,16554,16306,16128,16018,15985,16013,16117,16272,16488,16786,17149,17580,18078,18630,19235,19879,20554,21285,22021,22753,23463,24167,24821,25409,25969,26394,26723,26961,27057,27086,26983,26770,26448,26067,25559,24998,24415,23774,23140,22478,21826,21188,20588,20000,19448,18949,18486,18089,17729,17393,17101,16837,16585,16397,16189,15998,15813,15621,15447,15319,15200,15098,15042,14971,14920,14919,14917,14913,14938,14952,14986,15031,15048,15112,15161,15191,15194,15209,15209,15233,15268,15258,15256,15202,15145,15061,14996,14921,14811,14674,14536,14363,14182,13975,13744,13506,13244,12978,12698,12401,12122,11818,11531,11257,11023,10773,10550,10272,9978,9638,9340,9057,8801,8589,8424,8274,8137,8038,7975,7897,7853,7784,7705,7569,7389,7224,7102,6990,6893,6797,6749,6685,6647,6626,6621,6619,6597,6618,6609,6455,6148,5734,5113,21.6,21.8,22.4,1567950,0.0,12.2,11.9,5.0,476,-1.00,-1.00,57.4930,-18.832624,0.000603,,,,,95 +SATSDF0720,2024246,7.759138,0.00,0.0000,0.0000,0.0000,0.00,645,0,1,621,608,626,609,611,619,613,604,614,628,625,618,643,634,633,628,627,619,633,635,627,640,661,661,658,662,656,641,651,653,653,647,647,653,649,648,653,642,635,640,643,655,665,654,663,661,662,650,652,635,655,641,643,641,647,661,649,655,662,656,652,639,647,647,652,642,648,650,647,642,643,641,640,644,630,643,652,650,655,661,661,666,661,650,655,649,636,643,654,648,663,637,647,646,647,648,658,651,645,657,650,649,644,642,648,637,643,651,645,663,649,647,648,648,637,639,646,645,636,640,633,650,649,641,654,658,650,643,631,644,640,647,653,633,647,643,638,637,646,636,629,627,636,645,657,641,647,649,660,648,638,644,644,643,647,626,643,654,657,664,662,650,643,638,649,650,660,651,651,659,641,635,637,641,631,637,643,647,651,652,648,660,656,656,656,649,644,657,629,644,629,631,633,643,636,642,640,662,653,659,661,657,646,645,640,637,645,629,635,633,642,633,635,634,644,636,642,645,645,656,645,642,644,642,633,634,638,636,642,641,651,645,654,641,647,651,636,657,657,637,635,631,643,649,638,642,653,644,650,665,653,643,651,649,642,466,0.0,0.0,0.0,1567949,0.1,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,143 +SATSLF0720,2024246,7.759692,4.16,0.0582,0.1018,0.0176,0.00,16169,645,1,691,684,689,699,715,714,704,698,715,707,718,717,753,872,1224,1957,3141,4537,5779,6712,7364,7828,8253,8689,9203,9829,10576,11440,12446,13565,14754,15927,17045,18004,18730,19164,19285,19086,18707,18176,17560,17019,16567,16206,15970,15901,15976,16218,16630,17227,17960,18875,19948,21171,22502,23950,25438,26925,28365,29602,30606,31367,31765,31741,31410,30764,29850,28789,27554,26361,25186,24097,23097,22243,21513,20901,20417,20027,19736,19587,19494,19501,19607,19781,20033,20365,20823,21325,21899,22514,23188,23841,24453,25030,25505,25865,26133,26177,26057,25786,25294,24666,23925,23112,22255,21374,20545,19768,19055,18406,17842,17383,16966,16637,16398,16225,16137,16080,16103,16185,16360,16578,16890,17240,17677,18165,18737,19351,19980,20688,21405,22146,22897,23610,24306,24973,25576,26144,26566,26901,27139,27230,27247,27161,26946,26614,26221,25730,25145,24569,23939,23277,22624,21953,21314,20704,20105,19558,19065,18588,18189,17818,17498,17202,16925,16694,16480,16275,16083,15885,15700,15536,15400,15291,15177,15110,15036,15008,14976,14973,14970,15005,15017,15057,15092,15134,15175,15236,15253,15273,15287,15293,15305,15324,15325,15302,15255,15189,15132,15061,14975,14881,14740,14589,14413,14234,14016,13809,13559,13311,13030,12743,12449,12165,11861,11560,11293,11035,10795,10563,10292,9988,9669,9348,9083,8849,8629,8464,8305,8189,8085,8013,7933,7869,7800,7707,7559,7382,7233,7111,6994,6912,6827,6757,6710,6681,6645,6635,6615,6611,6628,6632,6477,6165,5745,5125,21.4,21.4,21.8,1567950,0.1,12.2,12.0,5.0,599,-1.00,-1.00,57.2106,-18.867692,0.000601,,,,,106 +SATSLF0720,2024246,7.759874,4.04,0.0566,0.1003,0.0158,0.00,16221,645,1,699,705,705,697,711,701,713,702,720,706,726,730,755,896,1213,1963,3144,4539,5788,6705,7355,7830,8249,8701,9230,9832,10583,11470,12481,13604,14793,15973,17088,18051,18777,19217,19346,19152,18781,18236,17657,17065,16606,16241,16023,15949,16024,16272,16673,17267,18024,18925,20011,21237,22569,24025,25511,27005,28433,29686,30700,31445,31840,31856,31521,30877,29944,28869,27650,26445,25284,24204,23181,22326,21585,20954,20471,20091,19804,19658,19556,19554,19646,19843,20090,20459,20889,21410,21977,22611,23288,23915,24547,25126,25590,25958,26192,26265,26136,25858,25377,24724,24017,23217,22345,21469,20604,19825,19117,18461,17890,17413,17015,16686,16455,16282,16188,16149,16154,16242,16411,16626,16937,17299,17732,18219,18823,19413,20066,20746,21489,22229,22981,23681,24395,25054,25638,26220,26646,26967,27226,27336,27348,27254,27051,26693,26296,25790,25230,24641,24013,23347,22691,22017,21395,20782,20189,19613,19130,18644,18241,17874,17537,17242,16993,16759,16553,16337,16144,15954,15769,15593,15445,15328,15224,15154,15082,15042,15018,15031,15037,15062,15084,15109,15167,15189,15232,15276,15302,15305,15325,15313,15343,15365,15359,15350,15295,15251,15193,15105,15027,14924,14797,14645,14464,14267,14056,13837,13607,13329,13075,12789,12483,12194,11895,11594,11329,11081,10837,10610,10357,10029,9706,9405,9125,8865,8657,8481,8330,8186,8100,8024,7961,7897,7848,7756,7592,7427,7274,7137,7021,6921,6836,6780,6728,6685,6693,6677,6646,6635,6651,6650,6484,6169,5763,5138,21.4,21.4,21.9,1567951,0.6,12.1,11.9,5.0,496,-1.00,-1.00,57.4264,-19.014094,0.000559,,,,,118 +SATSLF0720,2024246,7.760130,4.02,0.0563,0.1014,0.0171,0.00,16195,645,1,708,701,689,692,702,709,705,711,711,723,721,729,779,905,1234,1977,3159,4541,5803,6727,7381,7853,8279,8725,9245,9883,10619,11501,12501,13618,14805,15981,17097,18041,18783,19235,19362,19175,18798,18254,17657,17096,16614,16260,16022,15958,16036,16269,16686,17265,18002,18920,19994,21237,22579,24024,25522,26986,28426,29680,30682,31424,31828,31825,31486,30834,29910,28857,27617,26416,25234,24183,23169,22309,21556,20939,20456,20042,19772,19610,19510,19517,19626,19817,20073,20403,20867,21381,21937,22556,23229,23863,24483,25064,25541,25893,26165,26201,26093,25812,25328,24695,23976,23175,22301,21434,20578,19798,19091,18423,17862,17393,16975,16663,16416,16245,16148,16112,16127,16211,16377,16592,16893,17276,17700,18213,18762,19381,19997,20693,21429,22167,22903,23623,24326,25001,25600,26162,26591,26910,27146,27265,27278,27181,26963,26640,26244,25746,25166,24579,23963,23309,22642,21976,21343,20736,20135,19561,19090,18593,18188,17826,17490,17197,16932,16691,16486,16295,16109,15913,15731,15565,15424,15302,15200,15108,15043,15005,14992,14989,14989,15008,15035,15079,15107,15143,15190,15233,15255,15265,15279,15296,15305,15323,15322,15309,15259,15201,15151,15073,14983,14884,14739,14601,14421,14231,14011,13815,13573,13316,13043,12746,12464,12156,11862,11564,11312,11069,10821,10574,10327,10016,9697,9380,9104,8854,8640,8476,8311,8182,8080,8003,7935,7893,7813,7721,7570,7408,7241,7127,7009,6918,6834,6773,6713,6691,6668,6661,6646,6633,6644,6639,6482,6160,5735,5120,21.5,21.4,22.0,1567952,0.5,12.2,11.9,5.0,486,-1.00,-1.00,56.6701,-18.684718,0.000586,,,,,181 +SATSLF0720,2024246,7.760384,3.98,0.0557,0.1014,0.0169,0.00,16199,645,1,677,704,693,709,709,697,707,724,724,725,743,737,757,871,1207,1946,3149,4541,5786,6711,7365,7831,8260,8716,9233,9859,10615,11493,12480,13593,14785,15963,17073,18055,18757,19207,19349,19168,18773,18222,17643,17065,16605,16250,16008,15937,16010,16257,16683,17254,18000,18908,19981,21235,22537,24011,25493,26974,28409,29667,30653,31434,31818,31814,31492,30835,29907,28848,27610,26419,25243,24154,23153,22281,21545,20928,20459,20050,19752,19611,19509,19523,19634,19808,20061,20416,20845,21368,21955,22577,23243,23880,24507,25087,25554,25925,26194,26225,26115,25833,25344,24705,23978,23170,22292,21429,20574,19806,19085,18418,17863,17409,16994,16672,16414,16261,16162,16100,16123,16202,16381,16616,16912,17290,17705,18211,18762,19389,20021,20715,21435,22189,22949,23656,24361,25017,25594,26171,26607,26913,27163,27267,27285,27189,26978,26658,26261,25772,25193,24605,23954,23312,22649,21981,21346,20727,20141,19587,19097,18611,18215,17845,17520,17233,16938,16718,16505,16305,16116,15925,15735,15561,15434,15302,15208,15126,15049,15012,14998,14994,15006,15032,15048,15085,15115,15159,15204,15275,15279,15284,15299,15295,15313,15338,15333,15325,15285,15221,15157,15084,15002,14897,14771,14611,14434,14246,14025,13815,13577,13309,13049,12766,12462,12193,11889,11608,11340,11069,10818,10592,10310,10013,9700,9380,9095,8859,8647,8465,8323,8189,8102,8013,7945,7888,7816,7742,7597,7421,7281,7133,7022,6930,6848,6778,6717,6673,6661,6645,6627,6627,6650,6634,6490,6177,5739,5133,21.4,21.5,22.0,1567953,0.3,12.2,12.0,5.0,483,-1.00,-1.00,57.2832,-18.935194,0.000571,,,,,140 +SATSLF0720,2024246,7.760634,4.21,0.0590,0.1013,0.0169,0.00,16198,645,1,688,697,688,699,709,695,722,714,724,729,728,728,766,881,1221,1963,3138,4517,5767,6703,7355,7843,8262,8712,9239,9857,10599,11475,12474,13573,14767,15943,17053,18013,18740,19181,19314,19129,18765,18211,17637,17059,16604,16226,16007,15936,16016,16253,16667,17263,18005,18925,19989,21209,22536,23987,25470,26962,28407,29654,30664,31427,31825,31819,31499,30829,29924,28840,27595,26388,25227,24151,23149,22283,21542,20944,20446,20056,19768,19594,19515,19513,19627,19814,20080,20420,20855,21379,21953,22579,23245,23885,24498,25078,25557,25922,26177,26226,26106,25843,25357,24708,24000,23197,22305,21421,20583,19810,19115,18453,17880,17405,17004,16674,16424,16240,16145,16097,16117,16225,16398,16610,16918,17274,17699,18204,18762,19391,20009,20701,21432,22176,22936,23637,24353,25012,25617,26172,26607,26933,27161,27276,27291,27211,26977,26658,26264,25762,25197,24602,23970,23313,22672,22001,21364,20744,20155,19589,19101,18614,18213,17832,17501,17209,16950,16717,16517,16305,16128,15930,15735,15565,15413,15293,15206,15126,15056,15022,15001,14997,14993,15019,15046,15092,15122,15147,15207,15273,15277,15295,15316,15309,15326,15355,15341,15333,15277,15231,15157,15075,14990,14895,14748,14614,14439,14249,14043,13836,13597,13313,13047,12764,12473,12186,11876,11591,11325,11089,10833,10601,10326,10013,9700,9384,9102,8864,8646,8487,8328,8191,8103,8017,7947,7884,7815,7731,7588,7409,7253,7125,7026,6917,6833,6787,6725,6688,6667,6651,6632,6631,6637,6645,6469,6170,5755,5125,21.4,21.5,22.1,1567954,0.6,12.2,12.0,5.0,481,-1.00,-1.00,56.7188,-18.697186,0.000550,,,,,116 +SATSLF0720,2024246,7.760889,4.09,0.0572,0.1020,0.0175,0.00,16177,645,1,691,689,699,697,699,710,713,723,719,730,720,721,762,872,1213,1963,3151,4547,5780,6711,7366,7825,8249,8693,9221,9842,10596,11460,12455,13573,14767,15929,17050,18000,18745,19177,19313,19120,18737,18194,17605,17025,16581,16214,15991,15913,15998,16241,16649,17240,17985,18884,19952,21180,22518,23956,25429,26931,28349,29611,30613,31365,31766,31778,31445,30787,29867,28804,27553,26361,25192,24098,23085,22239,21504,20913,20416,20021,19745,19585,19485,19481,19585,19773,20040,20402,20821,21335,21911,22536,23206,23851,24459,25045,25526,25868,26140,26190,26083,25798,25321,24677,23961,23154,22274,21403,20547,19778,19090,18435,17866,17382,16981,16661,16409,16245,16145,16097,16113,16210,16391,16597,16896,17259,17685,18165,18741,19360,19991,20679,21429,22164,22920,23612,24337,24989,25577,26139,26567,26896,27134,27230,27245,27157,26944,26620,26230,25740,25171,24581,23933,23291,22630,21957,21310,20707,20115,19554,19061,18588,18184,17815,17483,17212,16937,16694,16468,16275,16097,15905,15717,15558,15413,15288,15194,15104,15033,14986,14975,14974,14982,15008,15041,15085,15130,15154,15192,15241,15246,15275,15265,15283,15299,15326,15301,15298,15270,15214,15136,15062,14977,14891,14742,14606,14416,14239,14025,13812,13575,13306,13034,12752,12454,12157,11853,11575,11297,11058,10823,10593,10310,10010,9687,9371,9079,8835,8638,8453,8291,8174,8080,8002,7921,7871,7809,7723,7581,7410,7254,7123,7017,6907,6819,6764,6708,6683,6658,6653,6635,6618,6639,6647,6481,6157,5734,5113,21.5,21.5,22.1,1567955,0.6,12.1,11.9,5.0,479,-1.00,-1.00,56.9740,-18.775066,0.000533,,,,,71 +SATSLF0720,2024246,7.761141,4.09,0.0573,0.1026,0.0174,0.00,16164,645,1,702,705,698,704,720,702,715,729,716,723,727,743,773,904,1222,1954,3139,4516,5755,6693,7329,7803,8228,8681,9197,9817,10563,11434,12439,13545,14725,15869,16998,17945,18693,19121,19258,19079,18699,18169,17574,17018,16550,16167,15947,15873,15953,16200,16623,17197,17955,18853,19926,21149,22466,23925,25402,26890,28321,29586,30581,31310,31715,31717,31381,30736,29824,28762,27527,26341,25177,24098,23098,22222,21490,20865,20393,19997,19723,19553,19459,19483,19578,19781,20032,20369,20796,21321,21890,22526,23176,23820,24443,25017,25498,25848,26119,26171,26052,25774,25285,24654,23930,23132,22267,21389,20530,19767,19068,18417,17849,17387,16977,16653,16395,16232,16114,16074,16094,16194,16361,16585,16890,17257,17680,18167,18736,19337,19986,20672,21385,22149,22898,23608,24317,24965,25554,26131,26565,26882,27118,27223,27246,27146,26932,26612,26205,25709,25139,24570,23925,23271,22627,21972,21325,20696,20115,19564,19069,18602,18176,17799,17481,17194,16924,16682,16477,16279,16083,15897,15707,15541,15390,15287,15185,15113,15032,14994,14978,14971,14979,15009,15019,15067,15093,15127,15179,15238,15254,15270,15270,15279,15294,15314,15321,15326,15276,15194,15141,15081,14982,14887,14745,14593,14429,14235,14025,13817,13561,13295,13033,12740,12448,12160,11862,11588,11318,11050,10826,10572,10309,10013,9677,9368,9090,8850,8629,8460,8297,8164,8066,7984,7917,7871,7795,7719,7573,7414,7252,7130,7005,6914,6826,6755,6715,6672,6653,6633,6619,6626,6636,6630,6496,6185,5749,5124,21.5,21.5,22.1,1567956,1.3,12.1,11.9,5.0,470,-1.00,-1.00,57.4929,-18.965576,0.000550,,,,,180 +SATSLF0720,2024246,7.761400,4.15,0.0581,0.1018,0.0169,0.00,16190,645,1,719,709,731,712,735,722,715,714,721,723,739,738,779,892,1209,1964,3148,4543,5794,6721,7356,7815,8239,8691,9213,9829,10587,11477,12453,13563,14769,15934,17049,18020,18754,19178,19318,19109,18743,18190,17611,17033,16585,16220,15981,15926,16006,16245,16667,17228,17981,18886,19973,21193,22513,23979,25448,26950,28368,29630,30635,31384,31777,31771,31457,30785,29867,28814,27566,26385,25210,24121,23117,22267,21520,20903,20413,20024,19746,19584,19493,19495,19589,19787,20050,20404,20841,21358,21922,22530,23211,23857,24474,25057,25531,25894,26153,26203,26093,25793,25323,24694,23968,23159,22285,21419,20565,19784,19078,18434,17873,17389,16995,16672,16427,16237,16146,16104,16121,16209,16388,16610,16915,17291,17717,18193,18763,19376,20001,20693,21416,22169,22918,23636,24336,25005,25612,26184,26601,26924,27163,27275,27285,27197,26974,26652,26236,25737,25168,24584,23957,23309,22656,21982,21344,20731,20141,19577,19088,18603,18204,17830,17508,17216,16950,16717,16510,16303,16110,15927,15744,15565,15424,15299,15190,15122,15060,15012,14993,14991,15003,15030,15057,15085,15121,15163,15210,15261,15277,15284,15302,15310,15328,15346,15347,15322,15259,15210,15155,15081,15011,14906,14772,14619,14445,14249,14048,13824,13593,13329,13070,12772,12485,12190,11887,11591,11328,11077,10827,10598,10325,10023,9706,9395,9125,8864,8657,8481,8327,8192,8091,8010,7952,7890,7826,7733,7589,7413,7273,7137,7025,6921,6845,6776,6715,6679,6657,6651,6634,6629,6657,6648,6489,6181,5743,5121,21.5,21.5,22.1,1567957,0.2,12.1,11.9,5.0,479,-1.00,-1.00,56.8647,-18.737488,0.000548,,,,,97 +SATSLF0720,2024246,7.761654,4.29,0.0601,0.1027,0.0176,0.00,16164,645,1,695,691,692,709,709,712,723,709,727,734,729,729,764,879,1205,1947,3133,4525,5785,6709,7349,7824,8245,8690,9198,9827,10561,11451,12436,13557,14729,15910,17017,17970,18701,19126,19267,19086,18696,18167,17589,17013,16563,16197,15965,15886,15972,16218,16628,17206,17957,18874,19934,21144,22480,23937,25416,26899,28320,29577,30579,31309,31713,31713,31378,30729,29803,28744,27523,26332,25172,24101,23085,22224,21485,20861,20384,19980,19694,19542,19454,19464,19575,19778,20021,20369,20824,21337,21901,22517,23189,23826,24441,25018,25485,25853,26122,26171,26058,25768,25287,24650,23937,23127,22251,21395,20528,19765,19055,18401,17840,17376,16949,16633,16387,16219,16123,16074,16112,16189,16349,16573,16881,17262,17681,18170,18734,19349,19970,20675,21394,22141,22885,23595,24310,24949,25559,26124,26545,26873,27100,27223,27233,27140,26910,26598,26202,25706,25152,24553,23917,23272,22624,21950,21314,20697,20097,19553,19045,18574,18171,17801,17467,17194,16921,16679,16488,16274,16085,15897,15702,15545,15386,15271,15178,15101,15033,15000,14986,14982,14978,15015,15040,15074,15101,15120,15189,15252,15253,15273,15278,15279,15297,15329,15319,15312,15266,15199,15134,15065,14981,14883,14743,14596,14427,14242,14041,13810,13567,13300,13045,12763,12461,12163,11861,11575,11306,11057,10814,10583,10325,10010,9683,9383,9100,8853,8629,8464,8302,8169,8085,8000,7931,7893,7822,7733,7580,7408,7256,7106,6995,6904,6829,6765,6709,6672,6664,6656,6641,6635,6645,6627,6486,6154,5742,5123,21.5,21.6,22.2,1567958,0.5,12.1,11.9,5.0,483,-1.00,-1.00,56.3278,-18.478008,0.000501,,,,,63 +SATSLF0720,2024246,7.761906,4.17,0.0585,0.1038,0.0179,0.00,16137,645,1,692,699,697,697,711,711,715,713,709,712,705,728,765,889,1212,1951,3138,4505,5744,6671,7318,7785,8205,8649,9168,9793,10546,11400,12403,13502,14691,15854,16951,17920,18648,19072,19232,19042,18654,18114,17527,16961,16503,16133,15907,15846,15924,16178,16572,17172,17910,18823,19895,21093,22423,23866,25344,26838,28244,29501,30510,31236,31655,31653,31316,30656,29750,28685,27460,26265,25112,24022,23035,22181,21448,20845,20346,19958,19675,19509,19408,19440,19537,19729,19984,20340,20762,21284,21840,22472,23143,23796,24397,24990,25450,25824,26077,26121,26004,25728,25244,24629,23892,23097,22229,21353,20501,19744,19029,18385,17810,17346,16941,16618,16374,16204,16107,16060,16087,16161,16333,16572,16861,17227,17652,18135,18705,19312,19955,20646,21371,22124,22860,23576,24292,24954,25540,26092,26517,26855,27076,27195,27217,27106,26894,26567,26172,25670,25104,24525,23895,23252,22584,21925,21293,20681,20084,19515,19046,18554,18154,17782,17448,17161,16910,16666,16473,16249,16054,15873,15685,15517,15370,15261,15179,15091,15023,14987,14969,14960,14957,14995,15019,15053,15088,15109,15163,15214,15227,15240,15253,15257,15296,15303,15293,15304,15257,15188,15122,15051,14958,14862,14712,14578,14408,14211,14010,13793,13555,13297,13026,12741,12432,12152,11853,11565,11304,11045,10808,10578,10311,9990,9690,9381,9082,8847,8637,8462,8293,8167,8074,7993,7920,7871,7797,7719,7579,7408,7252,7121,7009,6901,6825,6765,6705,6673,6642,6641,6610,6603,6624,6624,6469,6150,5739,5122,21.5,21.6,22.2,1567959,0.6,12.1,12.0,5.0,477,-1.00,-1.00,57.2359,-18.814530,0.000572,,,,,195 +SATSLF0720,2024246,7.762162,4.10,0.0574,0.1032,0.0178,0.00,16158,645,1,687,681,697,712,713,712,713,727,725,725,725,742,769,869,1221,1947,3137,4523,5776,6692,7337,7816,8237,8690,9202,9811,10551,11435,12427,13550,14734,15893,17015,17979,18701,19147,19285,19080,18710,18161,17575,17005,16541,16180,15947,15879,15963,16204,16611,17199,17948,18869,19928,21161,22465,23913,25419,26898,28311,29575,30561,31312,31699,31706,31387,30724,29813,28733,27505,26315,25156,24069,23077,22205,21475,20875,20372,19989,19701,19531,19434,19450,19564,19763,20013,20349,20794,21319,21872,22494,23162,23819,24448,25005,25501,25852,26118,26183,26061,25772,25282,24631,23897,23099,22235,21377,20517,19769,19048,18405,17838,17356,16956,16626,16390,16214,16116,16073,16090,16192,16344,16579,16874,17231,17683,18165,18729,19338,19964,20664,21374,22131,22869,23591,24284,24941,25546,26114,26548,26864,27109,27216,27216,27143,26913,26586,26187,25702,25140,24545,23920,23277,22619,21946,21310,20693,20084,19527,19045,18574,18164,17804,17460,17185,16898,16681,16456,16266,16090,15883,15705,15536,15393,15278,15177,15090,15015,14980,14967,14969,14980,14998,15025,15058,15102,15125,15176,15221,15243,15251,15271,15278,15302,15317,15326,15309,15261,15188,15127,15064,14971,14884,14743,14600,14423,14231,14016,13800,13562,13297,13020,12745,12455,12173,11853,11570,11305,11059,10818,10583,10320,10003,9683,9373,9098,8843,8640,8475,8311,8177,8078,8001,7929,7866,7803,7732,7577,7399,7246,7115,7005,6913,6822,6765,6698,6664,6644,6639,6621,6618,6637,6636,6478,6166,5742,5129,21.5,21.6,22.2,1567960,0.1,12.2,11.9,5.0,480,-1.00,-1.00,57.0478,-18.772944,0.000618,,,,,90 +SATSLF0720,2024246,7.762416,4.26,0.0597,0.1036,0.0183,0.00,16130,645,1,709,709,721,710,713,711,714,719,718,724,715,733,768,886,1234,1974,3157,4532,5776,6710,7346,7818,8232,8659,9187,9805,10541,11424,12424,13529,14724,15880,16979,17939,18675,19104,19237,19041,18658,18126,17532,16969,16506,16140,15917,15847,15941,16178,16603,17177,17918,18839,19901,21122,22445,23876,25355,26833,28263,29499,30507,31243,31651,31639,31313,30674,29737,28681,27463,26269,25097,24019,23031,22168,21449,20826,20354,19947,19657,19511,19415,19428,19524,19722,19972,20315,20747,21265,21845,22457,23126,23773,24385,24956,25433,25790,26065,26126,26007,25720,25252,24605,23881,23085,22224,21349,20498,19736,19025,18376,17805,17339,16935,16606,16354,16189,16090,16034,16065,16149,16323,16555,16838,17216,17635,18137,18698,19301,19930,20628,21349,22099,22828,23554,24250,24906,25501,26065,26487,26817,27059,27152,27169,27076,26868,26543,26146,25664,25081,24507,23881,23221,22564,21892,21258,20662,20056,19501,19004,18546,18145,17774,17437,17155,16891,16657,16448,16243,16049,15861,15682,15493,15355,15251,15159,15083,14989,14946,14951,14953,14949,14968,15001,15041,15081,15101,15168,15205,15223,15228,15239,15243,15267,15265,15275,15274,15225,15159,15111,15057,14962,14857,14714,14580,14389,14203,13993,13779,13541,13281,13001,12724,12421,12150,11850,11573,11297,11041,10791,10566,10294,9995,9655,9359,9077,8826,8625,8436,8299,8154,8066,8000,7917,7863,7781,7703,7571,7392,7249,7104,7003,6894,6802,6746,6685,6654,6651,6637,6624,6609,6624,6618,6458,6169,5718,5115,21.5,21.6,22.2,1567961,0.0,12.1,12.0,5.0,478,-1.00,-1.00,56.6056,-18.554131,0.000565,,,,,115 +SATSLF0720,2024246,7.762667,4.30,0.0602,0.1045,0.0187,0.00,16095,645,1,719,716,713,728,713,707,719,718,721,721,734,749,770,889,1210,1955,3143,4516,5751,6680,7299,7777,8195,8636,9159,9774,10503,11375,12382,13481,14637,15813,16933,17881,18590,19028,19162,18977,18593,18062,17456,16904,16471,16102,15880,15812,15901,16131,16544,17111,17863,18764,19824,21038,22354,23811,25285,26762,28176,29429,30442,31184,31557,31571,31239,30569,29668,28601,27370,26199,25033,23957,22973,22118,21377,20774,20293,19915,19621,19457,19377,19393,19488,19662,19928,20291,20706,21230,21785,22409,23073,23719,24321,24906,25380,25740,26011,26071,25945,25658,25178,24556,23815,23025,22165,21285,20442,19680,18996,18336,17773,17296,16890,16581,16330,16161,16061,16014,16045,16125,16306,16526,16813,17173,17616,18090,18672,19265,19909,20600,21313,22045,22787,23477,24183,24856,25455,26008,26451,26765,27001,27113,27115,27040,26810,26488,26100,25605,25040,24448,23814,23168,22526,21853,21224,20613,20025,19477,18989,18519,18110,17741,17407,17123,16862,16616,16408,16215,16033,15825,15645,15469,15339,15210,15120,15034,14969,14937,14928,14923,14918,14949,14969,14999,15053,15093,15125,15188,15207,15198,15214,15221,15244,15265,15269,15269,15227,15148,15097,15009,14920,14826,14693,14523,14355,14177,13961,13761,13526,13245,12983,12710,12413,12120,11821,11528,11261,11015,10773,10551,10278,9988,9668,9362,9072,8828,8617,8433,8287,8146,8041,7971,7907,7862,7794,7688,7555,7382,7225,7101,6999,6885,6823,6744,6685,6653,6635,6625,6621,6607,6630,6618,6470,6167,5731,5115,21.5,21.6,22.2,1567961,0.0,12.1,11.9,5.0,479,-1.00,-1.00,56.9740,-18.656384,0.000597,,,,,165 +SATSLF0720,2024246,7.762923,4.28,0.0599,0.1047,0.0194,0.00,16095,645,1,697,699,700,696,713,702,721,720,732,742,725,747,775,899,1226,1963,3133,4507,5749,6665,7297,7785,8205,8638,9163,9789,10521,11380,12389,13505,14678,15848,16941,17891,18602,19035,19156,18990,18608,18081,17496,16942,16485,16106,15895,15814,15912,16147,16548,17125,17864,18760,19839,21043,22358,23808,25282,26766,28186,29421,30421,31181,31574,31570,31236,30597,29672,28622,27380,26187,25044,23960,22967,22118,21390,20786,20288,19894,19618,19456,19366,19377,19461,19667,19929,20265,20696,21221,21776,22416,23061,23719,24329,24909,25370,25747,26005,26057,25925,25645,25171,24541,23818,23036,22172,21287,20466,19684,18985,18315,17761,17297,16881,16590,16333,16167,16053,16002,16022,16098,16267,16517,16808,17181,17605,18099,18649,19282,19901,20587,21310,22048,22778,23495,24213,24861,25459,26020,26441,26752,27007,27113,27129,27026,26807,26507,26088,25598,25030,24433,23806,23185,22518,21853,21233,20631,20028,19478,18981,18509,18108,17734,17412,17109,16837,16604,16392,16215,16016,15821,15625,15483,15333,15233,15133,15063,14985,14946,14917,14918,14914,14955,14965,14986,15032,15066,15123,15179,15195,15205,15214,15214,15234,15254,15253,15249,15191,15136,15075,15006,14932,14825,14690,14545,14373,14186,13970,13743,13504,13253,12978,12693,12403,12109,11819,11530,11281,11019,10788,10533,10279,9976,9661,9358,9061,8819,8605,8433,8281,8149,8053,7986,7909,7860,7796,7705,7547,7392,7228,7107,6980,6893,6809,6743,6685,6648,6619,6612,6605,6604,6618,6609,6462,6158,5727,5102,21.5,21.6,22.2,1567962,0.0,12.1,11.9,5.0,476,-1.00,-1.00,56.6820,-18.536692,0.000516,,,,,56 +SATSLF0720,2024246,7.763177,4.17,0.0585,0.1052,0.0188,0.00,16090,645,1,699,697,698,691,696,701,698,717,721,733,718,729,769,875,1211,1953,3136,4509,5736,6653,7299,7772,8182,8631,9149,9770,10521,11392,12380,13494,14657,15828,16925,17877,18596,19028,19153,18974,18613,18074,17484,16928,16461,16100,15890,15801,15871,16123,16532,17101,17865,18769,19837,21042,22359,23814,25280,26763,28180,29430,30420,31149,31555,31563,31229,30587,29667,28613,27380,26209,25040,23970,22957,22105,21376,20761,20284,19885,19604,19453,19346,19366,19463,19664,19918,20270,20699,21226,21797,22391,23065,23702,24315,24898,25346,25730,25990,26053,25934,25649,25177,24541,23829,23029,22156,21306,20450,19673,18968,18326,17752,17287,16899,16586,16337,16174,16054,16007,16040,16122,16286,16512,16808,17162,17597,18094,18668,19269,19892,20595,21325,22053,22777,23494,24203,24851,25443,25995,26435,26754,26990,27092,27128,27026,26807,26489,26091,25605,25034,24448,23817,23159,22519,21856,21224,20603,20027,19460,18971,18493,18090,17730,17390,17121,16859,16618,16398,16194,16004,15819,15635,15469,15321,15218,15120,15025,14971,14928,14913,14901,14915,14937,14962,14995,15051,15078,15140,15189,15197,15202,15211,15214,15221,15235,15253,15254,15194,15137,15092,15017,14918,14823,14693,14541,14366,14188,13989,13748,13523,13258,12990,12698,12413,12113,11823,11542,11270,11021,10775,10541,10270,9965,9652,9333,9067,8809,8595,8435,8281,8153,8050,7982,7905,7846,7777,7683,7552,7373,7221,7099,6988,6889,6795,6745,6690,6644,6635,6619,6596,6590,6615,6597,6464,6153,5725,5113,21.5,21.7,22.3,1567963,0.7,12.2,12.0,5.0,476,-1.00,-1.00,57.3928,-18.830665,0.000555,,,,,13 +SATSLF0720,2024246,7.763428,4.10,0.0575,0.1055,0.0203,0.00,16056,645,1,694,697,696,706,710,715,710,733,720,711,711,735,764,869,1219,1953,3127,4506,5750,6664,7288,7767,8181,8629,9132,9741,10488,11357,12339,13452,14629,15781,16878,17837,18548,18989,19121,18948,18571,18036,17457,16877,16414,16071,15846,15760,15843,16102,16498,17079,17802,18716,19776,20998,22310,23750,25219,26690,28104,29357,30356,31098,31497,31485,31161,30500,29586,28544,27323,26133,24969,23894,22903,22050,21335,20716,20247,19854,19582,19409,19333,19323,19422,19618,19876,20219,20657,21172,21736,22352,23019,23658,24274,24862,25317,25699,25944,25995,25873,25581,25107,24481,23760,22973,22098,21253,20381,19634,18936,18281,17731,17265,16868,16556,16282,16110,16017,15966,15991,16087,16241,16471,16777,17139,17570,18064,18633,19234,19873,20538,21275,21998,22741,23437,24145,24794,25398,25949,26379,26701,26946,27052,27074,26977,26770,26429,26023,25537,24976,24387,23753,23113,22455,21816,21186,20578,19992,19444,18941,18472,18065,17706,17370,17079,16813,16576,16372,16165,15990,15785,15616,15438,15309,15177,15102,15017,14925,14890,14878,14885,14877,14920,14933,14979,15030,15056,15092,15137,15159,15168,15178,15178,15194,15215,15212,15217,15158,15100,15045,14977,14885,14810,14661,14502,14343,14148,13933,13729,13489,13214,12957,12667,12387,12107,11808,11532,11238,10987,10748,10514,10246,9958,9627,9319,9051,8793,8578,8407,8256,8146,8038,7952,7891,7822,7771,7686,7533,7362,7222,7092,6965,6866,6801,6725,6667,6646,6621,6613,6586,6582,6612,6597,6449,6149,5723,5099,21.6,21.7,22.3,1567964,0.0,12.1,12.0,5.0,478,-1.00,-1.00,57.6014,-18.872381,0.000577,,,,,191 +SATSLF0720,2024246,7.763684,4.25,0.0595,0.1051,0.0197,0.00,16083,645,1,706,711,712,722,712,712,719,731,721,734,741,749,777,896,1220,1961,3149,4513,5748,6658,7295,7773,8172,8627,9131,9767,10497,11365,12358,13464,14645,15801,16897,17842,18554,18999,19125,18949,18577,18042,17465,16905,16441,16066,15863,15784,15863,16113,16510,17083,17831,18745,19796,21017,22338,23770,25248,26726,28137,29376,30381,31121,31508,31517,31179,30537,29613,28574,27345,26157,25010,23915,22923,22069,21332,20736,20255,19870,19587,19435,19348,19349,19458,19633,19895,20249,20676,21195,21765,22381,23049,23692,24304,24870,25339,25713,25977,26041,25905,25639,25168,24522,23809,23002,22137,21271,20432,19670,18961,18309,17754,17276,16887,16573,16318,16148,16043,16008,16032,16121,16271,16507,16801,17161,17597,18080,18660,19257,19889,20577,21320,22037,22767,23493,24196,24841,25432,26000,26426,26744,26999,27101,27098,27022,26811,26491,26090,25601,25032,24444,23824,23175,22526,21841,21210,20602,19997,19464,18961,18490,18097,17744,17413,17120,16846,16615,16408,16208,16013,15830,15637,15475,15345,15225,15125,15046,14984,14930,14923,14920,14925,14945,14966,14999,15033,15065,15127,15189,15201,15211,15225,15229,15252,15269,15261,15252,15197,15136,15065,15008,14922,14819,14707,14547,14379,14185,13975,13768,13514,13258,12999,12714,12405,12126,11815,11536,11258,11035,10772,10543,10267,9977,9657,9345,9063,8810,8609,8440,8281,8146,8053,7973,7909,7855,7789,7691,7554,7386,7221,7111,6999,6905,6823,6761,6697,6660,6637,6632,6609,6598,6627,6620,6462,6150,5724,5118,21.6,21.7,22.3,1567965,0.0,12.2,12.0,5.0,470,-1.00,-1.00,57.1372,-18.696445,0.000542,,,,,135 +SATSLF0720,2024246,7.763939,4.06,0.0569,0.1064,0.0203,0.00,16048,645,1,709,705,694,705,688,703,705,715,730,735,737,737,763,890,1215,1946,3111,4480,5718,6645,7274,7758,8168,8617,9121,9743,10472,11329,12320,13428,14608,15761,16849,17803,18514,18943,19077,18903,18525,18009,17414,16852,16391,16016,15795,15738,15822,16050,16453,17041,17783,18673,19747,20954,22266,23708,25165,26650,28050,29302,30294,31045,31445,31434,31117,30456,29533,28503,27273,26101,24939,23863,22880,22026,21294,20700,20205,19799,19534,19381,19296,19294,19395,19585,19848,20189,20616,21121,21703,22322,22992,23630,24245,24828,25298,25640,25911,25955,25848,25576,25104,24473,23754,22949,22081,21226,20394,19622,18944,18280,17717,17252,16835,16519,16280,16114,16006,15966,15994,16088,16249,16470,16770,17124,17556,18046,18610,19227,19860,20544,21257,22000,22722,23448,24137,24780,25385,25949,26381,26693,26937,27038,27037,26976,26765,26440,26045,25552,24989,24397,23752,23114,22465,21798,21182,20569,19998,19440,18938,18468,18053,17691,17376,17089,16808,16582,16368,16173,15991,15805,15629,15449,15311,15181,15094,15020,14945,14897,14891,14893,14898,14932,14938,14984,15024,15048,15099,15166,15193,15194,15195,15190,15218,15229,15225,15218,15173,15106,15043,14993,14898,14809,14675,14532,14357,14155,13950,13728,13491,13227,12973,12693,12405,12113,11801,11519,11260,11003,10772,10524,10264,9957,9645,9342,9053,8818,8614,8441,8280,8131,8034,7961,7879,7829,7781,7689,7548,7373,7213,7097,6996,6892,6805,6730,6677,6651,6637,6618,6609,6603,6624,6615,6457,6155,5725,5111,21.5,21.7,22.3,1567966,0.5,12.1,11.9,5.0,465,-1.00,-1.00,58.1783,-19.081977,0.000589,,,,,38 +SATSLF0720,2024246,7.764191,4.36,0.0610,0.1065,0.0206,0.00,16043,645,1,712,702,713,711,709,690,703,704,714,711,711,737,773,880,1209,1954,3113,4490,5721,6635,7259,7728,8144,8584,9100,9726,10451,11321,12312,13413,14583,15738,16841,17781,18503,18931,19063,18886,18519,17978,17400,16840,16385,16025,15810,15734,15818,16064,16473,17044,17785,18690,19744,20960,22268,23689,25168,26640,28048,29293,30283,31029,31424,31428,31108,30441,29531,28471,27255,26087,24935,23869,22870,22029,21305,20685,20209,19805,19529,19379,19290,19302,19405,19602,19858,20221,20624,21149,21724,22329,23002,23634,24242,24823,25299,25659,25912,25980,25861,25588,25108,24469,23745,22949,22093,21229,20393,19629,18937,18288,17714,17243,16840,16519,16279,16114,16010,15964,15985,16084,16237,16465,16768,17141,17549,18051,18617,19229,19865,20537,21250,21990,22717,23437,24129,24793,25380,25938,26388,26693,26933,27033,27054,26957,26743,26429,26032,25530,24979,24384,23754,23101,22455,21798,21165,20552,19976,19419,18931,18464,18066,17703,17381,17090,16818,16576,16371,16170,15993,15789,15600,15445,15302,15187,15092,15015,14948,14906,14880,14899,14891,14917,14932,14971,15011,15044,15099,15147,15170,15186,15203,15209,15208,15227,15227,15220,15173,15109,15035,14969,14887,14793,14657,14516,14349,14153,13950,13733,13493,13228,12956,12679,12372,12085,11803,11518,11249,11003,10755,10525,10258,9963,9630,9329,9045,8809,8596,8433,8265,8136,8049,7966,7897,7834,7774,7672,7543,7373,7213,7081,6967,6883,6796,6717,6666,6632,6615,6602,6585,6602,6612,6608,6443,6155,5725,5114,21.6,21.8,22.4,1567967,0.5,12.1,12.0,5.0,475,-1.00,-1.00,57.0338,-18.598930,0.000515,,,,,122 +SATSLF0720,2024246,7.764446,4.31,0.0603,0.1095,0.0219,0.00,15936,645,1,701,703,711,713,711,706,702,720,713,723,725,739,775,888,1197,1930,3080,4429,5647,6545,7169,7655,8077,8509,9020,9620,10352,11210,12174,13268,14428,15565,16652,17606,18311,18745,18875,18707,18345,17812,17236,16680,16230,15861,15641,15574,15662,15909,16332,16890,17641,18534,19584,20775,22062,23505,24970,26413,27812,29041,30030,30762,31161,31170,30841,30192,29314,28266,27049,25880,24734,23659,22688,21838,21117,20515,20055,19658,19394,19240,19161,19156,19255,19434,19700,20053,20464,21003,21549,22157,22822,23462,24066,24645,25117,25484,25750,25794,25665,25393,24933,24285,23586,22800,21920,21056,20230,19481,18789,18157,17605,17134,16725,16409,16166,15988,15904,15869,15893,15977,16143,16361,16644,17015,17445,17924,18496,19084,19726,20410,21113,21871,22601,23303,23985,24641,25241,25792,26220,26539,26785,26882,26893,26797,26586,26263,25867,25397,24842,24234,23617,22982,22342,21674,21048,20461,19865,19319,18822,18354,17974,17594,17273,17000,16722,16494,16294,16077,15911,15708,15529,15359,15220,15105,15016,14945,14874,14822,14815,14809,14818,14835,14881,14900,14941,14982,15037,15088,15105,15114,15110,15112,15129,15160,15154,15146,15101,15045,14992,14908,14824,14727,14589,14442,14265,14083,13871,13666,13424,13168,12902,12621,12330,12053,11746,11464,11201,10949,10720,10487,10218,9923,9595,9293,8997,8754,8557,8394,8244,8105,8008,7920,7850,7819,7757,7641,7520,7328,7179,7050,6956,6849,6771,6702,6635,6607,6578,6570,6569,6553,6576,6573,6418,6127,5702,5081,21.6,21.8,22.4,1567968,0.0,12.1,12.0,5.0,475,-1.00,-1.00,58.5692,-19.088937,0.000585,,,,,219 +SATSDF0720,2024246,8.009138,0.00,0.0000,0.0000,0.0000,0.00,644,0,1,637,615,615,615,615,612,625,624,610,620,613,615,621,622,634,624,636,634,629,624,627,627,633,649,663,660,653,657,661,663,653,641,629,635,637,644,647,652,652,645,656,643,649,653,657,653,645,653,642,651,643,641,644,647,638,643,638,649,644,645,646,646,649,644,644,654,665,661,649,653,647,653,641,649,642,651,633,650,641,652,638,632,647,633,655,660,645,651,646,645,644,646,641,632,643,653,657,645,644,647,646,642,645,637,646,645,642,632,639,643,653,656,664,653,651,632,643,645,643,651,642,662,648,643,640,639,635,639,622,622,638,634,627,642,633,631,642,650,645,643,651,638,642,652,647,639,647,653,653,656,642,651,649,648,649,640,637,652,650,643,646,646,641,659,649,640,635,646,651,654,644,652,653,645,647,649,653,655,644,643,641,638,645,652,645,643,647,647,652,645,644,651,638,638,645,637,647,646,636,643,641,654,650,645,642,635,639,653,657,648,649,652,644,636,633,637,651,648,651,649,646,642,662,644,651,645,647,633,641,658,649,649,646,644,639,653,646,648,632,635,641,640,657,653,653,653,645,641,641,637,641,634,656,646,648,483,0.0,0.0,0.0,1567967,0.1,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,191 +SATSLF0720,2024246,8.009696,4.10,0.0574,0.0998,0.0158,0.00,16249,644,1,684,680,682,695,697,685,699,692,687,711,722,722,763,869,1208,1964,3161,4560,5812,6738,7387,7859,8275,8730,9258,9895,10643,11523,12529,13650,14838,16027,17139,18103,18827,19286,19425,19233,18856,18297,17703,17134,16664,16294,16066,15995,16080,16332,16740,17337,18084,18997,20068,21299,22616,24103,25578,27096,28517,29778,30779,31538,31936,31934,31610,30933,30011,28945,27705,26502,25342,24259,23253,22369,21632,21010,20530,20117,19827,19670,19578,19581,19695,19875,20163,20506,20960,21465,22037,22661,23302,23947,24572,25157,25627,26004,26274,26322,26187,25906,25422,24779,24055,23249,22374,21480,20658,19872,19168,18498,17946,17465,17048,16729,16472,16285,16191,16147,16157,16250,16421,16647,16964,17335,17765,18267,18848,19445,20092,20777,21510,22263,23020,23729,24436,25097,25700,26259,26688,27017,27259,27361,27377,27287,27066,26733,26341,25849,25270,24669,24036,23386,22710,22045,21428,20790,20206,19674,19157,18675,18266,17892,17563,17269,17011,16750,16561,16346,16164,15957,15769,15592,15467,15353,15259,15169,15096,15067,15045,15046,15044,15073,15101,15129,15165,15202,15252,15305,15310,15322,15333,15335,15363,15376,15369,15369,15315,15250,15191,15117,15029,14940,14800,14654,14489,14289,14074,13861,13601,13354,13093,12810,12505,12194,11905,11620,11341,11093,10855,10613,10353,10045,9717,9411,9136,8880,8652,8487,8335,8206,8113,8022,7955,7908,7842,7741,7603,7429,7273,7137,7025,6933,6841,6775,6731,6704,6674,6659,6633,6641,6665,6650,6490,6186,5738,5119,21.4,21.4,21.9,1567968,0.1,12.2,12.0,5.0,599,-1.00,-1.00,56.4372,-18.650164,0.000567,,,,,70 +SATSLF0720,2024246,8.009878,4.14,0.0580,0.1005,0.0157,0.00,16235,644,1,693,695,701,697,708,712,719,711,722,721,718,722,763,894,1217,1981,3161,4564,5789,6729,7369,7850,8282,8724,9249,9861,10617,11507,12517,13621,14813,16004,17090,18063,18789,19223,19358,19171,18802,18262,17666,17114,16630,16272,16048,15973,16049,16295,16701,17289,18044,18958,20029,21257,22571,24036,25531,27041,28459,29723,30714,31475,31884,31874,31549,30896,29980,28916,27675,26466,25292,24204,23187,22339,21593,20968,20480,20091,19811,19649,19549,19584,19668,19860,20117,20459,20903,21430,22011,22641,23289,23943,24554,25138,25610,25978,26231,26288,26164,25882,25386,24756,24025,23221,22352,21481,20627,19850,19143,18487,17902,17443,17030,16709,16454,16297,16189,16154,16172,16251,16430,16653,16943,17325,17752,18236,18805,19415,20060,20753,21488,22240,22982,23707,24408,25072,25682,26249,26685,26990,27250,27347,27367,27265,27053,26725,26327,25821,25253,24670,24029,23356,22695,22043,21413,20808,20197,19638,19144,18672,18248,17895,17556,17261,16994,16748,16544,16335,16141,15941,15765,15600,15451,15339,15240,15168,15093,15061,15018,15033,15029,15058,15091,15141,15176,15206,15254,15312,15310,15333,15312,15329,15355,15377,15365,15362,15335,15264,15195,15128,15029,14934,14793,14636,14472,14269,14077,13850,13620,13342,13075,12802,12512,12224,11912,11626,11357,11101,10854,10617,10342,10048,9712,9413,9124,8873,8669,8503,8333,8208,8113,8021,7966,7913,7850,7757,7601,7431,7268,7155,7049,6937,6844,6791,6721,6691,6665,6661,6642,6630,6649,6645,6500,6200,5768,5156,21.4,21.4,21.9,1567969,0.7,12.1,11.9,5.0,493,-1.00,-1.00,56.8171,-18.778702,0.000461,,,,,196 +SATSLF0720,2024246,8.010133,4.27,0.0599,0.1006,0.0165,0.00,16219,644,1,700,703,699,696,693,701,712,709,712,711,725,734,776,879,1229,1978,3163,4548,5803,6716,7364,7841,8253,8706,9223,9865,10610,11477,12490,13612,14786,15961,17079,18048,18782,19213,19342,19149,18779,18248,17650,17097,16635,16265,16018,15943,16023,16278,16694,17275,18031,18945,20017,21255,22586,24029,25527,27024,28449,29693,30711,31451,31854,31848,31528,30870,29944,28864,27625,26439,25256,24188,23184,22317,21582,20961,20481,20090,19801,19636,19544,19555,19650,19848,20116,20457,20881,21406,21987,22593,23270,23915,24525,25101,25577,25952,26210,26264,26146,25876,25385,24738,24020,23209,22325,21435,20590,19825,19127,18453,17892,17426,17031,16685,16445,16276,16169,16128,16163,16238,16407,16648,16939,17312,17728,18218,18797,19390,20032,20737,21456,22208,22956,23688,24397,25057,25643,26219,26652,26982,27226,27320,27333,27255,27017,26704,26293,25798,25225,24633,23988,23335,22688,22013,21376,20763,20163,19610,19113,18647,18240,17873,17532,17242,16971,16733,16526,16325,16142,15950,15755,15582,15443,15325,15225,15149,15073,15040,15014,15008,15031,15053,15065,15113,15153,15179,15226,15275,15294,15303,15319,15321,15352,15367,15363,15361,15296,15249,15169,15110,15008,14914,14781,14629,14453,14269,14058,13836,13597,13338,13064,12779,12489,12186,11897,11613,11330,11068,10834,10604,10337,10029,9708,9389,9116,8882,8656,8493,8328,8196,8103,8013,7953,7890,7827,7747,7605,7435,7269,7150,7026,6930,6852,6777,6723,6688,6677,6645,6638,6643,6645,6637,6473,6170,5750,5129,21.4,21.4,21.9,1567970,0.7,12.1,11.9,5.0,486,-1.00,-1.00,56.3180,-18.554690,0.000580,,,,,110 +SATSLF0720,2024246,8.010386,4.09,0.0572,0.1014,0.0170,0.00,16207,644,1,673,692,690,683,724,713,715,715,720,715,720,725,750,867,1209,1964,3149,4533,5789,6713,7359,7844,8267,8706,9221,9863,10600,11462,12480,13592,14779,15951,17073,18038,18782,19205,19351,19164,18770,18247,17650,17073,16599,16238,15989,15922,16007,16271,16672,17264,18027,18944,20017,21233,22569,24017,25514,26992,28430,29686,30699,31435,31848,31836,31508,30857,29940,28858,27612,26422,25265,24180,23163,22305,21561,20952,20461,20057,19779,19609,19511,19527,19623,19834,20077,20439,20871,21409,21966,22592,23249,23909,24521,25081,25565,25926,26205,26242,26130,25849,25354,24720,23988,23170,22314,21436,20587,19823,19101,18459,17884,17434,16996,16679,16422,16267,16156,16127,16136,16229,16392,16621,16929,17296,17728,18214,18786,19405,20048,20710,21462,22201,22946,23673,24382,25041,25634,26196,26625,26945,27207,27302,27317,27225,27003,26677,26274,25771,25213,24633,23991,23336,22679,22016,21355,20759,20158,19595,19111,18636,18227,17845,17520,17242,16960,16739,16522,16326,16125,15923,15747,15582,15430,15311,15215,15140,15073,15021,15022,15027,15013,15036,15064,15109,15144,15178,15222,15271,15287,15283,15310,15297,15321,15351,15345,15334,15284,15216,15151,15091,15001,14906,14768,14616,14451,14273,14029,13830,13581,13321,13061,12772,12471,12170,11865,11587,11313,11074,10826,10599,10314,10011,9691,9384,9094,8853,8646,8475,8329,8193,8075,8004,7929,7872,7811,7730,7586,7422,7269,7137,7027,6929,6841,6768,6711,6679,6662,6645,6629,6613,6645,6629,6482,6173,5735,5121,21.4,21.4,22.0,1567971,0.4,12.2,12.0,5.0,475,-1.00,-1.00,57.1396,-18.888211,0.000668,,,,,246 +SATSLF0720,2024246,8.010640,4.07,0.0571,0.1013,0.0167,0.00,16200,644,1,681,687,694,706,696,695,701,707,728,740,734,748,774,896,1205,1953,3144,4538,5785,6723,7362,7825,8253,8708,9227,9851,10592,11479,12485,13590,14787,15954,17058,18025,18742,19194,19329,19146,18753,18223,17610,17057,16592,16217,15994,15925,16009,16255,16663,17262,18006,18917,19989,21213,22535,23993,25480,26963,28397,29670,30664,31417,31817,31814,31488,30834,29904,28836,27607,26413,25238,24146,23143,22270,21549,20936,20450,20049,19760,19598,19515,19531,19625,19822,20097,20432,20869,21387,21952,22578,23244,23873,24499,25075,25549,25920,26167,26231,26113,25836,25352,24714,23997,23197,22314,21436,20580,19796,19095,18440,17876,17402,16985,16663,16433,16264,16151,16123,16144,16230,16388,16618,16930,17281,17712,18196,18776,19365,20009,20700,21433,22184,22938,23662,24358,25017,25605,26178,26621,26934,27186,27285,27301,27208,26990,26664,26256,25752,25184,24602,23963,23316,22673,22005,21357,20745,20150,19578,19099,18600,18215,17846,17518,17224,16957,16713,16512,16304,16117,15921,15726,15570,15424,15310,15222,15140,15066,15031,15017,15008,15013,15024,15069,15089,15131,15163,15220,15265,15284,15298,15321,15310,15328,15346,15355,15336,15281,15210,15161,15093,15009,14914,14764,14615,14447,14245,14042,13821,13593,13333,13061,12763,12476,12173,11884,11586,11314,11077,10843,10594,10339,10029,9713,9393,9105,8871,8663,8474,8327,8197,8094,8013,7945,7897,7823,7728,7599,7412,7263,7137,7014,6921,6837,6772,6717,6679,6658,6660,6652,6632,6638,6644,6474,6168,5743,5128,21.4,21.4,22.1,1567972,0.5,12.1,12.0,5.0,484,-1.00,-1.00,57.2934,-18.937686,0.000568,,,,,151 +SATSLF0720,2024246,8.010894,4.19,0.0587,0.1021,0.0167,0.00,16187,644,1,696,695,703,695,706,701,707,708,733,721,723,751,765,887,1213,1975,3161,4539,5793,6720,7357,7851,8265,8713,9213,9859,10583,11462,12474,13566,14763,15933,17051,18014,18741,19180,19312,19119,18743,18216,17612,17044,16582,16218,15977,15920,15987,16251,16662,17253,17994,18901,19986,21201,22517,23961,25437,26944,28369,29629,30634,31389,31769,31772,31444,30796,29857,28811,27561,26375,25202,24128,23125,22269,21524,20908,20426,20025,19737,19584,19477,19509,19605,19803,20061,20401,20845,21369,21929,22529,23203,23863,24474,25053,25525,25894,26160,26217,26081,25806,25305,24666,23955,23153,22281,21397,20557,19776,19080,18432,17854,17389,16974,16641,16396,16243,16145,16089,16122,16199,16384,16601,16889,17248,17696,18184,18761,19368,20016,20695,21442,22176,22922,23630,24341,24994,25575,26168,26589,26888,27149,27261,27273,27181,26962,26633,26242,25746,25172,24588,23958,23314,22651,21971,21339,20726,20114,19567,19067,18593,18203,17836,17507,17217,16943,16705,16497,16290,16111,15915,15730,15558,15424,15301,15207,15125,15056,15019,14996,15000,15012,15034,15054,15089,15141,15173,15213,15267,15271,15274,15288,15284,15309,15331,15339,15319,15283,15224,15161,15083,15005,14902,14761,14616,14427,14241,14041,13824,13569,13309,13056,12765,12473,12177,11877,11585,11317,11066,10823,10603,10317,10021,9704,9397,9111,8862,8655,8466,8315,8187,8097,7998,7939,7899,7831,7747,7589,7419,7256,7125,7001,6907,6830,6776,6717,6675,6658,6646,6627,6631,6638,6647,6501,6183,5753,5122,21.4,21.5,22.1,1567973,0.6,12.1,12.0,5.0,483,-1.00,-1.00,56.5282,-18.596230,0.000533,,,,,92 +SATSLF0720,2024246,8.011146,4.14,0.0580,0.1025,0.0172,0.00,16167,644,1,698,699,690,695,709,701,715,716,731,732,733,741,770,877,1215,1957,3135,4523,5763,6707,7342,7818,8233,8691,9192,9820,10572,11425,12443,13552,14746,15914,17037,17993,18708,19143,19272,19077,18705,18160,17587,17013,16539,16189,15946,15871,15965,16219,16618,17193,17961,18870,19933,21149,22474,23911,25403,26902,28322,29568,30553,31308,31706,31715,31380,30721,29804,28747,27514,26329,25168,24091,23072,22214,21484,20877,20405,19993,19713,19541,19462,19466,19563,19754,20022,20377,20803,21320,21882,22526,23182,23824,24436,25025,25494,25864,26128,26183,26056,25767,25285,24652,23913,23111,22243,21362,20525,19753,19052,18397,17841,17370,16971,16650,16403,16232,16141,16085,16119,16193,16363,16590,16877,17242,17685,18177,18737,19357,19985,20688,21413,22155,22907,23597,24315,24972,25550,26131,26561,26863,27114,27232,27245,27147,26947,26605,26213,25724,25166,24550,23937,23272,22615,21963,21330,20705,20123,19568,19077,18587,18177,17807,17481,17188,16918,16686,16480,16282,16082,15899,15710,15549,15421,15290,15182,15111,15030,14996,14978,14977,14997,15004,15031,15063,15105,15125,15196,15258,15269,15289,15285,15285,15313,15317,15329,15324,15269,15206,15145,15073,14973,14885,14755,14585,14427,14242,14036,13824,13577,13302,13048,12759,12472,12162,11862,11568,11301,11059,10818,10588,10325,10022,9688,9387,9096,8852,8633,8458,8320,8183,8085,8018,7942,7890,7828,7735,7589,7417,7261,7125,7013,6915,6829,6771,6714,6674,6656,6661,6637,6637,6652,6642,6491,6194,5757,5125,21.5,21.5,22.1,1567974,0.2,12.1,12.0,5.0,479,-1.00,-1.00,56.9075,-18.716892,0.000547,,,,,95 +SATSLF0720,2024246,8.011403,4.20,0.0588,0.1020,0.0171,0.00,16179,644,1,703,709,709,705,711,707,704,702,719,731,728,743,766,885,1225,1961,3145,4530,5783,6697,7357,7832,8242,8700,9206,9833,10574,11445,12471,13585,14754,15934,17041,17996,18717,19152,19285,19106,18717,18183,17607,17040,16568,16202,15973,15902,15984,16236,16634,17218,17961,18884,19958,21182,22499,23960,25445,26930,28353,29609,30610,31349,31760,31757,31428,30767,29849,28784,27541,26359,25190,24113,23100,22248,21512,20911,20413,20011,19740,19577,19485,19482,19598,19777,20035,20387,20819,21341,21917,22547,23226,23853,24473,25047,25526,25869,26140,26190,26061,25780,25313,24672,23944,23148,22283,21397,20563,19785,19066,18419,17859,17389,16989,16656,16396,16224,16135,16088,16118,16205,16373,16602,16891,17271,17702,18180,18749,19353,19997,20683,21413,22165,22893,23608,24337,25000,25593,26157,26590,26899,27146,27252,27266,27177,26941,26625,26217,25718,25166,24579,23942,23304,22628,21972,21334,20722,20124,19554,19065,18597,18186,17819,17493,17208,16920,16689,16473,16283,16086,15902,15708,15559,15424,15308,15205,15133,15054,15013,14994,14985,15000,15025,15041,15092,15126,15169,15198,15257,15261,15274,15280,15308,15309,15329,15331,15325,15265,15204,15150,15068,14989,14880,14753,14597,14435,14245,14029,13811,13597,13318,13047,12753,12479,12174,11865,11584,11317,11058,10825,10594,10327,10026,9706,9385,9091,8841,8631,8462,8314,8170,8077,7987,7931,7878,7818,7720,7587,7414,7255,7137,7013,6914,6835,6764,6721,6668,6644,6643,6645,6636,6645,6655,6501,6169,5749,5132,21.5,21.5,22.1,1567975,1.0,12.2,11.9,5.0,483,-1.00,-1.00,56.7670,-18.683608,0.000558,,,,,69 +SATSLF0720,2024246,8.011657,4.17,0.0585,0.1028,0.0182,0.00,16147,644,1,695,682,692,698,705,697,715,710,722,721,720,737,774,886,1215,1960,3141,4524,5769,6693,7319,7793,8203,8662,9180,9808,10541,11425,12421,13542,14722,15889,16999,17965,18688,19126,19254,19073,18689,18152,17552,16986,16542,16170,15933,15864,15961,16198,16609,17181,17926,18842,19909,21139,22470,23917,25394,26882,28301,29555,30557,31314,31694,31688,31349,30702,29778,28712,27492,26302,25141,24069,23061,22194,21461,20858,20364,19965,19685,19525,19449,19451,19539,19751,20002,20356,20781,21280,21863,22493,23154,23799,24423,24985,25472,25835,26110,26158,26034,25752,25268,24640,23892,23108,22242,21370,20530,19751,19045,18407,17826,17358,16949,16634,16384,16210,16117,16062,16073,16173,16330,16578,16862,17243,17668,18161,18730,19345,19962,20644,21380,22109,22850,23581,24285,24943,25533,26120,26538,26857,27094,27192,27210,27125,26901,26585,26165,25665,25115,24528,23898,23251,22597,21917,21291,20676,20072,19520,19022,18552,18153,17789,17465,17174,16896,16674,16470,16276,16065,15871,15687,15521,15370,15262,15161,15097,15021,14985,14965,14953,14967,14990,15009,15048,15093,15125,15177,15221,15233,15243,15253,15260,15280,15297,15293,15293,15235,15178,15111,15054,14967,14857,14723,14583,14405,14212,14018,13794,13562,13301,13025,12745,12445,12149,11857,11562,11300,11041,10805,10574,10301,10005,9675,9360,9095,8841,8639,8459,8315,8182,8082,7990,7918,7861,7799,7706,7570,7385,7230,7104,7012,6917,6834,6770,6706,6662,6637,6618,6601,6587,6608,6620,6469,6161,5742,5115,21.5,21.5,22.1,1567976,0.0,12.2,11.9,5.0,473,-1.00,-1.00,56.9130,-18.706796,0.000638,,,,,116 +SATSLF0720,2024246,8.011912,4.10,0.0575,0.1067,0.0214,0.00,16029,644,1,695,702,712,727,726,721,728,721,725,731,720,730,768,885,1208,1957,3104,4495,5729,6641,7282,7742,8168,8597,9107,9735,10481,11341,12321,13438,14604,15762,16876,17817,18535,18956,19099,18920,18550,18021,17427,16883,16426,16053,15830,15739,15831,16069,16471,17053,17787,18693,19756,20968,22270,23712,25182,26665,28074,29325,30308,31048,31463,31454,31117,30473,29545,28505,27280,26107,24949,23861,22887,22030,21294,20697,20198,19815,19533,19373,19282,19293,19397,19592,19849,20204,20622,21140,21701,22344,22985,23629,24235,24815,25280,25634,25890,25947,25817,25550,25073,24445,23733,22941,22077,21201,20360,19593,18901,18243,17689,17221,16811,16494,16266,16093,15993,15937,15965,16061,16219,16450,16745,17101,17524,18017,18578,19193,19817,20493,21221,21948,22684,23412,24109,24749,25330,25903,26323,26642,26907,26989,27010,26929,26706,26395,26001,25494,24944,24334,23713,23065,22421,21760,21136,20537,19947,19417,18896,18424,18033,17662,17335,17057,16777,16541,16337,16141,15962,15753,15563,15400,15270,15177,15077,14989,14909,14878,14869,14857,14866,14890,14914,14942,14976,15019,15069,15124,15131,15156,15145,15156,15171,15192,15193,15173,15133,15057,15005,14932,14852,14770,14626,14472,14327,14115,13911,13689,13452,13187,12923,12641,12356,12048,11779,11474,11223,10973,10741,10512,10241,9939,9610,9303,9032,8784,8585,8401,8265,8118,8022,7942,7874,7819,7757,7659,7523,7347,7203,7077,6954,6861,6777,6713,6659,6626,6603,6583,6571,6554,6587,6588,6437,6144,5713,5077,21.5,21.5,22.2,1567977,0.0,12.1,11.9,5.0,480,-1.00,-1.00,57.5406,-18.823830,0.000560,,,,,167 +SATSLF0720,2024246,8.012168,4.09,0.0573,0.1035,0.0178,0.00,16132,644,1,716,712,713,721,716,713,718,705,711,725,729,740,776,881,1223,1981,3154,4527,5765,6691,7333,7797,8218,8666,9190,9805,10551,11410,12412,13522,14715,15884,17001,17949,18658,19098,19232,19045,18660,18133,17537,16972,16501,16147,15910,15845,15934,16182,16584,17169,17911,18819,19895,21121,22425,23878,25341,26833,28253,29506,30498,31255,31660,31659,31341,30682,29765,28693,27457,26274,25113,24042,23031,22171,21462,20833,20343,19949,19658,19486,19416,19434,19517,19717,19977,20328,20761,21269,21831,22457,23110,23770,24376,24970,25448,25805,26075,26105,25986,25722,25241,24606,23885,23089,22218,21337,20487,19731,19024,18368,17808,17345,16935,16621,16364,16194,16078,16032,16058,16133,16323,16539,16845,17205,17658,18135,18701,19309,19949,20624,21346,22078,22835,23538,24237,24907,25497,26070,26496,26826,27076,27173,27189,27098,26866,26535,26132,25652,25085,24486,23854,23223,22557,21906,21280,20666,20081,19521,19020,18541,18155,17773,17440,17135,16879,16648,16448,16251,16043,15861,15673,15499,15366,15239,15158,15064,15023,14980,14954,14967,14969,14983,15003,15027,15071,15109,15157,15205,15233,15249,15237,15262,15274,15286,15279,15284,15228,15168,15127,15042,14956,14859,14721,14580,14408,14228,13997,13792,13545,13282,13009,12735,12433,12149,11856,11562,11286,11020,10792,10553,10293,9984,9683,9361,9077,8827,8615,8453,8305,8158,8062,7983,7927,7869,7800,7703,7564,7395,7229,7112,6996,6898,6833,6761,6709,6679,6649,6642,6620,6609,6627,6629,6469,6167,5740,5115,21.5,21.6,22.2,1567978,0.0,12.1,11.9,5.0,478,-1.00,-1.00,57.4165,-18.895509,0.000564,,,,,68 +SATSLF0720,2024246,8.012422,4.10,0.0575,0.1046,0.0187,0.00,16103,644,1,702,701,692,703,708,711,725,726,734,722,727,720,767,897,1233,1965,3134,4525,5752,6672,7310,7781,8189,8645,9145,9769,10503,11387,12383,13492,14665,15835,16938,17884,18582,19031,19170,18984,18608,18084,17493,16936,16460,16085,15875,15796,15873,16135,16533,17131,17866,18778,19830,21051,22357,23816,25280,26761,28176,29419,30413,31174,31569,31572,31242,30602,29676,28638,27382,26210,25051,23968,22965,22106,21377,20769,20285,19913,19625,19482,19369,19381,19477,19690,19953,20282,20728,21241,21793,22418,23092,23714,24329,24912,25376,25742,26005,26068,25949,25667,25190,24553,23820,23042,22165,21293,20456,19693,18997,18346,17777,17314,16913,16585,16340,16162,16065,16021,16037,16136,16305,16528,16824,17182,17613,18107,18680,19271,19911,20601,21332,22075,22810,23529,24232,24892,25472,26041,26464,26779,27018,27125,27145,27056,26837,26513,26112,25621,25061,24475,23831,23194,22531,21869,21251,20632,20032,19483,19002,18514,18119,17739,17426,17137,16858,16632,16434,16229,16034,15845,15663,15499,15347,15242,15136,15053,14983,14933,14933,14918,14925,14964,14992,15006,15067,15108,15150,15197,15201,15223,15236,15233,15248,15276,15252,15259,15213,15141,15095,15018,14931,14855,14705,14567,14395,14205,13997,13782,13524,13266,12993,12712,12416,12131,11831,11532,11273,11013,10786,10545,10279,9980,9659,9367,9077,8829,8617,8441,8280,8146,8053,7980,7917,7870,7794,7714,7565,7388,7244,7105,7002,6890,6804,6755,6690,6651,6639,6627,6617,6622,6618,6619,6462,6150,5720,5107,21.5,21.6,22.2,1567979,0.6,12.1,12.0,5.0,481,-1.00,-1.00,57.6731,-18.952634,0.000552,,,,,222 +SATSLF0720,2024246,8.012673,4.29,0.0600,0.1036,0.0182,0.00,16138,644,1,683,703,701,705,710,716,728,722,722,725,725,739,761,884,1224,1957,3141,4516,5764,6685,7322,7795,8221,8666,9181,9800,10552,11408,12402,13537,14705,15875,16977,17933,18654,19081,19223,19046,18656,18123,17536,16978,16516,16156,15922,15857,15947,16170,16580,17166,17904,18832,19893,21114,22427,23876,25364,26849,28272,29523,30509,31250,31634,31642,31307,30675,29744,28684,27453,26269,25122,24037,23017,22154,21428,20818,20331,19947,19650,19491,19412,19438,19537,19716,19975,20339,20770,21302,21841,22469,23120,23765,24384,24965,25418,25803,26080,26118,25997,25714,25243,24624,23893,23093,22221,21341,20503,19736,19022,18371,17810,17344,16934,16621,16375,16204,16101,16057,16070,16168,16340,16554,16865,17225,17662,18128,18697,19312,19936,20626,21367,22100,22865,23589,24277,24941,25529,26085,26517,26833,27079,27184,27197,27094,26885,26557,26171,25676,25109,24532,23901,23237,22579,21924,21290,20669,20079,19531,19021,18541,18135,17788,17450,17175,16905,16685,16468,16258,16070,15871,15684,15513,15361,15271,15161,15097,15016,14986,14962,14961,14973,15001,15025,15045,15091,15111,15166,15217,15239,15257,15262,15268,15289,15304,15302,15289,15243,15178,15113,15063,14965,14877,14722,14583,14414,14214,14011,13797,13557,13299,13025,12731,12434,12146,11845,11565,11305,11041,10795,10577,10304,10002,9673,9368,9083,8826,8631,8461,8308,8181,8083,8008,7933,7875,7819,7728,7585,7406,7255,7121,7005,6911,6827,6775,6701,6661,6642,6622,6613,6594,6625,6621,6466,6163,5736,5120,21.5,21.6,22.2,1567979,0.0,12.1,12.0,5.0,465,-1.00,-1.00,56.5634,-18.537066,0.000564,,,,,220 +SATSLF0720,2024246,8.012932,4.27,0.0598,0.1040,0.0183,0.00,16119,644,1,705,702,700,704,699,702,720,713,719,727,722,719,769,883,1227,1949,3137,4504,5755,6685,7312,7793,8208,8640,9172,9789,10517,11387,12371,13493,14677,15851,16944,17895,18619,19047,19197,19011,18642,18116,17501,16944,16489,16121,15904,15828,15894,16155,16560,17150,17905,18808,19869,21077,22402,23842,25333,26814,28231,29472,30487,31229,31616,31618,31284,30626,29705,28655,27421,26243,25079,24005,22998,22155,21414,20819,20329,19935,19656,19479,19395,19405,19508,19690,19962,20307,20761,21260,21825,22435,23096,23744,24359,24941,25403,25772,26048,26105,25977,25705,25220,24585,23857,23057,22167,21309,20471,19717,19014,18361,17799,17335,16918,16595,16349,16175,16073,16014,16059,16134,16308,16525,16830,17195,17621,18120,18686,19294,19923,20614,21350,22104,22829,23551,24244,24896,25484,26061,26485,26818,27056,27154,27170,27090,26855,26540,26141,25640,25085,24491,23862,23225,22560,21897,21273,20666,20046,19499,19017,18542,18137,17774,17452,17157,16886,16636,16443,16238,16049,15857,15666,15498,15359,15244,15147,15077,15000,14957,14938,14925,14946,14961,14994,15034,15082,15126,15168,15209,15222,15229,15236,15252,15261,15274,15277,15300,15232,15169,15110,15037,14949,14854,14710,14561,14396,14197,14002,13773,13533,13265,13016,12714,12426,12134,11822,11564,11286,11038,10806,10552,10299,10005,9669,9355,9081,8839,8614,8455,8295,8167,8058,7980,7903,7872,7798,7697,7563,7389,7247,7118,7008,6901,6818,6756,6703,6674,6656,6614,6607,6603,6612,6614,6452,6153,5714,5121,21.5,21.6,22.2,1567980,1.1,12.2,11.9,5.0,470,-1.00,-1.00,56.9456,-18.676337,0.000599,,,,,93 +SATSLF0720,2024246,8.013188,4.21,0.0589,0.1041,0.0182,0.00,16118,644,1,712,704,713,715,725,733,737,726,727,726,716,738,769,883,1220,1956,3141,4532,5774,6693,7321,7802,8201,8649,9155,9770,10531,11397,12379,13502,14675,15843,16950,17893,18628,19068,19192,19022,18630,18093,17511,16955,16485,16125,15895,15831,15902,16149,16548,17145,17890,18806,19869,21074,22417,23850,25322,26794,28202,29463,30449,31204,31593,31599,31273,30625,29709,28641,27414,26233,25061,23983,22977,22122,21405,20795,20306,19923,19635,19483,19392,19425,19504,19691,19957,20299,20728,21245,21803,22431,23088,23737,24354,24934,25426,25770,26053,26080,25976,25689,25219,24576,23858,23056,22183,21312,20470,19700,18999,18354,17801,17332,16929,16616,16349,16183,16072,16022,16036,16149,16310,16534,16840,17206,17639,18122,18695,19296,19938,20610,21347,22084,22823,23529,24233,24897,25477,26052,26469,26807,27065,27169,27173,27083,26854,26535,26133,25627,25063,24478,23851,23210,22561,21889,21258,20634,20052,19497,19008,18528,18130,17759,17437,17138,16889,16642,16440,16241,16040,15856,15677,15497,15359,15257,15146,15077,14993,14959,14945,14943,14950,14978,14992,15043,15073,15095,15142,15205,15228,15236,15245,15242,15282,15292,15294,15290,15241,15160,15113,15037,14949,14857,14733,14569,14409,14212,14000,13786,13556,13289,13033,12728,12439,12142,11848,11556,11301,11042,10808,10562,10290,9991,9672,9352,9067,8829,8614,8458,8296,8165,8063,7980,7924,7865,7801,7710,7568,7399,7252,7113,7006,6899,6820,6754,6698,6663,6637,6628,6608,6602,6629,6616,6478,6170,5745,5120,21.5,21.6,22.2,1567981,0.9,12.1,11.9,5.0,480,-1.00,-1.00,56.9535,-18.671912,0.000565,,,,,106 +SATSLF0720,2024246,8.013439,4.23,0.0593,0.1060,0.0193,0.00,16068,644,1,702,696,707,711,717,733,722,716,731,727,739,741,771,884,1223,1953,3139,4501,5730,6651,7300,7753,8169,8605,9122,9733,10471,11337,12323,13441,14612,15770,16879,17818,18538,18981,19113,18930,18545,18017,17426,16873,16418,16050,15813,15767,15841,16097,16496,17079,17809,18728,19769,20995,22300,23739,25212,26688,28091,29339,30337,31069,31464,31479,31139,30493,29586,28537,27302,26128,24981,23897,22907,22061,21337,20730,20226,19859,19565,19404,19309,19320,19410,19614,19877,20228,20661,21180,21752,22365,23031,23681,24290,24850,25335,25696,25965,26009,25883,25601,25120,24493,23773,22961,22119,21257,20421,19662,18944,18316,17741,17271,16863,16542,16295,16131,16034,15977,16002,16101,16265,16485,16780,17157,17584,18070,18634,19236,19873,20551,21280,22025,22762,23469,24178,24840,25424,25991,26403,26720,26957,27074,27085,26995,26776,26453,26065,25576,25030,24421,23793,23163,22490,21831,21193,20571,19995,19445,18960,18497,18085,17730,17401,17109,16848,16613,16413,16202,16016,15813,15642,15477,15345,15208,15109,15036,14978,14936,14912,14912,14912,14939,14971,14997,15033,15072,15112,15160,15182,15203,15204,15215,15218,15251,15257,15245,15202,15138,15075,14995,14925,14816,14674,14531,14353,14173,13943,13763,13493,13253,12980,12702,12400,12119,11816,11526,11271,11016,10757,10541,10264,9977,9650,9334,9066,8818,8610,8441,8283,8151,8045,7975,7889,7853,7781,7685,7548,7363,7223,7097,6986,6884,6807,6743,6692,6650,6637,6633,6613,6600,6606,6614,6469,6162,5713,5107,21.5,21.7,22.3,1567982,0.0,12.2,11.9,5.0,479,-1.00,-1.00,57.2582,-18.723180,0.000536,,,,,236 +SATSLF0720,2024246,8.013695,4.24,0.0594,0.1056,0.0197,0.00,16067,644,1,693,685,705,708,719,725,726,729,724,727,738,745,760,883,1215,1950,3126,4496,5739,6658,7293,7761,8174,8609,9131,9749,10487,11362,12354,13460,14629,15783,16881,17835,18568,19000,19125,18953,18583,18039,17461,16901,16444,16073,15841,15787,15853,16089,16515,17090,17840,18725,19794,21009,22336,23749,25239,26713,28113,29358,30356,31104,31506,31498,31168,30518,29600,28544,27310,26139,24995,23915,22916,22061,21332,20725,20241,19847,19565,19412,19326,19345,19431,19611,19876,20222,20659,21181,21746,22349,23017,23669,24266,24853,25326,25701,25978,26020,25906,25620,25130,24497,23786,22977,22121,21248,20418,19646,18945,18300,17748,17286,16869,16548,16295,16123,16021,15979,16000,16089,16259,16493,16794,17152,17581,18066,18630,19235,19860,20549,21281,22021,22761,23454,24166,24816,25413,25962,26391,26712,26954,27066,27082,26973,26765,26454,26034,25562,24998,24431,23785,23141,22485,21820,21200,20583,19986,19437,18955,18482,18073,17709,17388,17093,16820,16587,16384,16188,16003,15801,15618,15455,15325,15196,15095,15031,14958,14914,14898,14880,14880,14919,14929,14983,15024,15062,15103,15173,15184,15195,15196,15209,15220,15249,15221,15223,15177,15125,15061,14996,14906,14823,14673,14537,14352,14170,13961,13733,13499,13236,12973,12682,12412,12108,11786,11527,11253,11003,10769,10533,10272,9976,9654,9341,9047,8821,8604,8439,8276,8147,8050,7965,7898,7845,7783,7682,7543,7379,7218,7082,6976,6877,6800,6743,6681,6645,6631,6609,6603,6589,6605,6589,6443,6142,5721,5109,21.5,21.7,22.3,1567983,0.0,12.1,12.0,5.0,477,-1.00,-1.00,56.8447,-18.563338,0.000565,,,,,67 +SATSLF0720,2024246,8.013948,4.21,0.0590,0.1057,0.0192,0.00,16068,644,1,686,704,712,699,714,708,711,720,721,713,715,730,769,882,1214,1949,3121,4501,5736,6634,7287,7765,8176,8613,9138,9740,10503,11365,12349,13448,14628,15769,16883,17833,18561,18981,19129,18938,18553,18019,17433,16876,16421,16045,15815,15767,15845,16097,16494,17076,17830,18725,19789,21007,22344,23749,25224,26699,28113,29353,30350,31097,31488,31501,31159,30519,29601,28557,27325,26139,24984,23904,22897,22042,21335,20731,20249,19849,19574,19415,19321,19351,19438,19624,19874,20241,20673,21192,21750,22364,23029,23667,24286,24852,25344,25705,25953,26007,25888,25618,25147,24509,23793,22984,22124,21256,20419,19639,18950,18297,17737,17269,16877,16548,16311,16142,16033,15985,16018,16104,16265,16501,16785,17155,17578,18065,18633,19235,19866,20542,21257,21994,22755,23472,24177,24830,25429,25988,26402,26739,26970,27082,27092,26986,26779,26472,26071,25579,25018,24420,23795,23146,22493,21824,21197,20589,20004,19445,18957,18481,18097,17724,17385,17115,16848,16609,16405,16193,16003,15808,15625,15471,15312,15210,15113,15028,14970,14934,14906,14905,14915,14926,14964,14997,15044,15061,15125,15162,15173,15175,15197,15193,15217,15242,15253,15238,15189,15138,15079,15000,14903,14812,14690,14525,14352,14164,13953,13751,13509,13255,12985,12689,12408,12113,11810,11524,11251,11008,10772,10539,10277,9975,9645,9348,9049,8811,8599,8429,8273,8133,8043,7963,7902,7858,7778,7691,7545,7371,7221,7086,6968,6877,6785,6734,6682,6644,6623,6616,6594,6591,6605,6592,6443,6143,5712,5093,21.5,21.7,22.3,1567984,0.0,12.2,12.0,5.0,477,-1.00,-1.00,57.5538,-18.858802,0.000607,,,,,53 +SATSLF0720,2024246,8.014199,4.45,0.0623,0.1057,0.0194,0.00,16085,644,1,703,697,710,710,699,707,725,723,722,723,728,728,775,895,1232,1965,3137,4516,5745,6657,7297,7761,8193,8621,9149,9757,10523,11385,12363,13470,14653,15813,16917,17863,18583,19000,19130,18971,18589,18040,17463,16908,16450,16090,15859,15788,15875,16114,16535,17106,17853,18757,19833,21041,22362,23801,25272,26749,28138,29405,30391,31139,31547,31530,31195,30569,29636,28589,27335,26158,25008,23946,22957,22098,21356,20762,20278,19874,19584,19419,19325,19342,19443,19649,19908,20250,20689,21212,21778,22378,23051,23707,24311,24875,25367,25715,25993,26037,25898,25627,25141,24524,23799,23025,22145,21280,20439,19680,18964,18323,17756,17294,16890,16565,16325,16166,16056,16004,16018,16113,16269,16507,16796,17160,17600,18085,18648,19257,19894,20561,21287,22033,22773,23501,24200,24848,25447,26002,26441,26745,26977,27082,27097,27015,26794,26500,26092,25591,25035,24445,23808,23155,22509,21850,21218,20609,20013,19465,18977,18488,18103,17736,17400,17123,16848,16608,16411,16200,16019,15820,15622,15470,15338,15233,15111,15048,14976,14927,14935,14912,14923,14960,14961,15000,15036,15066,15123,15176,15196,15213,15216,15216,15253,15254,15265,15249,15200,15136,15073,14996,14919,14820,14691,14522,14366,14185,13973,13760,13517,13264,12985,12725,12405,12119,11818,11534,11263,11010,10775,10550,10276,9969,9649,9349,9061,8806,8605,8443,8283,8141,8045,7963,7900,7845,7781,7701,7562,7396,7235,7105,6990,6911,6816,6740,6686,6650,6626,6625,6589,6599,6611,6605,6467,6157,5728,5118,21.5,21.8,22.4,1567985,0.0,12.2,11.9,5.0,476,-1.00,-1.00,56.3612,-18.385662,0.000587,,,,,161 +SATSLF0720,2024246,8.014454,4.25,0.0595,0.1055,0.0191,0.00,16068,644,1,693,709,706,717,715,727,736,755,746,743,731,735,759,885,1225,1960,3129,4501,5747,6660,7304,7769,8191,8622,9137,9751,10490,11358,12346,13453,14620,15768,16870,17833,18568,19002,19114,18941,18581,18029,17435,16885,16420,16051,15837,15763,15837,16103,16504,17079,17821,18723,19800,21002,22317,23761,25226,26693,28106,29365,30342,31083,31488,31480,31133,30496,29575,28530,27298,26135,24972,23916,22909,22076,21322,20716,20232,19849,19577,19413,19333,19324,19433,19618,19891,20224,20651,21179,21755,22368,23025,23667,24272,24852,25321,25680,25947,25993,25870,25598,25124,24500,23787,23003,22118,21253,20422,19645,18946,18297,17748,17271,16866,16555,16306,16130,16037,15997,16002,16105,16259,16491,16778,17136,17581,18057,18627,19240,19866,20546,21265,22016,22763,23462,24166,24814,25403,25974,26405,26712,26960,27054,27069,26968,26758,26434,26046,25556,25016,24433,23785,23120,22480,21826,21205,20577,19997,19455,18965,18493,18085,17712,17395,17111,16842,16603,16396,16194,16000,15796,15622,15458,15322,15189,15103,15035,14965,14920,14896,14903,14918,14941,14978,14988,15040,15074,15121,15179,15188,15200,15209,15213,15227,15258,15241,15236,15194,15131,15083,15017,14926,14841,14701,14539,14363,14163,13957,13741,13516,13242,12978,12709,12414,12122,11818,11538,11261,11015,10773,10550,10282,9984,9657,9340,9063,8819,8602,8435,8266,8147,8042,7975,7899,7859,7780,7691,7548,7371,7232,7099,6989,6889,6811,6734,6683,6649,6635,6622,6609,6602,6603,6599,6446,6155,5722,5122,21.5,21.8,22.4,1567986,0.4,12.1,11.9,5.0,476,-1.00,-1.00,56.9214,-18.586426,0.000604,,,,,152 +SATSDF0720,2024246,8.259138,0.00,0.0000,0.0000,0.0000,0.00,644,0,1,636,621,624,619,625,621,640,629,627,624,615,624,630,620,635,624,627,626,630,633,641,634,654,645,651,663,653,653,652,651,652,656,646,654,651,655,650,657,651,649,653,644,657,643,649,649,641,665,661,649,654,666,663,663,659,650,644,655,645,651,633,639,652,652,664,650,645,636,645,635,643,631,648,646,646,637,641,640,636,634,631,633,643,651,648,653,648,654,649,641,644,654,641,655,650,650,640,642,650,653,653,656,665,645,651,659,653,650,637,637,638,651,640,635,631,643,635,648,643,635,635,629,640,640,627,647,649,643,659,653,652,656,641,642,636,643,636,643,637,634,644,645,638,643,634,633,632,635,642,651,651,657,664,650,645,633,647,650,661,652,646,642,646,649,649,649,637,651,642,643,650,648,646,649,657,642,641,643,654,644,655,633,645,648,632,634,637,641,637,651,651,645,657,653,656,649,639,640,637,634,633,643,642,654,653,661,649,641,645,643,640,649,631,635,633,639,634,637,653,647,640,627,631,622,635,652,634,659,653,657,656,651,649,643,648,637,642,637,645,637,639,655,658,656,644,639,631,637,638,643,641,654,645,643,648,477,0.0,0.0,0.0,1567985,0.1,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,204 +SATSLF0720,2024246,8.259693,4.10,0.0574,0.1008,0.0173,0.00,16199,644,1,699,704,709,696,711,703,721,725,724,734,718,723,767,882,1215,1969,3159,4528,5787,6723,7370,7841,8257,8705,9226,9861,10610,11491,12504,13623,14807,15972,17095,18038,18775,19217,19351,19161,18773,18240,17638,17064,16609,16239,16017,15929,16021,16273,16680,17290,18029,18939,20013,21237,22553,24006,25499,26982,28410,29666,30685,31426,31821,31843,31513,30852,29933,28859,27620,26432,25255,24167,23153,22299,21547,20933,20452,20057,19788,19629,19533,19546,19645,19825,20085,20433,20866,21381,21948,22568,23222,23885,24490,25085,25556,25931,26172,26219,26117,25829,25339,24706,23986,23179,22304,21425,20580,19797,19077,18431,17882,17413,16997,16672,16438,16262,16161,16101,16147,16210,16384,16611,16902,17282,17705,18195,18762,19377,20010,20701,21433,22170,22919,23640,24346,25003,25600,26163,26600,26928,27165,27282,27289,27201,26973,26670,26269,25764,25201,24609,23982,23329,22647,21976,21332,20736,20139,19569,19080,18611,18210,17831,17511,17221,16956,16705,16491,16291,16088,15905,15717,15556,15409,15297,15200,15118,15048,15021,14993,14995,15012,15004,15034,15074,15120,15149,15200,15272,15284,15277,15279,15303,15298,15328,15322,15340,15266,15211,15143,15077,14996,14890,14757,14605,14418,14237,14033,13818,13579,13323,13061,12773,12465,12169,11861,11578,11318,11053,10809,10579,10315,10013,9688,9375,9111,8854,8651,8470,8310,8173,8074,7994,7941,7885,7827,7725,7587,7415,7275,7129,7013,6913,6843,6777,6712,6673,6654,6637,6615,6613,6629,6629,6476,6180,5758,5134,21.4,21.4,21.8,1567986,0.6,12.2,11.9,5.0,601,-1.00,-1.00,56.9189,-18.793638,0.000529,,,,,143 +SATSLF0720,2024246,8.259875,3.87,0.0542,0.1042,0.0199,0.00,16091,644,1,686,697,697,696,692,703,706,700,710,697,709,715,757,869,1210,1931,3131,4510,5746,6689,7328,7798,8226,8653,9165,9782,10514,11383,12376,13500,14689,15865,16974,17930,18645,19091,19222,19053,18650,18115,17541,16969,16491,16125,15893,15831,15913,16150,16551,17137,17892,18790,19867,21083,22405,23849,25314,26788,28213,29489,30470,31205,31618,31616,31300,30637,29726,28660,27428,26241,25061,23995,22999,22149,21405,20795,20327,19928,19632,19484,19387,19393,19493,19681,19945,20288,20718,21237,21802,22433,23086,23724,24328,24909,25386,25722,25990,26061,25937,25659,25175,24544,23820,23015,22153,21281,20431,19664,18946,18309,17761,17279,16889,16569,16313,16144,16048,15993,16019,16105,16265,16489,16790,17160,17593,18082,18647,19258,19901,20565,21287,22028,22771,23482,24197,24849,25433,25985,26425,26747,27001,27108,27122,27026,26824,26477,26075,25582,25016,24433,23796,23159,22513,21837,21210,20599,20007,19457,18973,18497,18102,17722,17406,17110,16851,16617,16410,16201,16019,15816,15621,15447,15325,15200,15117,15030,14958,14932,14909,14903,14923,14941,14970,14988,15016,15047,15101,15162,15161,15174,15193,15210,15223,15242,15242,15240,15188,15117,15057,14970,14878,14790,14660,14507,14351,14166,13961,13749,13506,13249,12966,12674,12389,12078,11790,11501,11227,10997,10757,10520,10263,9969,9630,9319,9036,8794,8577,8403,8247,8122,8029,7953,7891,7845,7781,7683,7547,7353,7195,7075,6972,6866,6778,6731,6677,6651,6611,6595,6579,6575,6593,6571,6431,6139,5706,5099,21.4,21.4,21.9,1567987,0.7,12.1,11.9,5.0,500,-1.00,-1.00,58.0001,-19.114036,0.000614,,,,,85 +SATSLF0720,2024246,8.260130,4.11,0.0576,0.1010,0.0167,0.00,16199,644,1,685,691,696,693,707,693,695,706,704,705,709,719,761,872,1207,1951,3140,4535,5783,6700,7364,7830,8249,8683,9209,9839,10602,11469,12467,13581,14772,15938,17049,18027,18750,19189,19325,19145,18753,18225,17629,17064,16607,16224,16000,15929,16013,16257,16657,17243,18007,18916,19989,21217,22532,23991,25488,26976,28397,29657,30665,31418,31818,31822,31488,30828,29902,28828,27600,26402,25229,24155,23145,22296,21553,20937,20457,20071,19778,19631,19525,19539,19633,19814,20073,20414,20867,21383,21952,22577,23233,23888,24501,25072,25556,25912,26184,26228,26104,25833,25348,24701,23977,23168,22299,21419,20565,19789,19075,18430,17882,17401,17001,16680,16427,16257,16162,16117,16130,16225,16386,16615,16912,17287,17720,18208,18789,19382,20023,20716,21449,22198,22930,23653,24365,25021,25610,26181,26606,26930,27178,27288,27293,27223,26992,26658,26282,25769,25204,24617,23976,23341,22661,21988,21366,20747,20146,19595,19105,18619,18219,17856,17518,17223,16964,16713,16501,16299,16111,15917,15738,15581,15431,15316,15208,15129,15051,15015,14985,14996,15002,15030,15041,15101,15133,15173,15214,15266,15277,15289,15297,15301,15316,15354,15346,15336,15290,15218,15161,15090,15001,14900,14769,14619,14457,14260,14034,13827,13581,13336,13048,12775,12486,12190,11892,11600,11323,11067,10826,10589,10327,10015,9695,9378,9107,8860,8649,8461,8320,8198,8097,8016,7945,7890,7820,7729,7593,7418,7253,7137,7016,6914,6833,6777,6717,6685,6673,6660,6633,6618,6638,6621,6469,6166,5746,5133,21.4,21.4,22.0,1567988,0.5,12.1,12.0,5.0,476,-1.00,-1.00,56.9975,-18.812613,0.000577,,,,,109 +SATSLF0720,2024246,8.260386,4.20,0.0589,0.1023,0.0171,0.00,16163,644,1,703,707,711,712,705,702,711,727,712,721,725,725,757,882,1209,1950,3139,4518,5771,6698,7353,7818,8229,8679,9189,9817,10557,11413,12402,13529,14716,15880,16983,17943,18664,19114,19232,19063,18689,18158,17562,16989,16547,16165,15942,15861,15945,16201,16612,17189,17939,18850,19929,21147,22472,23912,25403,26885,28293,29534,30562,31304,31697,31700,31363,30715,29799,28744,27517,26325,25162,24074,23078,22208,21472,20865,20389,19987,19713,19547,19472,19479,19578,19757,20022,20357,20792,21325,21877,22490,23168,23821,24426,25014,25499,25873,26125,26150,26051,25760,25290,24644,23906,23107,22234,21361,20509,19767,19058,18397,17836,17382,16953,16646,16409,16232,16132,16091,16104,16192,16357,16577,16873,17243,17675,18168,18731,19354,19993,20685,21415,22165,22890,23623,24312,24972,25575,26133,26568,26888,27130,27234,27238,27137,26935,26611,26209,25720,25165,24576,23925,23281,22630,21952,21323,20717,20125,19562,19068,18585,18183,17829,17497,17204,16933,16681,16478,16278,16102,15906,15705,15545,15417,15290,15191,15127,15063,14997,14988,14986,14973,15014,15021,15072,15117,15136,15191,15265,15273,15269,15279,15295,15296,15321,15313,15312,15250,15192,15149,15077,14990,14893,14757,14615,14428,14241,14032,13813,13558,13311,13057,12761,12457,12171,11877,11596,11309,11061,10822,10572,10305,10009,9683,9387,9093,8845,8639,8477,8322,8177,8093,8009,7938,7881,7813,7731,7583,7409,7261,7121,7006,6919,6834,6784,6714,6671,6651,6646,6625,6624,6629,6627,6475,6177,5737,5133,21.4,21.4,22.0,1567989,0.6,12.1,11.9,5.0,476,-1.00,-1.00,57.1030,-18.793844,0.000534,,,,,55 +SATSLF0720,2024246,8.260639,4.15,0.0581,0.1020,0.0172,0.00,16178,644,1,706,707,699,715,713,705,715,725,718,725,721,727,764,889,1221,1961,3157,4533,5782,6709,7350,7801,8255,8674,9207,9837,10584,11459,12468,13574,14757,15929,17045,18000,18709,19141,19277,19093,18705,18176,17588,17029,16565,16199,15979,15907,15973,16221,16621,17220,17948,18875,19964,21173,22501,23954,25434,26912,28358,29613,30621,31370,31752,31758,31440,30787,29858,28800,27560,26361,25192,24093,23095,22242,21504,20902,20418,20033,19745,19569,19484,19487,19593,19771,20041,20384,20825,21349,21921,22541,23194,23846,24455,25040,25512,25886,26128,26195,26078,25796,25304,24663,23937,23144,22253,21379,20541,19776,19073,18426,17856,17389,16982,16658,16407,16237,16120,16087,16103,16215,16360,16589,16896,17273,17703,18190,18769,19358,20000,20688,21416,22158,22902,23616,24320,24985,25579,26138,26573,26901,27153,27256,27250,27160,26952,26618,26229,25725,25170,24581,23945,23298,22635,21973,21317,20727,20117,19563,19064,18597,18195,17832,17501,17214,16939,16707,16500,16301,16103,15902,15693,15539,15396,15287,15191,15108,15047,15002,14992,14979,15006,15033,15056,15076,15127,15146,15195,15241,15259,15273,15284,15294,15304,15345,15319,15319,15272,15205,15146,15058,14984,14875,14747,14605,14442,14244,14034,13809,13591,13309,13052,12770,12469,12179,11877,11601,11309,11063,10826,10590,10310,10003,9694,9377,9119,8854,8646,8474,8315,8189,8093,8001,7943,7882,7813,7739,7581,7415,7258,7123,7006,6905,6843,6771,6721,6680,6672,6656,6634,6635,6658,6640,6487,6179,5740,5126,21.4,21.4,22.1,1567990,0.7,12.1,12.0,5.0,483,-1.00,-1.00,57.3710,-18.939315,0.000573,,,,,121 +SATSLF0720,2024246,8.260894,4.19,0.0587,0.1021,0.0172,0.00,16185,644,1,690,697,706,699,697,697,709,698,719,705,730,733,766,891,1205,1975,3149,4525,5775,6692,7339,7816,8247,8682,9210,9835,10580,11453,12459,13574,14746,15901,17027,18002,18725,19141,19286,19091,18710,18190,17597,17029,16567,16209,15981,15895,15986,16232,16649,17227,17973,18881,19950,21181,22496,23952,25441,26933,28363,29611,30613,31370,31769,31778,31433,30780,29873,28802,27568,26373,25216,24130,23134,22273,21514,20903,20429,20025,19729,19585,19477,19495,19604,19792,20057,20400,20838,21351,21931,22545,23215,23861,24475,25047,25523,25882,26149,26199,26068,25793,25329,24668,23975,23170,22297,21428,20565,19785,19086,18438,17864,17373,16976,16642,16396,16225,16129,16095,16123,16213,16369,16598,16905,17272,17693,18173,18743,19361,20000,20695,21426,22193,22918,23638,24343,24997,25593,26164,26602,26920,27160,27264,27275,27185,26961,26651,26261,25761,25178,24587,23947,23307,22650,21982,21355,20746,20149,19577,19083,18607,18201,17837,17508,17209,16928,16706,16515,16299,16116,15914,15735,15573,15414,15305,15198,15129,15061,15018,15006,15009,14998,15031,15060,15097,15117,15163,15222,15266,15276,15297,15313,15319,15317,15343,15339,15331,15281,15208,15146,15077,14996,14885,14746,14604,14430,14241,14039,13829,13587,13330,13064,12781,12476,12183,11878,11586,11305,11064,10825,10589,10320,10019,9700,9389,9109,8861,8649,8484,8323,8187,8098,8000,7927,7883,7814,7737,7573,7427,7273,7131,7020,6915,6824,6767,6711,6674,6654,6647,6639,6632,6649,6639,6489,6180,5769,5141,21.4,21.4,22.1,1567991,0.1,12.1,12.0,5.0,476,-1.00,-1.00,57.1168,-18.837262,0.000508,,,,,254 +SATSLF0720,2024246,8.261149,4.16,0.0583,0.1026,0.0181,0.00,16158,644,1,700,700,696,689,708,698,701,693,710,717,717,719,764,871,1209,1938,3135,4517,5770,6704,7339,7802,8225,8665,9184,9815,10555,11431,12421,13533,14725,15879,17003,17966,18692,19117,19255,19057,18695,18152,17560,17001,16541,16166,15943,15877,15944,16196,16608,17197,17944,18851,19936,21159,22462,23907,25408,26892,28321,29561,30550,31317,31731,31728,31401,30733,29814,28752,27513,26323,25143,24071,23068,22216,21470,20859,20363,19984,19708,19559,19456,19474,19584,19762,20039,20365,20801,21317,21883,22492,23175,23819,24416,25005,25477,25847,26114,26163,26049,25777,25294,24645,23926,23106,22247,21371,20519,19755,19052,18410,17846,17376,16973,16641,16393,16229,16117,16065,16082,16170,16341,16567,16881,17249,17685,18168,18745,19337,19979,20669,21389,22132,22873,23587,24308,24970,25561,26128,26551,26875,27118,27225,27245,27142,26922,26586,26210,25712,25137,24557,23921,23272,22610,21953,21321,20713,20113,19565,19067,18593,18181,17803,17469,17191,16925,16673,16483,16274,16073,15888,15698,15534,15388,15289,15173,15112,15037,14994,14981,14973,14991,15004,15016,15063,15107,15124,15191,15251,15253,15254,15269,15274,15303,15323,15314,15304,15257,15196,15117,15047,14979,14885,14746,14605,14414,14226,14007,13795,13558,13298,13031,12750,12450,12147,11869,11565,11292,11033,10802,10574,10294,9998,9693,9363,9091,8837,8631,8451,8293,8163,8067,7984,7934,7890,7817,7732,7577,7410,7258,7124,7011,6911,6835,6759,6701,6681,6641,6623,6615,6619,6634,6617,6466,6158,5736,5117,21.4,21.5,22.1,1567992,0.3,12.1,11.9,5.0,481,-1.00,-1.00,57.3761,-18.915012,0.000595,,,,,138 +SATSLF0720,2024246,8.261405,4.19,0.0587,0.1025,0.0176,0.00,16159,644,1,692,701,707,683,707,709,709,701,727,713,710,726,754,886,1214,1956,3156,4540,5798,6711,7355,7822,8245,8676,9199,9813,10567,11451,12434,13567,14738,15894,17024,17992,18700,19143,19270,19088,18709,18171,17575,17006,16545,16177,15953,15882,15975,16219,16633,17221,17965,18867,19947,21165,22473,23923,25403,26912,28317,29592,30589,31346,31729,31721,31402,30749,29814,28765,27524,26341,25165,24083,23079,22203,21483,20857,20386,20000,19708,19555,19460,19466,19578,19756,20018,20369,20789,21312,21881,22505,23191,23834,24445,25019,25483,25838,26104,26163,26048,25778,25284,24659,23927,23134,22250,21385,20526,19769,19049,18407,17844,17362,16955,16633,16401,16216,16107,16073,16089,16170,16356,16573,16874,17235,17676,18149,18727,19335,19989,20664,21392,22133,22867,23588,24289,24939,25553,26101,26545,26858,27107,27222,27227,27143,26907,26599,26180,25692,25136,24545,23921,23260,22605,21944,21294,20681,20083,19530,19048,18568,18164,17805,17467,17180,16930,16683,16469,16275,16065,15888,15688,15529,15373,15255,15171,15106,15024,14981,14972,14954,14962,15001,15029,15053,15103,15132,15186,15236,15248,15255,15261,15276,15296,15302,15309,15300,15237,15189,15131,15066,14969,14871,14750,14601,14421,14235,14013,13795,13549,13290,13027,12748,12453,12168,11853,11563,11291,11040,10814,10567,10295,9995,9674,9362,9076,8841,8647,8461,8311,8178,8088,7988,7914,7856,7789,7714,7585,7401,7254,7122,7001,6914,6817,6745,6695,6658,6627,6631,6618,6615,6629,6628,6484,6176,5755,5130,21.4,21.5,22.1,1567993,0.5,12.1,12.0,5.0,471,-1.00,-1.00,56.9235,-18.734223,0.000557,,,,,88 +SATSLF0720,2024246,8.261660,4.11,0.0576,0.1027,0.0178,0.00,16159,644,1,699,700,703,707,722,721,733,725,725,727,729,729,771,898,1220,1966,3149,4541,5770,6712,7341,7824,8246,8689,9213,9841,10589,11467,12456,13581,14761,15924,17031,17977,18714,19161,19290,19101,18711,18185,17584,17033,16549,16195,15972,15901,15977,16220,16640,17201,17959,18872,19941,21165,22485,23927,25409,26883,28307,29570,30578,31317,31720,31720,31401,30749,29800,28759,27520,26323,25157,24086,23085,22236,21485,20866,20373,19987,19715,19546,19453,19480,19560,19754,20018,20360,20786,21313,21878,22489,23170,23820,24421,24999,25475,25841,26113,26158,26042,25756,25280,24637,23910,23125,22249,21369,20531,19773,19061,18406,17845,17369,16941,16629,16381,16210,16110,16051,16089,16183,16350,16571,16870,17237,17669,18167,18725,19342,19972,20663,21395,22142,22877,23586,24288,24948,25538,26113,26541,26858,27113,27209,27222,27118,26909,26583,26198,25698,25127,24545,23905,23256,22589,21925,21283,20684,20097,19541,19034,18563,18151,17799,17473,17189,16908,16690,16477,16265,16088,15878,15706,15528,15386,15276,15168,15095,15024,14980,14968,14965,14967,14989,15022,15077,15094,15125,15162,15221,15243,15249,15271,15261,15290,15313,15318,15304,15255,15182,15127,15041,14973,14866,14744,14565,14403,14221,14017,13790,13547,13296,13044,12755,12467,12173,11863,11570,11296,11046,10797,10561,10294,9999,9689,9376,9069,8837,8626,8457,8314,8170,8088,8005,7922,7879,7799,7727,7577,7405,7256,7123,7010,6906,6843,6762,6715,6678,6649,6645,6623,6609,6641,6622,6470,6170,5741,5119,21.4,21.5,22.1,1567994,0.0,12.1,11.9,5.0,481,-1.00,-1.00,56.6651,-18.620176,0.000522,,,,,64 +SATSLF0720,2024246,8.261912,4.25,0.0595,0.1037,0.0183,0.00,16130,644,1,698,693,688,711,717,718,725,714,725,717,717,731,768,881,1221,1969,3145,4525,5778,6707,7336,7823,8242,8685,9205,9818,10572,11420,12409,13551,14724,15893,17014,17968,18699,19115,19254,19072,18684,18143,17553,16993,16528,16139,15939,15865,15950,16190,16623,17208,17937,18844,19918,21140,22445,23895,25381,26854,28278,29531,30530,31266,31671,31669,31351,30690,29762,28695,27477,26297,25114,24039,23041,22166,21435,20827,20339,19961,19669,19508,19409,19415,19524,19720,19975,20323,20768,21272,21853,22452,23109,23773,24370,24955,25439,25797,26054,26101,25981,25698,25222,24585,23859,23083,22192,21328,20491,19718,19010,18355,17781,17331,16930,16612,16365,16180,16087,16038,16055,16143,16311,16526,16829,17197,17621,18125,18692,19297,19934,20631,21337,22083,22816,23534,24228,24897,25485,26059,26482,26821,27077,27170,27191,27088,26880,26536,26140,25655,25076,24485,23847,23209,22552,21905,21270,20650,20058,19505,19016,18540,18137,17760,17434,17147,16885,16640,16446,16242,16053,15864,15680,15502,15357,15232,15146,15082,15008,14972,14944,14951,14948,14965,14989,15017,15049,15088,15153,15201,15211,15235,15241,15234,15255,15264,15271,15261,15232,15173,15109,15049,14941,14854,14708,14560,14393,14192,13984,13765,13535,13261,13006,12727,12434,12137,11837,11560,11281,11038,10797,10568,10305,10000,9669,9357,9079,8825,8624,8450,8280,8158,8063,7979,7915,7853,7805,7704,7559,7399,7244,7105,6994,6885,6809,6736,6684,6669,6645,6637,6626,6611,6624,6628,6460,6151,5715,5119,21.4,21.5,22.1,1567995,0.2,12.1,12.0,5.0,473,-1.00,-1.00,56.4450,-18.501920,0.000555,,,,,89 +SATSLF0720,2024246,8.262168,4.07,0.0570,0.1047,0.0188,0.00,16094,644,1,691,699,693,707,705,709,714,721,714,717,731,728,757,888,1204,1943,3133,4482,5735,6658,7297,7753,8179,8618,9133,9749,10490,11361,12353,13451,14639,15794,16898,17858,18570,19017,19133,18976,18592,18058,17485,16928,16466,16098,15870,15785,15861,16115,16509,17094,17850,18746,19816,21041,22362,23806,25282,26766,28182,29414,30409,31154,31556,31553,31243,30595,29680,28617,27393,26201,25045,23952,22957,22107,21378,20768,20293,19929,19625,19461,19367,19373,19469,19653,19918,20273,20696,21221,21797,22404,23079,23726,24337,24906,25368,25740,26002,26050,25943,25666,25191,24541,23825,23028,22173,21309,20455,19685,18981,18322,17763,17294,16893,16589,16329,16165,16064,16010,16025,16123,16288,16513,16810,17169,17604,18102,18652,19255,19902,20590,21312,22053,22794,23508,24210,24870,25457,26011,26459,26778,27019,27130,27129,27047,26829,26504,26093,25619,25049,24468,23832,23174,22512,21870,21232,20625,20035,19474,18986,18517,18117,17753,17417,17131,16857,16617,16409,16212,16024,15829,15651,15478,15353,15226,15129,15049,14980,14929,14923,14926,14932,14952,14984,15010,15053,15082,15131,15195,15208,15218,15226,15229,15255,15272,15267,15262,15210,15148,15091,15032,14928,14830,14698,14547,14370,14183,13970,13753,13522,13253,12991,12710,12418,12130,11838,11540,11263,11018,10775,10546,10281,9979,9661,9349,9069,8825,8608,8442,8292,8153,8059,7977,7897,7844,7781,7697,7571,7383,7224,7096,6985,6886,6805,6747,6680,6651,6629,6613,6595,6593,6614,6605,6464,6152,5725,5093,21.5,21.6,22.2,1567996,0.1,12.1,12.0,5.0,473,-1.00,-1.00,58.1244,-19.136232,0.000605,,,,,116 +SATSLF0720,2024246,8.262425,4.19,0.0587,0.1051,0.0192,0.00,16079,644,1,687,694,704,705,709,717,721,718,727,710,721,721,755,875,1197,1947,3112,4498,5734,6638,7287,7744,8173,8620,9134,9755,10497,11342,12342,13440,14619,15783,16893,17842,18565,18985,19125,18942,18578,18037,17443,16886,16421,16071,15834,15784,15845,16099,16506,17096,17832,18749,19806,21004,22333,23756,25253,26724,28137,29381,30376,31130,31531,31530,31208,30557,29642,28570,27346,26167,25002,23933,22936,22084,21352,20740,20275,19878,19605,19452,19349,19352,19455,19621,19895,20247,20678,21190,21756,22387,23058,23692,24305,24869,25350,25720,25979,26026,25931,25645,25165,24529,23799,23009,22139,21265,20430,19661,18962,18314,17746,17291,16878,16571,16317,16157,16057,16004,16021,16125,16263,16496,16792,17149,17587,18069,18657,19250,19882,20582,21299,22040,22777,23482,24192,24845,25438,25997,26412,26735,26981,27093,27105,27014,26794,26475,26085,25596,25037,24456,23825,23174,22528,21850,21217,20596,20009,19456,18969,18512,18085,17742,17409,17110,16850,16620,16413,16203,16023,15816,15636,15467,15324,15227,15118,15049,14978,14933,14929,14915,14930,14938,14976,15004,15053,15070,15137,15185,15205,15219,15213,15223,15235,15251,15255,15248,15181,15144,15080,15015,14926,14829,14690,14542,14368,14183,13960,13745,13499,13241,12978,12692,12398,12119,11824,11544,11273,11027,10765,10543,10277,9964,9638,9328,9045,8803,8596,8425,8272,8147,8055,7982,7913,7861,7793,7693,7547,7373,7218,7104,6987,6890,6797,6739,6680,6641,6630,6620,6597,6580,6609,6613,6457,6157,5724,5100,21.5,21.6,22.2,1567997,1.3,12.1,12.0,5.0,480,-1.00,-1.00,57.8147,-18.985125,0.000589,,,,,76 +SATSLF0720,2024246,8.262677,4.26,0.0597,0.1046,0.0191,0.00,16096,644,1,696,698,703,711,717,709,726,726,724,737,738,735,767,891,1221,1954,3126,4509,5744,6688,7325,7781,8211,8637,9163,9780,10509,11381,12395,13476,14661,15826,16932,17874,18597,19056,19165,18994,18613,18061,17481,16909,16467,16099,15880,15815,15881,16131,16541,17138,17866,18785,19849,21056,22370,23810,25289,26772,28173,29430,30421,31157,31557,31544,31240,30569,29664,28609,27373,26204,25033,23957,22973,22105,21385,20772,20291,19893,19622,19465,19369,19386,19464,19649,19934,20266,20709,21232,21779,22407,23084,23730,24322,24901,25396,25752,26010,26058,25940,25648,25181,24544,23825,23032,22162,21285,20454,19672,18987,18325,17770,17303,16898,16573,16334,16169,16058,16011,16034,16116,16279,16493,16794,17174,17609,18085,18657,19273,19905,20573,21307,22042,22794,23505,24197,24858,25443,26011,26458,26761,26997,27117,27145,27040,26825,26506,26090,25610,25042,24464,23812,23161,22509,21857,21220,20606,20028,19481,18981,18501,18116,17748,17414,17137,16868,16629,16426,16205,16023,15836,15652,15480,15354,15237,15140,15057,14974,14944,14917,14916,14922,14940,14957,15001,15062,15090,15137,15202,15219,15220,15227,15223,15231,15258,15269,15255,15191,15134,15081,15010,14926,14821,14699,14550,14381,14189,13973,13755,13512,13257,13001,12705,12409,12120,11826,11546,11269,11031,10793,10560,10282,9985,9655,9353,9066,8817,8601,8433,8285,8154,8052,7992,7902,7873,7788,7700,7558,7381,7219,7116,6989,6900,6808,6747,6685,6654,6633,6616,6606,6612,6633,6626,6462,6163,5724,5106,21.5,21.6,22.2,1567997,0.4,12.1,12.0,5.0,476,-1.00,-1.00,56.8060,-18.586677,0.000573,,,,,164 +SATSLF0720,2024246,8.262932,4.14,0.0580,0.1046,0.0189,0.00,16098,644,1,701,695,701,698,711,704,711,711,731,730,729,747,776,887,1212,1947,3125,4503,5745,6666,7318,7790,8195,8635,9151,9779,10517,11378,12384,13482,14665,15816,16941,17876,18599,19031,19181,18992,18618,18078,17481,16923,16485,16105,15880,15802,15882,16139,16540,17129,17866,18774,19833,21052,22373,23805,25283,26754,28183,29439,30442,31184,31559,31575,31232,30599,29680,28614,27387,26219,25054,23981,22973,22105,21379,20756,20293,19893,19625,19474,19369,19387,19476,19665,19917,20278,20705,21229,21790,22414,23081,23722,24337,24916,25378,25746,26009,26061,25925,25649,25186,24553,23831,23050,22170,21303,20456,19690,18977,18336,17763,17292,16898,16560,16324,16145,16071,16023,16043,16141,16307,16529,16809,17181,17611,18090,18652,19273,19901,20581,21314,22049,22784,23508,24229,24874,25449,26013,26436,26764,27008,27110,27138,27034,26825,26500,26102,25610,25042,24464,23808,23165,22511,21863,21233,20609,20024,19468,18961,18500,18090,17723,17413,17129,16868,16628,16426,16228,16020,15830,15649,15464,15347,15241,15126,15063,14989,14946,14932,14915,14930,14968,14978,15008,15051,15104,15137,15210,15207,15215,15231,15221,15244,15269,15278,15245,15190,15145,15088,15025,14924,14840,14702,14546,14379,14189,13985,13765,13526,13278,12996,12715,12418,12135,11829,11540,11275,11021,10788,10553,10289,9983,9653,9342,9053,8826,8604,8439,8291,8167,8066,7975,7912,7865,7797,7702,7552,7387,7229,7109,6997,6881,6816,6748,6706,6672,6644,6642,6612,6605,6615,6602,6455,6149,5719,5121,21.5,21.6,22.2,1567998,1.3,12.1,12.0,5.0,481,-1.00,-1.00,57.3998,-18.839722,0.000544,,,,,129 +SATSLF0720,2024246,8.263186,4.25,0.0595,0.1036,0.0179,0.00,16131,644,1,701,696,709,704,711,713,724,725,727,730,729,731,768,898,1225,1972,3145,4531,5764,6696,7310,7785,8198,8652,9172,9798,10528,11403,12413,13533,14717,15866,16968,17927,18661,19101,19216,19031,18665,18117,17523,16967,16505,16148,15927,15847,15925,16184,16584,17169,17917,18829,19885,21108,22428,23882,25355,26832,28254,29504,30504,31255,31658,31648,31323,30661,29747,28690,27450,26257,25097,24025,23026,22167,21430,20801,20352,19946,19659,19520,19413,19413,19529,19705,19975,20306,20741,21262,21820,22459,23122,23777,24388,24963,25446,25796,26064,26123,26003,25717,25230,24585,23867,23091,22218,21329,20491,19735,19029,18375,17806,17333,16913,16603,16357,16186,16080,16047,16089,16188,16345,16553,16843,17210,17635,18120,18691,19301,19937,20625,21357,22105,22843,23559,24262,24918,25506,26064,26484,26827,27061,27177,27183,27086,26883,26557,26161,25660,25079,24498,23873,23219,22555,21898,21271,20653,20072,19521,19029,18554,18145,17780,17442,17160,16897,16641,16450,16241,16058,15857,15667,15503,15369,15245,15141,15069,15006,14959,14946,14957,14956,14996,15005,15043,15089,15113,15159,15209,15222,15237,15252,15241,15269,15289,15286,15283,15230,15165,15121,15030,14954,14850,14723,14579,14410,14201,13986,13771,13543,13269,13004,12731,12445,12161,11858,11569,11303,11037,10800,10569,10284,10000,9677,9378,9090,8838,8623,8455,8309,8175,8069,7990,7929,7878,7801,7699,7579,7398,7245,7116,7010,6905,6821,6747,6696,6670,6632,6636,6616,6602,6631,6625,6473,6169,5742,5117,21.5,21.6,22.2,1567999,0.2,12.1,12.0,5.0,476,-1.00,-1.00,56.7809,-18.626803,0.000575,,,,,86 +SATSLF0720,2024246,8.263438,4.18,0.0586,0.1048,0.0192,0.00,16096,644,1,690,700,694,698,706,708,715,724,717,731,737,734,760,881,1223,1973,3154,4518,5762,6682,7317,7783,8202,8641,9165,9785,10531,11401,12372,13505,14672,15839,16946,17896,18632,19048,19183,18999,18626,18094,17492,16953,16483,16109,15897,15821,15908,16142,16555,17133,17860,18775,19843,21069,22376,23817,25296,26758,28182,29442,30436,31180,31579,31585,31249,30601,29685,28633,27392,26197,25050,23975,22966,22105,21383,20784,20300,19898,19616,19467,19360,19378,19479,19664,19921,20278,20709,21223,21778,22397,23049,23719,24322,24885,25379,25741,25998,26064,25938,25664,25184,24548,23831,23019,22155,21301,20442,19677,18980,18328,17761,17290,16907,16582,16336,16167,16049,16012,16028,16124,16290,16517,16800,17177,17608,18097,18654,19260,19906,20593,21314,22049,22781,23490,24185,24853,25445,26010,26438,26760,26996,27104,27124,27040,26817,26498,26093,25609,25032,24438,23816,23154,22521,21847,21232,20616,20032,19460,18992,18505,18109,17746,17409,17113,16851,16598,16404,16195,16003,15820,15646,15486,15357,15233,15125,15043,14971,14925,14912,14929,14929,14943,14976,15013,15042,15091,15112,15168,15192,15212,15217,15215,15244,15251,15253,15238,15193,15152,15078,15009,14924,14837,14697,14545,14371,14165,13958,13747,13510,13245,12983,12709,12405,12115,11825,11537,11263,11031,10793,10542,10280,9973,9651,9335,9057,8818,8605,8434,8278,8157,8075,7973,7914,7851,7784,7697,7556,7383,7229,7109,6986,6882,6819,6733,6672,6636,6626,6617,6616,6600,6621,6608,6466,6142,5739,5108,21.5,21.7,22.2,1568000,0.0,12.1,11.9,5.0,478,-1.00,-1.00,56.9325,-18.647836,0.000532,,,,,94 +SATSLF0720,2024246,8.263694,4.26,0.0597,0.1051,0.0188,0.00,16088,644,1,697,707,720,707,711,711,709,715,721,713,711,713,763,877,1206,1967,3151,4529,5755,6668,7301,7769,8178,8618,9144,9764,10509,11381,12381,13482,14659,15809,16925,17857,18571,19012,19149,18953,18592,18061,17465,16918,16458,16087,15859,15770,15864,16117,16519,17104,17871,18769,19825,21038,22355,23797,25264,26742,28158,29404,30395,31138,31540,31555,31216,30570,29652,28590,27371,26169,25031,23962,22944,22093,21362,20761,20284,19893,19602,19443,19350,19364,19455,19661,19916,20259,20688,21210,21780,22389,23044,23683,24307,24873,25342,25717,25989,26033,25911,25638,25154,24529,23813,23026,22156,21285,20451,19679,18967,18309,17765,17292,16883,16576,16325,16142,16043,16000,16027,16117,16276,16514,16805,17177,17599,18075,18647,19251,19889,20570,21301,22038,22775,23512,24197,24874,25438,26009,26424,26762,27000,27115,27134,27017,26808,26489,26086,25597,25042,24450,23826,23172,22521,21856,21221,20597,20011,19450,18965,18500,18093,17730,17405,17122,16842,16616,16396,16202,16020,15833,15634,15473,15326,15220,15121,15050,14974,14933,14913,14918,14922,14953,14981,15024,15057,15093,15149,15205,15197,15209,15204,15217,15218,15235,15253,15250,15200,15139,15091,15015,14937,14837,14706,14548,14369,14191,13968,13749,13509,13256,12985,12712,12432,12130,11834,11541,11258,11004,10772,10534,10264,9970,9645,9344,9074,8820,8621,8445,8285,8161,8053,7973,7893,7834,7789,7677,7563,7377,7235,7110,6989,6899,6827,6741,6690,6645,6627,6611,6613,6608,6621,6625,6473,6153,5719,5103,21.5,21.7,22.3,1568001,1.2,12.2,11.9,5.0,481,-1.00,-1.00,57.1699,-18.727474,0.000595,,,,,192 +SATSLF0720,2024246,8.263947,4.29,0.0601,0.1058,0.0199,0.00,16057,644,1,701,695,708,697,700,714,712,712,727,736,730,741,772,887,1225,1965,3141,4500,5729,6641,7279,7744,8191,8621,9139,9755,10510,11357,12358,13456,14615,15783,16884,17819,18560,18985,19125,18949,18565,18037,17462,16890,16429,16073,15842,15776,15853,16091,16509,17078,17832,18729,19795,21017,22327,23765,25224,26701,28105,29369,30354,31093,31504,31478,31149,30506,29597,28537,27320,26133,24985,23920,22925,22064,21322,20726,20240,19850,19565,19413,19318,19332,19443,19630,19874,20232,20651,21170,21737,22341,23000,23651,24259,24834,25309,25681,25934,26005,25889,25597,25110,24485,23770,22969,22113,21245,20398,19640,18921,18288,17731,17258,16849,16538,16293,16120,16019,15963,15991,16094,16242,16471,16772,17130,17544,18046,18598,19208,19843,20525,21248,21993,22723,23441,24132,24793,25382,25938,26365,26705,26941,27053,27065,26986,26765,26432,26034,25544,24964,24377,23749,23104,22468,21809,21173,20564,19964,19406,18935,18454,18065,17688,17368,17079,16820,16579,16385,16189,15996,15797,15610,15441,15294,15182,15083,15009,14941,14902,14880,14885,14893,14913,14939,14973,15021,15033,15080,15140,15149,15168,15174,15190,15208,15228,15235,15218,15176,15105,15057,14992,14896,14802,14662,14509,14339,14155,13940,13729,13495,13237,12973,12678,12397,12096,11794,11511,11250,10993,10749,10519,10259,9955,9643,9321,9059,8801,8596,8430,8266,8131,8041,7953,7895,7841,7772,7699,7549,7365,7215,7097,6977,6871,6798,6721,6682,6656,6617,6611,6596,6586,6596,6593,6437,6136,5715,5099,21.5,21.8,22.3,1568002,0.2,12.1,12.0,5.0,468,-1.00,-1.00,56.7516,-18.521540,0.000551,,,,,36 +SATSLF0720,2024246,8.264198,4.21,0.0589,0.1057,0.0196,0.00,16069,644,1,697,708,703,707,714,721,725,727,722,731,726,736,765,888,1221,1954,3129,4497,5731,6646,7293,7766,8183,8644,9130,9751,10486,11335,12352,13450,14625,15773,16871,17834,18553,18977,19127,18941,18568,18033,17429,16884,16409,16043,15814,15757,15844,16090,16495,17081,17825,18734,19786,21020,22321,23754,25227,26722,28117,29357,30337,31095,31477,31487,31169,30514,29618,28544,27311,26135,24978,23918,22909,22054,21333,20720,20246,19850,19581,19418,19322,19347,19441,19622,19869,20231,20660,21173,21745,22343,23020,23661,24269,24859,25330,25701,25950,26011,25882,25627,25133,24508,23779,22974,22137,21253,20411,19652,18951,18309,17756,17281,16865,16565,16308,16126,16034,15979,16025,16106,16276,16491,16793,17146,17571,18059,18635,19249,19884,20562,21288,22029,22769,23470,24163,24804,25415,25967,26397,26726,26963,27063,27076,26992,26781,26457,26066,25559,25015,24420,23781,23132,22489,21829,21197,20593,20000,19457,18965,18500,18090,17716,17378,17088,16829,16584,16398,16193,16007,15808,15627,15461,15329,15186,15099,15030,14949,14903,14891,14910,14896,14939,14970,14997,15029,15043,15103,15173,15185,15185,15201,15208,15230,15241,15243,15243,15195,15115,15067,15009,14920,14813,14685,14521,14359,14173,13961,13742,13519,13248,12994,12700,12397,12123,11813,11527,11262,11013,10773,10536,10275,9973,9649,9339,9059,8821,8611,8434,8279,8163,8053,7975,7895,7853,7795,7701,7559,7383,7234,7107,6983,6887,6817,6749,6673,6643,6617,6618,6600,6592,6613,6624,6469,6166,5724,5111,21.5,21.8,22.4,1568003,0.0,12.1,11.9,5.0,479,-1.00,-1.00,57.4906,-18.830980,0.000645,,,,,94 +SATSLF0720,2024246,8.264454,4.25,0.0596,0.1058,0.0191,0.00,16069,644,1,705,723,717,727,725,713,720,728,717,721,717,719,761,881,1220,1960,3137,4515,5756,6668,7316,7773,8189,8642,9145,9773,10508,11383,12385,13489,14637,15797,16909,17845,18561,18994,19136,18944,18576,18029,17454,16882,16439,16061,15859,15781,15846,16107,16501,17093,17838,18733,19808,21013,22321,23761,25239,26714,28125,29357,30365,31101,31502,31506,31192,30530,29610,28553,27323,26144,24965,23920,22904,22068,21340,20729,20245,19869,19582,19420,19317,19323,19430,19619,19867,20225,20672,21169,21750,22365,23021,23673,24292,24846,25337,25689,25954,26010,25877,25600,25132,24515,23781,22974,22123,21264,20414,19645,18948,18295,17738,17266,16850,16545,16293,16139,16036,15984,16008,16103,16256,16489,16775,17140,17566,18050,18618,19233,19865,20529,21267,22019,22758,23462,24169,24814,25419,25977,26395,26712,26953,27069,27085,26981,26762,26433,26037,25558,24973,24418,23785,23131,22498,21834,21214,20592,19979,19443,18944,18468,18077,17701,17383,17093,16840,16594,16397,16199,16001,15806,15616,15444,15309,15204,15096,15037,14959,14932,14913,14901,14914,14941,14969,14995,15026,15056,15103,15159,15186,15190,15206,15218,15230,15256,15249,15236,15184,15130,15083,14993,14917,14829,14685,14540,14369,14161,13946,13725,13491,13245,12969,12677,12409,12116,11816,11524,11252,11005,10757,10523,10269,9969,9633,9323,9055,8809,8608,8433,8271,8141,8036,7961,7897,7841,7783,7693,7541,7373,7217,7081,6980,6889,6802,6736,6695,6656,6633,6613,6604,6598,6621,6610,6450,6149,5705,5097,21.5,21.8,22.4,1568004,0.6,12.1,11.9,5.0,475,-1.00,-1.00,57.0673,-18.661108,0.000565,,,,,81 +SATSDF0720,2024246,8.509138,0.00,0.0000,0.0000,0.0000,0.00,645,0,1,647,631,626,613,614,593,615,624,622,632,642,629,637,629,618,611,615,618,633,629,637,645,658,652,650,651,653,646,641,659,653,661,665,666,665,658,650,648,646,646,640,637,647,652,651,648,660,644,654,638,638,638,641,650,650,651,663,650,655,652,656,650,642,654,652,657,669,653,658,657,649,649,638,647,643,637,647,634,642,637,643,651,650,649,656,651,657,646,655,654,649,644,643,641,647,653,646,653,645,645,646,652,649,647,653,645,639,653,643,635,638,637,645,646,653,653,656,656,646,641,643,641,648,648,641,637,643,644,641,647,647,651,634,633,639,646,634,640,655,649,661,658,658,650,648,649,647,647,645,646,643,647,637,650,650,648,648,645,632,635,643,637,631,635,633,653,645,647,652,665,653,649,638,651,641,645,647,639,659,642,638,636,631,647,651,660,656,653,646,637,647,629,647,654,661,643,641,651,636,638,624,635,633,638,638,646,645,653,654,648,645,644,641,622,639,637,642,645,646,637,647,646,643,640,641,647,633,646,648,643,645,630,635,640,649,645,651,641,640,637,640,637,650,659,648,646,644,640,642,668,649,659,644,635,659,492,0.0,0.0,0.0,1568003,0.1,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,93 +SATSLF0720,2024246,8.509694,4.05,0.0567,0.1003,0.0155,0.00,16252,645,1,691,700,705,697,715,722,713,737,725,723,736,733,771,889,1229,1981,3169,4567,5817,6752,7383,7875,8277,8739,9270,9901,10632,11518,12520,13637,14827,16017,17134,18100,18825,19281,19409,19205,18832,18309,17701,17125,16661,16295,16063,15995,16068,16316,16728,17316,18060,18985,20070,21294,22633,24080,25577,27078,28506,29755,30779,31522,31939,31927,31616,30949,30006,28932,27698,26510,25331,24241,23226,22371,21628,21018,20523,20121,19841,19674,19558,19575,19699,19885,20133,20500,20928,21461,22024,22641,23313,23959,24596,25153,25637,26007,26267,26317,26194,25914,25425,24776,24049,23253,22369,21493,20637,19854,19152,18497,17936,17460,17053,16722,16487,16309,16199,16167,16186,16284,16459,16665,16959,17326,17760,18260,18830,19430,20093,20777,21522,22257,23017,23740,24438,25101,25685,26269,26689,27013,27249,27369,27386,27284,27063,26743,26345,25856,25277,24695,24058,23397,22734,22070,21433,20802,20215,19646,19152,18683,18280,17913,17568,17277,16993,16763,16552,16352,16161,15986,15780,15616,15482,15365,15253,15169,15104,15069,15044,15039,15059,15065,15082,15133,15177,15197,15251,15309,15329,15325,15351,15339,15359,15376,15376,15368,15323,15252,15202,15134,15042,14937,14813,14662,14487,14285,14081,13872,13624,13361,13096,12810,12514,12221,11915,11632,11365,11108,10859,10630,10358,10038,9731,9409,9131,8869,8666,8496,8343,8212,8113,8054,7977,7927,7874,7749,7611,7438,7269,7150,7032,6932,6855,6796,6729,6701,6673,6663,6648,6633,6661,6646,6495,6204,5762,5156,21.4,21.4,21.8,1568004,0.5,12.1,11.9,5.0,601,-1.00,-1.00,56.8755,-18.829247,0.000570,,,,,99 +SATSLF0720,2024246,8.509875,4.21,0.0589,0.1006,0.0165,0.00,16222,645,1,689,689,705,696,700,715,693,699,700,708,713,729,773,890,1221,1966,3165,4553,5805,6741,7370,7842,8262,8721,9234,9870,10624,11493,12507,13637,14809,15992,17113,18075,18797,19243,19379,19186,18798,18263,17659,17095,16637,16278,16049,15978,16058,16306,16701,17291,18048,18961,20050,21261,22586,24056,25541,27031,28441,29719,30729,31466,31866,31868,31542,30892,29952,28902,27659,26455,25292,24198,23184,22326,21580,20964,20484,20101,19810,19646,19543,19554,19670,19845,20109,20452,20890,21410,21975,22587,23253,23909,24530,25122,25581,25945,26221,26258,26158,25879,25381,24727,24014,23208,22331,21461,20613,19829,19133,18453,17907,17435,17028,16694,16436,16279,16178,16129,16150,16245,16405,16628,16939,17296,17731,18224,18794,19403,20040,20738,21468,22220,22961,23681,24405,25073,25664,26228,26642,26973,27212,27310,27334,27234,27020,26698,26298,25809,25225,24637,23997,23343,22680,22016,21385,20780,20176,19621,19102,18655,18249,17874,17539,17249,16980,16744,16533,16311,16133,15913,15723,15557,15427,15307,15234,15148,15072,15048,15029,15015,15021,15048,15066,15105,15134,15183,15224,15290,15305,15313,15325,15334,15348,15364,15354,15355,15293,15229,15170,15104,15003,14912,14784,14647,14466,14263,14059,13844,13601,13344,13058,12783,12466,12187,11888,11587,11332,11085,10836,10622,10336,10033,9716,9397,9106,8870,8641,8465,8321,8180,8089,8009,7923,7894,7816,7739,7593,7421,7271,7138,7030,6925,6853,6780,6723,6698,6664,6652,6643,6627,6647,6644,6475,6179,5751,5132,21.4,21.4,21.9,1568005,0.6,12.1,11.9,5.0,496,-1.00,-1.00,56.2333,-18.530510,0.000507,,,,,168 +SATSLF0720,2024246,8.510130,4.09,0.0573,0.1009,0.0166,0.00,16210,645,1,687,677,687,698,705,696,704,716,711,719,714,731,759,875,1222,1969,3166,4551,5802,6714,7365,7834,8260,8708,9232,9871,10618,11482,12485,13602,14785,15951,17067,18055,18773,19213,19344,19159,18786,18245,17653,17082,16613,16247,16020,15955,16030,16264,16683,17265,18017,18933,20016,21237,22561,24018,25510,27002,28425,29682,30682,31447,31850,31829,31515,30853,29933,28874,27629,26432,25261,24165,23168,22306,21566,20960,20475,20077,19790,19629,19533,19536,19634,19841,20093,20451,20886,21395,21965,22584,23241,23901,24519,25082,25569,25943,26213,26250,26135,25843,25361,24720,23993,23192,22312,21431,20587,19803,19114,18442,17889,17416,17000,16672,16437,16260,16159,16109,16139,16219,16384,16625,16920,17298,17732,18221,18785,19399,20029,20731,21467,22204,22946,23671,24377,25040,25637,26212,26628,26972,27213,27319,27325,27234,27017,26667,26266,25780,25216,24620,23980,23333,22678,21989,21364,20757,20148,19601,19110,18644,18221,17854,17512,17227,16971,16709,16501,16295,16131,15925,15752,15584,15442,15319,15217,15141,15056,15030,14997,15019,15001,15035,15061,15081,15124,15155,15214,15272,15285,15287,15307,15312,15325,15359,15348,15346,15285,15223,15167,15101,15007,14904,14772,14626,14454,14258,14046,13833,13588,13325,13058,12773,12482,12185,11877,11597,11313,11072,10825,10590,10338,10029,9710,9399,9112,8865,8645,8487,8339,8197,8093,8013,7941,7890,7831,7740,7594,7417,7264,7139,7019,6919,6840,6775,6717,6689,6660,6649,6641,6629,6649,6652,6489,6189,5746,5134,21.4,21.4,21.9,1568006,0.5,12.1,11.9,5.0,484,-1.00,-1.00,56.9386,-18.805242,0.000535,,,,,198 +SATSLF0720,2024246,8.510383,4.19,0.0587,0.1014,0.0167,0.00,16204,645,1,704,705,710,706,713,727,722,716,727,722,727,727,762,891,1229,1973,3156,4549,5794,6721,7368,7838,8258,8714,9229,9853,10615,11501,12490,13601,14795,15979,17099,18045,18778,19193,19327,19159,18778,18244,17646,17089,16605,16247,16021,15949,16029,16285,16680,17272,18005,18930,19986,21216,22552,23988,25480,26977,28414,29669,30667,31424,31829,31828,31499,30825,29891,28843,27621,26407,25243,24177,23152,22289,21549,20937,20442,20056,19771,19612,19509,19535,19626,19828,20077,20432,20864,21376,21953,22578,23248,23886,24503,25069,25570,25930,26188,26229,26113,25829,25344,24708,23985,23181,22295,21425,20580,19813,19104,18452,17876,17412,17000,16689,16439,16265,16160,16117,16135,16215,16394,16611,16918,17278,17707,18213,18777,19399,20025,20708,21441,22184,22935,23645,24365,25023,25611,26185,26613,26938,27197,27288,27301,27200,26990,26648,26256,25764,25210,24621,23977,23336,22672,22004,21356,20737,20141,19588,19092,18616,18195,17847,17496,17218,16937,16697,16509,16299,16129,15914,15731,15576,15425,15318,15221,15145,15075,15025,15006,15021,15017,15041,15062,15085,15127,15155,15211,15269,15290,15302,15286,15313,15325,15355,15345,15333,15277,15219,15162,15090,14998,14907,14777,14621,14440,14245,14027,13817,13582,13303,13055,12773,12486,12184,11886,11609,11321,11066,10826,10604,10324,10032,9693,9392,9102,8866,8653,8475,8326,8180,8089,8010,7947,7890,7825,7733,7593,7417,7252,7143,7027,6935,6855,6780,6728,6682,6658,6657,6632,6631,6650,6641,6497,6177,5753,5128,21.4,21.4,22.0,1568007,0.4,12.1,12.0,5.0,484,-1.00,-1.00,56.3419,-18.543160,0.000480,,,,,118 +SATSLF0720,2024246,8.510634,4.15,0.0582,0.1021,0.0167,0.00,16184,645,1,697,697,711,706,694,700,702,718,724,725,726,741,773,900,1225,1971,3162,4544,5785,6711,7357,7817,8243,8701,9220,9833,10587,11459,12457,13570,14744,15929,17047,18021,18741,19173,19305,19117,18741,18197,17613,17038,16577,16218,15985,15915,15998,16245,16635,17235,17978,18877,19963,21188,22506,23959,25463,26957,28369,29635,30633,31394,31773,31779,31450,30786,29856,28790,27563,26349,25191,24123,23122,22253,21525,20899,20425,20027,19766,19578,19479,19505,19604,19794,20055,20409,20827,21353,21913,22530,23216,23841,24456,25042,25526,25893,26146,26211,26082,25794,25321,24678,23965,23142,22281,21424,20554,19794,19089,18437,17877,17394,16995,16669,16413,16242,16136,16087,16113,16197,16373,16581,16885,17255,17691,18183,18766,19377,20013,20684,21429,22144,22907,23625,24325,24997,25580,26153,26583,26898,27145,27253,27264,27176,26962,26642,26249,25754,25192,24592,23943,23303,22641,21968,21337,20720,20123,19573,19073,18597,18185,17835,17504,17195,16947,16699,16493,16292,16117,15926,15720,15555,15406,15304,15200,15133,15057,15021,14996,14986,15009,15026,15040,15081,15127,15162,15196,15258,15264,15270,15280,15283,15302,15327,15330,15330,15277,15225,15163,15083,14992,14896,14746,14604,14453,14241,14038,13826,13591,13318,13053,12761,12457,12171,11876,11576,11314,11053,10832,10596,10334,10032,9701,9391,9093,8848,8651,8470,8302,8197,8093,8019,7947,7891,7812,7735,7581,7393,7246,7117,7016,6910,6839,6780,6729,6675,6667,6660,6637,6618,6649,6637,6478,6177,5755,5123,21.4,21.4,22.0,1568008,0.9,12.1,12.0,5.0,485,-1.00,-1.00,56.7941,-18.703316,0.000633,,,,,65 +SATSLF0720,2024246,8.510888,4.08,0.0572,0.1027,0.0172,0.00,16162,645,1,693,694,683,695,706,704,717,713,728,728,727,717,759,870,1209,1945,3131,4514,5771,6689,7331,7805,8219,8667,9192,9825,10560,11427,12433,13551,14729,15909,17002,17971,18693,19136,19266,19085,18712,18166,17577,17014,16543,16189,15962,15884,15958,16204,16621,17190,17943,18864,19918,21153,22477,23937,25425,26917,28338,29587,30576,31337,31729,31724,31388,30747,29810,28757,27537,26340,25169,24091,23093,22234,21503,20881,20387,20002,19716,19565,19452,19483,19579,19754,20017,20361,20805,21329,21881,22515,23163,23819,24432,25005,25501,25858,26128,26161,26045,25760,25278,24653,23915,23120,22258,21364,20532,19770,19066,18413,17834,17375,16949,16631,16391,16208,16102,16071,16087,16194,16356,16593,16901,17256,17676,18154,18720,19333,19972,20660,21386,22129,22877,23589,24301,24961,25545,26119,26549,26857,27131,27228,27237,27163,26928,26619,26210,25725,25154,24561,23917,23277,22627,21949,21305,20689,20104,19554,19065,18584,18172,17821,17478,17169,16922,16685,16473,16291,16081,15886,15712,15550,15408,15285,15187,15113,15035,14999,14974,14965,14967,15008,15033,15069,15106,15132,15177,15239,15261,15265,15289,15278,15305,15309,15313,15307,15257,15186,15145,15070,14981,14889,14746,14592,14421,14233,14018,13816,13570,13306,13029,12750,12461,12171,11873,11565,11318,11062,10825,10581,10299,10002,9689,9385,9081,8843,8627,8441,8302,8181,8070,8017,7933,7875,7814,7730,7585,7412,7252,7115,7005,6902,6821,6764,6720,6676,6649,6645,6630,6617,6632,6618,6475,6166,5738,5115,21.4,21.4,22.1,1568009,0.5,12.1,11.9,5.0,486,-1.00,-1.00,57.4257,-18.941376,0.000611,,,,,114 +SATSLF0720,2024246,8.511141,4.19,0.0586,0.1022,0.0170,0.00,16180,645,1,697,688,704,679,701,697,713,705,721,713,714,715,767,877,1217,1961,3143,4533,5777,6698,7319,7803,8224,8695,9208,9830,10596,11453,12450,13557,14747,15917,17034,17979,18713,19154,19277,19095,18733,18181,17589,17029,16577,16193,15969,15895,15991,16238,16638,17213,17969,18883,19949,21167,22504,23962,25448,26937,28366,29606,30609,31357,31765,31765,31433,30773,29843,28794,27557,26357,25207,24114,23114,22265,21509,20905,20402,20017,19734,19571,19476,19485,19595,19797,20055,20409,20841,21362,21935,22540,23224,23844,24456,25047,25509,25883,26144,26201,26071,25801,25310,24669,23952,23163,22280,21405,20561,19771,19058,18405,17836,17383,16975,16640,16407,16243,16144,16104,16125,16213,16362,16592,16893,17273,17690,18177,18755,19360,19998,20700,21433,22165,22909,23633,24350,24998,25584,26155,26566,26909,27160,27277,27289,27178,26969,26637,26249,25751,25168,24580,23930,23291,22627,21977,21326,20712,20120,19565,19077,18613,18192,17825,17490,17213,16933,16709,16500,16281,16097,15913,15726,15561,15414,15301,15203,15131,15064,15030,14998,15009,15002,15035,15034,15075,15128,15145,15188,15247,15261,15278,15274,15296,15304,15322,15331,15316,15279,15210,15152,15083,15005,14901,14762,14610,14428,14242,14026,13814,13577,13314,13042,12765,12478,12182,11874,11592,11320,11069,10832,10597,10330,10022,9700,9381,9105,8858,8644,8465,8317,8192,8094,8011,7942,7893,7824,7736,7593,7421,7249,7127,7018,6916,6837,6775,6727,6678,6661,6642,6624,6621,6625,6627,6484,6174,5758,5128,21.4,21.4,22.1,1568010,0.3,12.2,12.0,5.0,479,-1.00,-1.00,57.0001,-18.782837,0.000580,,,,,164 +SATSLF0720,2024246,8.511398,4.07,0.0571,0.1027,0.0179,0.00,16154,645,1,692,696,698,695,712,729,733,726,747,730,717,730,767,875,1205,1963,3137,4535,5769,6720,7356,7821,8237,8691,9190,9831,10571,11445,12425,13543,14733,15904,17019,17978,18722,19149,19300,19109,18709,18176,17572,17011,16538,16183,15946,15873,15971,16213,16637,17205,17962,18874,19937,21152,22472,23916,25402,26899,28308,29578,30589,31318,31720,31715,31394,30734,29813,28733,27509,26316,25144,24074,23073,22230,21497,20877,20403,20005,19706,19550,19452,19466,19558,19761,20013,20347,20791,21318,21877,22509,23168,23810,24411,24984,25464,25841,26102,26150,26024,25745,25274,24626,23916,23122,22249,21376,20532,19761,19063,18405,17828,17362,16957,16636,16393,16213,16127,16066,16088,16177,16348,16581,16873,17233,17676,18150,18715,19331,19969,20650,21373,22113,22848,23580,24290,24941,25529,26109,26524,26859,27095,27197,27208,27121,26901,26586,26181,25689,25125,24535,23897,23244,22597,21940,21294,20677,20097,19536,19047,18561,18158,17786,17473,17170,16905,16669,16460,16258,16071,15872,15689,15518,15376,15275,15179,15106,15026,14985,14953,14967,14956,14980,15001,15045,15093,15114,15163,15225,15233,15237,15257,15258,15263,15287,15306,15285,15235,15180,15124,15048,14970,14861,14720,14573,14397,14194,13986,13777,13543,13275,13026,12736,12437,12139,11850,11557,11292,11042,10823,10570,10304,10020,9692,9360,9079,8825,8616,8445,8281,8163,8068,7995,7936,7870,7811,7712,7572,7397,7249,7122,6997,6902,6831,6768,6717,6681,6645,6641,6617,6602,6633,6628,6468,6163,5733,5128,21.5,21.5,22.1,1568011,0.0,12.1,12.0,5.0,470,-1.00,-1.00,57.0057,-18.758671,0.000635,,,,,93 +SATSLF0720,2024246,8.511652,4.11,0.0575,0.1039,0.0197,0.00,16106,645,1,694,703,690,703,697,706,709,717,721,739,735,750,781,898,1229,1961,3147,4521,5767,6701,7346,7825,8233,8669,9192,9804,10555,11419,12425,13536,14713,15900,16981,17942,18672,19104,19237,19046,18662,18129,17544,16978,16513,16166,15931,15855,15941,16190,16589,17155,17909,18817,19883,21107,22418,23863,25341,26821,28246,29509,30488,31230,31643,31638,31309,30665,29740,28686,27443,26277,25093,24003,22997,22133,21410,20807,20317,19947,19664,19510,19402,19418,19493,19687,19957,20299,20726,21243,21822,22452,23093,23752,24341,24931,25393,25756,26017,26069,25961,25666,25202,24561,23842,23040,22179,21296,20449,19676,18999,18337,17770,17300,16896,16581,16338,16162,16069,16013,16036,16124,16290,16512,16805,17181,17597,18103,18667,19269,19917,20581,21314,22048,22807,23505,24203,24858,25446,26025,26453,26778,27017,27101,27127,27021,26807,26494,26080,25591,25033,24448,23808,23156,22517,21863,21218,20608,20027,19458,18967,18490,18082,17723,17398,17101,16838,16611,16411,16210,16017,15819,15645,15477,15336,15216,15116,15050,14965,14925,14901,14903,14912,14933,14952,14987,15022,15051,15115,15161,15195,15193,15206,15219,15246,15257,15253,15243,15191,15129,15065,14986,14894,14804,14675,14533,14368,14164,13950,13738,13495,13246,12988,12697,12402,12109,11813,11526,11259,11008,10765,10549,10265,9972,9649,9346,9046,8793,8581,8421,8264,8127,8041,7967,7895,7844,7781,7690,7549,7383,7229,7105,6984,6886,6803,6740,6682,6638,6631,6613,6586,6579,6607,6603,6459,6142,5715,5119,21.4,21.5,22.1,1568012,1.3,12.1,11.9,5.0,479,-1.00,-1.00,56.9420,-18.688430,0.000485,,,,,142 +SATSLF0720,2024246,8.511904,4.02,0.0562,0.1054,0.0197,0.00,16071,645,1,701,706,707,709,711,723,722,715,727,725,726,726,762,890,1216,1952,3125,4509,5746,6655,7282,7762,8180,8606,9116,9739,10473,11340,12328,13435,14605,15749,16871,17826,18550,18976,19112,18939,18557,18016,17434,16861,16402,16037,15821,15742,15826,16081,16490,17073,17821,18706,19779,20985,22305,23746,25210,26677,28103,29344,30329,31084,31469,31483,31154,30514,29611,28553,27319,26152,25000,23922,22930,22069,21333,20739,20254,19869,19584,19446,19338,19359,19449,19640,19892,20237,20669,21192,21752,22374,23037,23685,24293,24866,25342,25699,25968,26011,25885,25618,25129,24487,23772,22976,22103,21255,20401,19643,18945,18295,17734,17267,16870,16553,16297,16137,16035,15991,16019,16114,16273,16499,16785,17163,17577,18069,18633,19240,19869,20558,21267,22011,22755,23473,24171,24836,25437,26000,26430,26754,26978,27081,27088,27006,26788,26461,26067,25582,25011,24443,23794,23160,22505,21843,21213,20596,20004,19447,18951,18487,18097,17734,17402,17118,16854,16612,16408,16199,16017,15824,15646,15488,15326,15207,15106,15047,14965,14949,14906,14917,14920,14935,14966,15003,15056,15080,15119,15180,15200,15209,15211,15227,15241,15261,15248,15241,15191,15142,15065,14999,14912,14812,14685,14537,14346,14170,13957,13745,13508,13249,12993,12706,12419,12116,11827,11542,11272,11022,10776,10552,10264,9969,9644,9330,9049,8813,8599,8443,8281,8136,8047,7971,7922,7854,7795,7701,7554,7379,7223,7098,6980,6881,6810,6749,6696,6657,6639,6625,6618,6601,6619,6618,6457,6156,5719,5106,21.4,21.5,22.1,1568013,0.5,12.1,12.0,5.0,475,-1.00,-1.00,58.4640,-19.231557,0.000574,,,,,177 +SATSLF0720,2024246,8.512160,4.13,0.0579,0.1039,0.0184,0.00,16131,645,1,693,698,693,696,712,711,721,712,717,717,728,733,765,873,1206,1953,3124,4513,5755,6690,7326,7797,8227,8666,9185,9792,10537,11399,12395,13510,14683,15862,16963,17925,18636,19091,19210,19045,18660,18115,17518,16965,16493,16131,15901,15851,15929,16190,16586,17141,17897,18801,19866,21095,22417,23873,25367,26849,28258,29515,30504,31244,31652,31627,31306,30656,29745,28680,27443,26269,25107,24023,23029,22170,21442,20818,20317,19955,19658,19513,19400,19423,19515,19707,19989,20317,20749,21281,21840,22477,23128,23784,24381,24974,25435,25795,26074,26117,25997,25722,25237,24578,23876,23092,22217,21348,20496,19725,19014,18376,17805,17329,16928,16613,16365,16201,16088,16045,16064,16161,16327,16557,16856,17201,17641,18125,18701,19316,19955,20641,21362,22091,22834,23554,24277,24938,25520,26085,26517,26821,27079,27170,27193,27097,26880,26548,26157,25660,25106,24507,23873,23226,22565,21898,21264,20655,20075,19526,19027,18565,18157,17783,17448,17169,16886,16645,16458,16245,16043,15863,15682,15521,15370,15253,15162,15085,15017,14969,14937,14960,14957,14990,15001,15042,15085,15115,15153,15225,15225,15239,15246,15261,15282,15302,15287,15287,15243,15179,15105,15047,14957,14861,14728,14582,14400,14213,14003,13784,13541,13278,13000,12735,12449,12164,11877,11578,11301,11031,10803,10565,10284,9982,9675,9349,9075,8833,8626,8455,8299,8169,8075,7985,7923,7857,7799,7709,7557,7395,7244,7109,6992,6884,6804,6745,6693,6663,6645,6637,6611,6615,6647,6624,6483,6152,5735,5110,21.4,21.6,22.2,1568014,1.3,12.1,12.0,5.0,481,-1.00,-1.00,57.3579,-18.863231,0.000645,,,,,95 +SATSLF0720,2024246,8.512414,4.21,0.0590,0.1047,0.0189,0.00,16106,645,1,677,682,693,686,695,703,704,708,723,714,730,734,767,884,1198,1955,3139,4513,5757,6682,7305,7793,8212,8645,9159,9793,10523,11390,12392,13510,14681,15833,16955,17897,18626,19054,19181,18997,18631,18093,17490,16939,16486,16117,15906,15826,15906,16144,16542,17133,17877,18787,19859,21076,22392,23840,25314,26793,28197,29454,30442,31186,31605,31595,31269,30616,29694,28637,27421,26229,25063,23986,22993,22129,21397,20776,20297,19923,19636,19479,19368,19393,19486,19690,19945,20290,20727,21243,21805,22432,23091,23737,24341,24917,25394,25753,26016,26070,25954,25677,25209,24572,23849,23045,22183,21313,20453,19677,18998,18329,17792,17309,16921,16581,16339,16161,16069,16013,16039,16132,16279,16510,16801,17177,17608,18098,18679,19290,19923,20617,21322,22073,22797,23508,24228,24880,25476,26038,26464,26784,27029,27128,27141,27044,26825,26501,26113,25621,25065,24466,23844,23184,22534,21885,21244,20635,20034,19483,18994,18523,18130,17757,17431,17142,16875,16640,16428,16216,16013,15835,15642,15471,15359,15239,15149,15069,14992,14946,14928,14925,14920,14970,14987,15027,15053,15088,15144,15194,15201,15217,15221,15227,15248,15268,15266,15245,15212,15141,15089,15019,14916,14847,14698,14548,14378,14194,13975,13767,13527,13266,12998,12713,12422,12133,11829,11533,11275,11039,10786,10551,10294,9979,9660,9344,9064,8830,8609,8455,8308,8173,8058,7989,7908,7853,7790,7697,7541,7391,7239,7109,6988,6889,6805,6745,6685,6655,6637,6620,6603,6605,6601,6603,6444,6146,5720,5105,21.4,21.6,22.2,1568015,1.2,12.1,11.9,5.0,480,-1.00,-1.00,57.1405,-18.745516,0.000545,,,,,9 +SATSLF0720,2024246,8.512666,4.23,0.0593,0.1050,0.0187,0.00,16093,645,1,704,702,691,707,710,711,722,710,721,725,738,731,766,879,1214,1955,3124,4494,5729,6642,7283,7761,8196,8624,9145,9761,10494,11367,12355,13469,14638,15826,16905,17859,18568,19006,19136,18961,18580,18055,17468,16919,16438,16087,15869,15796,15866,16126,16525,17098,17841,18746,19827,21034,22348,23797,25272,26738,28151,29406,30390,31142,31531,31547,31205,30569,29661,28594,27371,26193,25035,23955,22966,22104,21380,20768,20285,19897,19608,19458,19353,19368,19477,19665,19904,20267,20699,21211,21781,22415,23074,23706,24325,24902,25373,25730,25988,26036,25929,25644,25174,24533,23821,23038,22161,21282,20437,19667,18966,18325,17777,17301,16894,16586,16341,16152,16066,16009,16038,16118,16299,16501,16817,17173,17603,18086,18638,19260,19900,20608,21321,22070,22773,23515,24212,24868,25454,26019,26434,26764,27010,27121,27141,27041,26834,26499,26109,25597,25034,24460,23821,23175,22529,21860,21229,20633,20049,19494,19001,18521,18121,17745,17413,17130,16865,16617,16413,16206,16027,15817,15643,15488,15354,15246,15136,15061,14989,14933,14933,14935,14933,14953,14986,15028,15058,15105,15140,15194,15207,15222,15222,15227,15245,15268,15269,15271,15217,15159,15097,15016,14933,14836,14685,14548,14378,14181,13987,13773,13528,13270,13013,12708,12410,12109,11816,11537,11273,11029,10792,10550,10277,9986,9673,9349,9071,8826,8608,8438,8281,8159,8061,7973,7913,7861,7793,7700,7561,7400,7237,7121,6996,6903,6797,6755,6692,6658,6629,6619,6589,6594,6617,6613,6465,6144,5735,5120,21.4,21.6,22.2,1568015,0.4,12.1,12.0,5.0,463,-1.00,-1.00,57.3755,-18.812860,0.000511,,,,,161 +SATSLF0720,2024246,8.512924,4.27,0.0599,0.1042,0.0186,0.00,16111,645,1,708,696,706,705,725,715,718,728,729,731,727,734,769,874,1217,1948,3128,4512,5749,6679,7310,7785,8199,8656,9163,9780,10517,11376,12372,13480,14653,15813,16932,17873,18606,19028,19162,18981,18609,18087,17489,16937,16489,16109,15884,15808,15880,16139,16548,17135,17881,18785,19860,21073,22384,23821,25293,26774,28194,29438,30449,31168,31586,31593,31272,30621,29693,28633,27405,26234,25065,23986,22966,22124,21385,20791,20313,19917,19639,19476,19387,19393,19496,19685,19947,20285,20724,21241,21816,22438,23086,23748,24361,24936,25424,25781,26025,26073,25962,25684,25201,24575,23863,23053,22194,21317,20461,19703,18997,18350,17798,17347,16903,16592,16355,16177,16073,16031,16053,16149,16305,16529,16835,17195,17628,18120,18690,19290,19921,20601,21326,22083,22813,23534,24230,24891,25482,26046,26475,26786,27017,27127,27146,27061,26842,26518,26140,25633,25077,24493,23860,23200,22551,21883,21257,20637,20040,19484,19000,18516,18128,17753,17432,17147,16885,16646,16438,16225,16049,15842,15662,15485,15357,15234,15155,15065,14992,14957,14931,14928,14933,14957,15007,15034,15064,15103,15140,15192,15213,15237,15237,15239,15261,15277,15275,15273,15219,15164,15099,15023,14940,14842,14704,14560,14377,14195,13984,13767,13533,13273,13015,12725,12427,12144,11837,11555,11281,11030,10796,10553,10296,9985,9671,9366,9082,8832,8626,8456,8301,8174,8075,7996,7923,7861,7781,7707,7570,7381,7229,7092,6985,6887,6809,6751,6701,6668,6656,6653,6629,6625,6629,6635,6473,6160,5733,5117,21.5,21.6,22.2,1568016,1.2,12.2,11.9,5.0,480,-1.00,-1.00,57.1818,-18.759380,0.000511,,,,,61 +SATSLF0720,2024246,8.513177,4.22,0.0592,0.1044,0.0196,0.00,16086,645,1,717,701,695,704,706,704,720,724,720,733,734,744,774,901,1213,1943,3131,4501,5729,6651,7286,7755,8174,8607,9123,9749,10501,11349,12358,13445,14635,15795,16896,17844,18573,19015,19147,18966,18597,18067,17456,16901,16453,16081,15857,15778,15865,16123,16522,17101,17858,18761,19827,21041,22371,23818,25277,26752,28163,29419,30422,31161,31565,31569,31233,30557,29661,28604,27368,26187,25035,23950,22947,22088,21367,20769,20281,19895,19627,19454,19379,19376,19464,19649,19922,20270,20698,21218,21784,22404,23074,23712,24320,24882,25362,25738,25994,26040,25920,25643,25173,24549,23829,23037,22165,21285,20444,19677,18973,18314,17767,17285,16886,16570,16323,16149,16050,16005,16032,16122,16281,16509,16796,17157,17589,18070,18660,19241,19883,20578,21300,22041,22773,23485,24193,24854,25430,25988,26426,26741,26990,27095,27105,27017,26794,26475,26080,25581,25013,24426,23809,23162,22509,21844,21218,20601,20018,19473,18968,18493,18096,17729,17399,17110,16847,16623,16413,16210,16011,15813,15610,15457,15324,15216,15118,15051,14973,14949,14913,14910,14908,14945,14954,15000,15034,15075,15113,15179,15185,15195,15200,15207,15252,15261,15260,15242,15206,15128,15068,14986,14910,14813,14683,14533,14365,14174,13978,13749,13513,13245,12995,12694,12411,12118,11819,11530,11266,11012,10778,10536,10272,9972,9641,9342,9052,8814,8606,8429,8283,8158,8064,7973,7910,7845,7802,7696,7558,7378,7220,7088,6965,6873,6801,6739,6693,6653,6635,6635,6616,6609,6622,6611,6457,6155,5719,5109,21.5,21.6,22.2,1568017,0.6,12.1,12.0,5.0,470,-1.00,-1.00,57.5316,-18.884790,0.000662,,,,,184 +SATSLF0720,2024246,8.513429,4.26,0.0596,0.1087,0.0219,0.00,15965,645,1,705,697,713,725,721,722,715,720,715,707,727,725,762,881,1209,1945,3101,4455,5686,6585,7225,7685,8101,8532,9043,9657,10381,11245,12229,13329,14486,15643,16739,17686,18405,18824,18952,18775,18414,17883,17305,16750,16289,15938,15705,15651,15721,15981,16373,16941,17669,18595,19629,20833,22129,23563,25035,26493,27895,29137,30121,30857,31267,31266,30937,30278,29379,28325,27111,25945,24788,23745,22749,21911,21179,20584,20093,19712,19430,19279,19194,19194,19303,19489,19753,20103,20532,21042,21597,22219,22893,23505,24119,24686,25161,25517,25760,25819,25704,25433,24976,24346,23639,22860,21994,21129,20280,19504,18813,18171,17623,17160,16768,16453,16201,16033,15931,15897,15905,16005,16154,16385,16681,17034,17468,17947,18510,19122,19754,20445,21158,21909,22629,23349,24037,24676,25261,25832,26245,26569,26795,26907,26910,26829,26610,26306,25909,25417,24872,24284,23661,22999,22355,21690,21061,20462,19880,19330,18853,18383,17975,17621,17300,16997,16741,16513,16306,16103,15916,15717,15544,15382,15225,15107,15023,14948,14880,14840,14826,14839,14833,14855,14868,14912,14953,14979,15032,15085,15113,15123,15125,15138,15147,15165,15168,15163,15097,15055,14992,14914,14833,14732,14593,14445,14287,14088,13877,13661,13431,13168,12914,12639,12347,12070,11774,11472,11209,10960,10711,10489,10233,9921,9600,9290,9017,8770,8549,8387,8222,8099,8006,7935,7866,7825,7745,7655,7522,7345,7194,7074,6948,6849,6764,6711,6657,6621,6599,6593,6578,6564,6586,6572,6426,6108,5693,5073,21.5,21.6,22.2,1568018,0.6,12.1,12.0,5.0,470,-1.00,-1.00,57.9169,-18.866994,0.000560,,,,,49 +SATSLF0720,2024246,8.513687,5.10,0.0714,0.1127,0.0234,0.00,15835,645,1,701,701,709,717,707,715,722,712,731,722,718,731,765,883,1203,1899,3020,4333,5505,6400,7006,7457,7878,8304,8802,9395,10134,10977,11927,13003,14152,15275,16361,17270,17972,18385,18521,18357,17992,17495,16941,16417,15968,15648,15426,15360,15456,15701,16100,16672,17395,18306,19345,20546,21841,23257,24696,26150,27541,28761,29729,30477,30842,30868,30538,29904,29012,27987,26776,25634,24501,23449,22475,21659,20951,20361,19906,19529,19250,19111,19027,19033,19113,19324,19585,19933,20364,20885,21441,22042,22702,23347,23952,24504,24978,25332,25601,25633,25524,25232,24775,24149,23447,22675,21814,20954,20138,19386,18694,18057,17497,17057,16646,16339,16112,15931,15844,15799,15821,15915,16082,16303,16585,16948,17388,17868,18432,19037,19671,20326,21056,21768,22516,23227,23922,24576,25148,25696,26118,26427,26657,26769,26792,26713,26493,26196,25786,25321,24756,24169,23541,22900,22251,21598,20977,20381,19793,19252,18763,18309,17905,17550,17224,16932,16679,16445,16241,16028,15847,15662,15470,15317,15192,15069,14983,14909,14825,14784,14784,14769,14787,14803,14839,14873,14897,14944,14989,15042,15052,15065,15083,15061,15104,15117,15113,15109,15056,15014,14941,14877,14790,14694,14557,14408,14240,14055,13842,13629,13393,13143,12881,12603,12308,12010,11721,11432,11165,10915,10668,10443,10169,9879,9563,9267,8983,8749,8541,8368,8220,8102,7994,7904,7824,7770,7711,7622,7487,7319,7172,7053,6926,6841,6754,6697,6630,6611,6585,6569,6546,6543,6562,6555,6403,6103,5684,5063,21.5,21.6,22.3,1568019,1.3,12.1,11.9,5.0,475,-1.00,-1.00,59.9884,-19.499254,0.000696,,,,,98 +SATSLF0720,2024246,8.513941,4.04,0.0566,0.1079,0.0226,0.00,15981,645,1,716,709,724,712,715,717,709,718,724,725,727,762,777,895,1216,1965,3129,4509,5737,6650,7287,7761,8173,8618,9123,9744,10474,11336,12317,13418,14594,15745,16851,17797,18508,18955,19089,18904,18530,17992,17410,16838,16398,16025,15793,15714,15786,16043,16439,17024,17764,18657,19707,20931,22229,23656,25106,26591,28002,29229,30223,30956,31351,31341,31031,30385,29464,28411,27194,25994,24857,23793,22796,21949,21207,20619,20142,19741,19479,19326,19230,19233,19333,19515,19767,20117,20530,21060,21614,22240,22893,23545,24157,24730,25197,25549,25797,25859,25733,25441,24986,24364,23652,22866,22016,21143,20307,19537,18849,18180,17637,17170,16766,16454,16211,16042,15943,15893,15914,16014,16171,16378,16672,17029,17456,17952,18514,19121,19749,20425,21153,21858,22603,23305,24000,24651,25227,25805,26218,26548,26793,26888,26918,26810,26619,26274,25878,25394,24843,24258,23617,22982,22339,21685,21062,20452,19873,19308,18843,18371,17969,17604,17279,16993,16717,16490,16278,16077,15900,15703,15528,15368,15218,15111,15009,14925,14853,14826,14818,14809,14802,14844,14864,14896,14934,14969,15010,15076,15075,15092,15098,15102,15141,15141,15151,15138,15085,15021,14969,14900,14805,14720,14584,14426,14264,14085,13868,13655,13436,13153,12889,12602,12313,12037,11750,11449,11187,10952,10701,10465,10208,9897,9574,9278,8986,8752,8539,8378,8229,8093,8000,7906,7845,7790,7718,7648,7499,7333,7176,7067,6948,6845,6767,6694,6645,6605,6592,6578,6568,6558,6582,6562,6411,6112,5687,5091,21.5,21.7,22.3,1568020,0.0,12.1,12.0,5.0,482,-1.00,-1.00,56.9058,-18.501127,0.000583,,,,,61 +SATSLF0720,2024246,8.514192,4.20,0.0588,0.1051,0.0194,0.00,16078,645,1,701,711,717,714,726,721,715,723,718,729,731,743,781,896,1237,1973,3150,4513,5739,6663,7296,7765,8182,8633,9154,9774,10514,11370,12374,13461,14637,15810,16901,17858,18572,19010,19138,18963,18596,18062,17453,16916,16448,16093,15853,15772,15861,16102,16508,17095,17839,18745,19811,21018,22347,23781,25258,26741,28144,29397,30384,31120,31529,31530,31204,30544,29626,28567,27321,26155,24996,23918,22931,22087,21371,20752,20261,19869,19596,19441,19352,19362,19446,19643,19888,20247,20676,21186,21754,22373,23037,23687,24293,24866,25345,25706,25964,26027,25893,25627,25147,24531,23798,22996,22139,21270,20430,19662,18948,18292,17740,17280,16889,16553,16309,16144,16043,16005,16020,16118,16285,16497,16795,17145,17571,18064,18628,19228,19891,20569,21287,22026,22757,23479,24171,24829,25425,25977,26402,26745,26983,27078,27106,26997,26788,26455,26057,25578,25010,24418,23783,23145,22506,21841,21200,20611,20005,19455,18971,18489,18088,17708,17393,17095,16827,16594,16394,16211,16005,15821,15638,15466,15339,15221,15121,15023,14952,14920,14907,14907,14916,14941,14967,14993,15029,15061,15115,15165,15181,15190,15197,15201,15222,15249,15256,15249,15190,15122,15075,15008,14916,14809,14681,14535,14369,14184,13977,13752,13516,13258,12989,12717,12402,12105,11815,11538,11264,11017,10784,10540,10267,9975,9650,9349,9065,8825,8605,8429,8280,8141,8053,7964,7900,7857,7790,7690,7555,7381,7227,7101,6999,6898,6809,6741,6691,6660,6623,6615,6601,6595,6609,6597,6454,6152,5733,5107,21.5,21.7,22.3,1568021,0.7,12.1,12.0,5.0,479,-1.00,-1.00,57.1611,-18.709546,0.000649,,,,,104 +SATSLF0720,2024246,8.514447,4.20,0.0588,0.1065,0.0198,0.00,16046,645,1,712,712,725,706,704,709,713,720,733,738,744,738,778,900,1236,1962,3137,4500,5719,6631,7273,7750,8153,8602,9111,9724,10471,11334,12323,13412,14586,15733,16851,17782,18496,18937,19085,18902,18527,17998,17415,16849,16389,16020,15797,15725,15804,16052,16465,17040,17787,18698,19747,20970,22281,23718,25180,26651,28069,29297,30292,31047,31421,31420,31105,30453,29554,28485,27257,26092,24930,23863,22865,22007,21285,20679,20199,19823,19545,19389,19290,19309,19393,19592,19849,20201,20633,21146,21716,22346,23002,23648,24258,24818,25281,25661,25898,25948,25838,25576,25089,24471,23765,22951,22102,21211,20387,19609,18910,18258,17704,17238,16850,16533,16294,16125,16017,15961,15991,16073,16239,16452,16759,17124,17555,18048,18610,19213,19840,20536,21256,21996,22725,23430,24139,24779,25385,25944,26372,26709,26953,27054,27062,26965,26742,26422,26026,25527,24958,24398,23770,23114,22468,21815,21178,20570,19978,19410,18925,18445,18054,17674,17346,17076,16811,16580,16389,16184,15986,15803,15616,15453,15296,15181,15079,15011,14941,14899,14903,14885,14883,14915,14928,14983,15021,15062,15104,15158,15160,15187,15200,15181,15202,15235,15220,15225,15181,15118,15061,14997,14904,14810,14672,14517,14346,14153,13947,13717,13480,13218,12965,12681,12379,12097,11814,11529,11246,10992,10759,10523,10272,9957,9641,9329,9050,8817,8586,8425,8279,8149,8053,7973,7903,7844,7786,7686,7545,7371,7232,7093,6983,6874,6798,6736,6680,6646,6621,6610,6593,6584,6618,6610,6450,6147,5725,5115,21.5,21.8,22.3,1568022,0.5,12.1,11.9,5.0,469,-1.00,-1.00,57.6071,-18.842830,0.000630,,,,,103 +SATSDF0720,2024246,8.759138,0.00,0.0000,0.0000,0.0000,0.00,643,0,1,637,634,622,625,618,613,618,618,617,616,617,626,626,633,632,631,635,621,624,627,617,611,634,651,647,643,634,623,651,650,648,664,661,653,649,647,631,634,652,641,646,646,650,659,656,652,651,653,647,659,641,651,651,653,649,659,648,664,658,651,644,647,640,641,636,633,645,637,645,661,645,650,648,653,656,652,644,646,646,643,643,659,657,640,663,657,652,649,657,652,647,641,643,632,631,641,641,634,650,642,644,652,659,653,655,654,641,642,647,646,659,653,647,646,640,648,642,635,649,637,643,645,645,660,657,648,641,659,642,643,649,655,637,650,646,637,641,628,639,650,646,651,660,661,661,656,649,647,644,633,653,645,640,643,637,644,655,638,645,647,644,647,654,641,641,637,635,633,658,646,658,660,649,650,653,645,637,653,636,635,635,636,636,647,648,645,637,641,637,647,646,642,645,641,642,640,637,641,640,633,643,638,643,646,649,646,630,637,629,623,637,643,642,633,643,653,637,633,631,647,629,635,636,639,648,641,647,665,656,655,647,641,643,638,631,653,640,633,639,643,647,646,651,633,631,640,634,645,645,637,646,651,653,654,659,485,0.0,0.0,0.0,1568021,0.1,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,187 +SATSLF0720,2024246,8.759696,3.93,0.0551,0.1009,0.0174,0.00,16189,643,1,677,692,693,695,697,690,709,698,711,715,707,730,757,883,1210,1965,3161,4549,5819,6728,7383,7861,8280,8736,9244,9879,10629,11491,12521,13639,14827,16009,17143,18090,18827,19247,19389,19181,18816,18258,17668,17095,16634,16269,16037,15958,16033,16281,16686,17277,18033,18944,20013,21249,22564,24019,25514,27010,28434,29701,30697,31472,31856,31865,31524,30878,29945,28877,27612,26443,25261,24173,23168,22301,21561,20961,20460,20056,19779,19618,19529,19515,19617,19801,20069,20413,20845,21368,21931,22553,23224,23877,24482,25045,25527,25906,26157,26225,26096,25800,25325,24688,23944,23154,22279,21397,20570,19781,19069,18421,17854,17385,16981,16654,16406,16225,16129,16083,16112,16194,16360,16585,16892,17249,17685,18174,18741,19353,19981,20664,21392,22131,22898,23609,24298,24988,25568,26133,26556,26893,27140,27226,27248,27154,26937,26612,26216,25724,25145,24571,23914,23283,22620,21971,21333,20712,20112,19555,19072,18600,18181,17819,17478,17195,16939,16684,16485,16280,16085,15885,15693,15530,15394,15281,15173,15104,15031,14993,14969,14956,14980,15003,15024,15073,15106,15137,15197,15237,15255,15261,15275,15266,15291,15325,15312,15302,15259,15198,15138,15063,14962,14874,14732,14580,14411,14216,14007,13801,13566,13297,13035,12752,12448,12161,11847,11559,11289,11037,10809,10562,10299,10006,9677,9374,9089,8844,8630,8468,8314,8181,8075,7991,7917,7866,7802,7715,7584,7410,7249,7121,7012,6903,6822,6757,6713,6656,6634,6632,6614,6609,6625,6613,6475,6162,5747,5133,21.4,21.4,21.8,1568022,0.2,12.1,11.9,5.0,602,-1.00,-1.00,57.0373,-18.853179,0.000582,,,,,48 +SATSLF0720,2024246,8.759878,3.94,0.0552,0.1017,0.0178,0.00,16178,643,1,706,697,713,721,713,715,707,707,713,711,727,729,779,897,1228,1991,3173,4575,5814,6741,7377,7850,8256,8705,9229,9857,10611,11482,12473,13611,14777,15959,17090,18052,18777,19209,19345,19165,18775,18249,17649,17078,16614,16238,16005,15921,16004,16255,16672,17257,18006,18904,19989,21192,22527,23970,25447,26955,28399,29661,30657,31400,31803,31793,31475,30805,29885,28827,27589,26374,25219,24148,23118,22255,21523,20923,20443,20041,19754,19596,19497,19504,19601,19785,20051,20397,20832,21353,21918,22526,23188,23834,24449,25031,25504,25873,26132,26184,26057,25778,25297,24658,23916,23136,22261,21399,20553,19768,19069,18405,17845,17372,16973,16626,16389,16220,16115,16103,16114,16196,16371,16584,16881,17237,17675,18169,18725,19341,19973,20654,21392,22132,22897,23597,24306,24967,25559,26122,26554,26884,27123,27226,27239,27161,26939,26618,26206,25728,25146,24547,23927,23276,22615,21948,21307,20695,20119,19558,19054,18587,18177,17819,17485,17184,16934,16673,16484,16282,16106,15893,15709,15536,15380,15267,15172,15098,15024,14999,14964,14973,14971,15003,15017,15045,15103,15138,15184,15232,15253,15257,15261,15271,15291,15319,15323,15301,15255,15190,15123,15038,14967,14873,14731,14597,14411,14232,14010,13806,13553,13299,13021,12743,12437,12151,11867,11573,11300,11045,10819,10578,10323,10002,9683,9381,9077,8846,8621,8469,8305,8165,8067,7999,7922,7873,7809,7725,7578,7405,7253,7111,7003,6911,6837,6769,6715,6679,6661,6645,6613,6617,6619,6627,6469,6177,5738,5125,21.4,21.4,21.9,1568023,0.3,12.0,11.9,5.0,487,-1.00,-1.00,56.9386,-18.777629,0.000571,,,,,227 +SATSLF0720,2024246,8.760136,3.95,0.0553,0.1012,0.0167,0.00,16204,643,1,696,687,705,705,701,708,704,711,716,720,727,729,757,878,1213,1981,3169,4551,5799,6732,7381,7853,8278,8718,9251,9869,10612,11474,12488,13602,14788,15966,17089,18061,18782,19232,19350,19172,18777,18245,17653,17073,16613,16246,16024,15945,16025,16273,16673,17262,18009,18939,20002,21237,22566,24018,25523,27005,28439,29689,30709,31445,31842,31846,31523,30873,29938,28880,27647,26444,25276,24177,23173,22312,21583,20961,20475,20077,19786,19627,19517,19529,19637,19819,20085,20437,20867,21386,21950,22579,23257,23893,24497,25078,25561,25915,26176,26236,26090,25815,25344,24714,23988,23184,22321,21434,20579,19810,19098,18433,17884,17410,16997,16676,16428,16254,16154,16102,16131,16209,16395,16616,16912,17306,17717,18199,18760,19362,20016,20689,21426,22174,22935,23656,24369,25032,25620,26171,26609,26934,27176,27277,27285,27197,26994,26664,26267,25763,25187,24597,23954,23304,22657,21978,21344,20733,20132,19584,19097,18626,18216,17832,17511,17221,16949,16693,16502,16283,16105,15909,15716,15579,15441,15310,15211,15137,15049,15017,15000,14981,14996,15044,15069,15092,15131,15161,15219,15257,15277,15278,15303,15301,15318,15322,15315,15335,15274,15214,15160,15092,14997,14900,14760,14615,14435,14259,14041,13824,13592,13313,13049,12764,12475,12181,11884,11589,11319,11066,10845,10592,10322,10023,9695,9392,9102,8866,8640,8474,8315,8181,8077,7998,7938,7892,7809,7726,7600,7418,7262,7147,7022,6921,6853,6774,6717,6668,6647,6645,6651,6622,6642,6631,6482,6167,5746,5128,21.4,21.4,21.9,1568024,0.6,12.1,12.0,5.0,487,-1.00,-1.00,57.5978,-19.086473,0.000580,,,,,53 +SATSLF0720,2024246,8.760388,4.08,0.0572,0.1011,0.0168,0.00,16205,643,1,701,709,704,709,713,712,714,721,720,709,708,720,765,885,1223,1969,3153,4551,5813,6726,7377,7842,8259,8715,9239,9862,10617,11487,12506,13617,14809,15961,17095,18065,18783,19223,19363,19190,18794,18256,17650,17085,16624,16232,16011,15944,16009,16288,16694,17276,18032,18941,20031,21244,22568,24037,25522,27008,28432,29681,30699,31425,31831,31841,31514,30861,29931,28869,27637,26417,25259,24177,23149,22311,21562,20963,20469,20071,19785,19633,19520,19538,19644,19827,20084,20427,20862,21381,21963,22574,23237,23885,24504,25084,25566,25925,26180,26229,26114,25841,25363,24713,23987,23179,22302,21434,20577,19801,19094,18437,17882,17413,17005,16673,16427,16256,16152,16102,16129,16226,16381,16614,16910,17285,17701,18201,18788,19392,20027,20714,21437,22180,22933,23633,24349,25005,25617,26176,26601,26937,27169,27290,27285,27201,26993,26653,26266,25764,25201,24605,23963,23331,22660,22006,21370,20748,20161,19593,19108,18621,18218,17851,17510,17226,16942,16705,16507,16306,16110,15910,15730,15575,15428,15321,15210,15145,15053,15024,14999,14997,15010,15031,15063,15090,15125,15155,15210,15264,15271,15282,15301,15304,15317,15337,15334,15335,15276,15232,15157,15114,15014,14902,14759,14614,14448,14244,14043,13820,13579,13315,13049,12763,12459,12167,11875,11593,11316,11069,10830,10597,10338,10012,9685,9371,9100,8849,8643,8477,8324,8185,8105,8005,7943,7891,7822,7727,7575,7417,7253,7131,7013,6925,6862,6784,6714,6673,6661,6634,6625,6629,6634,6624,6476,6174,5747,5130,21.4,21.4,21.9,1568025,0.4,12.1,11.9,5.0,486,-1.00,-1.00,56.7238,-18.717840,0.000615,,,,,76 +SATSLF0720,2024246,8.760639,4.30,0.0602,0.1023,0.0172,0.00,16162,643,1,689,691,699,697,691,704,705,701,703,706,697,704,755,886,1211,1967,3147,4525,5756,6681,7309,7787,8208,8631,9175,9782,10539,11410,12421,13526,14719,15885,16989,17953,18660,19083,19235,19051,18667,18124,17544,16983,16533,16166,15944,15872,15958,16195,16599,17193,17941,18841,19913,21131,22462,23904,25390,26893,28309,29560,30566,31320,31726,31722,31386,30736,29801,28749,27520,26318,25158,24070,23066,22202,21473,20877,20393,20002,19712,19570,19467,19474,19570,19764,20020,20373,20797,21326,21893,22526,23177,23844,24437,25024,25494,25858,26109,26169,26043,25769,25292,24642,23923,23140,22261,21395,20537,19771,19070,18414,17836,17366,16956,16641,16392,16210,16127,16077,16098,16200,16362,16589,16867,17258,17677,18179,18740,19349,19995,20662,21394,22133,22887,23605,24314,24973,25559,26156,26560,26903,27122,27243,27239,27154,26946,26618,26228,25737,25162,24575,23930,23281,22635,21966,21331,20699,20115,19557,19072,18592,18179,17813,17481,17207,16945,16678,16503,16281,16094,15892,15725,15544,15398,15286,15179,15107,15038,15009,14989,14986,14989,15013,15026,15074,15113,15150,15181,15245,15261,15278,15282,15287,15293,15321,15325,15298,15275,15217,15146,15073,14977,14891,14738,14587,14423,14229,14021,13802,13563,13302,13034,12754,12468,12180,11884,11598,11314,11081,10829,10590,10320,10017,9680,9358,9090,8840,8633,8471,8311,8181,8077,8010,7941,7888,7825,7737,7591,7415,7256,7121,6991,6909,6824,6773,6713,6674,6655,6643,6637,6625,6640,6624,6477,6170,5744,5135,21.4,21.4,22.0,1568026,0.6,12.1,12.0,5.0,485,-1.00,-1.00,57.2377,-18.855922,0.000558,,,,,63 +SATSLF0720,2024246,8.760894,4.07,0.0570,0.1019,0.0170,0.00,16182,643,1,707,706,726,698,711,713,721,710,715,708,723,724,773,891,1233,1975,3162,4549,5802,6727,7361,7819,8244,8695,9222,9853,10582,11469,12481,13589,14754,15933,17043,18000,18723,19173,19317,19118,18729,18189,17604,17038,16579,16193,15987,15894,15975,16226,16632,17223,17974,18890,19970,21193,22525,23964,25466,26944,28364,29623,30613,31371,31765,31762,31434,30786,29862,28795,27553,26371,25197,24116,23118,22264,21516,20905,20413,20017,19736,19581,19485,19505,19592,19782,20050,20402,20829,21349,21931,22540,23211,23860,24469,25038,25521,25870,26151,26185,26071,25797,25307,24680,23944,23147,22279,21418,20552,19783,19090,18432,17862,17405,16982,16648,16394,16241,16122,16087,16109,16189,16371,16598,16893,17254,17687,18172,18754,19360,20007,20669,21404,22164,22910,23619,24327,24993,25581,26152,26583,26914,27148,27251,27261,27160,26937,26621,26234,25748,25166,24589,23942,23295,22622,21975,21326,20713,20125,19560,19070,18610,18192,17841,17512,17222,16938,16706,16482,16279,16103,15913,15712,15546,15413,15304,15206,15133,15060,15013,14989,14978,14987,15026,15038,15063,15107,15134,15196,15244,15250,15284,15287,15304,15313,15343,15349,15322,15274,15203,15151,15081,14989,14895,14762,14609,14434,14237,14026,13817,13580,13324,13050,12771,12462,12195,11880,11579,11316,11052,10810,10583,10325,10026,9702,9393,9109,8861,8651,8455,8307,8179,8075,8004,7926,7867,7823,7721,7595,7416,7249,7123,7021,6918,6850,6771,6723,6693,6666,6650,6626,6619,6638,6633,6477,6171,5738,5121,21.4,21.4,22.0,1568027,0.2,12.1,11.9,5.0,481,-1.00,-1.00,57.2289,-18.884101,0.000652,,,,,198 +SATSLF0720,2024246,8.761146,4.21,0.0590,0.1029,0.0177,0.00,16166,643,1,695,694,696,697,717,709,726,719,733,731,732,737,778,890,1233,1969,3164,4524,5778,6690,7335,7815,8243,8690,9204,9829,10569,11436,12435,13554,14729,15901,16997,17959,18682,19104,19267,19061,18704,18165,17588,17014,16555,16193,15957,15881,15968,16201,16609,17198,17954,18857,19922,21145,22481,23917,25397,26885,28311,29571,30577,31333,31709,31717,31397,30738,29799,28759,27513,26327,25158,24077,23080,22212,21487,20863,20389,19995,19705,19546,19442,19467,19576,19764,20018,20380,20813,21320,21882,22509,23173,23827,24429,25013,25495,25851,26112,26165,26044,25752,25290,24642,23918,23123,22257,21373,20544,19761,19065,18410,17852,17377,16960,16633,16389,16205,16094,16079,16096,16176,16354,16581,16887,17268,17693,18177,18744,19357,19989,20664,21402,22159,22894,23612,24325,24983,25575,26138,26549,26884,27124,27237,27244,27160,26920,26611,26219,25710,25150,24545,23937,23272,22631,21963,21334,20718,20135,19562,19068,18586,18186,17824,17479,17186,16928,16687,16486,16277,16087,15898,15717,15553,15411,15303,15193,15114,15027,14992,14978,14976,14988,15013,15037,15056,15103,15144,15188,15254,15259,15280,15286,15300,15316,15333,15329,15328,15268,15210,15129,15071,14981,14890,14754,14597,14436,14235,14023,13819,13565,13297,13027,12740,12465,12173,11879,11594,11328,11079,10830,10599,10318,10013,9694,9380,9090,8858,8664,8473,8308,8183,8082,8007,7937,7881,7813,7734,7584,7411,7268,7129,7015,6917,6829,6770,6725,6680,6660,6658,6641,6623,6647,6636,6481,6162,5753,5129,21.4,21.4,22.1,1568028,0.3,12.1,12.0,5.0,474,-1.00,-1.00,56.8435,-18.693454,0.000542,,,,,187 +SATSLF0720,2024246,8.761405,4.08,0.0571,0.1023,0.0169,0.00,16181,643,1,695,697,693,695,698,705,712,725,736,727,742,738,768,893,1227,1965,3164,4541,5787,6710,7358,7810,8248,8695,9216,9841,10590,11451,12464,13575,14760,15912,17049,17986,18717,19165,19306,19105,18735,18197,17611,17038,16573,16197,15968,15907,15978,16244,16633,17234,17977,18880,19968,21181,22507,23945,25440,26918,28357,29611,30621,31360,31764,31765,31434,30769,29846,28797,27553,26374,25212,24133,23120,22254,21505,20914,20417,20006,19725,19575,19468,19499,19592,19787,20059,20400,20809,21351,21901,22539,23193,23866,24457,25042,25513,25883,26130,26187,26068,25786,25297,24680,23943,23145,22263,21403,20561,19788,19091,18434,17870,17402,16996,16666,16409,16239,16135,16088,16106,16215,16381,16600,16902,17263,17692,18190,18745,19345,19987,20678,21408,22157,22903,23623,24337,24992,25572,26139,26576,26898,27153,27246,27270,27174,26961,26615,26230,25729,25171,24577,23943,23303,22638,21965,21328,20734,20123,19573,19089,18611,18202,17835,17494,17209,16933,16688,16491,16285,16099,15918,15718,15554,15400,15287,15185,15120,15039,15003,14992,14974,14979,15021,15031,15073,15137,15162,15213,15278,15290,15301,15303,15301,15315,15337,15329,15319,15272,15207,15154,15085,15004,14918,14769,14599,14443,14248,14035,13821,13573,13318,13046,12758,12471,12174,11870,11606,11310,11068,10823,10589,10324,10010,9689,9363,9103,8869,8650,8478,8337,8193,8084,8011,7936,7888,7825,7730,7586,7409,7255,7133,7014,6921,6829,6773,6720,6681,6658,6649,6633,6628,6641,6640,6476,6165,5749,5125,21.4,21.4,22.1,1568029,0.0,12.1,12.0,5.0,476,-1.00,-1.00,57.1105,-18.830685,0.000544,,,,,74 +SATSLF0720,2024246,8.761659,4.12,0.0577,0.1041,0.0193,0.00,16106,643,1,685,690,690,692,709,697,711,708,713,714,721,728,765,882,1219,1971,3158,4557,5793,6697,7348,7809,8227,8667,9182,9796,10540,11421,12417,13531,14701,15872,16990,17954,18668,19106,19229,19045,18669,18138,17537,16984,16520,16154,15906,15859,15923,16173,16577,17155,17903,18804,19879,21116,22421,23878,25345,26835,28242,29489,30471,31236,31613,31616,31296,30658,29717,28669,27429,26251,25088,24019,23006,22149,21401,20787,20305,19921,19643,19474,19389,19418,19516,19696,19956,20297,20722,21225,21801,22433,23093,23737,24345,24939,25402,25765,26045,26085,25961,25682,25197,24554,23824,23056,22168,21303,20462,19681,18993,18331,17763,17290,16887,16577,16325,16142,16050,16020,16040,16130,16289,16512,16804,17173,17593,18080,18661,19275,19904,20577,21312,22051,22793,23521,24210,24865,25447,26030,26450,26768,27003,27129,27145,27035,26825,26497,26113,25605,25035,24465,23826,23185,22525,21851,21230,20621,20027,19467,18984,18512,18099,17733,17405,17107,16844,16607,16409,16212,16012,15817,15633,15456,15335,15219,15120,15045,14972,14939,14912,14918,14924,14942,14974,14999,15059,15082,15125,15172,15192,15201,15207,15210,15222,15261,15241,15249,15204,15129,15075,15010,14925,14828,14689,14553,14370,14173,13973,13742,13496,13248,12981,12690,12397,12117,11822,11530,11250,11011,10766,10551,10277,9979,9653,9351,9064,8812,8601,8434,8270,8135,8055,7972,7903,7841,7787,7693,7556,7385,7225,7089,6987,6884,6800,6731,6677,6655,6637,6612,6596,6586,6605,6614,6453,6145,5719,5097,21.4,21.5,22.1,1568030,0.0,12.1,12.0,5.0,484,-1.00,-1.00,56.7069,-18.583809,0.000576,,,,,182 +SATSLF0720,2024246,8.761911,4.24,0.0594,0.1049,0.0201,0.00,16080,643,1,694,695,700,694,698,699,717,705,724,718,716,730,761,880,1216,1974,3147,4535,5767,6692,7322,7787,8205,8651,9163,9794,10545,11414,12409,13518,14682,15869,16962,17924,18645,19077,19210,19031,18638,18119,17518,16954,16487,16123,15919,15840,15924,16160,16583,17146,17888,18801,19876,21077,22391,23845,25309,26785,28213,29461,30453,31194,31581,31575,31264,30609,29700,28629,27410,26222,25062,23978,22978,22104,21383,20779,20301,19908,19629,19476,19358,19371,19464,19648,19908,20273,20705,21227,21776,22402,23053,23701,24308,24893,25357,25723,25984,26039,25923,25633,25163,24537,23800,23009,22133,21277,20420,19629,18939,18293,17745,17262,16884,16546,16295,16129,16019,15988,16010,16100,16249,16473,16768,17146,17568,18041,18638,19242,19867,20555,21280,22014,22765,23456,24155,24821,25416,25968,26397,26715,26953,27049,27073,26972,26762,26454,26041,25553,24992,24407,23768,23120,22464,21800,21188,20568,19985,19433,18941,18478,18069,17694,17367,17078,16819,16571,16375,16168,15976,15783,15621,15436,15310,15196,15111,15009,14951,14906,14889,14874,14901,14910,14940,14982,15018,15044,15089,15156,15163,15173,15179,15187,15192,15222,15224,15208,15163,15105,15048,14962,14892,14787,14653,14497,14341,14155,13930,13728,13485,13225,12957,12670,12386,12089,11787,11504,11234,10983,10741,10515,10236,9957,9642,9333,9053,8806,8596,8424,8264,8126,8035,7954,7871,7819,7761,7660,7525,7383,7212,7092,6976,6874,6794,6731,6667,6641,6626,6612,6593,6592,6594,6597,6440,6139,5718,5098,21.4,21.5,22.1,1568031,0.0,12.1,12.0,5.0,482,-1.00,-1.00,56.2883,-18.389757,0.000499,,,,,16 +SATSLF0720,2024246,8.762167,4.12,0.0577,0.1049,0.0194,0.00,16090,643,1,701,698,699,697,707,691,720,714,710,729,729,728,778,893,1221,1961,3144,4493,5753,6658,7306,7770,8195,8640,9159,9775,10520,11392,12384,13511,14677,15834,16942,17883,18607,19037,19174,18990,18619,18073,17490,16921,16470,16110,15878,15805,15877,16128,16541,17125,17858,18761,19830,21053,22368,23812,25286,26761,28181,29440,30417,31170,31572,31563,31234,30586,29676,28621,27385,26203,25035,23970,22976,22115,21373,20759,20291,19886,19608,19450,19355,19377,19485,19669,19930,20262,20707,21209,21765,22386,23054,23701,24313,24886,25355,25718,25992,26045,25929,25649,25147,24536,23829,23025,22165,21289,20445,19678,18985,18328,17760,17291,16873,16544,16295,16127,16025,15997,16022,16125,16289,16510,16801,17180,17604,18069,18628,19253,19886,20571,21309,22032,22791,23497,24202,24861,25436,26009,26433,26757,26989,27097,27115,27018,26807,26489,26082,25597,25029,24443,23808,23154,22501,21846,21222,20608,20008,19458,18970,18496,18088,17735,17389,17121,16848,16616,16406,16197,16017,15825,15640,15474,15337,15214,15111,15038,14973,14938,14914,14917,14931,14944,14989,15017,15053,15085,15120,15173,15191,15205,15205,15211,15243,15261,15253,15243,15191,15118,15071,14986,14913,14823,14681,14545,14368,14181,13978,13765,13521,13270,12986,12695,12397,12112,11825,11530,11257,11035,10788,10557,10285,9981,9655,9341,9057,8805,8599,8424,8267,8142,8045,7978,7893,7840,7778,7691,7561,7377,7219,7095,6980,6882,6802,6740,6685,6645,6634,6623,6611,6593,6618,6606,6455,6153,5714,5095,21.4,21.5,22.1,1568032,0.2,12.1,11.9,5.0,478,-1.00,-1.00,57.4434,-18.855644,0.000560,,,,,64 +SATSLF0720,2024246,8.762421,4.29,0.0601,0.1056,0.0193,0.00,16069,643,1,699,698,703,706,721,712,716,720,727,727,727,744,773,886,1222,1962,3127,4496,5735,6658,7296,7773,8180,8630,9131,9755,10487,11367,12342,13460,14642,15775,16883,17835,18560,18994,19119,18952,18576,18026,17452,16886,16430,16066,15841,15771,15848,16118,16517,17083,17819,18752,19789,21019,22317,23769,25254,26734,28141,29387,30376,31117,31511,31497,31186,30528,29627,28554,27319,26151,25001,23922,22930,22080,21351,20738,20267,19874,19597,19421,19326,19350,19433,19639,19895,20253,20672,21179,21743,22354,23013,23671,24289,24857,25344,25702,25977,26016,25902,25623,25134,24500,23776,22990,22113,21252,20423,19657,18946,18293,17741,17261,16852,16552,16295,16129,16029,15982,16010,16090,16250,16481,16772,17156,17577,18064,18637,19233,19864,20560,21258,22023,22746,23462,24165,24816,25402,25963,26393,26693,26955,27067,27088,26992,26773,26439,26035,25557,24997,24413,23792,23136,22483,21821,21197,20581,19997,19447,18956,18475,18087,17717,17386,17097,16832,16597,16379,16181,16003,15824,15629,15458,15319,15211,15109,15037,14953,14917,14904,14894,14901,14933,14938,14997,15017,15063,15114,15161,15178,15181,15191,15202,15234,15245,15261,15255,15188,15133,15075,14991,14889,14801,14661,14508,14336,14160,13954,13742,13517,13245,12973,12685,12391,12099,11787,11526,11253,11005,10777,10525,10251,9966,9637,9351,9060,8811,8612,8439,8272,8135,8040,7961,7891,7853,7774,7699,7550,7372,7225,7100,6986,6890,6804,6743,6686,6642,6635,6615,6598,6583,6602,6603,6440,6139,5719,5102,21.4,21.5,22.2,1568033,0.0,12.2,11.9,5.0,481,-1.00,-1.00,57.0874,-18.674224,0.000619,,,,,92 +SATSLF0720,2024246,8.762673,4.16,0.0583,0.1049,0.0197,0.00,16078,643,1,708,709,714,701,716,703,714,712,723,714,718,722,766,887,1219,1969,3136,4501,5719,6643,7285,7749,8169,8630,9122,9752,10503,11350,12348,13440,14622,15781,16882,17833,18555,18989,19133,18950,18581,18048,17459,16902,16441,16065,15827,15771,15869,16105,16514,17097,17837,18750,19801,21021,22336,23783,25262,26740,28150,29396,30389,31136,31546,31533,31202,30560,29640,28603,27361,26183,25033,23958,22941,22082,21341,20744,20260,19875,19585,19447,19355,19356,19453,19644,19897,20250,20685,21188,21769,22378,23016,23683,24302,24875,25349,25714,25991,26039,25917,25621,25153,24518,23789,23003,22120,21273,20429,19656,18962,18311,17739,17280,16857,16554,16304,16142,16034,15993,16027,16102,16275,16505,16796,17164,17581,18060,18645,19252,19877,20567,21301,22035,22773,23485,24192,24841,25437,26004,26427,26749,26981,27078,27104,27015,26794,26457,26071,25576,25032,24445,23805,23153,22523,21853,21218,20589,20000,19439,18956,18487,18088,17730,17405,17115,16842,16603,16393,16203,16018,15837,15638,15483,15341,15217,15109,15037,14966,14921,14907,14900,14913,14945,14968,14994,15029,15068,15117,15179,15182,15195,15211,15220,15229,15249,15249,15249,15177,15123,15061,14978,14906,14821,14685,14541,14381,14180,13977,13771,13522,13261,12989,12695,12408,12113,11818,11523,11268,11018,10790,10538,10259,9951,9636,9333,9044,8811,8595,8431,8284,8145,8058,7975,7898,7850,7781,7696,7553,7381,7229,7120,6996,6899,6818,6746,6669,6642,6619,6600,6596,6585,6615,6613,6459,6147,5730,5101,21.4,21.6,22.2,1568033,0.4,12.1,12.0,5.0,481,-1.00,-1.00,57.8847,-19.022034,0.000586,,,,,163 +SATSLF0720,2024246,8.762929,4.24,0.0594,0.1041,0.0190,0.00,16114,643,1,692,707,705,709,717,704,711,713,726,717,717,722,757,891,1228,1969,3152,4524,5771,6688,7316,7778,8201,8646,9164,9795,10538,11412,12398,13509,14682,15866,16965,17915,18641,19065,19210,19032,18642,18119,17517,16953,16501,16135,15907,15835,15919,16173,16578,17148,17895,18797,19873,21099,22400,23875,25345,26826,28250,29505,30484,31225,31643,31632,31313,30641,29720,28665,27429,26246,25079,23993,22981,22142,21390,20803,20314,19923,19660,19501,19389,19413,19505,19688,19945,20283,20731,21268,21817,22441,23109,23739,24357,24936,25413,25769,26027,26073,25978,25680,25210,24570,23864,23066,22193,21329,20471,19698,19002,18353,17783,17320,16901,16593,16337,16170,16065,16031,16043,16144,16321,16533,16849,17201,17634,18116,18679,19289,19923,20602,21321,22069,22808,23524,24229,24899,25492,26050,26468,26789,27036,27136,27161,27048,26839,26509,26130,25624,25065,24485,23848,23188,22554,21885,21256,20636,20046,19501,18990,18523,18118,17742,17415,17137,16861,16619,16418,16230,16041,15848,15657,15492,15352,15234,15137,15058,14980,14952,14920,14922,14929,14957,14979,15025,15068,15091,15143,15202,15217,15223,15234,15252,15254,15267,15273,15254,15200,15152,15086,15027,14935,14841,14698,14549,14379,14170,13965,13762,13525,13266,12998,12718,12426,12134,11848,11553,11274,11022,10801,10553,10289,9989,9662,9334,9069,8817,8615,8434,8291,8155,8055,7988,7909,7867,7788,7697,7552,7386,7226,7118,6997,6897,6806,6743,6689,6656,6626,6624,6613,6589,6619,6612,6466,6151,5743,5116,21.4,21.6,22.2,1568034,0.0,12.1,12.0,5.0,479,-1.00,-1.00,56.8864,-18.660283,0.000613,,,,,96 +SATSLF0720,2024246,8.763183,4.25,0.0595,0.1046,0.0188,0.00,16111,643,1,699,705,701,699,697,707,719,720,723,733,743,743,774,871,1207,1959,3133,4531,5766,6681,7310,7793,8196,8658,9162,9785,10535,11413,12398,13513,14681,15847,16936,17908,18626,19045,19189,19012,18633,18090,17509,16941,16483,16122,15893,15825,15889,16141,16560,17145,17893,18793,19854,21078,22383,23843,25317,26810,28212,29457,30452,31202,31592,31589,31282,30618,29697,28637,27412,26225,25063,23981,22997,22126,21393,20801,20311,19925,19618,19472,19371,19384,19489,19675,19938,20279,20720,21254,21802,22439,23089,23737,24354,24922,25411,25770,26034,26077,25954,25659,25224,24569,23828,23031,22184,21317,20465,19693,18979,18341,17782,17319,16904,16606,16342,16189,16088,16029,16042,16138,16292,16526,16821,17185,17621,18098,18676,19282,19918,20601,21314,22073,22813,23522,24242,24897,25475,26052,26474,26788,27030,27127,27148,27059,26838,26509,26128,25637,25079,24489,23867,23193,22551,21873,21245,20627,20051,19492,18994,18525,18113,17779,17410,17147,16868,16631,16421,16231,16055,15850,15672,15495,15360,15245,15132,15061,14979,14935,14935,14932,14939,14961,14990,15025,15073,15080,15147,15198,15205,15209,15218,15233,15257,15281,15285,15262,15210,15157,15092,15033,14941,14854,14715,14559,14387,14189,13986,13784,13545,13280,13018,12729,12431,12125,11826,11554,11282,11029,10781,10551,10287,9995,9673,9365,9081,8821,8625,8448,8278,8146,8063,7986,7915,7849,7796,7707,7572,7397,7229,7114,6990,6886,6820,6758,6701,6661,6635,6635,6614,6613,6621,6614,6469,6161,5734,5114,21.4,21.6,22.2,1568035,0.5,12.1,11.9,5.0,478,-1.00,-1.00,56.9253,-18.658530,0.000569,,,,,47 +SATSLF0720,2024246,8.763434,4.17,0.0584,0.1048,0.0183,0.00,16110,643,1,699,710,713,708,717,723,737,730,727,733,738,734,764,894,1227,1985,3145,4523,5770,6685,7328,7781,8212,8650,9165,9778,10531,11396,12397,13496,14681,15836,16930,17899,18618,19050,19191,18997,18626,18093,17492,16923,16469,16117,15880,15815,15905,16151,16550,17125,17863,18768,19842,21053,22375,23817,25302,26795,28207,29436,30426,31189,31573,31566,31257,30597,29674,28620,27381,26213,25057,23977,22980,22136,21393,20786,20296,19917,19633,19474,19363,19374,19479,19671,19940,20281,20722,21248,21792,22414,23078,23731,24349,24912,25387,25756,26017,26074,25963,25685,25217,24558,23849,23032,22182,21321,20468,19696,18988,18353,17785,17321,16901,16583,16333,16164,16077,16034,16050,16151,16315,16545,16839,17201,17637,18107,18677,19269,19923,20608,21321,22077,22824,23536,24230,24896,25477,26061,26477,26785,27026,27129,27145,27050,26839,26510,26124,25632,25062,24469,23845,23188,22548,21880,21253,20631,20055,19485,19003,18530,18117,17757,17429,17130,16877,16621,16431,16227,16038,15851,15661,15497,15353,15240,15145,15057,14989,14953,14934,14941,14950,14977,14977,15031,15066,15099,15152,15209,15213,15236,15240,15242,15254,15268,15274,15264,15219,15169,15109,15035,14951,14849,14710,14563,14400,14192,13983,13766,13539,13253,13005,12709,12417,12136,11842,11557,11292,11045,10807,10569,10293,9993,9669,9352,9074,8823,8621,8452,8300,8167,8064,7995,7919,7865,7808,7713,7568,7394,7240,7115,7013,6917,6821,6769,6698,6678,6645,6618,6611,6594,6611,6624,6473,6185,5753,5144,21.4,21.6,22.2,1568036,0.9,12.1,11.9,5.0,480,-1.00,-1.00,57.0846,-18.711500,0.000585,,,,,89 +SATSLF0720,2024246,8.763690,4.24,0.0594,0.1049,0.0190,0.00,16104,643,1,702,695,714,705,719,717,726,737,741,729,727,736,771,869,1219,1971,3140,4535,5769,6689,7336,7804,8206,8651,9172,9783,10532,11387,12386,13506,14680,15844,16955,17925,18628,19063,19189,19008,18628,18086,17511,16942,16459,16099,15897,15813,15894,16139,16553,17134,17873,18787,19856,21072,22400,23840,25305,26779,28192,29442,30442,31189,31587,31580,31236,30586,29665,28605,27391,26203,25051,23965,22974,22122,21401,20788,20294,19908,19624,19463,19357,19370,19472,19657,19934,20269,20705,21218,21789,22413,23069,23717,24330,24914,25378,25751,26016,26067,25953,25669,25191,24564,23824,23036,22167,21306,20473,19692,18990,18337,17780,17299,16903,16590,16332,16158,16063,16021,16048,16137,16297,16525,16825,17173,17608,18091,18667,19283,19923,20609,21319,22071,22809,23524,24219,24877,25467,26018,26439,26773,27017,27112,27136,27044,26820,26491,26097,25603,25038,24451,23826,23186,22536,21885,21233,20634,20032,19475,18989,18502,18115,17741,17417,17127,16875,16633,16429,16223,16030,15834,15659,15485,15356,15241,15138,15060,14979,14951,14924,14931,14942,14944,14977,15029,15051,15095,15130,15206,15218,15221,15223,15232,15257,15273,15273,15265,15219,15164,15085,15019,14919,14844,14709,14560,14378,14201,13992,13765,13530,13245,12999,12702,12423,12133,11835,11553,11278,11021,10786,10563,10287,9978,9667,9353,9080,8833,8618,8440,8283,8161,8049,7995,7905,7854,7790,7702,7562,7409,7233,7110,6989,6908,6811,6745,6681,6654,6625,6617,6601,6598,6621,6624,6459,6163,5729,5117,21.5,21.6,22.2,1568037,1.1,12.1,12.0,5.0,479,-1.00,-1.00,56.6472,-18.529580,0.000637,,,,,97 +SATSLF0720,2024246,8.763943,4.18,0.0585,0.1057,0.0193,0.00,16071,643,1,695,701,689,695,702,696,715,716,724,723,727,727,771,893,1208,1951,3131,4504,5737,6653,7299,7767,8187,8618,9142,9744,10493,11349,12341,13437,14615,15758,16867,17835,18546,18978,19125,18933,18560,18032,17443,16874,16418,16061,15833,15756,15837,16098,16501,17076,17813,18716,19785,20996,22304,23742,25212,26693,28119,29358,30344,31097,31473,31479,31153,30510,29588,28541,27316,26129,24978,23899,22914,22064,21339,20730,20240,19863,19571,19420,19322,19332,19435,19638,19891,20230,20658,21180,21749,22347,23015,23664,24269,24842,25320,25689,25945,26002,25886,25616,25143,24519,23800,22989,22139,21266,20409,19655,18949,18292,17730,17261,16854,16544,16294,16129,16039,15980,16012,16116,16273,16498,16780,17156,17578,18056,18636,19240,19884,20570,21284,22022,22758,23467,24176,24836,25424,25981,26410,26744,26973,27091,27109,27001,26792,26472,26073,25577,25009,24432,23792,23146,22488,21826,21195,20587,19995,19456,18964,18489,18081,17723,17406,17116,16844,16600,16390,16187,16000,15819,15632,15467,15322,15216,15120,15048,14969,14939,14901,14919,14917,14951,14984,15030,15057,15085,15121,15179,15174,15207,15221,15210,15233,15258,15253,15241,15203,15134,15075,14997,14907,14820,14681,14526,14350,14163,13975,13753,13501,13250,13000,12709,12409,12123,11813,11527,11267,11005,10775,10541,10282,9992,9661,9353,9062,8819,8619,8438,8273,8147,8049,7979,7893,7856,7797,7712,7564,7396,7237,7095,6997,6881,6807,6737,6685,6647,6632,6627,6599,6603,6628,6613,6453,6161,5721,5120,21.4,21.6,22.3,1568038,0.4,12.1,12.0,5.0,480,-1.00,-1.00,57.4188,-18.796187,0.000562,,,,,82 +SATSLF0720,2024246,8.764195,4.18,0.0586,0.1065,0.0194,0.00,16054,643,1,706,697,684,697,695,705,709,718,722,729,741,729,771,881,1217,1945,3124,4501,5733,6655,7285,7755,8168,8614,9129,9726,10464,11340,12320,13440,14604,15762,16853,17811,18533,18951,19083,18906,18521,17986,17405,16855,16388,16034,15797,15738,15818,16062,16474,17045,17789,18688,19750,20973,22277,23717,25180,26645,28061,29305,30297,31045,31450,31442,31116,30464,29547,28509,27273,26102,24942,23883,22877,22027,21298,20688,20214,19817,19534,19383,19287,19301,19408,19597,19866,20214,20648,21166,21722,22340,23001,23640,24241,24838,25306,25664,25928,25984,25860,25575,25102,24459,23749,22961,22103,21243,20397,19621,18939,18295,17733,17264,16848,16540,16299,16113,16016,15965,15976,16083,16245,16471,16769,17128,17563,18041,18613,19218,19856,20535,21266,21997,22745,23458,24150,24803,25393,25954,26386,26713,26944,27048,27076,26979,26772,26444,26051,25557,24997,24394,23785,23130,22473,21809,21185,20578,19994,19423,18942,18469,18069,17697,17379,17086,16827,16586,16393,16174,15996,15810,15620,15458,15319,15199,15102,15029,14961,14900,14906,14897,14905,14935,14961,14997,15049,15066,15106,15181,15181,15207,15207,15217,15240,15245,15261,15253,15188,15135,15073,14989,14900,14816,14672,14542,14361,14175,13961,13748,13504,13245,12977,12697,12398,12112,11820,11525,11261,11005,10773,10530,10267,9973,9641,9339,9048,8809,8592,8415,8271,8149,8046,7975,7911,7844,7792,7689,7548,7376,7214,7089,6979,6883,6807,6743,6682,6648,6634,6625,6603,6597,6620,6591,6455,6143,5713,5093,21.5,21.7,22.3,1568039,0.4,12.1,12.0,5.0,469,-1.00,-1.00,57.7321,-18.901767,0.000562,,,,,235 +SATSLF0720,2024246,8.764453,4.19,0.0586,0.1062,0.0197,0.00,16054,643,1,697,693,711,711,718,721,739,736,737,737,727,732,759,877,1205,1951,3126,4506,5737,6645,7303,7766,8189,8620,9133,9747,10485,11341,12320,13424,14600,15755,16859,17806,18516,18955,19087,18913,18549,18002,17424,16850,16393,16033,15803,15739,15806,16058,16485,17050,17810,18701,19750,20957,22272,23706,25170,26645,28085,29313,30290,31048,31432,31418,31105,30460,29554,28481,27258,26093,24921,23862,22865,22011,21285,20675,20203,19821,19526,19393,19299,19304,19399,19597,19854,20221,20640,21159,21721,22318,22999,23636,24242,24825,25282,25655,25911,25962,25843,25567,25096,24470,23753,22975,22101,21249,20401,19631,18909,18275,17713,17255,16854,16541,16292,16131,16024,15981,15988,16099,16256,16467,16779,17128,17571,18053,18614,19214,19859,20539,21281,21990,22739,23447,24147,24796,25394,25956,26381,26698,26933,27044,27056,26960,26757,26445,26048,25554,24995,24410,23771,23121,22472,21799,21178,20573,19974,19431,18930,18464,18073,17701,17381,17084,16827,16589,16393,16192,16001,15816,15621,15455,15305,15209,15102,15022,14944,14919,14901,14902,14908,14946,14962,15000,15053,15073,15115,15156,15163,15199,15194,15202,15216,15241,15237,15238,15199,15125,15063,15001,14906,14823,14692,14517,14362,14166,13957,13739,13502,13250,12986,12709,12405,12131,11832,11536,11263,11017,10774,10544,10277,9972,9646,9335,9068,8819,8618,8422,8266,8131,8032,7961,7887,7844,7767,7691,7546,7372,7232,7103,6996,6903,6796,6743,6679,6641,6636,6621,6612,6606,6627,6627,6465,6156,5744,5109,21.4,21.7,22.3,1568040,0.6,12.1,11.9,5.0,461,-1.00,-1.00,57.3402,-18.733491,0.000594,,,,,176 +SATSDF0720,2024246,9.009138,0.00,0.0000,0.0000,0.0000,0.00,643,0,1,628,631,625,613,618,618,617,625,626,624,627,609,606,627,608,614,617,626,624,635,639,638,639,657,651,643,644,637,630,638,652,655,645,645,649,645,643,655,656,645,650,647,641,648,650,645,640,647,658,646,649,663,653,663,651,653,662,653,650,649,645,647,657,657,663,657,645,647,643,644,644,645,645,646,645,640,647,659,658,658,656,664,665,657,662,650,639,635,632,646,645,647,649,653,651,643,651,660,646,650,652,648,643,647,638,638,643,641,640,642,639,647,649,648,647,642,650,654,633,637,644,654,658,651,651,660,660,652,650,625,631,640,631,619,639,638,641,654,649,654,655,649,646,646,646,633,641,638,647,641,644,655,656,646,643,637,629,631,631,638,640,639,631,639,650,641,647,640,643,637,635,630,647,644,657,644,642,649,641,653,649,648,637,645,641,647,636,629,639,633,642,630,643,637,650,646,653,645,655,653,644,656,642,649,646,633,635,634,646,627,635,629,631,655,652,648,640,648,645,636,638,633,635,642,642,645,646,651,649,653,644,645,638,630,638,645,653,647,638,635,647,646,649,650,650,651,642,647,645,651,650,661,640,648,649,476,0.0,0.0,0.0,1568039,0.0,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,129 +SATSLF0720,2024246,9.009693,4.13,0.0578,0.1003,0.0166,0.00,16224,643,1,691,692,696,691,707,704,715,724,734,733,736,729,763,886,1217,1958,3157,4549,5813,6729,7373,7845,8262,8715,9243,9889,10617,11515,12517,13641,14817,15980,17111,18065,18795,19243,19368,19178,18813,18273,17674,17097,16643,16278,16042,15969,16044,16277,16691,17291,18046,18955,20039,21280,22605,24061,25552,27042,28471,29730,30725,31496,31894,31885,31562,30898,29962,28907,27661,26465,25293,24193,23185,22330,21574,20970,20482,20093,19808,19651,19557,19572,19669,19844,20103,20464,20883,21418,21977,22605,23265,23926,24537,25105,25591,25965,26218,26262,26137,25866,25378,24739,24016,23200,22338,21457,20612,19829,19122,18471,17913,17433,17016,16692,16455,16277,16162,16118,16145,16237,16407,16637,16939,17307,17736,18218,18790,19409,20049,20725,21463,22222,22970,23685,24396,25049,25640,26217,26637,26951,27207,27305,27330,27245,27021,26688,26299,25803,25239,24653,24008,23373,22693,22007,21397,20762,20173,19616,19117,18657,18248,17870,17543,17253,16980,16722,16540,16325,16131,15942,15761,15585,15444,15318,15225,15134,15070,15037,15014,15012,15022,15048,15079,15104,15141,15180,15219,15274,15294,15289,15310,15313,15342,15362,15353,15342,15290,15217,15166,15099,15000,14912,14772,14627,14446,14275,14057,13842,13593,13333,13065,12776,12465,12183,11884,11597,11333,11074,10835,10606,10337,10034,9714,9398,9117,8875,8654,8502,8324,8194,8097,8004,7935,7897,7829,7736,7610,7428,7278,7159,7034,6937,6856,6798,6722,6681,6668,6650,6647,6636,6653,6642,6485,6169,5753,5128,21.4,21.3,21.8,1568040,0.1,12.1,12.0,5.0,601,-1.00,-1.00,56.7628,-18.759397,0.000616,,,,,109 +SATSLF0720,2024246,9.009874,4.26,0.0597,0.1009,0.0167,0.00,16203,643,1,693,697,699,700,702,692,698,696,700,711,718,720,765,877,1214,1963,3158,4548,5800,6709,7355,7820,8247,8685,9208,9833,10589,11462,12471,13592,14781,15945,17064,18025,18749,19189,19318,19134,18766,18209,17626,17053,16587,16233,16013,15938,16017,16264,16661,17268,18009,18907,20001,21221,22529,24010,25481,26987,28416,29670,30681,31433,31821,31821,31480,30829,29901,28838,27589,26410,25256,24170,23149,22288,21552,20942,20450,20065,19777,19624,19529,19537,19634,19809,20079,20439,20864,21395,21973,22593,23252,23901,24517,25090,25556,25933,26201,26229,26115,25833,25333,24708,23978,23173,22307,21431,20583,19803,19104,18458,17887,17410,17004,16677,16424,16264,16161,16107,16142,16230,16389,16627,16916,17281,17690,18203,18762,19385,20042,20725,21457,22212,22956,23659,24368,25033,25623,26192,26618,26950,27193,27289,27307,27212,27000,26658,26267,25793,25196,24628,23977,23338,22692,22025,21365,20765,20156,19597,19106,18618,18215,17856,17521,17239,16965,16736,16522,16313,16120,15917,15733,15557,15424,15309,15209,15139,15074,15033,15013,15011,15010,15049,15065,15101,15145,15168,15221,15273,15282,15282,15296,15307,15325,15336,15343,15332,15284,15227,15162,15090,15010,14913,14765,14608,14441,14253,14041,13819,13578,13325,13048,12775,12478,12197,11895,11605,11345,11073,10839,10618,10315,10017,9705,9401,9102,8862,8653,8473,8316,8184,8098,8013,7937,7892,7822,7725,7595,7414,7263,7133,7015,6920,6834,6775,6719,6689,6662,6654,6640,6631,6653,6633,6487,6176,5739,5129,21.4,21.3,21.9,1568041,0.7,12.1,12.0,5.0,497,-1.00,-1.00,56.5102,-18.613796,0.000583,,,,,224 +SATSLF0720,2024246,9.010130,4.17,0.0584,0.1012,0.0166,0.00,16208,643,1,695,698,715,709,717,710,704,703,713,723,731,728,764,896,1231,1990,3171,4554,5805,6717,7363,7845,8253,8711,9226,9864,10605,11499,12503,13613,14806,15973,17098,18057,18778,19209,19339,19160,18770,18225,17632,17078,16619,16250,16017,15937,16032,16267,16678,17274,18004,18931,20015,21245,22549,23994,25509,26981,28419,29680,30690,31432,31837,31846,31510,30857,29917,28848,27607,26427,25237,24171,23162,22297,21574,20954,20464,20055,19767,19611,19518,19534,19634,19809,20084,20443,20889,21405,21968,22586,23245,23885,24493,25085,25546,25920,26189,26237,26120,25841,25358,24725,23989,23194,22308,21427,20585,19821,19101,18440,17892,17425,17013,16677,16437,16270,16167,16119,16133,16222,16392,16619,16910,17283,17715,18219,18773,19394,20025,20722,21453,22190,22937,23645,24371,25029,25622,26200,26624,26951,27189,27299,27309,27200,27001,26661,26278,25779,25209,24628,23976,23329,22667,21997,21364,20753,20163,19600,19097,18627,18216,17848,17517,17234,16958,16717,16521,16316,16137,15931,15745,15581,15437,15328,15213,15142,15060,15023,15008,15013,15017,15043,15063,15094,15145,15176,15222,15261,15281,15288,15293,15294,15339,15349,15345,15350,15297,15233,15164,15094,15001,14913,14772,14619,14458,14249,14043,13825,13578,13321,13055,12759,12469,12180,11885,11587,11309,11083,10843,10589,10335,10019,9722,9397,9094,8848,8657,8474,8321,8187,8098,8014,7946,7902,7835,7744,7601,7418,7272,7130,7005,6917,6832,6774,6720,6691,6664,6660,6644,6634,6657,6635,6485,6180,5749,5124,21.4,21.4,21.9,1568042,0.6,12.1,12.0,5.0,486,-1.00,-1.00,56.6641,-18.687041,0.000558,,,,,160 +SATSLF0720,2024246,9.010383,4.28,0.0599,0.1008,0.0167,0.00,16204,643,1,690,697,709,709,709,728,712,715,724,717,720,730,757,881,1221,1968,3153,4552,5801,6721,7371,7844,8260,8698,9225,9845,10596,11474,12484,13593,14776,15953,17070,18035,18763,19192,19331,19145,18772,18233,17651,17077,16606,16238,16011,15953,16006,16283,16688,17268,18016,18939,20014,21237,22555,24017,25505,27001,28420,29676,30680,31449,31845,31837,31520,30865,29928,28850,27618,26409,25250,24157,23153,22291,21551,20946,20454,20073,19789,19626,19536,19539,19637,19829,20086,20426,20872,21378,21933,22560,23249,23890,24497,25098,25570,25927,26198,26246,26121,25833,25354,24713,23988,23186,22314,21421,20579,19805,19093,18439,17878,17413,16997,16677,16433,16258,16154,16106,16132,16244,16397,16631,16921,17294,17704,18206,18780,19393,20024,20715,21445,22197,22937,23656,24368,25028,25608,26179,26609,26953,27181,27298,27310,27221,26998,26656,26267,25762,25189,24603,23969,23325,22661,22007,21364,20755,20152,19602,19089,18609,18195,17841,17492,17216,16941,16707,16508,16316,16118,15938,15741,15589,15443,15317,15214,15132,15060,15014,15001,15005,15006,15043,15049,15103,15141,15168,15211,15268,15265,15292,15290,15297,15317,15339,15337,15346,15282,15225,15163,15080,14985,14909,14765,14627,14448,14260,14037,13840,13596,13325,13053,12773,12472,12179,11879,11600,11317,11062,10832,10599,10342,10024,9715,9387,9105,8861,8638,8466,8313,8189,8096,8006,7945,7885,7824,7741,7589,7430,7268,7132,6999,6915,6827,6774,6720,6677,6661,6648,6640,6634,6643,6637,6486,6169,5750,5120,21.4,21.4,21.9,1568043,0.2,12.1,11.9,5.0,485,-1.00,-1.00,56.3819,-18.572012,0.000562,,,,,119 +SATSLF0720,2024246,9.010633,4.11,0.0576,0.1022,0.0172,0.00,16177,643,1,694,699,694,708,709,707,705,716,723,713,724,727,767,879,1215,1961,3156,4532,5770,6703,7341,7813,8227,8698,9204,9835,10586,11450,12450,13565,14745,15913,17027,18006,18706,19159,19293,19118,18741,18198,17598,17034,16565,16196,15959,15901,15973,16231,16650,17218,17971,18896,19972,21182,22513,23952,25458,26926,28359,29610,30608,31348,31755,31741,31426,30773,29852,28789,27562,26370,25192,24121,23113,22257,21512,20909,20417,20028,19733,19572,19474,19492,19597,19784,20040,20398,20823,21347,21910,22532,23197,23834,24449,25029,25508,25889,26134,26181,26056,25789,25293,24659,23949,23156,22281,21402,20548,19804,19064,18435,17842,17397,16963,16652,16386,16221,16127,16083,16106,16215,16373,16584,16891,17263,17685,18170,18737,19351,20000,20678,21413,22163,22906,23634,24334,24998,25588,26144,26571,26889,27140,27251,27273,27169,26972,26637,26235,25741,25181,24585,23957,23300,22634,21972,21333,20705,20119,19559,19076,18592,18190,17817,17476,17199,16941,16697,16491,16301,16109,15910,15715,15553,15404,15292,15176,15112,15040,15017,14977,14977,15003,15027,15049,15094,15109,15155,15190,15233,15255,15272,15285,15282,15302,15325,15325,15322,15284,15206,15146,15070,14985,14874,14737,14594,14416,14240,14010,13809,13570,13304,13042,12770,12464,12186,11881,11593,11313,11061,10817,10578,10301,10007,9703,9386,9098,8859,8644,8466,8317,8185,8081,7988,7943,7877,7831,7748,7590,7412,7243,7127,6998,6903,6818,6759,6727,6682,6667,6644,6624,6635,6634,6628,6475,6157,5735,5125,21.4,21.4,22.0,1568044,0.8,12.1,12.0,5.0,484,-1.00,-1.00,57.0503,-18.804843,0.000569,,,,,110 +SATSLF0720,2024246,9.010888,4.29,0.0601,0.1024,0.0169,0.00,16161,643,1,689,687,697,709,706,702,715,721,723,719,727,722,767,876,1211,1960,3137,4514,5771,6681,7328,7790,8236,8676,9197,9827,10549,11431,12445,13545,14720,15904,17010,17946,18677,19124,19262,19065,18689,18149,17559,16998,16549,16170,15950,15888,15977,16210,16625,17201,17938,18860,19923,21155,22470,23920,25405,26906,28316,29570,30571,31309,31715,31705,31380,30733,29797,28738,27509,26330,25145,24081,23072,22219,21485,20867,20391,20009,19724,19570,19465,19468,19573,19756,20026,20369,20794,21315,21888,22509,23178,23821,24429,25012,25496,25863,26113,26160,26041,25757,25280,24637,23917,23118,22254,21390,20517,19773,19054,18395,17836,17366,16947,16638,16395,16229,16121,16068,16094,16196,16345,16568,16866,17255,17666,18167,18730,19353,19977,20668,21394,22139,22895,23611,24321,24969,25569,26121,26557,26886,27117,27214,27223,27131,26931,26613,26216,25718,25161,24555,23922,23272,22615,21962,21317,20717,20128,19562,19063,18590,18179,17817,17484,17189,16934,16678,16479,16289,16088,15886,15707,15533,15389,15279,15174,15109,15028,14993,14973,14969,14982,14998,15025,15064,15099,15131,15179,15234,15245,15264,15284,15278,15302,15329,15324,15304,15271,15202,15154,15072,14974,14884,14735,14574,14411,14224,14013,13804,13566,13309,13034,12757,12453,12160,11858,11579,11305,11056,10817,10591,10321,10004,9699,9366,9089,8842,8629,8453,8311,8174,8076,8001,7943,7897,7818,7723,7585,7402,7249,7115,6991,6911,6829,6769,6713,6683,6657,6649,6634,6613,6622,6643,6484,6161,5739,5129,21.4,21.4,22.0,1568045,0.1,12.1,12.0,5.0,482,-1.00,-1.00,56.6021,-18.590919,0.000546,,,,,18 +SATSLF0720,2024246,9.011141,4.12,0.0577,0.1019,0.0177,0.00,16173,643,1,704,701,697,713,713,699,714,715,711,707,715,731,773,892,1233,1984,3157,4537,5778,6690,7335,7806,8238,8689,9208,9837,10576,11442,12437,13551,14739,15901,16999,17979,18705,19139,19287,19090,18708,18179,17578,17008,16549,16181,15966,15888,15966,16215,16637,17211,17953,18871,19961,21178,22493,23932,25431,26910,28347,29594,30597,31345,31734,31739,31414,30773,29844,28790,27530,26368,25181,24092,23093,22229,21493,20889,20406,20013,19735,19573,19486,19497,19600,19780,20024,20378,20800,21335,21898,22518,23211,23842,24467,25050,25510,25882,26134,26192,26057,25768,25293,24656,23936,23133,22272,21397,20541,19766,19064,18421,17853,17370,16976,16648,16418,16217,16134,16080,16107,16202,16364,16588,16894,17265,17685,18193,18769,19364,20002,20692,21402,22154,22888,23597,24307,24989,25573,26140,26562,26880,27136,27249,27276,27165,26962,26637,26229,25736,25174,24565,23930,23283,22631,21953,21335,20722,20122,19557,19062,18577,18169,17814,17488,17196,16936,16701,16492,16278,16097,15907,15705,15546,15404,15288,15177,15112,15037,14989,14981,14986,14987,15026,15050,15083,15117,15143,15191,15246,15256,15274,15279,15280,15301,15310,15310,15319,15252,15199,15129,15061,14979,14881,14752,14597,14437,14245,14031,13815,13569,13310,13045,12758,12455,12164,11857,11585,11306,11062,10833,10590,10326,10031,9697,9395,9093,8856,8638,8466,8317,8182,8093,8025,7946,7884,7835,7738,7584,7417,7241,7121,7024,6928,6848,6785,6728,6694,6667,6656,6653,6630,6637,6629,6482,6170,5741,5112,21.4,21.4,22.1,1568046,0.1,12.1,12.0,5.0,482,-1.00,-1.00,57.3843,-18.936778,0.000569,,,,,246 +SATSLF0720,2024246,9.011397,4.14,0.0580,0.1022,0.0172,0.00,16168,643,1,709,710,711,699,698,701,727,725,741,721,736,725,771,893,1221,1973,3162,4534,5782,6705,7339,7816,8238,8675,9205,9815,10549,11426,12427,13539,14729,15899,17020,17969,18705,19125,19271,19088,18704,18162,17573,17028,16557,16181,15957,15885,15962,16206,16613,17203,17947,18865,19933,21165,22496,23941,25429,26901,28329,29564,30593,31325,31739,31738,31402,30749,29817,28765,27536,26349,25178,24102,23093,22234,21491,20884,20392,20007,19735,19569,19472,19488,19587,19776,20030,20373,20817,21341,21896,22512,23177,23821,24443,25025,25495,25866,26128,26169,26055,25771,25286,24666,23922,23125,22267,21397,20546,19790,19073,18417,17834,17367,16948,16629,16389,16221,16125,16096,16105,16187,16361,16584,16886,17255,17687,18179,18745,19348,19991,20669,21401,22135,22871,23600,24313,24965,25568,26137,26558,26875,27115,27227,27245,27139,26928,26607,26211,25723,25161,24562,23927,23285,22616,21956,21315,20713,20101,19559,19061,18593,18186,17824,17489,17202,16922,16691,16474,16282,16090,15885,15707,15541,15405,15286,15187,15104,15040,14999,14978,14985,14985,15011,15027,15071,15105,15147,15178,15250,15254,15257,15278,15277,15293,15323,15331,15316,15270,15205,15143,15063,14989,14874,14740,14599,14427,14247,14030,13794,13562,13295,13033,12761,12466,12168,11866,11589,11305,11059,10819,10587,10314,10004,9695,9394,9097,8855,8645,8470,8317,8189,8076,8010,7922,7875,7819,7733,7606,7413,7255,7120,7006,6914,6825,6773,6720,6690,6675,6661,6635,6615,6639,6613,6468,6152,5735,5133,21.4,21.4,22.1,1568047,0.4,12.1,11.9,5.0,473,-1.00,-1.00,57.2555,-18.874837,0.000576,,,,,19 +SATSLF0720,2024246,9.011652,4.31,0.0604,0.1032,0.0176,0.00,16147,643,1,709,707,705,703,713,706,715,728,725,732,730,727,767,880,1210,1970,3141,4521,5767,6677,7321,7793,8225,8666,9182,9801,10544,11426,12401,13515,14690,15865,16989,17929,18653,19088,19220,19040,18669,18121,17533,16976,16516,16146,15926,15850,15943,16189,16597,17186,17925,18817,19899,21122,22442,23890,25360,26841,28264,29524,30533,31284,31676,31671,31333,30677,29767,28693,27465,26277,25136,24055,23051,22209,21453,20842,20349,19967,19682,19525,19432,19427,19547,19738,20004,20343,20762,21299,21862,22474,23133,23802,24405,24986,25457,25819,26081,26131,26022,25741,25270,24625,23907,23111,22237,21371,20517,19748,19037,18394,17838,17364,16953,16637,16375,16197,16106,16058,16089,16180,16342,16567,16857,17234,17664,18151,18721,19306,19967,20644,21383,22127,22881,23588,24296,24961,25530,26117,26535,26855,27105,27211,27213,27127,26907,26567,26188,25690,25121,24535,23905,23269,22597,21924,21308,20681,20101,19530,19048,18583,18156,17806,17478,17181,16919,16673,16474,16261,16071,15880,15707,15529,15393,15266,15166,15099,15030,14981,14953,14963,14965,14988,15026,15062,15093,15141,15181,15237,15243,15255,15265,15278,15296,15299,15316,15312,15269,15175,15131,15053,14977,14880,14738,14583,14401,14217,14002,13799,13557,13290,13041,12749,12465,12157,11853,11575,11285,11038,10795,10566,10304,10005,9674,9371,9104,8841,8633,8459,8309,8176,8088,7998,7927,7883,7816,7725,7587,7415,7260,7126,7008,6917,6816,6759,6705,6674,6657,6644,6634,6616,6633,6634,6490,6164,5739,5112,21.4,21.5,22.1,1568048,1.0,12.0,12.0,5.0,482,-1.00,-1.00,56.6633,-18.588860,0.000564,,,,,93 +SATSLF0720,2024246,9.011904,4.09,0.0573,0.1039,0.0181,0.00,16122,643,1,693,697,701,701,699,698,719,706,708,720,720,719,766,884,1218,1962,3137,4510,5747,6672,7313,7771,8203,8641,9157,9781,10509,11408,12377,13508,14666,15851,16942,17894,18631,19056,19195,19017,18632,18097,17514,16941,16494,16116,15886,15813,15914,16142,16557,17120,17889,18805,19864,21069,22392,23842,25330,26818,28230,29476,30468,31223,31622,31604,31293,30637,29732,28671,27419,26247,25081,23994,23006,22154,21418,20812,20327,19937,19653,19505,19400,19413,19513,19703,19960,20311,20759,21261,21819,22443,23122,23760,24375,24952,25433,25789,26052,26091,25975,25693,25217,24565,23867,23077,22205,21314,20483,19709,18992,18343,17792,17314,16902,16611,16345,16185,16075,16039,16070,16160,16331,16540,16845,17200,17632,18120,18680,19305,19933,20613,21353,22084,22849,23549,24253,24917,25515,26075,26505,26824,27059,27157,27184,27072,26855,26542,26145,25669,25097,24523,23877,23217,22561,21911,21272,20659,20060,19499,19009,18540,18139,17780,17445,17154,16888,16650,16430,16234,16051,15861,15681,15509,15369,15264,15162,15088,15015,14985,14952,14949,14950,14978,15002,15029,15063,15104,15156,15216,15223,15233,15257,15265,15277,15285,15293,15291,15229,15172,15114,15044,14937,14861,14702,14555,14406,14213,13997,13780,13540,13294,13018,12737,12441,12171,11845,11567,11283,11041,10789,10565,10282,9987,9665,9350,9079,8827,8627,8456,8296,8155,8077,7993,7930,7874,7802,7725,7586,7395,7237,7114,7016,6918,6828,6755,6698,6655,6637,6623,6602,6603,6621,6617,6472,6158,5731,5115,21.4,21.5,22.1,1568049,0.1,12.1,11.9,5.0,482,-1.00,-1.00,57.7772,-19.024470,0.000623,,,,,217 +SATSLF0720,2024246,9.012160,4.22,0.0591,0.1040,0.0184,0.00,16114,643,1,705,705,707,704,697,707,709,705,711,694,720,725,770,881,1216,1959,3143,4506,5767,6677,7293,7771,8191,8633,9155,9765,10513,11387,12377,13501,14669,15839,16948,17885,18613,19040,19180,18989,18617,18075,17493,16930,16480,16112,15888,15810,15896,16144,16546,17111,17882,18772,19842,21066,22381,23846,25313,26818,28213,29469,30477,31213,31609,31602,31281,30605,29693,28642,27413,26218,25074,23986,22994,22142,21405,20797,20309,19913,19644,19474,19394,19396,19505,19692,19953,20293,20739,21253,21829,22441,23117,23761,24361,24939,25415,25765,26033,26073,25956,25694,25205,24573,23860,23067,22186,21313,20468,19701,19004,18349,17800,17330,16929,16603,16337,16179,16058,16028,16058,16160,16302,16540,16833,17208,17625,18109,18671,19287,19927,20605,21347,22072,22843,23541,24246,24905,25485,26065,26477,26801,27051,27156,27169,27080,26866,26530,26141,25653,25081,24491,23859,23205,22554,21895,21258,20646,20064,19505,19012,18541,18142,17765,17442,17163,16884,16640,16435,16221,16053,15861,15658,15499,15345,15241,15133,15067,14984,14967,14953,14949,14960,14971,14999,15021,15059,15087,15145,15208,15210,15219,15241,15246,15253,15276,15280,15268,15222,15161,15104,15042,14933,14842,14688,14559,14384,14205,14004,13790,13530,13267,13003,12728,12428,12155,11850,11558,11280,11026,10792,10554,10280,9980,9649,9353,9067,8833,8621,8453,8299,8168,8061,7972,7907,7841,7803,7710,7571,7400,7241,7123,6996,6895,6817,6754,6685,6667,6633,6627,6610,6613,6636,6621,6469,6170,5739,5120,21.4,21.5,22.1,1568050,0.1,12.1,12.0,5.0,479,-1.00,-1.00,57.4193,-18.865344,0.000667,,,,,231 +SATSLF0720,2024246,9.012413,4.13,0.0578,0.1041,0.0184,0.00,16116,643,1,699,685,705,690,699,691,702,721,724,731,742,749,775,882,1221,1964,3147,4524,5761,6685,7321,7789,8201,8651,9165,9789,10533,11391,12393,13506,14688,15845,16951,17918,18635,19069,19205,19015,18638,18103,17500,16958,16496,16131,15909,15833,15904,16149,16553,17138,17882,18802,19870,21078,22397,23853,25323,26803,28222,29467,30484,31212,31617,31610,31272,30632,29697,28671,27429,26244,25095,24003,22995,22150,21413,20797,20313,19936,19641,19484,19389,19401,19489,19687,19959,20292,20747,21261,21813,22433,23105,23755,24341,24939,25421,25777,26044,26097,25976,25696,25225,24573,23852,23050,22190,21315,20477,19697,19011,18375,17793,17320,16905,16584,16351,16182,16082,16048,16057,16150,16306,16535,16825,17201,17613,18099,18677,19291,19921,20609,21350,22089,22816,23537,24224,24882,25473,26034,26475,26800,27040,27143,27155,27069,26838,26516,26122,25642,25082,24485,23840,23193,22554,21885,21249,20650,20051,19492,19012,18533,18134,17769,17437,17150,16881,16643,16437,16219,16037,15849,15653,15503,15356,15243,15135,15058,14984,14940,14935,14946,14963,14974,14993,15031,15062,15092,15140,15186,15195,15213,15240,15233,15266,15275,15279,15262,15224,15152,15103,15040,14949,14847,14707,14553,14374,14195,13989,13761,13531,13258,12992,12713,12429,12136,11854,11566,11293,11041,10785,10557,10282,9993,9674,9364,9075,8833,8617,8431,8295,8156,8049,7985,7919,7877,7813,7723,7580,7399,7235,7117,6989,6884,6804,6743,6683,6655,6629,6626,6607,6605,6621,6614,6461,6174,5750,5122,21.4,21.5,22.1,1568051,0.1,12.1,11.9,5.0,480,-1.00,-1.00,57.3289,-18.834819,0.000571,,,,,149 +SATSLF0720,2024246,9.012665,4.33,0.0606,0.1060,0.0191,0.00,16061,643,1,699,699,705,703,705,703,715,714,725,726,727,733,774,900,1210,1948,3124,4488,5707,6633,7257,7723,8151,8588,9103,9723,10459,11326,12297,13415,14577,15735,16819,17771,18485,18925,19059,18887,18516,17984,17398,16821,16377,16006,15799,15736,15809,16071,16466,17053,17778,18693,19746,20984,22282,23720,25185,26663,28077,29316,30305,31043,31445,31437,31102,30464,29549,28516,27296,26114,24953,23881,22886,22032,21309,20706,20211,19827,19544,19406,19310,19314,19429,19608,19882,20221,20658,21174,21733,22374,23031,23661,24273,24844,25315,25666,25947,26005,25867,25597,25111,24491,23786,22981,22125,21249,20410,19643,18946,18289,17722,17258,16860,16544,16282,16123,16039,15985,16013,16100,16257,16488,16789,17170,17578,18094,18633,19250,19885,20557,21287,22024,22764,23473,24169,24832,25413,25975,26412,26732,26980,27086,27101,27005,26805,26473,26085,25586,25017,24421,23785,23154,22501,21843,21204,20590,20012,19449,18965,18497,18086,17717,17397,17104,16845,16606,16410,16199,16005,15817,15622,15453,15329,15221,15118,15042,14979,14926,14915,14903,14919,14937,14963,15005,15042,15085,15132,15177,15188,15193,15203,15195,15226,15241,15251,15253,15200,15154,15082,15015,14909,14825,14685,14523,14363,14178,13973,13750,13501,13251,12992,12709,12410,12119,11825,11530,11267,11026,10772,10541,10275,9972,9645,9322,9059,8825,8610,8440,8291,8150,8051,7989,7904,7853,7790,7701,7556,7380,7224,7099,6982,6898,6814,6734,6685,6649,6614,6623,6615,6612,6622,6614,6462,6164,5737,5113,21.4,21.5,22.2,1568051,0.4,12.1,12.0,5.0,473,-1.00,-1.00,57.7083,-18.896429,0.000576,,,,,233 +SATSLF0720,2024246,9.012921,4.22,0.0591,0.1050,0.0195,0.00,16093,643,1,711,704,707,698,696,700,705,711,715,725,728,732,771,898,1226,1962,3132,4518,5752,6669,7305,7762,8195,8645,9156,9774,10510,11387,12391,13497,14663,15831,16933,17896,18610,19051,19173,18998,18615,18087,17481,16925,16455,16102,15889,15822,15886,16149,16548,17141,17878,18771,19838,21060,22358,23809,25283,26778,28170,29418,30417,31159,31569,31570,31227,30598,29680,28625,27381,26192,25038,23959,22954,22110,21369,20775,20286,19908,19626,19459,19353,19366,19466,19653,19921,20261,20683,21207,21781,22403,23069,23714,24319,24893,25363,25744,26007,26037,25925,25667,25169,24535,23813,23025,22161,21281,20443,19680,18981,18330,17769,17299,16884,16582,16325,16147,16062,16008,16030,16117,16277,16520,16791,17163,17607,18078,18657,19273,19896,20592,21306,22048,22786,23496,24202,24867,25456,26009,26432,26758,27011,27093,27123,27037,26804,26493,26082,25598,25041,24452,23818,23168,22513,21842,21227,20605,20009,19464,18973,18503,18109,17731,17413,17120,16851,16608,16403,16205,16014,15825,15641,15470,15325,15233,15124,15047,14965,14932,14904,14907,14923,14947,14962,15004,15049,15077,15130,15181,15213,15220,15229,15221,15249,15248,15257,15243,15191,15128,15069,14998,14914,14820,14686,14541,14372,14180,13969,13754,13513,13253,12973,12692,12413,12117,11824,11530,11273,11029,10786,10544,10279,9965,9655,9337,9069,8825,8612,8430,8283,8150,8056,7987,7917,7853,7784,7685,7547,7390,7221,7089,6986,6896,6805,6749,6689,6647,6649,6633,6617,6593,6617,6602,6447,6161,5729,5101,21.4,21.6,22.2,1568052,0.1,12.1,12.0,5.0,483,-1.00,-1.00,56.8821,-18.621525,0.000527,,,,,150 +SATSLF0720,2024246,9.013175,4.22,0.0591,0.1054,0.0190,0.00,16079,643,1,710,693,704,698,690,694,695,707,707,708,729,729,770,884,1221,1961,3136,4514,5747,6668,7304,7756,8180,8608,9129,9741,10485,11355,12333,13448,14612,15787,16894,17845,18554,19001,19130,18952,18577,18030,17447,16880,16436,16069,15833,15782,15861,16104,16522,17084,17834,18737,19803,21025,22325,23777,25229,26732,28136,29397,30384,31133,31531,31531,31189,30545,29627,28561,27339,26161,25013,23924,22924,22071,21341,20724,20266,19882,19606,19429,19335,19353,19456,19650,19907,20250,20690,21201,21760,22372,23052,23689,24306,24878,25345,25714,25976,26033,25896,25613,25154,24513,23805,23010,22152,21281,20431,19657,18952,18308,17754,17289,16891,16564,16327,16153,16059,16009,16029,16114,16273,16502,16787,17154,17581,18064,18644,19258,19890,20572,21289,22034,22779,23491,24192,24850,25439,26012,26439,26754,26987,27105,27109,27013,26813,26468,26087,25592,25022,24443,23803,23163,22516,21847,21222,20604,20022,19462,18979,18505,18113,17729,17403,17114,16848,16610,16405,16189,16016,15829,15638,15469,15322,15219,15118,15046,14958,14919,14914,14906,14921,14942,14965,15011,15029,15066,15123,15173,15182,15201,15218,15220,15242,15253,15261,15259,15208,15141,15084,15005,14931,14835,14684,14532,14362,14179,13968,13749,13506,13248,12977,12707,12417,12122,11825,11529,11261,11010,10766,10523,10272,9979,9662,9341,9059,8823,8601,8425,8289,8140,8055,7965,7893,7851,7785,7687,7541,7365,7226,7088,6987,6893,6802,6736,6693,6649,6624,6619,6609,6597,6605,6595,6451,6152,5721,5103,21.4,21.6,22.2,1568053,0.5,12.1,11.9,5.0,478,-1.00,-1.00,57.4675,-18.838614,0.000616,,,,,233 +SATSLF0720,2024246,9.013426,4.32,0.0606,0.1053,0.0188,0.00,16086,643,1,686,695,690,698,715,712,718,706,717,719,726,714,763,881,1223,1960,3139,4497,5731,6649,7281,7763,8181,8626,9138,9749,10501,11361,12359,13478,14633,15808,16897,17869,18581,19006,19134,18946,18583,18054,17457,16893,16441,16071,15858,15792,15876,16114,16518,17113,17834,18753,19835,21033,22355,23796,25266,26752,28156,29415,30402,31133,31553,31533,31211,30554,29628,28597,27370,26188,25029,23957,22963,22100,21364,20752,20261,19879,19595,19441,19341,19349,19455,19658,19906,20255,20701,21205,21769,22386,23066,23709,24311,24885,25355,25728,25988,26054,25933,25653,25165,24517,23799,23008,22147,21274,20439,19669,18968,18323,17764,17297,16887,16572,16315,16148,16045,16013,16029,16117,16285,16509,16804,17180,17595,18086,18649,19250,19899,20581,21298,22041,22780,23489,24199,24849,25445,26016,26443,26760,27000,27106,27124,27017,26803,26475,26075,25596,25030,24437,23812,23173,22518,21852,21210,20615,20005,19451,18971,18497,18107,17735,17418,17123,16848,16627,16413,16209,16013,15827,15635,15469,15330,15223,15114,15044,14957,14922,14907,14913,14929,14961,14980,15013,15057,15078,15136,15203,15211,15212,15216,15230,15245,15268,15269,15249,15208,15144,15091,15017,14914,14830,14683,14541,14370,14182,13970,13755,13508,13259,12985,12705,12420,12120,11819,11537,11283,11022,10787,10561,10278,9987,9655,9344,9050,8808,8601,8421,8267,8151,8066,7988,7905,7853,7781,7701,7549,7385,7224,7100,6982,6888,6817,6742,6682,6656,6625,6611,6609,6589,6609,6612,6460,6165,5730,5113,21.4,21.6,22.2,1568054,0.3,12.0,12.0,5.0,479,-1.00,-1.00,57.1371,-18.714285,0.000573,,,,,178 +SATSLF0720,2024246,9.013682,4.26,0.0597,0.1049,0.0191,0.00,16088,643,1,709,705,719,720,724,717,724,718,735,729,732,742,772,893,1233,1970,3157,4517,5746,6665,7294,7763,8179,8613,9127,9755,10482,11354,12349,13450,14619,15781,16901,17843,18561,18999,19143,18969,18594,18061,17457,16905,16452,16088,15853,15784,15860,16111,16521,17105,17849,18760,19821,21030,22357,23783,25253,26728,28160,29393,30393,31141,31540,31522,31197,30541,29619,28587,27366,26170,25001,23939,22941,22087,21365,20762,20258,19895,19596,19440,19357,19366,19454,19647,19897,20254,20691,21209,21762,22397,23059,23701,24315,24886,25360,25729,25986,26042,25920,25640,25162,24522,23802,23003,22148,21273,20441,19680,18976,18328,17770,17293,16877,16569,16322,16149,16049,16008,16040,16128,16293,16525,16801,17184,17597,18072,18649,19261,19889,20583,21306,22049,22784,23498,24202,24855,25445,26013,26439,26750,26992,27092,27110,27025,26820,26498,26093,25600,25033,24446,23817,23173,22505,21840,21210,20614,20026,19469,18962,18508,18090,17737,17403,17118,16848,16620,16410,16212,16021,15837,15639,15484,15350,15213,15139,15047,14976,14940,14929,14929,14918,14951,14969,15008,15051,15077,15134,15193,15205,15221,15221,15217,15245,15273,15261,15240,15207,15142,15080,15012,14929,14822,14697,14548,14377,14183,13971,13755,13509,13265,12989,12711,12420,12136,11825,11542,11267,11031,10794,10539,10263,9983,9660,9350,9081,8830,8618,8443,8288,8154,8045,7974,7897,7863,7790,7708,7557,7394,7238,7097,6996,6893,6810,6749,6695,6661,6647,6628,6603,6599,6621,6616,6462,6165,5741,5106,21.4,21.6,22.2,1568055,0.5,12.1,11.9,5.0,479,-1.00,-1.00,57.0262,-18.661149,0.000559,,,,,148 +SATSLF0720,2024246,9.013936,4.24,0.0593,0.1051,0.0191,0.00,16085,643,1,722,721,713,719,715,711,721,710,735,734,721,741,769,893,1227,1967,3148,4535,5765,6668,7300,7769,8190,8642,9145,9769,10523,11380,12381,13504,14670,15837,16921,17879,18602,19053,19163,18973,18592,18067,17477,16902,16457,16081,15863,15809,15889,16125,16545,17105,17864,18758,19822,21040,22344,23787,25265,26745,28155,29419,30410,31148,31542,31545,31204,30554,29645,28584,27338,26165,24997,23940,22933,22100,21344,20750,20278,19874,19597,19451,19349,19361,19460,19642,19907,20246,20676,21202,21745,22376,23046,23693,24312,24893,25358,25725,25968,26042,25909,25632,25152,24526,23797,23012,22141,21265,20435,19662,18948,18305,17745,17281,16875,16567,16314,16150,16049,16004,16030,16116,16279,16508,16803,17155,17596,18067,18645,19249,19888,20570,21296,22029,22775,23498,24183,24842,25429,26007,26411,26741,26993,27090,27102,27012,26785,26466,26079,25596,25037,24440,23806,23148,22504,21833,21209,20589,20009,19454,18964,18499,18099,17730,17413,17127,16842,16605,16397,16183,16008,15818,15637,15470,15337,15214,15113,15040,14962,14934,14916,14916,14910,14940,14965,15003,15043,15067,15125,15181,15202,15221,15220,15223,15251,15261,15257,15248,15178,15124,15081,15001,14908,14828,14688,14544,14363,14175,13963,13756,13519,13250,12997,12716,12412,12131,11825,11543,11265,11016,10778,10553,10277,9957,9650,9333,9031,8803,8596,8442,8281,8155,8061,7982,7925,7849,7797,7706,7547,7377,7233,7099,6984,6885,6808,6741,6677,6663,6645,6629,6619,6605,6629,6601,6445,6143,5719,5099,21.4,21.6,22.2,1568056,0.4,12.1,12.0,5.0,477,-1.00,-1.00,56.7566,-18.551836,0.000619,,,,,170 +SATSLF0720,2024246,9.014187,4.29,0.0601,0.1059,0.0195,0.00,16068,643,1,708,700,702,706,717,709,719,710,730,724,731,761,777,891,1230,1953,3142,4512,5736,6653,7299,7771,8180,8624,9140,9744,10503,11370,12340,13450,14632,15774,16881,17841,18553,18989,19123,18948,18562,18041,17449,16877,16419,16053,15851,15770,15860,16100,16520,17089,17837,18738,19797,21008,22321,23752,25232,26704,28123,29357,30341,31099,31513,31494,31191,30532,29616,28557,27305,26135,24993,23893,22908,22061,21329,20720,20232,19845,19562,19408,19313,19318,19412,19622,19880,20240,20661,21177,21741,22362,23022,23656,24283,24859,25326,25687,25971,26017,25900,25616,25141,24502,23778,22979,22122,21269,20413,19652,18946,18300,17738,17267,16869,16549,16290,16120,16029,15989,16018,16097,16259,16496,16790,17161,17582,18072,18647,19225,19867,20534,21277,22010,22762,23461,24154,24825,25410,25970,26408,26717,26962,27066,27089,26989,26770,26445,26061,25568,25009,24413,23781,23142,22481,21830,21200,20582,20002,19437,18956,18485,18085,17708,17389,17098,16826,16597,16392,16183,15996,15802,15626,15457,15321,15198,15084,15006,14951,14919,14901,14907,14905,14939,14957,14994,15028,15062,15112,15173,15188,15189,15213,15226,15234,15258,15241,15240,15187,15125,15068,14989,14918,14826,14681,14522,14347,14171,13949,13749,13505,13250,12983,12697,12406,12115,11805,11524,11255,11003,10760,10525,10269,9957,9645,9333,9050,8811,8597,8419,8271,8147,8045,7972,7909,7850,7793,7698,7561,7370,7219,7089,6974,6885,6801,6731,6685,6645,6615,6615,6605,6597,6612,6593,6446,6141,5716,5111,21.4,21.7,22.3,1568057,0.0,12.1,12.0,5.0,478,-1.00,-1.00,56.9631,-18.615827,0.000567,,,,,189 +SATSLF0720,2024246,9.014443,4.27,0.0598,0.1061,0.0201,0.00,16045,643,1,690,707,700,692,715,708,715,724,725,728,732,743,770,890,1220,1966,3125,4490,5703,6629,7282,7736,8166,8587,9115,9733,10466,11334,12320,13429,14593,15736,16845,17799,18513,18953,19079,18907,18537,17997,17413,16853,16401,16033,15817,15749,15826,16078,16483,17060,17805,18704,19748,20957,22276,23713,25195,26662,28077,29307,30315,31074,31445,31443,31129,30473,29557,28510,27281,26105,24940,23872,22866,22029,21299,20696,20221,19821,19558,19404,19307,19313,19415,19602,19861,20204,20615,21143,21707,22349,22987,23627,24258,24821,25294,25650,25921,25969,25853,25597,25098,24477,23768,22973,22100,21223,20395,19609,18925,18264,17716,17258,16850,16533,16283,16106,16008,15977,15985,16077,16256,16478,16762,17126,17563,18042,18611,19212,19842,20514,21253,21993,22728,23440,24141,24806,25396,25949,26366,26688,26934,27033,27029,26951,26733,26419,26032,25527,24968,24375,23735,23099,22440,21783,21153,20544,19961,19408,18937,18461,18069,17686,17374,17081,16813,16587,16370,16155,15991,15792,15593,15445,15298,15165,15086,15006,14932,14910,14902,14893,14887,14913,14932,14957,14995,15031,15103,15145,15171,15176,15173,15179,15195,15220,15220,15201,15156,15098,15047,14971,14890,14791,14646,14514,14333,14153,13933,13718,13473,13221,12951,12674,12380,12106,11798,11525,11237,10996,10765,10524,10259,9941,9627,9327,9038,8791,8605,8426,8265,8133,8039,7965,7899,7845,7779,7689,7549,7380,7221,7092,6978,6875,6803,6721,6665,6621,6603,6600,6580,6576,6603,6602,6453,6152,5717,5107,21.4,21.7,22.3,1568058,0.2,12.1,11.9,5.0,478,-1.00,-1.00,57.3070,-18.729783,0.000531,,,,,100 +SATSDF0720,2024246,9.259138,0.00,0.0000,0.0000,0.0000,0.00,643,0,1,640,635,633,625,631,614,624,619,615,629,629,622,622,620,621,618,617,630,621,630,623,633,639,646,656,653,650,643,650,653,646,643,647,649,645,640,654,641,653,656,658,644,647,652,649,649,655,647,663,645,648,647,635,646,646,640,639,651,657,657,657,650,663,649,642,641,641,650,653,669,649,657,657,657,643,639,643,640,638,637,634,640,655,662,673,648,655,647,645,652,636,631,645,633,647,643,633,626,649,645,654,659,647,667,660,656,649,649,633,645,632,639,647,648,638,641,637,642,630,645,641,643,641,641,642,646,642,643,663,645,649,644,648,653,645,641,640,637,627,639,637,643,650,637,643,645,651,650,646,648,649,644,637,634,637,633,637,629,637,647,653,653,649,649,645,638,633,633,625,638,634,629,631,634,645,656,633,667,648,648,646,656,646,639,647,644,642,647,644,645,644,640,644,647,634,640,638,644,641,641,646,649,640,655,651,654,649,647,643,644,637,637,641,633,642,636,646,652,637,640,641,653,648,630,641,628,635,638,648,633,646,653,653,637,643,649,633,643,634,635,627,625,639,640,642,653,649,645,657,656,661,645,645,650,638,472,0.0,0.0,0.0,1568057,0.0,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,136 +SATSLF0720,2024246,9.259692,4.06,0.0569,0.0995,0.0157,0.00,16252,643,1,701,701,693,696,691,705,699,705,717,710,721,713,753,873,1214,1980,3158,4551,5803,6749,7387,7865,8293,8733,9269,9891,10651,11528,12545,13648,14852,16023,17144,18121,18850,19289,19425,19233,18838,18316,17717,17145,16667,16306,16069,15995,16069,16314,16736,17325,18085,18990,20083,21329,22656,24123,25608,27109,28538,29796,30795,31544,31942,31947,31624,30979,30034,28960,27718,26529,25346,24257,23244,22384,21640,21015,20531,20139,19851,19688,19589,19597,19700,19881,20166,20518,20941,21474,22033,22647,23314,23962,24580,25180,25646,26006,26269,26322,26193,25908,25433,24789,24050,23245,22375,21493,20652,19861,19159,18497,17937,17457,17045,16740,16469,16307,16205,16161,16173,16261,16442,16657,16955,17338,17768,18257,18837,19443,20075,20763,21499,22253,22993,23709,24439,25107,25687,26266,26692,27024,27261,27363,27399,27294,27080,26734,26330,25835,25271,24670,24040,23390,22741,22077,21445,20813,20214,19645,19143,18669,18265,17886,17559,17269,17006,16765,16564,16350,16167,15973,15785,15614,15467,15359,15260,15157,15086,15057,15047,15037,15035,15070,15102,15121,15170,15205,15237,15301,15303,15319,15332,15337,15340,15353,15365,15348,15299,15261,15196,15140,15046,14933,14807,14650,14473,14275,14064,13857,13616,13350,13075,12795,12496,12200,11904,11634,11353,11105,10869,10621,10345,10049,9719,9414,9130,8881,8685,8492,8337,8200,8109,8016,7953,7894,7836,7744,7605,7426,7277,7147,7035,6937,6853,6785,6734,6696,6677,6657,6649,6637,6643,6658,6494,6179,5744,5119,21.3,21.3,21.8,1568058,0.5,12.1,11.9,5.0,600,-1.00,-1.00,56.8510,-18.835570,0.000641,,,,,57 +SATSLF0720,2024246,9.259877,4.10,0.0574,0.0999,0.0158,0.00,16236,643,1,701,707,709,709,707,701,719,719,739,733,728,723,754,882,1209,1978,3169,4561,5806,6738,7386,7865,8292,8742,9268,9880,10627,11517,12518,13636,14817,15995,17125,18081,18819,19249,19380,19200,18818,18275,17674,17107,16649,16276,16038,15959,16038,16288,16711,17309,18057,18977,20073,21269,22605,24067,25555,27034,28473,29738,30729,31504,31893,31894,31554,30919,29984,28913,27677,26482,25316,24217,23198,22352,21589,20979,20484,20103,19809,19649,19572,19562,19673,19874,20125,20486,20897,21434,22005,22628,23289,23929,24554,25114,25602,25972,26241,26280,26163,25889,25390,24744,24037,23211,22347,21466,20621,19842,19143,18473,17923,17462,17044,16712,16464,16294,16189,16137,16160,16242,16407,16643,16964,17313,17745,18242,18825,19429,20072,20759,21483,22235,22981,23697,24411,25077,25670,26245,26688,27000,27249,27353,27366,27271,27061,26725,26314,25818,25253,24688,24029,23360,22699,22037,21408,20775,20183,19627,19127,18651,18263,17883,17559,17266,17011,16762,16549,16346,16153,15948,15762,15593,15445,15329,15238,15184,15085,15059,15031,15038,15035,15058,15077,15125,15154,15177,15233,15287,15308,15317,15330,15342,15360,15370,15355,15367,15331,15253,15193,15125,15033,14930,14787,14632,14471,14282,14072,13865,13608,13316,13063,12782,12497,12213,11908,11623,11353,11108,10852,10630,10346,10043,9719,9413,9109,8865,8646,8485,8318,8211,8105,8037,7949,7911,7841,7749,7607,7437,7261,7143,7030,6923,6849,6793,6730,6685,6678,6666,6658,6634,6665,6645,6484,6185,5754,5134,21.4,21.3,21.9,1568059,0.8,12.1,11.9,5.0,487,-1.00,-1.00,56.8415,-18.798175,0.000580,,,,,6 +SATSLF0720,2024246,9.260135,4.13,0.0579,0.1008,0.0160,0.00,16220,643,1,691,691,696,697,714,712,722,727,718,706,715,716,746,863,1218,1968,3160,4552,5797,6729,7362,7831,8269,8710,9241,9853,10615,11499,12509,13637,14813,15985,17104,18063,18791,19225,19350,19173,18792,18254,17655,17097,16619,16270,16041,15972,16039,16289,16673,17281,18034,18938,20013,21232,22579,24038,25512,27026,28457,29709,30700,31469,31866,31862,31521,30874,29937,28886,27633,26458,25286,24213,23185,22317,21580,20967,20475,20075,19795,19641,19536,19534,19638,19833,20089,20453,20882,21401,21982,22597,23271,23908,24529,25106,25589,25945,26215,26260,26140,25856,25369,24738,24016,23217,22337,21476,20610,19825,19125,18451,17897,17425,17015,16701,16444,16269,16180,16137,16153,16246,16417,16633,16933,17303,17728,18221,18785,19397,20053,20748,21469,22205,22956,23673,24381,25049,25647,26221,26646,26968,27211,27313,27334,27238,27027,26701,26293,25803,25237,24646,24010,23369,22689,22032,21389,20765,20175,19616,19131,18644,18241,17874,17526,17254,16973,16724,16525,16320,16129,15933,15757,15592,15457,15336,15250,15161,15083,15038,15008,15010,15016,15029,15063,15101,15149,15173,15233,15277,15298,15309,15309,15325,15342,15361,15366,15341,15297,15245,15184,15113,15024,14930,14792,14637,14461,14265,14066,13837,13601,13325,13065,12771,12475,12182,11888,11621,11336,11083,10842,10601,10346,10024,9702,9399,9113,8874,8666,8490,8334,8201,8105,8018,7939,7889,7821,7731,7606,7402,7267,7139,7014,6921,6833,6775,6734,6689,6672,6661,6642,6629,6641,6637,6484,6167,5737,5126,21.4,21.4,21.9,1568060,0.4,12.1,12.0,5.0,483,-1.00,-1.00,56.6947,-18.715245,0.000545,,,,,198 +SATSLF0720,2024246,9.260388,4.06,0.0569,0.1009,0.0166,0.00,16210,643,1,687,691,692,698,687,687,696,689,717,714,727,730,765,885,1221,1961,3152,4551,5799,6724,7368,7852,8263,8698,9231,9865,10600,11477,12488,13612,14786,15982,17082,18051,18790,19227,19349,19165,18760,18215,17632,17060,16609,16237,16025,15941,16029,16274,16680,17258,18007,18941,20005,21248,22557,24014,25498,27009,28429,29678,30703,31437,31844,31840,31525,30862,29943,28864,27632,26440,25256,24168,23168,22312,21565,20946,20461,20075,19782,19620,19528,19543,19645,19830,20087,20459,20884,21408,21969,22592,23258,23892,24504,25074,25561,25923,26211,26250,26121,25847,25349,24729,23990,23205,22338,21466,20600,19829,19123,18448,17885,17400,16995,16688,16426,16274,16177,16134,16162,16236,16387,16619,16905,17285,17713,18199,18790,19413,20029,20725,21457,22213,22954,23674,24388,25042,25637,26217,26640,26952,27196,27293,27324,27216,27003,26680,26288,25781,25219,24621,23975,23335,22680,22010,21366,20747,20157,19605,19112,18640,18216,17855,17533,17249,16973,16727,16523,16324,16129,15938,15741,15575,15442,15326,15213,15138,15071,15017,15022,14986,14999,15038,15069,15097,15159,15169,15205,15275,15281,15293,15301,15313,15330,15359,15358,15341,15295,15238,15164,15092,15005,14922,14786,14633,14457,14253,14052,13842,13587,13320,13045,12779,12477,12176,11876,11581,11314,11078,10836,10597,10340,10050,9705,9384,9099,8859,8646,8469,8305,8187,8086,8023,7937,7893,7825,7742,7590,7426,7259,7132,7009,6915,6833,6771,6713,6681,6665,6645,6637,6628,6654,6645,6489,6176,5761,5129,21.4,21.4,21.9,1568061,0.6,12.1,12.0,5.0,487,-1.00,-1.00,57.3075,-18.962309,0.000591,,,,,48 +SATSLF0720,2024246,9.260639,4.34,0.0608,0.1012,0.0163,0.00,16204,643,1,697,695,716,697,711,699,704,707,715,721,726,729,765,882,1236,1969,3153,4532,5795,6706,7351,7823,8243,8695,9219,9837,10573,11467,12456,13581,14770,15942,17054,18023,18737,19172,19303,19114,18737,18203,17610,17069,16597,16224,16007,15925,16005,16264,16666,17252,18000,18914,19984,21214,22538,23994,25477,26967,28414,29651,30677,31415,31811,31808,31483,30834,29893,28822,27593,26403,25248,24148,23136,22277,21538,20946,20445,20056,19773,19598,19515,19524,19621,19823,20085,20430,20853,21397,21941,22576,23239,23878,24499,25057,25531,25917,26185,26224,26106,25818,25335,24708,23992,23200,22317,21448,20584,19815,19122,18437,17892,17412,17000,16679,16427,16260,16155,16119,16136,16229,16401,16629,16925,17310,17738,18225,18788,19397,20043,20727,21454,22208,22945,23658,24370,25040,25644,26209,26620,26951,27197,27311,27320,27210,26999,26647,26262,25780,25205,24624,23994,23335,22681,22013,21376,20755,20153,19595,19113,18634,18234,17875,17527,17251,16970,16724,16525,16306,16127,15931,15738,15572,15428,15323,15225,15157,15086,15054,15024,15006,15018,15019,15059,15094,15147,15185,15225,15270,15291,15302,15306,15329,15335,15343,15348,15341,15288,15231,15175,15103,15013,14909,14787,14629,14461,14275,14046,13833,13593,13325,13070,12782,12487,12201,11886,11598,11321,11079,10836,10597,10326,10031,9712,9376,9099,8855,8661,8473,8313,8183,8103,8026,7958,7896,7831,7750,7601,7430,7277,7137,7031,6925,6843,6776,6727,6685,6656,6649,6642,6618,6642,6637,6485,6164,5743,5127,21.4,21.4,21.9,1568062,0.7,12.2,12.0,5.0,482,-1.00,-1.00,56.4123,-18.568824,0.000539,,,,,181 +SATSLF0720,2024246,9.260894,4.28,0.0600,0.1023,0.0172,0.00,16171,643,1,703,711,708,694,706,701,705,721,713,733,731,723,765,882,1214,1969,3159,4550,5784,6709,7360,7816,8231,8677,9203,9812,10557,11431,12453,13545,14737,15907,17022,17975,18696,19130,19271,19067,18704,18171,17578,17027,16560,16196,15972,15895,15966,16221,16634,17226,17965,18871,19941,21163,22486,23939,25438,26922,28328,29589,30595,31349,31739,31743,31410,30752,29824,28791,27541,26354,25185,24109,23105,22245,21512,20898,20417,20014,19739,19553,19467,19474,19590,19770,20043,20400,20816,21337,21913,22521,23191,23834,24452,25019,25498,25859,26122,26195,26066,25785,25309,24668,23945,23128,22267,21394,20538,19771,19077,18401,17845,17360,16967,16636,16383,16222,16121,16074,16112,16214,16365,16595,16892,17253,17674,18163,18736,19352,20000,20689,21405,22149,22896,23617,24312,24968,25571,26125,26567,26889,27136,27230,27249,27172,26925,26615,26226,25713,25162,24576,23930,23281,22620,21979,21317,20711,20116,19563,19066,18594,18183,17817,17489,17211,16930,16695,16490,16281,16099,15890,15697,15534,15396,15285,15189,15114,15047,14993,14968,14967,14981,15001,15027,15076,15117,15143,15203,15252,15261,15259,15267,15270,15300,15321,15325,15319,15269,15218,15146,15073,14973,14882,14748,14609,14434,14236,14026,13814,13576,13305,13031,12750,12459,12170,11864,11577,11320,11057,10820,10585,10321,10006,9689,9387,9092,8845,8633,8470,8308,8177,8075,8000,7937,7875,7822,7729,7590,7414,7257,7139,7013,6909,6821,6774,6704,6669,6643,6632,6618,6627,6642,6643,6483,6179,5754,5128,21.4,21.4,22.0,1568063,0.7,12.2,12.0,5.0,483,-1.00,-1.00,56.7105,-18.654009,0.000505,,,,,165 +SATSLF0720,2024246,9.261146,4.20,0.0588,0.1012,0.0163,0.00,16202,643,1,704,705,709,704,710,711,723,715,727,740,728,745,783,890,1217,1961,3159,4542,5802,6717,7371,7858,8253,8715,9235,9873,10610,11479,12479,13597,14767,15971,17067,18035,18755,19202,19326,19152,18759,18234,17612,17059,16596,16235,16010,15939,16019,16281,16686,17264,18017,18920,19990,21226,22546,23991,25501,26985,28413,29672,30679,31424,31838,31826,31507,30841,29922,28853,27609,26407,25243,24165,23156,22280,21540,20925,20451,20050,19776,19601,19515,19524,19616,19819,20089,20422,20855,21373,21942,22556,23243,23874,24496,25077,25552,25906,26176,26227,26089,25827,25344,24700,23980,23174,22325,21430,20579,19813,19107,18442,17891,17413,17011,16678,16430,16254,16166,16103,16139,16214,16378,16607,16908,17280,17703,18199,18784,19396,20032,20714,21442,22194,22938,23650,24356,25002,25601,26170,26590,26929,27171,27293,27289,27217,26976,26673,26257,25771,25200,24605,23963,23306,22663,21977,21346,20723,20144,19587,19105,18606,18216,17841,17519,17228,16954,16723,16506,16312,16121,15922,15720,15554,15415,15296,15203,15130,15056,15006,14993,14994,15016,15027,15051,15101,15136,15153,15221,15277,15285,15309,15306,15309,15329,15354,15345,15338,15272,15235,15174,15109,15008,14924,14775,14625,14448,14266,14052,13838,13600,13330,13057,12770,12473,12184,11884,11594,11328,11062,10819,10599,10325,10039,9709,9405,9105,8860,8633,8473,8319,8181,8091,8006,7937,7897,7833,7746,7593,7431,7253,7144,7029,6919,6834,6770,6724,6689,6664,6642,6648,6633,6648,6644,6491,6188,5741,5139,21.4,21.4,22.0,1568064,1.0,12.1,11.9,5.0,483,-1.00,-1.00,56.7149,-18.704444,0.000556,,,,,239 +SATSLF0720,2024246,9.261402,4.14,0.0580,0.1025,0.0169,0.00,16180,643,1,700,704,705,705,707,723,712,715,710,710,718,705,756,880,1220,1964,3148,4533,5778,6711,7336,7812,8236,8674,9211,9825,10572,11450,12435,13575,14740,15912,17018,17994,18709,19160,19283,19109,18722,18166,17587,17033,16564,16194,15968,15907,15974,16227,16648,17242,17973,18887,19953,21173,22491,23960,25436,26933,28361,29605,30619,31366,31765,31770,31452,30785,29862,28806,27562,26364,25193,24107,23111,22248,21515,20901,20412,20013,19725,19561,19461,19491,19588,19787,20051,20393,20836,21341,21921,22530,23206,23850,24470,25037,25531,25893,26146,26195,26074,25797,25315,24681,23949,23137,22283,21396,20561,19785,19084,18413,17866,17397,16978,16651,16407,16224,16128,16082,16105,16192,16384,16594,16893,17265,17702,18192,18750,19356,19995,20679,21424,22171,22901,23621,24329,24985,25580,26149,26572,26909,27136,27250,27253,27176,26967,26642,26235,25747,25177,24587,23949,23290,22631,21974,21338,20728,20129,19575,19084,18600,18189,17831,17496,17219,16946,16705,16505,16294,16102,15912,15729,15553,15417,15305,15203,15141,15052,15010,14988,14988,14988,15009,15029,15075,15101,15139,15193,15260,15275,15269,15284,15296,15301,15331,15341,15322,15271,15210,15154,15082,15005,14888,14766,14625,14445,14257,14025,13816,13559,13323,13047,12758,12472,12168,11885,11579,11303,11067,10841,10592,10316,10011,9699,9394,9093,8857,8649,8469,8321,8177,8081,8005,7950,7892,7827,7745,7595,7425,7276,7137,7018,6923,6819,6763,6705,6672,6646,6651,6641,6638,6653,6653,6491,6176,5749,5130,21.4,21.4,22.0,1568065,0.8,12.1,11.9,5.0,473,-1.00,-1.00,57.2720,-18.901609,0.000558,,,,,136 +SATSLF0720,2024246,9.261656,4.25,0.0596,0.1022,0.0177,0.00,16165,643,1,690,701,692,704,697,690,711,712,723,723,722,743,765,887,1217,1959,3143,4522,5781,6686,7339,7804,8211,8671,9174,9792,10549,11433,12433,13541,14736,15889,17015,17965,18681,19128,19256,19085,18709,18173,17565,17003,16546,16188,15944,15875,15968,16205,16627,17221,17956,18859,19951,21174,22486,23944,25421,26907,28344,29593,30586,31323,31741,31742,31404,30759,29833,28760,27527,26331,25161,24099,23086,22217,21490,20888,20385,19995,19725,19566,19473,19483,19579,19761,20027,20367,20791,21328,21904,22515,23189,23835,24445,25029,25509,25861,26122,26168,26049,25783,25298,24652,23927,23136,22258,21384,20526,19748,19062,18393,17833,17358,16962,16641,16398,16222,16128,16080,16105,16181,16349,16567,16881,17240,17671,18145,18748,19341,19981,20677,21408,22135,22891,23618,24312,24965,25571,26131,26551,26873,27125,27229,27258,27158,26944,26603,26218,25716,25143,24561,23928,23277,22612,21948,21312,20707,20114,19554,19057,18602,18198,17824,17486,17200,16921,16677,16477,16274,16081,15883,15705,15533,15409,15298,15205,15124,15041,15011,14986,14973,14974,14987,15026,15066,15104,15145,15189,15231,15255,15278,15277,15288,15296,15304,15305,15304,15252,15189,15127,15065,14973,14875,14743,14592,14433,14237,14018,13810,13560,13307,13042,12754,12456,12168,11873,11574,11297,11047,10811,10571,10309,10010,9684,9389,9093,8855,8637,8462,8301,8171,8077,8010,7929,7891,7812,7737,7586,7387,7246,7105,7008,6898,6836,6769,6720,6681,6657,6656,6629,6604,6621,6623,6469,6166,5741,5119,21.4,21.4,22.1,1568066,0.0,12.1,12.0,5.0,482,-1.00,-1.00,56.9098,-18.732341,0.000618,,,,,48 +SATSLF0720,2024246,9.261908,4.20,0.0588,0.1030,0.0175,0.00,16156,643,1,707,700,693,709,690,699,706,713,717,718,721,725,766,888,1229,1969,3153,4532,5774,6681,7331,7801,8221,8667,9186,9815,10563,11437,12422,13540,14712,15873,16986,17939,18677,19114,19258,19051,18683,18158,17541,16992,16520,16167,15936,15869,15952,16192,16613,17200,17943,18855,19923,21139,22452,23909,25397,26877,28311,29553,30565,31314,31706,31703,31377,30721,29796,28737,27506,26322,25157,24073,23065,22208,21467,20861,20377,19972,19697,19540,19437,19456,19557,19751,20020,20361,20793,21325,21879,22493,23153,23803,24420,25000,25489,25844,26119,26168,26034,25750,25271,24637,23911,23109,22235,21370,20517,19759,19058,18397,17841,17348,16947,16626,16384,16221,16116,16074,16093,16199,16349,16573,16876,17237,17656,18153,18730,19345,19985,20661,21393,22144,22882,23593,24297,24962,25549,26110,26540,26864,27112,27224,27229,27132,26925,26582,26210,25701,25146,24562,23913,23269,22608,21941,21317,20704,20107,19554,19056,18583,18181,17813,17485,17173,16900,16667,16472,16279,16085,15893,15716,15537,15388,15291,15177,15118,15036,14985,14968,14969,14979,15009,15036,15073,15104,15140,15184,15242,15252,15250,15273,15281,15294,15317,15307,15301,15244,15190,15135,15061,14979,14884,14752,14587,14419,14219,14018,13813,13572,13311,13033,12753,12441,12151,11859,11573,11301,11058,10805,10579,10305,10007,9700,9365,9085,8860,8634,8472,8310,8174,8071,7997,7925,7880,7813,7721,7570,7402,7268,7125,7010,6912,6834,6762,6710,6668,6641,6651,6632,6624,6635,6634,6472,6174,5737,5120,21.4,21.4,22.1,1568067,1.4,12.2,12.0,5.0,472,-1.00,-1.00,57.1987,-18.834990,0.000579,,,,,154 +SATSLF0720,2024246,9.262167,4.33,0.0607,0.1031,0.0179,0.00,16141,643,1,708,714,706,711,719,705,720,720,727,720,723,739,784,891,1218,1971,3153,4520,5771,6669,7307,7784,8216,8652,9175,9801,10539,11397,12399,13526,14705,15873,16989,17941,18661,19068,19211,19033,18645,18123,17536,16966,16513,16147,15922,15845,15914,16170,16570,17155,17925,18841,19898,21112,22445,23869,25367,26841,28269,29525,30533,31274,31673,31668,31339,30679,29749,28682,27456,26262,25099,24023,23024,22168,21452,20835,20355,19968,19690,19525,19434,19424,19530,19721,19974,20327,20757,21271,21836,22471,23141,23784,24403,24972,25450,25805,26065,26119,26010,25714,25254,24625,23904,23083,22234,21357,20507,19737,19029,18365,17807,17344,16946,16628,16357,16199,16106,16064,16080,16181,16339,16557,16854,17226,17642,18131,18709,19320,19959,20646,21394,22121,22872,23569,24281,24925,25521,26093,26533,26845,27099,27208,27213,27111,26900,26562,26157,25688,25112,24537,23892,23242,22587,21924,21293,20673,20075,19528,19038,18546,18151,17791,17453,17169,16915,16677,16464,16253,16067,15878,15696,15524,15387,15277,15169,15087,15032,14985,14956,14952,14960,15001,15012,15054,15101,15122,15185,15237,15244,15257,15260,15264,15281,15307,15295,15292,15251,15194,15121,15055,14971,14874,14733,14572,14417,14225,14006,13789,13563,13298,13028,12739,12446,12162,11862,11584,11296,11044,10817,10586,10318,10005,9683,9376,9092,8834,8625,8444,8298,8177,8073,8009,7929,7876,7817,7719,7579,7406,7243,7123,6993,6902,6813,6759,6713,6665,6651,6657,6645,6626,6644,6634,6475,6162,5745,5112,21.4,21.5,22.1,1568068,1.2,12.1,12.0,5.0,479,-1.00,-1.00,56.7997,-18.642178,0.000658,,,,,75 +SATSLF0720,2024246,9.262421,4.34,0.0608,0.1033,0.0180,0.00,16134,643,1,696,709,713,705,706,693,717,698,711,711,723,749,774,893,1217,1971,3148,4519,5754,6689,7309,7788,8218,8664,9178,9802,10537,11412,12414,13512,14711,15858,16971,17922,18646,19079,19209,19016,18635,18113,17525,16963,16505,16141,15936,15861,15942,16174,16576,17158,17908,18809,19880,21106,22432,23860,25344,26832,28247,29504,30510,31256,31658,31653,31329,30658,29744,28669,27435,26267,25088,24008,23030,22161,21418,20821,20349,19949,19660,19511,19426,19444,19521,19714,19967,20315,20765,21282,21853,22470,23131,23757,24379,24957,25440,25797,26067,26114,25987,25713,25236,24594,23872,23079,22215,21353,20501,19737,19016,18370,17799,17344,16942,16634,16380,16208,16105,16052,16070,16155,16318,16545,16843,17213,17656,18134,18700,19314,19949,20635,21358,22094,22836,23557,24252,24923,25523,26088,26504,26822,27081,27185,27188,27083,26879,26547,26160,25671,25114,24523,23883,23246,22593,21911,21282,20681,20069,19521,19017,18558,18157,17782,17461,17175,16906,16673,16485,16273,16068,15874,15684,15521,15371,15245,15159,15096,15019,14969,14963,14953,14961,14987,15010,15041,15089,15114,15157,15215,15229,15233,15242,15259,15278,15294,15296,15293,15235,15179,15117,15054,14964,14861,14733,14589,14397,14219,14004,13781,13538,13285,13028,12745,12449,12155,11849,11552,11293,11046,10804,10565,10301,10000,9679,9376,9077,8832,8635,8450,8299,8164,8069,7994,7919,7862,7815,7721,7591,7417,7258,7117,7001,6897,6827,6746,6709,6661,6652,6651,6625,6615,6654,6629,6475,6168,5740,5120,21.4,21.5,22.1,1568069,0.0,12.2,11.9,5.0,480,-1.00,-1.00,56.5772,-18.540501,0.000568,,,,,88 +SATSLF0720,2024246,9.262673,4.23,0.0592,0.1035,0.0182,0.00,16137,643,1,703,704,704,705,708,706,716,709,709,715,716,722,750,878,1216,1952,3135,4510,5771,6685,7335,7801,8230,8679,9186,9805,10530,11411,12409,13517,14702,15880,16993,17941,18673,19089,19223,19045,18673,18120,17525,16958,16514,16146,15923,15863,15931,16173,16580,17168,17916,18825,19890,21117,22445,23883,25376,26845,28281,29513,30512,31254,31655,31661,31338,30658,29760,28706,27463,26272,25094,24036,23034,22164,21426,20819,20339,19953,19681,19509,19418,19412,19532,19720,19982,20331,20773,21289,21857,22490,23145,23799,24401,24984,25450,25801,26067,26124,25993,25723,25255,24616,23905,23104,22234,21353,20501,19732,19019,18377,17819,17354,16937,16610,16376,16211,16101,16057,16085,16169,16340,16554,16849,17227,17652,18144,18720,19317,19961,20635,21362,22103,22842,23564,24273,24936,25521,26094,26521,26835,27064,27185,27193,27105,26877,26558,26157,25677,25109,24525,23884,23234,22570,21912,21278,20675,20072,19521,19037,18550,18144,17799,17466,17178,16900,16663,16461,16261,16067,15881,15696,15509,15366,15255,15155,15082,15016,14974,14961,14964,14985,14994,15016,15050,15093,15117,15159,15220,15230,15243,15249,15261,15271,15293,15300,15281,15237,15169,15110,15029,14939,14858,14713,14583,14413,14216,14002,13791,13541,13265,13019,12731,12435,12153,11849,11565,11302,11048,10801,10562,10299,9989,9675,9373,9073,8845,8625,8456,8308,8173,8070,7993,7917,7871,7811,7710,7569,7403,7250,7125,7001,6913,6824,6749,6710,6678,6650,6629,6619,6603,6620,6609,6459,6166,5728,5111,21.4,21.5,22.1,1568069,0.0,12.1,11.9,5.0,478,-1.00,-1.00,56.9853,-18.719324,0.000601,,,,,17 +SATSLF0720,2024246,9.262928,4.11,0.0575,0.1054,0.0194,0.00,16068,643,1,689,691,702,693,708,710,696,702,710,720,715,712,760,877,1221,1961,3137,4501,5747,6653,7286,7751,8175,8621,9124,9743,10493,11354,12352,13456,14614,15774,16884,17837,18550,18981,19109,18938,18565,18020,17433,16867,16433,16049,15835,15767,15839,16096,16487,17069,17822,18716,19776,20986,22310,23755,25227,26711,28107,29376,30369,31117,31510,31525,31193,30522,29626,28546,27333,26145,24989,23912,22921,22059,21337,20725,20228,19851,19574,19429,19336,19348,19451,19630,19896,20237,20676,21191,21744,22357,23032,23665,24283,24861,25328,25687,25950,26017,25894,25616,25146,24500,23781,22993,22125,21241,20415,19639,18957,18293,17737,17273,16868,16549,16307,16133,16028,15981,16020,16113,16261,16488,16768,17143,17569,18073,18628,19250,19877,20553,21284,22013,22750,23463,24167,24817,25408,25974,26394,26716,26962,27085,27091,26985,26789,26467,26069,25577,24992,24429,23793,23145,22490,21830,21201,20572,20007,19454,18954,18491,18105,17719,17383,17095,16835,16601,16382,16192,16002,15809,15627,15468,15333,15208,15107,15037,14961,14920,14897,14917,14909,14942,14952,14992,15031,15059,15124,15170,15191,15179,15201,15216,15237,15247,15245,15229,15183,15131,15072,14994,14909,14824,14677,14533,14369,14180,13969,13757,13506,13234,12973,12693,12398,12126,11809,11520,11264,11008,10771,10545,10268,9964,9646,9336,9052,8797,8592,8423,8275,8142,8060,7982,7910,7856,7769,7671,7521,7358,7203,7074,6971,6875,6809,6747,6691,6644,6622,6613,6602,6590,6617,6610,6451,6157,5716,5111,21.4,21.6,22.2,1568070,0.0,12.1,11.9,5.0,479,-1.00,-1.00,58.1509,-19.113407,0.000631,,,,,123 +SATSLF0720,2024246,9.263182,4.20,0.0588,0.1078,0.0209,0.00,16013,643,1,701,702,695,699,702,721,716,711,719,729,731,741,770,889,1226,1941,3120,4490,5708,6623,7250,7737,8149,8585,9085,9715,10445,11293,12293,13389,14555,15709,16816,17757,18466,18902,19025,18841,18476,17949,17366,16805,16365,15989,15775,15701,15776,16017,16419,17008,17736,18637,19703,20924,22235,23657,25113,26593,27973,29229,30220,30973,31372,31368,31048,30403,29476,28437,27201,26045,24873,23814,22818,21971,21245,20649,20168,19781,19508,19332,19234,19253,19361,19538,19817,20153,20584,21107,21672,22279,22935,23576,24177,24750,25213,25575,25844,25897,25792,25517,25041,24429,23698,22912,22049,21167,20343,19578,18888,18217,17662,17205,16803,16500,16239,16064,15975,15916,15939,16043,16205,16428,16722,17092,17510,17995,18565,19157,19797,20484,21201,21943,22689,23385,24085,24750,25323,25905,26310,26644,26885,26974,27003,26903,26695,26362,25979,25489,24923,24344,23713,23068,22434,21786,21128,20535,19945,19386,18890,18413,18018,17665,17346,17052,16792,16559,16363,16155,15964,15770,15586,15416,15278,15169,15077,15010,14916,14891,14864,14857,14871,14887,14924,14949,14999,15024,15069,15130,15139,15162,15157,15166,15191,15202,15203,15201,15145,15079,15021,14947,14874,14782,14647,14493,14315,14139,13937,13724,13482,13205,12948,12657,12360,12061,11774,11501,11222,10983,10751,10509,10247,9947,9608,9302,9017,8779,8584,8422,8260,8137,8047,7963,7905,7842,7766,7669,7528,7349,7191,7062,6972,6861,6789,6730,6668,6648,6620,6603,6587,6581,6592,6586,6437,6147,5701,5091,21.4,21.6,22.2,1568071,0.9,12.1,12.0,5.0,481,-1.00,-1.00,57.8864,-18.921477,0.000569,,,,,25 +SATSLF0720,2024246,9.263433,4.24,0.0594,0.1054,0.0194,0.00,16074,643,1,697,693,717,697,727,714,711,711,721,713,723,733,777,883,1217,1966,3153,4526,5763,6684,7298,7783,8186,8631,9149,9760,10490,11351,12355,13456,14631,15802,16906,17868,18582,19014,19145,18953,18573,18043,17450,16890,16442,16071,15853,15787,15849,16115,16524,17109,17837,18757,19784,21019,22344,23777,25252,26729,28133,29386,30389,31117,31523,31523,31190,30536,29627,28561,27341,26163,25002,23922,22938,22080,21369,20738,20267,19868,19570,19438,19337,19350,19444,19649,19892,20235,20680,21188,21769,22365,23030,23669,24289,24857,25335,25691,25959,26007,25897,25638,25157,24503,23795,23005,22141,21270,20433,19653,18955,18308,17739,17290,16877,16549,16307,16123,16034,15982,16007,16104,16277,16488,16779,17149,17588,18061,18635,19239,19865,20557,21278,22023,22760,23469,24166,24829,25401,25968,26402,26726,26967,27049,27090,26987,26785,26456,26071,25565,24997,24409,23768,23133,22476,21824,21189,20590,19993,19445,18950,18481,18077,17702,17383,17114,16846,16593,16401,16190,15997,15814,15629,15475,15325,15209,15117,15058,14960,14938,14904,14907,14916,14932,14957,14994,15037,15050,15111,15166,15177,15178,15204,15201,15218,15248,15250,15238,15208,15136,15071,15004,14908,14818,14678,14537,14346,14151,13941,13732,13506,13228,12969,12699,12402,12127,11833,11546,11271,11021,10784,10538,10274,9958,9653,9341,9056,8816,8613,8441,8277,8142,8043,7969,7897,7842,7769,7681,7547,7380,7232,7113,6989,6889,6812,6744,6683,6651,6629,6614,6610,6602,6624,6615,6472,6145,5731,5096,21.4,21.6,22.2,1568072,0.0,12.1,12.0,5.0,480,-1.00,-1.00,57.1296,-18.697137,0.000586,,,,,29 +SATSLF0720,2024246,9.263689,4.33,0.0607,0.1055,0.0189,0.00,16086,643,1,707,705,700,695,700,709,706,723,725,734,738,741,780,897,1234,1969,3140,4511,5742,6670,7301,7767,8189,8647,9150,9765,10493,11357,12349,13449,14633,15797,16909,17868,18578,19002,19134,18952,18571,18048,17454,16890,16429,16078,15862,15785,15864,16119,16531,17109,17836,18749,19816,21049,22345,23784,25254,26727,28157,29385,30402,31125,31537,31520,31203,30549,29636,28597,27354,26177,25015,23938,22944,22080,21351,20746,20253,19869,19589,19435,19330,19357,19458,19643,19898,20259,20697,21208,21769,22382,23045,23715,24309,24887,25361,25718,25991,26018,25918,25642,25154,24531,23794,23011,22138,21267,20435,19661,18951,18321,17773,17286,16870,16562,16327,16149,16042,16009,16030,16116,16279,16501,16801,17171,17594,18094,18660,19260,19891,20571,21317,22049,22790,23493,24193,24854,25445,26010,26418,26744,26990,27106,27109,27031,26806,26485,26098,25605,25044,24457,23817,23169,22521,21857,21227,20599,20028,19461,18976,18509,18098,17740,17406,17129,16862,16625,16420,16214,16021,15823,15646,15473,15325,15221,15106,15040,14974,14940,14924,14922,14935,14955,14977,15013,15053,15077,15144,15187,15211,15225,15225,15232,15245,15257,15283,15271,15209,15141,15088,15008,14910,14821,14699,14550,14377,14196,13981,13758,13524,13243,12985,12722,12413,12124,11826,11554,11273,11031,10795,10549,10279,9970,9661,9352,9061,8809,8616,8447,8282,8151,8055,7968,7905,7848,7784,7705,7559,7379,7235,7101,6992,6890,6807,6743,6675,6653,6625,6621,6595,6591,6618,6613,6465,6149,5733,5113,21.4,21.6,22.2,1568073,1.1,12.1,11.9,5.0,478,-1.00,-1.00,57.0399,-18.668360,0.000535,,,,,126 +SATSLF0720,2024246,9.263942,4.30,0.0603,0.1061,0.0197,0.00,16055,643,1,707,697,690,697,700,696,711,721,721,729,733,739,760,895,1230,1977,3137,4518,5745,6659,7289,7751,8169,8601,9131,9737,10490,11343,12347,13445,14618,15767,16879,17818,18545,18970,19107,18920,18536,18022,17424,16877,16413,16049,15821,15768,15837,16073,16501,17070,17817,18733,19781,20981,22295,23734,25214,26691,28102,29334,30339,31085,31473,31469,31149,30493,29574,28525,27309,26117,24971,23893,22915,22053,21323,20708,20215,19841,19552,19401,19304,19317,19409,19594,19864,20226,20640,21150,21725,22349,22999,23637,24247,24830,25307,25670,25937,25990,25867,25591,25117,24480,23745,22977,22093,21224,20397,19629,18924,18287,17732,17274,16858,16541,16301,16125,16010,15969,15991,16072,16251,16480,16762,17135,17564,18034,18613,19237,19865,20540,21256,21990,22733,23440,24139,24792,25387,25949,26379,26685,26944,27060,27066,26968,26757,26434,26041,25548,24983,24407,23744,23123,22475,21821,21182,20571,19979,19424,18948,18468,18076,17701,17376,17088,16821,16578,16391,16186,15993,15797,15621,15453,15321,15193,15097,15021,14939,14913,14882,14879,14902,14924,14940,14978,15018,15040,15076,15159,15165,15189,15185,15194,15209,15238,15237,15233,15170,15128,15061,14995,14909,14811,14666,14522,14344,14147,13950,13729,13497,13239,12959,12685,12376,12100,11806,11513,11251,10993,10752,10519,10261,9960,9639,9325,9043,8815,8593,8429,8288,8136,8041,7959,7878,7841,7777,7688,7546,7370,7209,7086,6979,6885,6807,6742,6675,6645,6614,6615,6580,6589,6598,6587,6439,6143,5714,5093,21.4,21.6,22.2,1568074,1.4,12.2,11.9,5.0,477,-1.00,-1.00,57.0668,-18.643725,0.000564,,,,,236 +SATSLF0720,2024246,9.264193,4.27,0.0597,0.1060,0.0200,0.00,16043,643,1,694,685,701,705,715,709,719,726,726,723,725,722,769,881,1217,1957,3139,4500,5729,6650,7285,7723,8167,8610,9125,9735,10473,11323,12313,13424,14595,15738,16862,17798,18516,18945,19072,18885,18518,17981,17398,16845,16385,16028,15805,15733,15814,16049,16467,17050,17781,18688,19761,20965,22268,23712,25191,26665,28069,29305,30312,31052,31420,31443,31112,30467,29552,28498,27273,26098,24947,23881,22878,22022,21285,20685,20205,19810,19537,19399,19309,19332,19425,19613,19849,20193,20628,21145,21698,22317,22980,23632,24245,24821,25283,25664,25913,25973,25845,25576,25101,24460,23745,22946,22080,21213,20368,19621,18918,18256,17703,17249,16837,16536,16285,16110,16011,15965,15981,16081,16239,16459,16745,17124,17548,18045,18593,19186,19832,20517,21253,21981,22705,23419,24142,24772,25373,25938,26363,26682,26933,27040,27059,26948,26743,26411,26001,25523,24954,24377,23745,23104,22453,21803,21178,20570,19981,19424,18928,18458,18042,17685,17374,17085,16817,16590,16373,16174,15979,15788,15597,15431,15308,15192,15097,15010,14937,14900,14888,14881,14881,14902,14917,14970,15013,15051,15102,15157,15157,15175,15192,15209,15216,15230,15236,15214,15168,15104,15053,14973,14884,14804,14656,14512,14342,14157,13947,13732,13504,13246,12980,12689,12389,12103,11797,11520,11245,11001,10749,10509,10247,9952,9630,9315,9043,8810,8589,8417,8276,8145,8029,7967,7889,7844,7757,7681,7540,7367,7220,7084,6971,6879,6794,6739,6681,6641,6621,6610,6587,6583,6611,6612,6442,6139,5714,5097,21.4,21.6,22.3,1568075,0.5,12.2,11.9,5.0,479,-1.00,-1.00,57.6225,-18.856173,0.000598,,,,,109 +SATSLF0720,2024246,9.264450,4.22,0.0591,0.1059,0.0195,0.00,16065,643,1,707,713,707,717,710,713,723,723,731,721,728,741,781,905,1243,1973,3143,4523,5733,6651,7301,7765,8172,8608,9124,9748,10481,11355,12333,13437,14618,15773,16873,17838,18549,18976,19097,18931,18558,18026,17432,16884,16426,16066,15821,15759,15839,16089,16486,17070,17815,18721,19781,20998,22301,23748,25213,26683,28092,29345,30336,31066,31483,31466,31156,30497,29591,28546,27305,26128,24974,23906,22893,22042,21307,20704,20230,19841,19576,19405,19313,19333,19437,19604,19859,20227,20664,21172,21746,22358,23003,23677,24277,24853,25329,25704,25949,25989,25883,25581,25111,24476,23776,22982,22105,21238,20408,19640,18948,18297,17751,17281,16868,16532,16295,16113,16006,15980,16005,16085,16263,16505,16786,17153,17576,18048,18609,19227,19857,20528,21252,21996,22760,23466,24181,24817,25418,25981,26401,26717,26953,27067,27069,26994,26784,26445,26043,25563,25010,24417,23766,23128,22477,21815,21201,20590,20022,19442,18957,18487,18080,17710,17393,17099,16822,16593,16391,16192,16001,15809,15617,15460,15331,15208,15105,15036,14965,14928,14907,14907,14904,14926,14964,14995,15025,15063,15115,15165,15172,15182,15210,15210,15231,15250,15253,15248,15197,15141,15069,15005,14901,14817,14678,14534,14352,14173,13982,13756,13516,13255,12994,12693,12397,12105,11810,11513,11250,11006,10782,10546,10280,9998,9661,9349,9054,8811,8618,8426,8270,8138,8049,7965,7901,7854,7791,7694,7557,7380,7229,7097,6992,6888,6811,6743,6685,6656,6641,6624,6602,6599,6615,6597,6447,6165,5725,5108,21.4,21.7,22.3,1568076,0.2,12.1,12.0,5.0,469,-1.00,-1.00,57.2990,-18.742857,0.000526,,,,,129 +SATSDF0720,2024246,9.509138,0.00,0.0000,0.0000,0.0000,0.00,642,0,1,622,610,613,615,624,627,629,626,632,624,615,625,638,622,622,619,633,621,621,625,631,620,624,650,652,651,650,645,642,647,638,649,650,645,644,649,646,646,648,643,639,655,641,645,648,638,646,643,646,651,649,652,653,657,649,663,651,644,640,641,635,643,654,658,649,653,657,643,647,642,649,649,640,643,647,641,645,647,643,639,636,633,635,639,635,631,631,643,647,651,657,646,647,645,646,645,650,648,655,650,659,650,640,647,643,638,641,640,651,653,633,647,630,630,637,637,637,637,628,629,636,633,640,642,659,649,650,657,649,645,633,637,645,620,639,641,634,651,653,645,654,629,638,642,640,643,643,645,644,639,646,647,641,628,643,649,645,635,641,631,633,647,647,641,640,643,633,641,643,632,645,642,645,653,637,645,645,645,651,653,657,653,647,648,644,643,640,628,639,637,639,633,643,637,647,649,653,640,640,640,634,642,639,655,648,651,637,642,637,643,648,649,650,649,638,651,653,644,651,644,635,623,643,637,638,647,658,641,642,648,643,647,645,643,634,637,653,625,643,644,637,641,646,651,653,641,640,646,640,663,650,647,649,651,638,472,0.0,0.0,0.0,1568075,0.0,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,228 +SATSLF0720,2024246,9.509693,4.10,0.0575,0.1006,0.0157,0.00,16229,642,1,694,697,701,709,701,693,704,720,712,713,708,726,753,866,1218,1962,3155,4558,5816,6737,7387,7850,8283,8728,9233,9861,10619,11484,12502,13625,14809,15994,17108,18073,18810,19241,19370,19189,18805,18266,17658,17083,16634,16265,16027,15969,16037,16299,16710,17297,18045,18951,20039,21265,22596,24055,25546,27040,28466,29731,30738,31488,31889,31882,31572,30894,29979,28919,27662,26469,25290,24201,23196,22337,21597,20981,20507,20106,19829,19640,19543,19571,19665,19844,20122,20466,20914,21421,21999,22621,23288,23925,24552,25124,25595,25965,26220,26292,26157,25873,25381,24737,24013,23197,22337,21463,20626,19858,19146,18465,17902,17424,17011,16685,16448,16279,16183,16139,16152,16243,16405,16647,16952,17320,17761,18248,18813,19410,20055,20752,21486,22227,22967,23699,24402,25060,25665,26243,26675,26993,27242,27351,27353,27245,27037,26710,26314,25812,25237,24652,24017,23379,22709,22045,21408,20781,20177,19624,19117,18651,18232,17862,17530,17245,16989,16741,16532,16326,16139,15952,15765,15583,15450,15328,15224,15160,15078,15051,15027,15025,15027,15064,15080,15107,15155,15181,15238,15287,15303,15311,15317,15330,15346,15357,15359,15355,15306,15239,15195,15113,15026,14917,14799,14636,14452,14255,14049,13842,13607,13349,13068,12783,12491,12190,11896,11590,11308,11083,10836,10599,10339,10043,9721,9415,9115,8868,8669,8493,8328,8196,8106,8034,7958,7890,7831,7745,7591,7413,7253,7130,7005,6923,6847,6788,6727,6693,6671,6657,6648,6632,6642,6650,6503,6177,5753,5124,21.3,21.3,21.7,1568076,0.1,12.2,12.0,5.0,599,-1.00,-1.00,57.0041,-18.862001,0.000576,,,,,128 +SATSLF0720,2024246,9.509878,4.24,0.0594,0.1015,0.0168,0.00,16203,642,1,695,693,685,690,696,693,696,706,707,703,706,723,757,894,1224,1966,3160,4538,5798,6711,7362,7831,8264,8709,9224,9864,10605,11483,12484,13601,14783,15948,17058,18029,18753,19189,19323,19142,18754,18232,17633,17061,16599,16235,16011,15945,16009,16273,16674,17269,18006,18924,20002,21229,22547,23990,25490,26988,28398,29673,30675,31417,31824,31825,31497,30843,29908,28850,27600,26417,25269,24165,23144,22298,21561,20944,20452,20058,19778,19603,19501,19506,19617,19814,20075,20439,20866,21390,21963,22582,23255,23911,24518,25093,25556,25924,26197,26221,26113,25828,25341,24698,23981,23192,22290,21427,20578,19804,19092,18441,17875,17405,17013,16680,16433,16242,16153,16098,16116,16218,16376,16626,16936,17299,17722,18213,18777,19382,20019,20715,21446,22187,22938,23661,24377,25050,25621,26206,26613,26940,27194,27296,27302,27209,27009,26678,26276,25779,25195,24612,23973,23313,22659,22014,21370,20752,20166,19598,19082,18627,18224,17860,17525,17239,16969,16721,16518,16311,16118,15933,15737,15581,15433,15330,15218,15145,15060,15002,15005,15003,15012,15046,15056,15089,15122,15164,15215,15268,15285,15296,15309,15318,15325,15342,15347,15325,15275,15216,15158,15092,15009,14918,14778,14621,14461,14261,14051,13824,13591,13317,13041,12770,12468,12165,11874,11579,11315,11057,10833,10589,10325,10027,9696,9383,9110,8866,8658,8474,8321,8184,8087,8017,7934,7895,7847,7745,7598,7421,7254,7131,7008,6908,6837,6760,6715,6673,6665,6656,6629,6625,6645,6631,6489,6178,5751,5138,21.3,21.3,21.8,1568077,0.6,12.1,12.0,5.0,497,-1.00,-1.00,56.5263,-18.624159,0.000509,,,,,114 +SATSLF0720,2024246,9.510133,4.08,0.0572,0.1017,0.0173,0.00,16180,642,1,690,683,695,685,704,681,699,710,715,725,708,731,761,887,1218,1975,3170,4549,5800,6718,7364,7832,8247,8699,9215,9850,10588,11475,12481,13577,14771,15946,17063,18021,18772,19201,19329,19141,18761,18215,17621,17053,16598,16220,15998,15929,16007,16267,16664,17237,17986,18885,19968,21202,22544,23987,25466,26968,28400,29640,30646,31402,31802,31796,31465,30797,29864,28813,27579,26385,25213,24132,23137,22276,21530,20919,20425,20048,19748,19601,19493,19500,19600,19793,20043,20395,20847,21348,21916,22542,23197,23860,24475,25042,25527,25894,26141,26195,26067,25776,25307,24678,23948,23152,22276,21397,20541,19762,19063,18425,17865,17381,16981,16658,16404,16235,16125,16081,16090,16186,16350,16585,16875,17255,17681,18174,18746,19357,19993,20685,21425,22160,22908,23622,24338,24990,25590,26149,26557,26883,27140,27246,27254,27160,26961,26626,26237,25734,25171,24574,23947,23274,22621,21957,21308,20705,20113,19565,19074,18605,18205,17829,17488,17207,16934,16685,16484,16272,16103,15904,15718,15558,15401,15299,15185,15113,15025,14997,14965,14965,14980,15002,15035,15072,15113,15132,15197,15242,15252,15250,15277,15274,15296,15323,15328,15320,15271,15212,15139,15057,14967,14868,14743,14589,14421,14233,14024,13805,13559,13299,13031,12761,12453,12154,11861,11568,11307,11044,10817,10570,10306,10004,9680,9371,9098,8852,8631,8467,8301,8171,8071,7992,7932,7873,7805,7723,7570,7399,7244,7122,6994,6907,6820,6743,6691,6656,6646,6633,6627,6609,6617,6635,6470,6157,5742,5114,21.3,21.3,21.9,1568078,0.4,12.1,11.9,5.0,486,-1.00,-1.00,56.7962,-18.717555,0.000604,,,,,79 +SATSLF0720,2024246,9.510386,4.14,0.0580,0.1014,0.0168,0.00,16196,642,1,695,690,695,689,681,698,701,719,714,721,711,716,765,885,1225,1974,3152,4549,5806,6727,7370,7842,8260,8704,9214,9842,10592,11469,12477,13577,14774,15941,17057,18013,18734,19172,19320,19138,18752,18212,17626,17061,16599,16238,16003,15925,16004,16249,16663,17252,17998,18919,19985,21207,22530,23998,25473,26983,28394,29650,30649,31416,31808,31813,31483,30829,29897,28829,27609,26421,25237,24141,23127,22277,21546,20925,20448,20043,19770,19613,19506,19529,19625,19809,20069,20414,20851,21371,21943,22573,23245,23874,24493,25069,25542,25909,26163,26213,26100,25824,25349,24704,23969,23159,22285,21420,20571,19796,19093,18429,17865,17412,16977,16658,16417,16246,16145,16106,16129,16217,16373,16617,16913,17284,17723,18209,18774,19389,20023,20706,21431,22193,22930,23641,24358,25005,25613,26162,26612,26941,27176,27277,27297,27218,26993,26670,26272,25767,25192,24596,23977,23329,22656,22003,21353,20741,20143,19577,19092,18617,18198,17818,17488,17217,16955,16726,16521,16303,16113,15921,15742,15573,15441,15316,15201,15133,15056,14999,14990,14999,15006,15030,15049,15103,15137,15147,15213,15268,15278,15294,15294,15303,15309,15323,15333,15332,15272,15217,15158,15092,14998,14919,14778,14632,14465,14258,14043,13831,13581,13303,13047,12770,12453,12168,11877,11597,11326,11073,10833,10605,10325,10020,9684,9374,9082,8843,8639,8481,8309,8191,8093,8023,7958,7895,7831,7734,7589,7409,7255,7129,7018,6919,6839,6787,6722,6685,6664,6649,6616,6611,6637,6644,6480,6167,5742,5131,21.3,21.3,21.9,1568079,0.5,12.1,11.9,5.0,482,-1.00,-1.00,56.9987,-18.814302,0.000504,,,,,60 +SATSLF0720,2024246,9.510637,4.14,0.0580,0.1034,0.0178,0.00,16134,642,1,701,697,696,711,718,718,713,716,729,725,732,734,767,891,1226,1986,3165,4529,5762,6682,7310,7789,8184,8644,9149,9770,10521,11373,12387,13488,14677,15825,16938,17904,18612,19067,19189,19021,18645,18112,17513,16973,16490,16133,15893,15815,15898,16141,16552,17156,17908,18818,19874,21111,22432,23861,25339,26823,28229,29488,30490,31220,31632,31632,31309,30666,29721,28683,27453,26275,25117,24036,23042,22187,21442,20832,20341,19941,19681,19513,19421,19422,19531,19720,19984,20331,20757,21299,21841,22469,23127,23771,24386,24970,25448,25817,26074,26105,25991,25703,25229,24592,23883,23076,22201,21351,20488,19721,19027,18369,17802,17312,16928,16608,16359,16192,16078,16032,16068,16168,16330,16568,16849,17211,17661,18121,18708,19308,19942,20638,21381,22105,22855,23560,24283,24929,25527,26093,26509,26825,27095,27197,27208,27121,26909,26586,26184,25685,25120,24522,23886,23242,22594,21929,21281,20661,20077,19537,19044,18560,18167,17792,17465,17181,16906,16674,16469,16253,16077,15885,15696,15531,15384,15258,15163,15080,15007,14966,14955,14955,14950,14987,15022,15057,15109,15144,15170,15238,15245,15236,15255,15260,15273,15299,15308,15289,15242,15188,15125,15039,14951,14867,14738,14589,14420,14210,14011,13810,13556,13303,13028,12745,12430,12155,11845,11575,11289,11051,10811,10576,10305,9986,9669,9349,9082,8817,8619,8461,8310,8188,8073,7995,7943,7862,7805,7727,7577,7400,7235,7115,7017,6909,6840,6761,6712,6677,6647,6633,6627,6606,6623,6629,6465,6173,5748,5129,21.4,21.3,21.9,1568080,0.8,12.2,12.0,5.0,487,-1.00,-1.00,57.6367,-18.978094,0.000618,,,,,113 +SATSLF0720,2024246,9.510892,4.25,0.0595,0.1017,0.0166,0.00,16192,642,1,695,695,696,699,705,701,710,717,720,726,729,733,765,892,1234,1973,3166,4549,5779,6710,7341,7812,8230,8679,9198,9837,10581,11461,12457,13580,14760,15919,17034,17986,18712,19158,19290,19123,18729,18200,17598,17045,16577,16209,15984,15913,15993,16241,16660,17241,17992,18902,19968,21181,22513,23962,25463,26946,28374,29633,30633,31392,31784,31773,31459,30801,29869,28801,27557,26386,25209,24131,23120,22273,21525,20907,20430,20020,19739,19585,19494,19512,19621,19802,20069,20413,20847,21349,21927,22540,23226,23866,24477,25048,25530,25894,26149,26201,26089,25804,25330,24696,23981,23165,22309,21420,20580,19800,19091,18435,17887,17408,16989,16665,16422,16238,16155,16117,16142,16227,16391,16621,16918,17285,17705,18189,18760,19383,20022,20716,21449,22174,22930,23633,24338,25014,25601,26170,26609,26937,27177,27272,27284,27185,26969,26648,26248,25755,25185,24614,23973,23309,22652,21984,21352,20741,20144,19584,19090,18613,18208,17850,17509,17211,16950,16714,16512,16307,16118,15927,15741,15563,15421,15317,15208,15137,15062,15018,15008,15003,15005,15037,15057,15107,15138,15171,15227,15273,15271,15283,15299,15293,15322,15341,15353,15337,15289,15215,15165,15092,15002,14901,14773,14617,14446,14245,14035,13844,13585,13323,13062,12775,12477,12187,11882,11600,11333,11081,10845,10598,10333,10037,9705,9390,9114,8866,8663,8472,8315,8194,8082,8017,7929,7891,7833,7742,7590,7415,7259,7133,7026,6926,6837,6766,6718,6689,6663,6657,6641,6618,6653,6635,6485,6182,5740,5124,21.4,21.4,21.9,1568081,0.3,12.1,11.9,5.0,487,-1.00,-1.00,56.6354,-18.644836,0.000535,,,,,158 +SATSLF0720,2024246,9.511144,4.02,0.0563,0.1028,0.0175,0.00,16154,642,1,693,697,705,690,697,703,713,721,725,721,731,724,757,891,1211,1960,3144,4519,5777,6685,7330,7808,8229,8671,9177,9803,10546,11419,12421,13527,14715,15884,17005,17961,18684,19115,19255,19066,18704,18155,17559,16999,16551,16163,15929,15861,15937,16180,16590,17198,17941,18849,19928,21142,22464,23927,25386,26887,28301,29562,30561,31312,31713,31713,31386,30719,29803,28757,27509,26339,25160,24065,23073,22212,21459,20852,20382,19985,19703,19547,19447,19473,19557,19754,20013,20348,20787,21310,21874,22500,23163,23809,24417,24993,25474,25837,26100,26157,26030,25760,25278,24626,23912,23106,22229,21348,20517,19741,19038,18400,17846,17369,16941,16635,16382,16199,16101,16065,16083,16187,16353,16587,16874,17234,17654,18144,18723,19337,19973,20654,21388,22128,22871,23584,24289,24966,25538,26113,26550,26858,27102,27210,27227,27145,26908,26592,26189,25686,25128,24538,23910,23253,22599,21928,21297,20681,20100,19540,19054,18579,18176,17809,17478,17192,16924,16682,16487,16278,16087,15890,15708,15531,15381,15275,15174,15110,15020,14990,14957,14971,14973,15008,15026,15064,15120,15145,15179,15237,15255,15251,15259,15276,15285,15312,15309,15303,15241,15200,15132,15054,14968,14880,14738,14582,14412,14225,14013,13796,13570,13299,13032,12741,12436,12158,11850,11565,11305,11048,10805,10566,10318,10009,9690,9373,9089,8839,8627,8450,8298,8170,8065,7997,7934,7876,7808,7712,7579,7413,7251,7116,6999,6909,6826,6758,6719,6667,6650,6644,6635,6613,6639,6618,6470,6162,5730,5118,21.4,21.4,22.0,1568082,0.0,12.1,11.9,5.0,481,-1.00,-1.00,57.8582,-19.113634,0.000620,,,,,98 +SATSLF0720,2024246,9.511400,4.16,0.0582,0.1032,0.0175,0.00,16149,642,1,692,699,696,701,698,707,719,714,727,723,721,729,765,885,1222,1975,3150,4539,5788,6700,7335,7810,8215,8678,9193,9810,10553,11424,12421,13527,14714,15877,16987,17945,18672,19104,19239,19063,18679,18154,17550,16987,16525,16166,15931,15850,15952,16179,16603,17191,17937,18845,19900,21124,22438,23889,25376,26868,28293,29534,30553,31285,31700,31688,31355,30699,29789,28709,27485,26299,25134,24067,23060,22202,21453,20842,20362,19975,19689,19520,19431,19453,19557,19726,20000,20337,20773,21288,21862,22468,23171,23809,24405,24980,25449,25816,26078,26124,26009,25730,25235,24615,23904,23109,22233,21353,20514,19738,19027,18393,17825,17360,16941,16633,16375,16215,16116,16065,16083,16175,16341,16547,16857,17234,17660,18146,18735,19336,19974,20668,21389,22123,22857,23570,24289,24949,25553,26093,26526,26856,27088,27202,27228,27141,26918,26602,26193,25694,25134,24545,23912,23246,22589,21940,21298,20700,20093,19552,19049,18565,18161,17801,17474,17172,16908,16670,16471,16263,16071,15881,15710,15534,15396,15293,15172,15087,15031,14984,14980,14965,14971,15004,15012,15051,15099,15123,15185,15219,15248,15250,15261,15266,15297,15313,15305,15301,15250,15184,15133,15062,14972,14880,14733,14590,14403,14227,14020,13805,13557,13296,13034,12743,12439,12163,11858,11575,11302,11059,10804,10579,10305,9987,9687,9369,9088,8846,8636,8453,8307,8171,8072,7986,7921,7873,7798,7709,7573,7398,7254,7109,7015,6916,6836,6759,6713,6677,6637,6643,6618,6621,6621,6628,6477,6168,5734,5124,21.4,21.4,22.0,1568083,1.3,12.1,12.0,5.0,480,-1.00,-1.00,57.1337,-18.796068,0.000580,,,,,118 +SATSLF0720,2024246,9.511654,4.05,0.0568,0.1020,0.0174,0.00,16169,642,1,695,690,706,705,699,711,709,721,722,724,712,736,760,889,1226,1978,3166,4557,5801,6717,7353,7815,8241,8684,9201,9827,10569,11458,12465,13569,14762,15936,17054,18005,18722,19158,19288,19121,18730,18190,17597,17029,16561,16184,15968,15894,15978,16219,16640,17213,17969,18876,19946,21171,22501,23964,25447,26933,28352,29591,30611,31346,31744,31754,31433,30774,29849,28790,27541,26358,25178,24093,23097,22224,21498,20880,20407,20017,19726,19562,19480,19482,19582,19766,20020,20365,20808,21329,21888,22518,23173,23826,24425,25015,25506,25875,26134,26177,26070,25784,25304,24663,23948,23153,22276,21378,20539,19768,19048,18394,17839,17366,16954,16648,16392,16227,16133,16087,16119,16197,16361,16581,16885,17248,17673,18173,18730,19342,19981,20666,21397,22134,22885,23609,24307,24967,25569,26129,26553,26875,27132,27230,27256,27130,26932,26593,26204,25709,25131,24563,23917,23286,22616,21953,21331,20712,20106,19549,19056,18584,18176,17817,17482,17207,16937,16683,16468,16269,16091,15898,15701,15517,15410,15280,15190,15125,15028,15010,14987,14973,14986,14999,15020,15050,15104,15149,15188,15242,15253,15281,15268,15282,15292,15300,15306,15300,15254,15184,15137,15070,14965,14875,14731,14585,14419,14236,14022,13800,13568,13303,13035,12742,12457,12173,11858,11573,11306,11060,10805,10567,10316,10021,9685,9384,9093,8852,8641,8474,8294,8176,8069,7987,7921,7879,7815,7725,7587,7405,7249,7127,7011,6907,6838,6765,6710,6667,6651,6630,6629,6608,6637,6624,6472,6169,5755,5130,21.4,21.4,22.1,1568084,0.5,12.2,12.0,5.0,479,-1.00,-1.00,57.3164,-18.912769,0.000605,,,,,41 +SATSLF0720,2024246,9.511906,4.19,0.0587,0.1030,0.0176,0.00,16155,642,1,692,706,720,714,716,723,727,720,726,712,727,733,785,889,1237,1980,3163,4535,5782,6717,7354,7824,8226,8687,9202,9815,10561,11432,12425,13543,14721,15894,17006,17966,18684,19125,19232,19059,18688,18153,17553,16997,16534,16181,15937,15873,15947,16178,16589,17178,17934,18845,19901,21143,22465,23917,25402,26882,28293,29552,30553,31289,31695,31691,31353,30709,29779,28741,27473,26295,25130,24066,23049,22199,21467,20854,20376,19976,19687,19536,19436,19453,19552,19741,19998,20358,20793,21309,21875,22494,23155,23799,24395,24995,25474,25841,26092,26142,26035,25744,25274,24628,23904,23101,22245,21379,20521,19751,19056,18389,17834,17345,16939,16621,16373,16197,16105,16084,16088,16189,16342,16581,16873,17229,17674,18156,18722,19335,19958,20642,21383,22138,22867,23589,24290,24946,25542,26118,26539,26861,27113,27213,27212,27125,26913,26593,26192,25697,25124,24534,23904,23272,22592,21938,21298,20686,20109,19545,19056,18583,18177,17797,17482,17181,16911,16663,16469,16274,16069,15891,15705,15531,15395,15280,15193,15097,15016,14990,14962,14968,14967,14999,15029,15074,15114,15141,15184,15241,15254,15257,15271,15277,15297,15315,15319,15303,15271,15186,15131,15063,14964,14875,14744,14582,14427,14230,14024,13810,13557,13300,13037,12754,12465,12168,11868,11588,11315,11051,10807,10589,10315,10007,9695,9393,9105,8853,8643,8486,8301,8183,8089,8014,7927,7866,7803,7704,7571,7404,7239,7123,7003,6915,6823,6769,6709,6680,6662,6657,6626,6616,6640,6636,6478,6166,5743,5135,21.4,21.4,22.0,1568085,0.0,12.1,12.0,5.0,470,-1.00,-1.00,56.9199,-18.710405,0.000647,,,,,226 +SATSLF0720,2024246,9.512166,4.25,0.0596,0.1041,0.0184,0.00,16119,642,1,700,703,705,698,707,706,698,711,708,715,721,730,755,886,1214,1963,3145,4529,5755,6676,7315,7783,8192,8643,9141,9774,10509,11387,12379,13492,14684,15833,16953,17895,18610,19055,19174,18987,18625,18097,17502,16944,16476,16117,15895,15820,15906,16148,16547,17138,17890,18790,19863,21095,22400,23847,25309,26793,28209,29469,30459,31209,31618,31625,31281,30636,29704,28647,27427,26241,25077,24005,22997,22146,21426,20809,20322,19939,19656,19492,19389,19418,19506,19690,19957,20306,20725,21265,21822,22450,23113,23762,24365,24930,25408,25777,26039,26077,25961,25682,25206,24577,23860,23066,22196,21323,20477,19716,19010,18340,17799,17317,16913,16594,16338,16184,16089,16050,16056,16167,16306,16563,16845,17211,17623,18116,18683,19285,19934,20609,21339,22083,22834,23541,24246,24913,25515,26081,26502,26817,27054,27152,27169,27069,26862,26538,26137,25648,25105,24502,23862,23227,22573,21912,21269,20670,20061,19514,19022,18545,18147,17781,17437,17145,16882,16645,16440,16235,16057,15861,15685,15513,15364,15248,15141,15082,15012,14953,14928,14940,14952,14977,15013,15045,15081,15125,15152,15219,15221,15222,15233,15245,15257,15290,15261,15265,15228,15157,15103,15034,14934,14839,14713,14566,14388,14215,14001,13792,13553,13281,13013,12745,12442,12149,11835,11559,11279,11027,10803,10557,10294,9986,9674,9360,9074,8829,8613,8438,8279,8170,8069,7986,7922,7874,7806,7712,7566,7394,7249,7109,6987,6889,6802,6743,6695,6666,6640,6638,6634,6617,6639,6628,6471,6158,5740,5125,21.4,21.4,22.1,1568086,0.2,12.1,12.0,5.0,478,-1.00,-1.00,57.2010,-18.781166,0.000559,,,,,142 +SATSLF0720,2024246,9.512419,4.11,0.0575,0.1040,0.0187,0.00,16112,642,1,677,685,697,698,716,710,719,716,711,727,725,729,761,869,1195,1955,3130,4512,5760,6681,7317,7782,8199,8635,9157,9770,10529,11392,12402,13497,14675,15826,16941,17897,18620,19066,19187,19011,18630,18091,17496,16944,16473,16101,15882,15810,15906,16149,16556,17141,17864,18783,19862,21067,22390,23840,25317,26811,28213,29457,30461,31193,31599,31595,31254,30621,29705,28644,27415,26241,25069,23998,22992,22141,21405,20801,20314,19923,19634,19483,19394,19415,19493,19693,19939,20293,20727,21240,21803,22417,23099,23746,24349,24925,25409,25762,26033,26097,25957,25698,25205,24581,23860,23053,22190,21309,20457,19707,18997,18368,17789,17319,16899,16586,16339,16162,16080,16022,16041,16136,16306,16533,16837,17205,17624,18113,18692,19280,19913,20603,21335,22080,22814,23525,24232,24887,25478,26057,26477,26810,27053,27145,27175,27080,26855,26523,26129,25652,25078,24497,23859,23214,22570,21892,21268,20668,20066,19515,18997,18541,18121,17757,17419,17137,16873,16636,16433,16234,16049,15861,15669,15495,15368,15252,15145,15075,15003,14962,14941,14941,14954,14957,14984,15030,15065,15091,15153,15209,15218,15233,15242,15241,15272,15298,15280,15278,15224,15157,15095,15018,14925,14829,14712,14549,14377,14203,13993,13786,13530,13272,13023,12713,12421,12126,11837,11533,11269,11016,10789,10549,10275,9980,9658,9354,9064,8830,8634,8452,8299,8161,8050,7971,7902,7861,7796,7712,7568,7383,7227,7105,6993,6895,6817,6745,6682,6648,6635,6626,6632,6601,6626,6613,6452,6146,5713,5105,21.4,21.5,22.1,1568087,0.0,12.2,12.0,5.0,480,-1.00,-1.00,57.5637,-18.926069,0.000599,,,,,105 +SATSLF0720,2024246,9.512671,4.25,0.0595,0.1049,0.0187,0.00,16102,642,1,695,705,705,726,717,706,716,718,708,709,709,717,775,884,1219,1959,3141,4508,5733,6654,7292,7757,8192,8627,9155,9773,10519,11392,12378,13483,14641,15812,16925,17862,18574,19011,19160,18964,18583,18067,17470,16921,16461,16093,15875,15805,15861,16131,16533,17114,17856,18772,19834,21054,22372,23805,25303,26770,28177,29443,30421,31175,31581,31583,31248,30599,29703,28621,27397,26205,25050,23972,22973,22112,21390,20778,20292,19898,19616,19462,19356,19368,19480,19669,19929,20283,20715,21236,21788,22408,23086,23717,24331,24912,25386,25745,26023,26069,25937,25653,25181,24549,23835,23037,22173,21309,20461,19681,18983,18340,17778,17313,16892,16593,16321,16163,16069,16025,16048,16137,16314,16525,16830,17188,17618,18104,18681,19277,19922,20613,21325,22072,22809,23527,24237,24898,25489,26046,26462,26779,27026,27117,27127,27051,26846,26517,26117,25623,25065,24491,23848,23197,22546,21874,21256,20633,20037,19472,18973,18504,18109,17748,17419,17129,16871,16629,16438,16224,16043,15862,15661,15491,15365,15254,15145,15075,14996,14944,14945,14917,14931,14960,14981,15015,15065,15098,15146,15205,15209,15235,15237,15239,15253,15274,15270,15267,15213,15168,15094,15038,14953,14841,14715,14562,14381,14208,13990,13769,13527,13273,12998,12721,12420,12143,11834,11552,11282,11029,10773,10549,10273,9973,9657,9357,9074,8837,8633,8462,8302,8173,8066,7968,7904,7851,7779,7695,7553,7378,7229,7101,6994,6907,6828,6757,6693,6660,6645,6612,6617,6614,6610,6604,6454,6147,5735,5120,21.4,21.5,22.1,1568087,0.4,12.1,12.0,5.0,477,-1.00,-1.00,57.5537,-18.908678,0.000585,,,,,69 +SATSLF0720,2024246,9.512927,4.40,0.0616,0.1031,0.0174,0.00,16140,642,1,698,715,712,714,712,708,709,713,721,733,740,745,776,884,1232,1961,3147,4517,5768,6688,7321,7788,8208,8659,9181,9815,10546,11419,12413,13513,14682,15853,16945,17917,18637,19064,19197,19021,18635,18114,17519,16962,16512,16145,15915,15845,15937,16177,16588,17175,17906,18810,19884,21104,22416,23863,25348,26830,28247,29507,30506,31252,31652,31639,31312,30667,29737,28680,27451,26261,25097,24022,23029,22158,21433,20819,20342,19946,19669,19517,19433,19434,19539,19714,19992,20331,20768,21280,21842,22455,23132,23787,24381,24954,25447,25801,26058,26115,25995,25721,25245,24612,23885,23079,22221,21335,20509,19734,19025,18377,17816,17357,16948,16626,16365,16198,16104,16055,16082,16170,16329,16557,16846,17216,17655,18146,18710,19339,19973,20658,21380,22107,22866,23573,24277,24929,25522,26098,26525,26860,27088,27186,27204,27121,26896,26567,26191,25685,25120,24534,23897,23255,22594,21926,21293,20680,20077,19526,19033,18551,18161,17780,17465,17186,16913,16667,16478,16261,16080,15873,15703,15541,15394,15285,15176,15098,15033,14989,14970,14964,14963,14987,15009,15042,15086,15125,15163,15232,15255,15253,15271,15275,15302,15331,15333,15305,15254,15184,15136,15056,14968,14870,14731,14580,14429,14237,14011,13815,13560,13305,13037,12746,12437,12151,11871,11557,11287,11053,10818,10579,10314,10002,9682,9351,9087,8845,8646,8461,8315,8194,8082,7993,7932,7865,7816,7716,7591,7414,7249,7123,7007,6915,6827,6765,6718,6676,6651,6639,6631,6632,6630,6631,6473,6158,5737,5099,21.4,21.5,22.1,1568088,1.1,12.1,11.9,5.0,481,-1.00,-1.00,56.4584,-18.491569,0.000506,,,,,88 +SATSLF0720,2024246,9.513180,4.20,0.0588,0.1043,0.0182,0.00,16109,642,1,707,708,720,710,719,714,725,719,732,741,729,731,770,894,1220,1971,3143,4536,5753,6669,7310,7777,8209,8648,9169,9786,10522,11399,12385,13493,14672,15832,16937,17887,18605,19032,19172,18989,18603,18099,17497,16939,16477,16115,15888,15818,15890,16132,16550,17112,17867,18778,19825,21051,22365,23825,25297,26781,28181,29436,30434,31175,31579,31587,31261,30605,29672,28613,27392,26205,25040,23973,22978,22116,21393,20782,20298,19902,19621,19465,19383,19392,19483,19682,19939,20277,20721,21248,21809,22416,23072,23729,24343,24930,25381,25745,26018,26066,25948,25669,25189,24560,23845,23049,22187,21325,20485,19705,18998,18341,17785,17307,16893,16595,16338,16162,16071,16033,16061,16145,16307,16544,16834,17185,17609,18091,18678,19281,19913,20605,21325,22071,22808,23524,24221,24875,25483,26044,26469,26786,27044,27137,27159,27060,26837,26525,26129,25640,25076,24491,23858,23196,22549,21882,21242,20641,20045,19493,19003,18529,18137,17762,17431,17145,16859,16626,16422,16217,16035,15836,15649,15496,15360,15253,15145,15075,15012,14965,14941,14937,14947,14980,15004,15035,15077,15098,15144,15198,15202,15211,15248,15245,15271,15299,15288,15285,15224,15170,15109,15046,14949,14861,14725,14565,14405,14203,13989,13774,13529,13270,13005,12722,12419,12132,11849,11560,11277,11036,10796,10568,10285,9994,9677,9361,9069,8813,8612,8433,8286,8163,8062,7996,7909,7867,7803,7718,7569,7386,7239,7107,6992,6898,6818,6761,6697,6655,6648,6635,6626,6603,6629,6608,6471,6164,5733,5119,21.4,21.6,22.2,1568089,1.3,12.1,12.0,5.0,475,-1.00,-1.00,57.0901,-18.713995,0.000565,,,,,17 +SATSLF0720,2024246,9.513432,4.22,0.0591,0.1046,0.0185,0.00,16107,642,1,697,694,688,685,701,696,725,710,723,726,734,733,766,879,1218,1949,3144,4505,5763,6675,7319,7784,8203,8645,9159,9785,10522,11392,12392,13486,14680,15844,16951,17895,18618,19042,19173,19005,18625,18085,17497,16928,16466,16113,15890,15822,15885,16136,16536,17131,17881,18788,19849,21052,22391,23834,25306,26773,28193,29456,30445,31198,31609,31586,31256,30598,29689,28637,27385,26212,25046,23965,22965,22108,21377,20763,20295,19904,19625,19474,19370,19370,19493,19682,19947,20283,20717,21233,21776,22407,23069,23715,24341,24909,25376,25735,26004,26066,25932,25650,25198,24549,23838,23031,22162,21289,20449,19688,18990,18337,17777,17316,16901,16583,16338,16180,16081,16033,16043,16126,16289,16517,16817,17182,17618,18099,18669,19276,19908,20605,21325,22055,22795,23515,24232,24881,25477,26030,26463,26793,27038,27140,27159,27069,26856,26525,26128,25629,25074,24478,23841,23200,22544,21883,21250,20649,20038,19491,18984,18535,18125,17741,17425,17134,16881,16642,16441,16234,16033,15856,15649,15489,15347,15232,15154,15069,14989,14957,14941,14932,14940,14965,14985,15029,15064,15108,15154,15213,15221,15227,15242,15253,15266,15277,15279,15266,15225,15160,15101,15036,14952,14852,14717,14569,14395,14202,13994,13772,13539,13269,13020,12717,12414,12137,11835,11552,11270,11047,10797,10566,10297,9993,9664,9359,9081,8834,8619,8446,8289,8169,8064,7979,7917,7858,7800,7698,7553,7382,7237,7111,6992,6901,6818,6754,6690,6656,6633,6622,6610,6607,6618,6608,6464,6151,5733,5130,21.4,21.6,22.2,1568090,0.6,12.1,12.0,5.0,479,-1.00,-1.00,57.1018,-18.725309,0.000613,,,,,19 +SATSLF0720,2024246,9.513688,4.27,0.0598,0.1061,0.0201,0.00,16051,642,1,700,692,691,690,689,696,693,707,713,722,720,732,770,879,1211,1963,3127,4503,5742,6650,7293,7748,8156,8608,9127,9735,10472,11332,12327,13450,14602,15773,16870,17819,18536,18963,19094,18913,18540,18018,17422,16865,16404,16047,15831,15757,15833,16077,16483,17070,17800,18701,19773,20989,22311,23737,25212,26679,28117,29346,30341,31082,31447,31459,31137,30503,29585,28530,27313,26120,24948,23877,22887,22037,21301,20701,20231,19843,19554,19406,19305,19307,19407,19600,19865,20213,20643,21152,21728,22339,22997,23640,24253,24837,25306,25664,25938,25977,25856,25577,25105,24466,23752,22963,22103,21239,20386,19625,18932,18280,17713,17253,16845,16537,16293,16130,16014,15964,15985,16068,16227,16463,16765,17127,17559,18048,18617,19208,19843,20531,21265,21996,22733,23441,24154,24802,25384,25947,26370,26690,26928,27036,27063,26977,26753,26438,26040,25563,24980,24407,23762,23126,22461,21794,21157,20553,19962,19423,18935,18472,18073,17697,17370,17077,16820,16572,16384,16174,15971,15779,15608,15442,15310,15188,15085,15017,14952,14904,14909,14886,14888,14915,14958,14976,15018,15031,15094,15154,15169,15174,15192,15192,15204,15227,15237,15226,15179,15112,15047,14982,14877,14811,14664,14517,14356,14164,13962,13741,13505,13245,12973,12689,12392,12089,11799,11512,11249,11000,10752,10521,10248,9963,9641,9328,9045,8801,8587,8426,8265,8134,8044,7961,7898,7838,7767,7683,7541,7360,7209,7077,6958,6855,6786,6730,6674,6638,6618,6605,6604,6589,6601,6588,6427,6133,5719,5097,21.4,21.6,22.2,1568091,0.0,12.1,11.9,5.0,478,-1.00,-1.00,57.3874,-18.778023,0.000569,,,,,101 +SATSLF0720,2024246,9.513941,4.41,0.0618,0.1054,0.0191,0.00,16087,642,1,686,683,704,705,707,711,714,721,729,722,736,727,775,885,1219,1975,3157,4522,5754,6667,7308,7770,8188,8626,9143,9773,10512,11373,12363,13477,14645,15795,16907,17867,18585,19011,19129,18957,18577,18026,17442,16897,16438,16084,15885,15789,15879,16117,16525,17114,17856,18741,19813,21028,22350,23794,25267,26752,28165,29410,30394,31146,31525,31525,31195,30544,29646,28569,27365,26185,25025,23953,22938,22085,21352,20745,20258,19867,19587,19423,19335,19353,19459,19641,19911,20265,20691,21209,21768,22369,23016,23675,24309,24873,25365,25732,25977,26041,25922,25637,25165,24533,23792,23007,22134,21287,20437,19669,18978,18322,17755,17283,16870,16558,16325,16158,16046,16002,16024,16119,16287,16497,16800,17165,17586,18086,18641,19247,19888,20576,21303,22037,22795,23493,24198,24862,25447,26011,26441,26743,26999,27098,27115,27018,26808,26486,26104,25600,25053,24448,23829,23180,22523,21853,21234,20605,20019,19475,18978,18515,18113,17733,17408,17122,16848,16593,16398,16195,16011,15819,15641,15474,15343,15237,15150,15066,14992,14946,14910,14919,14929,14938,14967,15014,15062,15087,15138,15198,15194,15209,15230,15218,15245,15265,15264,15258,15221,15145,15080,15022,14926,14821,14687,14544,14373,14176,13966,13761,13524,13261,12985,12704,12412,12135,11827,11553,11264,11026,10772,10539,10270,9985,9661,9348,9067,8825,8608,8442,8281,8159,8065,7968,7899,7845,7799,7693,7563,7377,7237,7105,6993,6889,6819,6737,6685,6648,6637,6632,6609,6598,6629,6615,6464,6158,5745,5118,21.4,21.6,22.2,1568092,0.0,12.1,11.9,5.0,475,-1.00,-1.00,56.6772,-18.519855,0.000560,,,,,228 +SATSLF0720,2024246,9.514193,4.27,0.0598,0.1054,0.0189,0.00,16079,642,1,709,698,711,712,713,720,727,724,729,733,729,743,773,887,1222,1973,3153,4527,5749,6670,7309,7761,8198,8628,9144,9749,10499,11372,12346,13448,14622,15788,16893,17829,18543,19003,19133,18946,18570,18039,17445,16896,16424,16069,15844,15781,15860,16107,16506,17089,17830,18728,19792,20999,22327,23767,25251,26732,28141,29369,30375,31115,31497,31509,31181,30518,29609,28545,27306,26147,24981,23909,22912,22074,21336,20737,20249,19864,19581,19419,19334,19353,19449,19624,19877,20235,20672,21175,21753,22359,23018,23680,24281,24866,25344,25717,25973,26024,25899,25608,25147,24506,23795,22994,22135,21261,20426,19656,18953,18301,17745,17280,16872,16576,16322,16148,16041,16000,16025,16132,16270,16491,16790,17169,17594,18072,18640,19254,19888,20577,21289,22034,22773,23476,24165,24828,25421,25986,26417,26740,27003,27098,27109,27009,26798,26474,26073,25599,25021,24436,23798,23159,22507,21845,21220,20608,20013,19460,18970,18498,18099,17714,17410,17121,16853,16609,16403,16215,16021,15829,15650,15470,15338,15228,15116,15044,14981,14938,14917,14921,14921,14954,14976,15009,15047,15091,15122,15183,15193,15193,15216,15223,15241,15251,15258,15253,15208,15137,15088,15015,14931,14831,14707,14549,14378,14189,13969,13758,13506,13243,12992,12714,12417,12123,11831,11549,11277,11022,10789,10549,10272,9981,9653,9337,9058,8802,8597,8439,8277,8138,8060,7976,7910,7854,7789,7693,7557,7389,7219,7107,6989,6911,6832,6749,6697,6659,6627,6618,6601,6603,6625,6613,6453,6167,5740,5121,21.4,21.6,22.2,1568093,1.2,12.2,12.0,5.0,479,-1.00,-1.00,56.9556,-18.615450,0.000617,,,,,40 +SATSLF0720,2024246,9.514448,4.24,0.0594,0.1053,0.0187,0.00,16087,642,1,705,701,715,697,711,714,725,724,718,722,725,738,781,901,1239,1974,3131,4523,5749,6663,7316,7767,8201,8649,9147,9779,10517,11387,12377,13485,14649,15817,16925,17885,18596,19021,19173,18993,18609,18069,17462,16916,16460,16109,15866,15786,15879,16121,16531,17115,17857,18763,19821,21045,22357,23801,25271,26752,28169,29402,30414,31146,31540,31539,31210,30548,29641,28590,27339,26171,25024,23950,22949,22106,21364,20759,20266,19878,19594,19445,19338,19349,19460,19637,19902,20248,20685,21210,21769,22382,23043,23691,24293,24859,25346,25709,25975,26033,25909,25648,25164,24521,23802,23029,22157,21272,20449,19671,18964,18304,17763,17288,16878,16556,16315,16136,16059,16010,16025,16113,16271,16498,16789,17168,17589,18083,18648,19245,19891,20572,21292,22039,22782,23483,24196,24854,25428,25994,26402,26741,26983,27097,27113,27021,26795,26483,26091,25600,25029,24434,23806,23157,22517,21849,21206,20605,20021,19461,18960,18491,18104,17726,17405,17118,16845,16617,16410,16205,16019,15805,15643,15470,15339,15223,15123,15040,14984,14937,14898,14914,14913,14945,14959,15019,15037,15074,15122,15181,15195,15209,15216,15223,15244,15273,15281,15269,15205,15156,15092,15018,14920,14832,14701,14550,14378,14172,13968,13747,13501,13244,12979,12699,12401,12121,11833,11541,11270,11028,10778,10533,10275,9974,9649,9346,9058,8810,8601,8425,8282,8144,8049,7974,7897,7846,7781,7700,7552,7389,7240,7105,6999,6902,6818,6745,6681,6644,6635,6633,6597,6597,6618,6605,6453,6167,5722,5111,21.4,21.6,22.2,1568094,1.1,12.1,12.0,5.0,478,-1.00,-1.00,56.7069,-18.532801,0.000613,,,,,143 +SATSDF0720,2024246,9.759138,0.00,0.0000,0.0000,0.0000,0.00,641,0,1,627,627,616,631,623,621,621,613,613,613,599,619,612,624,614,624,628,620,629,625,625,609,639,638,641,640,645,644,644,648,650,653,652,658,649,647,637,635,629,635,627,639,644,645,660,644,651,647,646,651,637,644,637,643,645,655,651,656,653,642,649,642,640,645,642,651,645,642,641,647,649,646,638,639,651,661,657,657,656,665,669,661,649,645,639,630,629,639,637,635,641,637,642,647,645,641,649,637,639,637,640,641,634,632,642,641,637,641,641,636,655,650,649,640,642,637,632,647,649,653,641,640,651,645,637,647,636,633,640,637,641,640,648,650,646,646,642,638,630,636,641,649,642,647,650,645,646,634,635,638,639,643,649,653,634,650,652,641,644,649,629,641,645,641,645,662,643,640,640,646,650,636,643,649,647,633,631,636,636,629,628,621,638,629,647,653,655,648,655,647,650,637,636,639,642,629,655,648,637,642,642,651,646,650,629,647,634,651,650,634,640,637,634,637,639,636,632,631,651,661,660,660,651,651,654,641,628,632,640,636,631,630,642,627,627,647,638,634,651,636,635,633,635,634,629,635,631,639,642,642,648,643,656,649,646,475,0.0,0.0,0.0,1568093,0.2,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,227 +SATSLF0720,2024246,9.759693,4.21,0.0590,0.1001,0.0165,0.00,16234,641,1,704,694,700,701,700,705,714,719,725,723,723,729,779,885,1218,1974,3179,4560,5811,6747,7385,7866,8283,8736,9257,9885,10646,11520,12533,13643,14842,16011,17135,18098,18821,19262,19386,19217,18817,18296,17696,17125,16662,16294,16061,15986,16070,16311,16727,17323,18068,18983,20042,21280,22619,24072,25577,27061,28497,29763,30764,31523,31912,31909,31572,30920,29992,28915,27683,26483,25298,24234,23227,22365,21620,21003,20522,20123,19829,19656,19562,19563,19673,19858,20125,20482,20909,21441,22014,22625,23296,23937,24544,25127,25597,25953,26232,26282,26151,25872,25397,24760,24024,23235,22340,21466,20612,19838,19128,18465,17913,17435,17019,16707,16466,16291,16171,16129,16148,16251,16418,16648,16942,17306,17745,18231,18814,19418,20050,20731,21474,22228,22978,23689,24401,25053,25650,26218,26649,26987,27228,27334,27354,27254,27041,26726,26310,25812,25241,24638,24004,23340,22683,22017,21378,20770,20167,19619,19128,18653,18244,17879,17554,17263,16977,16735,16530,16320,16132,15938,15757,15600,15447,15333,15239,15157,15083,15052,15018,15015,15016,15053,15077,15115,15161,15182,15238,15281,15296,15310,15313,15318,15337,15365,15351,15342,15289,15233,15165,15099,15034,14921,14789,14635,14458,14261,14056,13830,13598,13337,13074,12785,12496,12206,11908,11600,11330,11081,10832,10600,10340,10037,9709,9403,9123,8874,8646,8495,8326,8192,8110,8013,7955,7910,7837,7746,7593,7418,7267,7130,7021,6929,6841,6781,6735,6693,6666,6664,6641,6619,6651,6656,6493,6189,5761,5154,21.2,21.2,21.7,1568094,0.3,12.2,12.0,5.0,600,-1.00,-1.00,56.0774,-18.488800,0.000540,,,,,253 +SATSLF0720,2024246,9.759875,3.99,0.0558,0.1005,0.0171,0.00,16217,641,1,684,683,681,691,689,691,712,705,721,717,717,714,741,868,1213,1967,3175,4566,5816,6747,7393,7867,8289,8736,9251,9878,10635,11519,12533,13664,14833,16014,17113,18091,18828,19274,19408,19210,18835,18281,17689,17130,16656,16279,16045,15981,16056,16298,16710,17303,18060,18966,20053,21282,22600,24070,25565,27049,28473,29724,30740,31484,31896,31897,31562,30904,29984,28908,27675,26477,25302,24210,23186,22318,21594,20961,20481,20091,19797,19641,19543,19549,19659,19842,20109,20450,20878,21409,21976,22602,23269,23915,24525,25097,25582,25941,26210,26242,26123,25837,25358,24726,24002,23220,22325,21448,20609,19833,19113,18450,17886,17411,17006,16678,16433,16255,16158,16120,16133,16222,16393,16597,16898,17268,17719,18208,18785,19408,20041,20750,21477,22219,22949,23670,24382,25029,25617,26192,26623,26956,27204,27309,27323,27225,27003,26680,26268,25771,25209,24617,23989,23340,22674,22005,21378,20769,20155,19611,19129,18629,18231,17860,17508,17220,16963,16740,16525,16322,16117,15927,15732,15565,15422,15301,15223,15127,15062,15025,15001,14997,15009,15025,15045,15082,15134,15165,15203,15267,15275,15281,15298,15306,15332,15347,15347,15327,15287,15222,15146,15099,15005,14897,14763,14606,14451,14253,14046,13833,13591,13328,13053,12766,12469,12165,11870,11578,11312,11058,10826,10586,10309,10008,9675,9372,9096,8848,8645,8457,8311,8189,8080,8003,7934,7891,7825,7744,7593,7410,7249,7117,7011,6911,6833,6769,6714,6692,6661,6656,6642,6609,6633,6628,6490,6177,5747,5118,21.2,21.2,21.8,1568095,0.6,12.1,12.0,5.0,496,-1.00,-1.00,56.7573,-18.762363,0.000558,,,,,142 +SATSLF0720,2024246,9.760130,4.08,0.0572,0.1017,0.0187,0.00,16159,641,1,691,688,705,715,718,709,718,713,710,714,709,717,759,881,1220,1973,3161,4558,5793,6732,7382,7842,8256,8723,9234,9849,10595,11476,12473,13576,14767,15930,17065,18026,18752,19181,19329,19142,18773,18218,17623,17053,16583,16217,15987,15914,15991,16247,16653,17250,17985,18890,19968,21203,22516,23979,25472,26949,28379,29620,30637,31383,31793,31788,31457,30784,29869,28781,27555,26366,25192,24117,23105,22241,21514,20902,20417,20035,19741,19595,19493,19482,19586,19773,20024,20377,20813,21341,21896,22518,23187,23829,24454,25021,25511,25849,26114,26160,26039,25760,25265,24641,23904,23105,22242,21365,20513,19751,19045,18397,17838,17366,16944,16633,16394,16218,16109,16069,16089,16181,16346,16557,16858,17216,17658,18138,18722,19328,19968,20652,21381,22109,22864,23578,24274,24934,25524,26099,26536,26826,27088,27191,27205,27119,26904,26575,26167,25690,25109,24529,23885,23250,22581,21922,21274,20678,20087,19533,19030,18563,18147,17787,17446,17168,16901,16650,16459,16257,16050,15855,15681,15509,15363,15254,15149,15079,15013,14972,14949,14952,14950,14982,14997,15040,15079,15097,15163,15223,15226,15238,15253,15256,15265,15269,15275,15275,15218,15153,15093,15016,14932,14842,14714,14563,14387,14200,13975,13765,13526,13271,13015,12726,12439,12132,11840,11555,11277,11025,10783,10545,10283,9989,9655,9349,9064,8827,8609,8439,8282,8157,8058,7979,7905,7859,7793,7707,7549,7390,7223,7111,7001,6893,6824,6757,6693,6653,6635,6633,6619,6613,6631,6618,6468,6162,5723,5111,21.3,21.2,21.8,1568096,0.5,12.1,11.9,5.0,482,-1.00,-1.00,56.6686,-18.656124,0.000629,,,,,18 +SATSLF0720,2024246,9.760383,4.18,0.0586,0.1013,0.0166,0.00,16196,641,1,693,707,702,703,697,699,712,706,715,706,715,731,774,904,1234,1983,3173,4554,5785,6711,7356,7831,8248,8695,9218,9842,10589,11454,12461,13589,14781,15944,17056,18018,18745,19189,19321,19145,18740,18208,17609,17053,16584,16237,15993,15925,16005,16245,16674,17245,18001,18906,19992,21213,22544,23987,25480,26977,28410,29660,30662,31415,31809,31817,31481,30821,29899,28819,27591,26403,25241,24153,23152,22292,21546,20925,20437,20043,19764,19598,19510,19524,19629,19809,20072,20417,20855,21376,21933,22555,23233,23879,24502,25085,25557,25912,26178,26225,26101,25802,25331,24695,23993,23186,22304,21433,20589,19805,19100,18436,17885,17402,16983,16669,16405,16233,16151,16081,16131,16218,16381,16613,16917,17284,17728,18197,18768,19377,20018,20694,21451,22184,22933,23656,24365,25025,25599,26178,26599,26917,27169,27289,27296,27198,26993,26661,26250,25765,25185,24586,23943,23307,22651,21981,21342,20741,20144,19584,19088,18618,18197,17838,17489,17218,16949,16708,16506,16304,16109,15912,15736,15560,15420,15305,15202,15122,15047,15013,14998,14984,15003,15031,15053,15085,15127,15174,15213,15274,15281,15288,15299,15307,15328,15344,15344,15320,15267,15221,15163,15089,15006,14906,14775,14624,14457,14253,14049,13815,13579,13314,13042,12763,12458,12181,11889,11597,11309,11072,10842,10594,10330,10023,9709,9393,9093,8855,8654,8452,8311,8181,8095,8006,7952,7899,7828,7746,7604,7429,7253,7127,7012,6921,6854,6785,6728,6679,6657,6621,6618,6617,6631,6619,6483,6179,5763,5139,21.3,21.3,21.9,1568097,0.3,12.2,11.9,5.0,483,-1.00,-1.00,56.8453,-18.749518,0.000603,,,,,52 +SATSLF0720,2024246,9.760633,4.34,0.0608,0.1019,0.0169,0.00,16187,641,1,691,707,701,707,714,718,726,725,718,724,717,722,762,879,1237,1974,3156,4544,5785,6721,7337,7819,8240,8681,9215,9829,10583,11450,12451,13561,14746,15913,17023,17977,18707,19142,19280,19099,18714,18197,17600,17037,16582,16221,15981,15902,15973,16237,16641,17229,17976,18902,19969,21197,22534,23961,25467,26950,28374,29633,30644,31396,31804,31776,31451,30793,29867,28800,27561,26371,25218,24130,23124,22271,21525,20909,20421,20025,19762,19581,19484,19498,19593,19799,20061,20401,20855,21382,21942,22553,23222,23854,24470,25049,25523,25893,26149,26203,26094,25796,25323,24697,23965,23173,22293,21411,20571,19793,19082,18426,17859,17383,16987,16674,16418,16243,16152,16096,16122,16204,16369,16597,16904,17274,17701,18178,18763,19378,20000,20695,21422,22180,22905,23632,24354,25001,25610,26166,26599,26917,27168,27254,27274,27171,26972,26637,26244,25758,25200,24608,23968,23316,22661,21981,21341,20736,20140,19591,19085,18603,18211,17836,17507,17213,16947,16705,16501,16304,16114,15926,15730,15565,15410,15296,15198,15127,15048,15006,15002,15005,15005,15030,15044,15085,15115,15159,15209,15255,15275,15298,15298,15297,15327,15338,15325,15319,15267,15214,15153,15067,14995,14891,14760,14598,14439,14246,14025,13815,13581,13321,13057,12773,12491,12197,11889,11592,11320,11054,10813,10581,10317,10029,9712,9385,9116,8870,8649,8484,8317,8189,8081,8005,7924,7893,7817,7729,7585,7415,7259,7122,7008,6912,6835,6757,6708,6681,6673,6657,6626,6631,6645,6629,6489,6170,5740,5113,21.3,21.3,21.9,1568098,0.8,12.1,11.9,5.0,484,-1.00,-1.00,56.5390,-18.605916,0.000614,,,,,139 +SATSLF0720,2024246,9.760888,4.11,0.0576,0.1016,0.0167,0.00,16197,641,1,685,690,706,696,696,710,706,711,713,713,708,722,766,861,1218,1965,3171,4554,5807,6738,7358,7832,8237,8684,9204,9816,10574,11451,12472,13585,14772,15936,17063,18029,18747,19181,19324,19143,18762,18221,17620,17060,16593,16229,15986,15923,16000,16259,16666,17248,17995,18914,19992,21213,22529,23991,25480,26977,28410,29645,30659,31409,31812,31810,31498,30830,29907,28837,27581,26405,25227,24142,23140,22295,21533,20914,20439,20039,19752,19602,19497,19517,19613,19803,20060,20413,20838,21373,21943,22552,23214,23859,24478,25071,25552,25922,26173,26221,26117,25814,25338,24720,23973,23175,22297,21438,20572,19810,19092,18435,17874,17404,16987,16675,16417,16265,16155,16106,16127,16227,16383,16610,16906,17284,17712,18209,18788,19382,20033,20722,21445,22173,22931,23650,24352,25022,25602,26173,26611,26944,27188,27289,27287,27197,26988,26662,26248,25764,25189,24599,23968,23321,22664,21990,21357,20754,20141,19595,19088,18613,18219,17846,17520,17233,16945,16707,16509,16304,16116,15915,15735,15568,15429,15318,15208,15153,15064,15021,14997,14989,15006,15028,15053,15092,15123,15160,15214,15276,15269,15283,15291,15288,15308,15333,15333,15329,15276,15213,15160,15092,15006,14924,14782,14632,14469,14269,14057,13829,13584,13310,13054,12772,12483,12197,11889,11594,11328,11075,10829,10591,10337,10029,9709,9393,9115,8868,8643,8470,8303,8188,8085,7991,7927,7869,7825,7738,7592,7400,7266,7137,7018,6919,6848,6781,6722,6695,6671,6656,6640,6610,6648,6632,6483,6171,5755,5137,21.3,21.4,21.9,1568099,0.2,12.1,12.0,5.0,484,-1.00,-1.00,57.0565,-18.838132,0.000575,,,,,73 +SATSLF0720,2024246,9.761141,4.10,0.0575,0.1023,0.0175,0.00,16156,641,1,679,683,694,705,718,709,711,717,728,717,713,727,766,885,1209,1969,3153,4531,5785,6707,7338,7816,8232,8675,9203,9824,10566,11441,12429,13544,14722,15892,17010,17971,18694,19137,19267,19069,18707,18162,17581,17013,16544,16197,15949,15885,15949,16195,16608,17200,17942,18856,19917,21145,22482,23926,25410,26885,28323,29566,30566,31321,31713,31715,31385,30730,29809,28738,27509,26328,25153,24077,23065,22193,21471,20860,20381,19985,19716,19555,19468,19474,19570,19758,20017,20347,20784,21310,21864,22490,23152,23808,24410,24984,25472,25841,26109,26148,26018,25746,25252,24637,23909,23104,22236,21369,20531,19753,19058,18397,17836,17366,16941,16621,16379,16203,16104,16058,16091,16187,16341,16578,16878,17241,17673,18153,18730,19328,19981,20666,21402,22137,22889,23585,24296,24942,25547,26125,26551,26864,27115,27229,27250,27145,26935,26594,26202,25685,25124,24549,23918,23265,22616,21952,21313,20692,20110,19549,19044,18565,18160,17792,17479,17182,16925,16675,16466,16267,16075,15888,15701,15538,15397,15293,15177,15081,15040,14993,14977,14982,14978,15005,15025,15056,15083,15117,15166,15229,15241,15257,15269,15265,15288,15315,15309,15306,15253,15193,15131,15071,14982,14878,14737,14587,14423,14231,14013,13794,13562,13297,13034,12754,12461,12166,11853,11568,11287,11041,10789,10570,10307,10013,9673,9363,9086,8830,8637,8450,8303,8176,8076,7997,7925,7877,7812,7717,7570,7401,7244,7116,7001,6909,6814,6763,6705,6679,6641,6637,6624,6602,6623,6633,6465,6162,5739,5119,21.3,21.4,21.9,1568100,0.0,12.1,11.9,5.0,481,-1.00,-1.00,57.1261,-18.810261,0.000591,,,,,89 +SATSLF0720,2024246,9.761397,4.18,0.0586,0.1023,0.0173,0.00,16173,641,1,689,705,706,694,703,704,728,727,730,726,731,741,764,889,1220,1975,3164,4548,5805,6713,7360,7814,8243,8689,9205,9843,10577,11446,12455,13560,14739,15908,17026,17985,18720,19155,19291,19109,18743,18185,17591,17017,16556,16195,15958,15900,15984,16229,16648,17222,17967,18885,19949,21178,22494,23958,25428,26921,28356,29593,30602,31348,31748,31740,31414,30756,29832,28770,27540,26343,25186,24106,23098,22235,21503,20888,20395,19994,19713,19567,19465,19485,19592,19782,20033,20390,20821,21339,21913,22532,23189,23828,24451,25033,25494,25868,26148,26194,26078,25776,25305,24660,23930,23129,22278,21389,20541,19771,19064,18401,17857,17408,16981,16656,16411,16236,16128,16069,16095,16189,16354,16602,16893,17255,17694,18181,18761,19367,19995,20686,21402,22146,22881,23597,24298,24963,25572,26130,26569,26893,27140,27243,27261,27168,26946,26623,26213,25716,25157,24564,23937,23272,22619,21962,21326,20712,20125,19569,19072,18599,18183,17810,17472,17187,16935,16674,16487,16279,16096,15888,15695,15550,15399,15284,15175,15115,15046,15022,14993,14985,15000,15016,15036,15081,15112,15129,15179,15235,15255,15259,15267,15291,15297,15312,15318,15309,15265,15193,15139,15053,14977,14888,14747,14587,14423,14233,14031,13825,13576,13311,13047,12756,12471,12187,11866,11585,11321,11064,10820,10583,10306,10000,9680,9377,9089,8846,8634,8471,8316,8173,8079,7997,7942,7882,7817,7724,7588,7413,7256,7121,7006,6913,6829,6779,6721,6681,6651,6650,6633,6601,6631,6633,6486,6170,5743,5119,21.3,21.4,22.0,1568101,1.1,12.1,12.0,5.0,482,-1.00,-1.00,56.6299,-18.622083,0.000578,,,,,236 +SATSLF0720,2024246,9.761651,4.29,0.0600,0.1032,0.0172,0.00,16147,641,1,689,707,712,699,707,715,709,711,728,730,735,738,769,897,1226,1982,3157,4530,5767,6689,7326,7798,8219,8655,9179,9794,10545,11409,12397,13507,14695,15858,16980,17930,18652,19093,19212,19018,18651,18131,17536,16956,16506,16141,15922,15863,15933,16177,16597,17164,17911,18813,19894,21105,22425,23874,25364,26852,28269,29513,30538,31271,31661,31673,31312,30683,29746,28695,27461,26267,25111,24038,23029,22179,21451,20844,20373,19969,19688,19520,19426,19438,19534,19744,19977,20344,20762,21302,21869,22482,23145,23801,24405,24993,25462,25813,26088,26145,26021,25733,25259,24627,23893,23101,22228,21355,20506,19734,19014,18369,17817,17342,16935,16630,16375,16219,16114,16065,16087,16168,16345,16570,16877,17229,17657,18153,18725,19328,19976,20661,21398,22128,22853,23571,24288,24938,25541,26111,26542,26861,27109,27219,27211,27133,26906,26592,26189,25712,25133,24539,23909,23257,22605,21931,21313,20697,20090,19550,19057,18581,18171,17798,17466,17175,16919,16660,16459,16279,16081,15892,15698,15520,15390,15266,15180,15104,15028,14989,14967,14969,14969,15009,15013,15057,15098,15125,15173,15248,15261,15273,15269,15291,15304,15326,15313,15316,15250,15203,15144,15076,14988,14890,14759,14611,14433,14232,14027,13806,13558,13292,13028,12741,12455,12167,11872,11580,11321,11059,10827,10590,10317,10012,9691,9379,9095,8843,8624,8450,8304,8167,8080,8012,7934,7905,7817,7729,7571,7411,7261,7136,7015,6917,6837,6773,6718,6662,6655,6649,6629,6619,6639,6631,6486,6148,5739,5128,21.3,21.4,22.0,1568102,0.4,12.1,11.9,5.0,480,-1.00,-1.00,56.8380,-18.658566,0.000603,,,,,47 +SATSLF0720,2024246,9.761903,4.09,0.0573,0.1029,0.0180,0.00,16151,641,1,706,710,721,708,728,709,730,722,733,725,713,723,771,888,1207,1975,3148,4532,5763,6689,7327,7799,8205,8664,9189,9813,10554,11426,12425,13533,14706,15878,16983,17933,18673,19113,19243,19057,18696,18154,17561,16980,16519,16157,15928,15865,15938,16190,16599,17178,17925,18829,19897,21130,22453,23897,25379,26868,28293,29541,30546,31304,31683,31682,31353,30701,29774,28736,27477,26291,25131,24057,23053,22192,21463,20859,20371,19986,19697,19526,19439,19454,19536,19735,19994,20347,20795,21296,21866,22487,23146,23789,24392,24979,25474,25826,26097,26142,26029,25741,25254,24621,23896,23099,22233,21357,20531,19764,19053,18395,17832,17367,16941,16621,16384,16204,16113,16049,16071,16187,16342,16579,16885,17229,17671,18154,18727,19336,19969,20646,21372,22128,22880,23593,24298,24952,25541,26107,26537,26857,27104,27210,27218,27131,26926,26585,26193,25680,25127,24537,23907,23261,22609,21938,21291,20699,20106,19537,19054,18572,18169,17793,17482,17181,16912,16677,16471,16267,16072,15895,15701,15530,15386,15266,15165,15095,15017,14982,14976,14954,14979,14994,15025,15063,15094,15134,15190,15234,15244,15251,15261,15261,15291,15323,15309,15298,15245,15172,15117,15044,14973,14870,14737,14589,14423,14218,14007,13809,13565,13299,13032,12754,12450,12167,11861,11572,11290,11042,10809,10566,10310,10017,9699,9373,9087,8841,8631,8457,8305,8173,8082,7993,7932,7881,7802,7720,7573,7401,7261,7125,7017,6917,6831,6777,6722,6683,6658,6651,6638,6627,6640,6632,6475,6181,5733,5115,21.4,21.4,22.0,1568103,1.3,12.1,12.0,5.0,481,-1.00,-1.00,57.3400,-18.882091,0.000618,,,,,250 +SATSLF0720,2024246,9.762160,4.19,0.0586,0.1036,0.0174,0.00,16142,641,1,699,698,705,701,694,697,703,712,721,717,713,737,771,877,1216,1971,3145,4528,5765,6687,7317,7811,8213,8669,9185,9813,10536,11414,12408,13517,14714,15857,16983,17943,18662,19084,19223,19041,18664,18130,17542,16989,16525,16155,15931,15859,15943,16165,16590,17160,17907,18818,19892,21114,22438,23904,25379,26846,28279,29546,30538,31269,31678,31673,31337,30683,29764,28715,27470,26298,25127,24036,23035,22187,21453,20848,20354,19982,19693,19525,19411,19421,19525,19713,19986,20329,20762,21288,21850,22457,23131,23773,24389,24969,25451,25826,26088,26134,26009,25733,25249,24617,23895,23090,22225,21350,20507,19738,19028,18373,17801,17351,16949,16624,16367,16203,16107,16064,16072,16173,16321,16547,16842,17213,17661,18138,18701,19335,19952,20646,21366,22107,22859,23585,24283,24937,25550,26116,26525,26842,27086,27192,27208,27113,26907,26578,26199,25682,25118,24521,23904,23241,22597,21918,21299,20673,20103,19530,19043,18561,18163,17801,17465,17180,16904,16672,16466,16254,16071,15872,15693,15516,15392,15269,15162,15107,15022,14989,14961,14976,14969,14997,15009,15048,15090,15121,15168,15229,15242,15241,15241,15258,15282,15291,15302,15293,15245,15184,15137,15052,14967,14861,14733,14595,14422,14222,14008,13784,13549,13280,13021,12744,12457,12163,11853,11569,11299,11050,10806,10571,10306,9984,9667,9358,9098,8845,8637,8470,8307,8180,8072,7989,7925,7887,7809,7717,7570,7401,7255,7125,7001,6898,6827,6744,6713,6665,6645,6631,6631,6613,6633,6629,6480,6167,5730,5119,21.4,21.4,22.1,1568104,0.0,12.2,12.0,5.0,470,-1.00,-1.00,57.2135,-18.823029,0.000598,,,,,126 +SATSLF0720,2024246,9.762416,4.25,0.0596,0.1032,0.0177,0.00,16133,641,1,701,716,713,717,708,697,696,701,707,701,720,739,757,887,1229,1965,3155,4539,5776,6692,7321,7805,8217,8656,9172,9803,10528,11410,12396,13518,14717,15869,16971,17927,18653,19086,19211,19016,18642,18118,17526,16970,16502,16139,15909,15849,15920,16178,16573,17149,17899,18825,19874,21111,22417,23872,25341,26840,28257,29510,30521,31232,31641,31634,31313,30653,29735,28678,27449,26258,25105,24025,23029,22167,21438,20826,20354,19949,19664,19523,19426,19433,19526,19705,19965,20301,20756,21277,21825,22463,23131,23784,24376,24960,25427,25786,26059,26101,25993,25721,25237,24609,23885,23083,22209,21331,20488,19714,19017,18368,17813,17341,16930,16605,16356,16163,16078,16044,16066,16134,16327,16552,16849,17213,17641,18137,18707,19312,19956,20650,21369,22106,22851,23568,24272,24929,25509,26067,26497,26820,27058,27160,27190,27105,26868,26555,26160,25673,25092,24517,23874,23227,22590,21913,21280,20665,20087,19533,19041,18561,18139,17781,17441,17165,16892,16664,16468,16251,16076,15865,15683,15524,15378,15257,15159,15086,15009,14969,14954,14950,14964,14992,15018,15051,15089,15126,15169,15226,15234,15234,15249,15253,15281,15302,15293,15286,15244,15185,15125,15034,14963,14888,14733,14574,14404,14213,14012,13783,13547,13282,13021,12717,12425,12133,11847,11561,11296,11040,10816,10569,10298,10000,9678,9376,9085,8840,8637,8464,8302,8163,8072,7990,7932,7869,7796,7704,7569,7409,7245,7112,7011,6894,6827,6753,6698,6653,6637,6625,6624,6614,6628,6633,6473,6167,5748,5113,21.4,21.4,22.1,1568105,0.2,12.1,12.0,5.0,481,-1.00,-1.00,56.8725,-18.662757,0.000589,,,,,106 +SATSLF0720,2024246,9.762668,4.20,0.0589,0.1037,0.0182,0.00,16132,641,1,694,704,709,707,705,710,717,724,733,730,741,746,763,891,1223,1984,3157,4544,5769,6698,7333,7807,8206,8647,9173,9795,10531,11408,12417,13521,14693,15855,16980,17926,18660,19089,19225,19050,18664,18110,17522,16961,16497,16130,15897,15845,15920,16187,16598,17173,17920,18817,19893,21097,22417,23866,25345,26829,28269,29504,30501,31257,31629,31643,31313,30658,29744,28682,27451,26263,25096,24009,23001,22163,21426,20818,20333,19943,19671,19509,19405,19411,19521,19728,19978,20325,20754,21272,21834,22445,23108,23758,24375,24945,25432,25785,26057,26096,25993,25706,25222,24608,23866,23090,22212,21332,20485,19714,19019,18354,17797,17333,16922,16625,16377,16198,16102,16067,16082,16154,16322,16551,16845,17225,17627,18120,18701,19306,19956,20629,21359,22099,22842,23561,24258,24914,25506,26066,26492,26820,27056,27173,27197,27106,26882,26576,26164,25664,25106,24521,23872,23220,22569,21903,21267,20679,20080,19529,19029,18551,18152,17783,17441,17157,16880,16663,16453,16242,16067,15891,15689,15520,15372,15269,15160,15076,14997,14959,14941,14963,14970,14994,15011,15040,15067,15104,15152,15195,15226,15246,15249,15259,15283,15291,15305,15280,15235,15170,15108,15038,14946,14869,14741,14585,14406,14219,13999,13801,13548,13278,13013,12733,12439,12149,11844,11553,11295,11040,10807,10568,10308,10001,9677,9367,9082,8833,8632,8462,8300,8171,8078,8003,7925,7872,7819,7730,7576,7409,7245,7127,6989,6915,6834,6765,6706,6675,6644,6632,6614,6599,6631,6606,6466,6161,5727,5115,21.4,21.4,22.1,1568105,0.0,12.1,12.0,5.0,479,-1.00,-1.00,56.9572,-18.699756,0.000591,,,,,94 +SATSLF0720,2024246,9.762924,4.38,0.0613,0.1031,0.0175,0.00,16149,641,1,693,697,697,707,701,700,723,702,723,726,732,729,767,882,1231,1973,3172,4535,5788,6714,7337,7815,8241,8685,9201,9810,10561,11434,12437,13545,14711,15895,17014,17968,18686,19115,19229,19059,18676,18135,17558,16981,16538,16180,15947,15888,15938,16203,16625,17187,17930,18850,19901,21134,22453,23896,25402,26876,28288,29555,30537,31281,31671,31680,31352,30693,29770,28698,27479,26302,25142,24043,23042,22193,21456,20854,20361,19973,19688,19537,19434,19455,19537,19741,19997,20338,20779,21303,21870,22501,23156,23786,24393,24976,25454,25818,26076,26124,26011,25732,25256,24635,23897,23104,22236,21371,20524,19749,19044,18375,17820,17352,16941,16628,16373,16213,16101,16070,16090,16177,16338,16581,16877,17221,17669,18152,18717,19336,19957,20651,21379,22109,22849,23584,24285,24940,25524,26077,26504,26840,27081,27196,27209,27125,26909,26585,26181,25680,25111,24535,23889,23241,22579,21920,21294,20680,20089,19543,19049,18572,18165,17793,17460,17170,16906,16668,16476,16261,16055,15883,15701,15537,15397,15271,15173,15097,15024,14982,14968,14959,14971,14996,15022,15062,15115,15133,15165,15232,15241,15246,15264,15267,15287,15326,15313,15305,15255,15191,15133,15070,14962,14877,14736,14581,14400,14214,14003,13797,13566,13309,13034,12756,12449,12149,11847,11567,11308,11045,10800,10577,10305,10015,9692,9378,9088,8841,8646,8455,8307,8171,8084,8004,7927,7871,7817,7716,7584,7414,7258,7131,7016,6913,6825,6753,6707,6682,6634,6628,6629,6610,6634,6636,6481,6174,5759,5131,21.4,21.5,22.1,1568106,0.3,12.1,12.0,5.0,482,-1.00,-1.00,56.0682,-18.351316,0.000538,,,,,103 +SATSLF0720,2024246,9.763177,4.44,0.0622,0.1043,0.0181,0.00,16122,641,1,702,701,706,718,721,718,726,719,722,710,726,721,763,868,1217,1965,3141,4521,5754,6679,7309,7799,8189,8643,9156,9772,10523,11411,12384,13513,14681,15834,16939,17889,18610,19050,19182,18990,18633,18102,17517,16948,16488,16131,15897,15833,15918,16149,16563,17143,17881,18803,19861,21101,22418,23862,25353,26816,28241,29481,30481,31236,31626,31606,31284,30626,29706,28648,27415,26225,25085,24028,23010,22152,21427,20804,20310,19917,19636,19482,19381,19415,19518,19702,19965,20296,20741,21264,21827,22445,23113,23754,24361,24944,25424,25779,26039,26093,25977,25682,25223,24577,23863,23061,22205,21320,20466,19703,19019,18362,17796,17343,16933,16608,16365,16173,16091,16046,16077,16152,16315,16538,16835,17193,17630,18122,18696,19313,19946,20615,21351,22100,22845,23549,24249,24920,25501,26065,26508,26813,27053,27169,27190,27090,26864,26551,26157,25657,25072,24503,23866,23221,22565,21909,21267,20656,20068,19511,19016,18539,18143,17765,17434,17131,16888,16656,16449,16241,16049,15863,15677,15511,15369,15255,15155,15081,15001,14969,14963,14957,14948,14976,14996,15045,15089,15113,15153,15208,15237,15249,15254,15254,15269,15280,15292,15281,15221,15168,15111,15049,14955,14859,14725,14570,14397,14213,14005,13786,13553,13286,13013,12739,12443,12162,11854,11559,11291,11035,10801,10557,10285,9982,9659,9347,9069,8836,8618,8453,8284,8167,8070,7985,7910,7869,7789,7704,7547,7380,7229,7103,6998,6899,6820,6762,6705,6658,6641,6631,6606,6598,6624,6616,6465,6171,5732,5119,21.4,21.5,22.1,1568107,0.1,12.2,11.9,5.0,467,-1.00,-1.00,56.2971,-18.408476,0.000637,,,,,170 +SATSLF0720,2024246,9.763431,4.32,0.0605,0.1045,0.0188,0.00,16112,641,1,695,693,695,695,704,701,699,697,717,711,725,741,775,898,1237,1977,3165,4545,5757,6687,7318,7786,8208,8651,9167,9793,10530,11411,12394,13490,14679,15833,16951,17898,18640,19053,19191,19005,18640,18088,17509,16949,16485,16118,15904,15832,15914,16161,16546,17147,17896,18794,19878,21082,22394,23844,25335,26809,28225,29470,30461,31216,31613,31593,31277,30642,29700,28640,27417,26238,25070,24007,23001,22152,21414,20806,20313,19920,19636,19456,19371,19392,19498,19683,19955,20295,20723,21243,21820,22439,23112,23755,24353,24929,25416,25781,26061,26084,25965,25680,25197,24554,23832,23044,22172,21317,20472,19691,18981,18333,17785,17310,16910,16599,16341,16183,16085,16041,16036,16138,16298,16525,16833,17178,17611,18112,18676,19274,19913,20600,21332,22071,22810,23525,24236,24893,25482,26041,26485,26788,27032,27121,27137,27051,26839,26501,26125,25640,25077,24485,23834,23205,22548,21879,21264,20649,20064,19493,19001,18510,18135,17765,17419,17144,16861,16628,16428,16216,16045,15850,15661,15504,15349,15245,15133,15065,14987,14955,14932,14949,14934,14967,14980,14999,15053,15091,15141,15205,15213,15230,15241,15243,15272,15265,15282,15257,15211,15157,15088,15004,14936,14833,14685,14555,14377,14183,13994,13772,13527,13281,13010,12716,12416,12125,11830,11546,11277,11041,10796,10575,10293,9983,9675,9351,9067,8809,8615,8441,8299,8161,8065,7978,7910,7859,7789,7698,7569,7389,7229,7109,6993,6896,6820,6757,6701,6665,6645,6637,6609,6602,6604,6614,6457,6158,5738,5125,21.4,21.5,22.2,1568108,0.0,12.2,12.0,5.0,480,-1.00,-1.00,56.6512,-18.551806,0.000559,,,,,147 +SATSLF0720,2024246,9.763686,4.24,0.0593,0.1055,0.0191,0.00,16075,641,1,706,713,708,701,705,693,715,714,728,731,743,741,775,899,1224,1975,3139,4513,5746,6655,7303,7781,8176,8631,9136,9757,10489,11352,12343,13448,14626,15793,16894,17837,18556,18995,19133,18941,18560,18027,17436,16880,16427,16059,15837,15769,15845,16101,16510,17089,17826,18729,19794,21017,22321,23755,25248,26728,28130,29371,30356,31107,31504,31493,31171,30538,29610,28549,27328,26153,24988,23912,22932,22058,21341,20734,20245,19865,19590,19435,19327,19347,19445,19626,19882,20244,20677,21186,21749,22369,23040,23685,24297,24885,25354,25709,25970,26017,25898,25622,25136,24507,23794,22989,22137,21270,20421,19656,18969,18309,17747,17275,16881,16551,16312,16133,16039,15992,16007,16103,16275,16476,16786,17174,17595,18073,18644,19248,19875,20551,21294,22024,22768,23478,24177,24835,25436,25989,26432,26752,26997,27080,27104,27021,26786,26453,26064,25574,25035,24413,23790,23143,22494,21829,21219,20601,20009,19441,18952,18469,18091,17725,17397,17117,16841,16610,16409,16213,16013,15804,15622,15478,15333,15220,15117,15041,14973,14929,14916,14909,14915,14929,14957,15005,15040,15068,15115,15184,15201,15213,15221,15223,15242,15250,15251,15241,15201,15142,15078,15005,14919,14833,14693,14544,14373,14179,13962,13752,13510,13257,12997,12702,12401,12114,11800,11521,11272,11013,10781,10541,10280,9974,9655,9341,9050,8802,8610,8433,8268,8151,8045,7971,7915,7853,7789,7696,7551,7381,7218,7111,6978,6885,6807,6743,6682,6652,6630,6618,6609,6586,6621,6610,6455,6149,5721,5101,21.4,21.6,22.2,1568109,0.0,12.1,11.9,5.0,480,-1.00,-1.00,57.3290,-18.772732,0.000590,,,,,214 +SATSLF0720,2024246,9.763940,4.33,0.0606,0.1052,0.0185,0.00,16098,641,1,721,713,714,705,716,713,711,716,729,730,737,763,781,902,1244,1977,3155,4541,5762,6680,7310,7783,8189,8649,9170,9779,10515,11387,12363,13485,14657,15812,16925,17872,18594,19024,19156,18981,18601,18057,17475,16931,16470,16104,15877,15808,15883,16138,16533,17118,17856,18768,19837,21053,22365,23813,25290,26753,28177,29421,30407,31154,31554,31563,31232,30581,29659,28602,27376,26186,25026,23968,22946,22096,21378,20765,20273,19887,19601,19448,19341,19368,19464,19654,19909,20263,20698,21214,21787,22403,23077,23720,24324,24885,25371,25741,25987,26055,25937,25646,25187,24544,23824,23028,22154,21287,20447,19685,18983,18341,17769,17303,16889,16567,16315,16151,16057,16020,16028,16124,16292,16513,16819,17175,17604,18097,18666,19273,19914,20580,21314,22045,22793,23505,24217,24862,25462,26029,26441,26763,26995,27115,27130,27031,26827,26493,26097,25599,25038,24471,23825,23184,22537,21861,21234,20641,20022,19479,18983,18517,18105,17739,17411,17125,16871,16628,16439,16213,16031,15826,15642,15485,15348,15238,15130,15067,14989,14942,14910,14927,14932,14950,14977,15022,15066,15109,15142,15199,15205,15207,15234,15229,15251,15277,15265,15262,15218,15154,15099,15036,14945,14853,14713,14566,14393,14197,13991,13773,13509,13257,12989,12708,12429,12137,11833,11553,11283,11019,10791,10536,10267,9963,9667,9352,9074,8823,8617,8441,8303,8157,8075,7979,7917,7872,7783,7687,7553,7377,7224,7111,6997,6904,6814,6765,6692,6656,6630,6629,6615,6602,6620,6611,6448,6155,5739,5116,21.4,21.6,22.2,1568110,0.2,12.1,11.9,5.0,468,-1.00,-1.00,56.6387,-18.516419,0.000528,,,,,79 +SATSLF0720,2024246,9.764194,4.06,0.0568,0.1050,0.0186,0.00,16090,641,1,709,699,697,697,716,712,734,726,728,725,733,725,773,881,1231,1961,3149,4530,5760,6666,7310,7770,8177,8628,9137,9763,10507,11382,12379,13473,14634,15804,16919,17873,18587,19025,19164,18982,18603,18071,17462,16901,16443,16077,15865,15789,15872,16128,16536,17106,17857,18760,19813,21031,22344,23786,25267,26760,28149,29393,30401,31154,31546,31549,31230,30584,29658,28613,27371,26197,25021,23936,22951,22096,21353,20741,20266,19877,19597,19441,19351,19369,19450,19655,19906,20256,20695,21205,21773,22391,23058,23705,24314,24887,25366,25720,25977,26018,25916,25641,25165,24541,23827,23034,22173,21287,20441,19682,18965,18293,17744,17287,16888,16562,16327,16165,16041,15993,16023,16127,16290,16497,16795,17168,17589,18088,18653,19257,19897,20576,21294,22037,22778,23508,24209,24869,25449,26017,26436,26768,26995,27106,27117,27033,26813,26485,26094,25608,25046,24454,23821,23159,22521,21865,21222,20615,20029,19467,18994,18509,18121,17734,17418,17128,16850,16631,16425,16208,16030,15826,15651,15469,15335,15223,15114,15046,14973,14933,14914,14919,14919,14951,14974,15016,15052,15101,15130,15185,15210,15213,15227,15221,15247,15275,15273,15264,15211,15144,15095,15013,14907,14823,14682,14541,14373,14176,13986,13781,13537,13279,13000,12719,12414,12116,11821,11520,11263,11005,10781,10539,10279,9982,9668,9340,9063,8809,8603,8425,8263,8146,8050,7979,7906,7850,7806,7696,7555,7381,7219,7098,6983,6892,6811,6750,6693,6657,6651,6627,6605,6597,6605,6595,6455,6145,5721,5117,21.4,21.6,22.2,1568111,0.0,12.1,12.0,5.0,478,-1.00,-1.00,57.8708,-19.025385,0.000550,,,,,126 +SATSLF0720,2024246,9.764449,4.28,0.0599,0.1073,0.0206,0.00,16026,641,1,700,696,701,695,695,697,702,706,719,714,718,729,767,873,1208,1946,3134,4489,5710,6626,7266,7735,8154,8585,9102,9712,10454,11306,12307,13397,14554,15718,16822,17765,18481,18921,19062,18864,18500,17966,17365,16823,16354,16000,15777,15723,15809,16037,16443,17033,17768,18668,19718,20934,22258,23680,25142,26612,28025,29275,30260,31002,31403,31392,31056,30411,29504,28462,27233,26056,24909,23832,22838,21987,21268,20672,20180,19804,19508,19346,19251,19271,19357,19563,19815,20165,20610,21122,21678,22293,22961,23598,24202,24778,25248,25620,25879,25941,25816,25537,25065,24441,23715,22928,22069,21194,20369,19606,18886,18253,17677,17234,16818,16507,16261,16081,16000,15957,15973,16065,16231,16453,16753,17108,17532,18026,18585,19197,19824,20514,21223,21951,22711,23419,24121,24781,25361,25921,26346,26650,26898,27000,27017,26935,26723,26389,26007,25508,24961,24370,23726,23084,22441,21784,21149,20548,19942,19409,18922,18438,18041,17664,17339,17063,16803,16550,16367,16169,15964,15770,15597,15420,15296,15177,15077,15006,14942,14901,14887,14887,14890,14907,14930,14963,15017,15029,15078,15139,15145,15162,15172,15172,15193,15227,15221,15207,15170,15088,15031,14966,14854,14779,14653,14505,14337,14147,13941,13725,13484,13226,12953,12672,12387,12090,11784,11519,11244,10992,10747,10515,10249,9948,9613,9313,9031,8788,8583,8409,8261,8141,8033,7949,7879,7842,7778,7669,7537,7361,7204,7074,6966,6874,6781,6728,6665,6630,6621,6603,6594,6578,6603,6597,6433,6135,5721,5101,21.4,21.6,22.2,1568112,0.0,12.1,12.0,5.0,474,-1.00,-1.00,57.4252,-18.747687,0.000595,,,,,161 +SATSDF0720,2024246,10.009138,0.00,0.0000,0.0000,0.0000,0.00,642,0,1,615,615,617,605,615,611,624,622,619,613,609,617,619,627,626,628,631,613,623,614,621,617,631,645,643,651,643,649,645,644,636,643,651,650,644,653,655,653,647,648,641,627,631,626,631,636,645,645,657,653,649,661,649,648,641,641,647,637,651,646,657,653,654,656,647,647,649,648,644,637,651,642,656,649,649,655,653,652,656,649,648,639,640,646,644,644,635,637,647,657,653,653,656,644,645,659,641,648,633,629,626,626,623,638,642,626,637,629,629,637,643,658,649,643,643,645,644,634,637,641,636,636,638,630,627,640,635,645,647,641,646,650,652,648,653,639,646,645,647,648,647,637,651,649,645,641,647,653,649,660,656,653,634,652,642,653,642,645,642,648,642,630,635,639,642,641,633,638,640,646,657,651,656,649,650,639,643,647,636,645,650,646,653,652,647,655,649,637,638,643,645,633,639,644,644,644,635,630,634,647,650,651,645,653,653,642,640,636,641,643,633,642,640,652,669,645,640,640,633,634,642,633,643,650,649,637,650,645,628,629,639,631,641,638,640,641,644,645,646,649,649,649,659,650,643,635,643,629,639,644,648,646,651,651,645,481,0.0,0.0,0.0,1568111,0.0,12.6,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,137 +SATSLF0720,2024246,10.009695,4.08,0.0572,0.0995,0.0154,0.00,16257,642,1,689,681,697,694,701,703,707,713,721,721,722,725,767,890,1237,1991,3174,4578,5837,6749,7383,7864,8280,8715,9255,9891,10633,11526,12533,13653,14861,16029,17142,18112,18830,19261,19411,19241,18865,18315,17717,17152,16674,16298,16055,16004,16084,16331,16732,17343,18082,19002,20073,21312,22650,24099,25599,27092,28523,29788,30792,31552,31955,31957,31626,30963,30038,28980,27729,26525,25356,24272,23257,22381,21652,21017,20528,20126,19840,19681,19589,19600,19690,19897,20141,20481,20939,21448,22013,22633,23321,23956,24583,25157,25628,26007,26270,26312,26187,25932,25448,24790,24073,23269,22380,21494,20646,19882,19154,18503,17948,17458,17049,16733,16496,16305,16204,16166,16177,16259,16439,16662,16965,17331,17773,18260,18826,19455,20093,20785,21509,22263,23018,23729,24443,25104,25701,26289,26714,27034,27287,27390,27404,27317,27083,26749,26359,25849,25297,24696,24051,23398,22743,22074,21426,20820,20227,19658,19159,18682,18279,17916,17560,17292,17017,16776,16552,16357,16154,15961,15779,15610,15475,15361,15248,15184,15114,15089,15068,15049,15061,15077,15089,15139,15179,15205,15253,15308,15330,15335,15351,15338,15371,15378,15386,15368,15313,15260,15204,15125,15050,14953,14813,14658,14483,14289,14062,13863,13626,13365,13079,12783,12508,12213,11908,11623,11354,11085,10853,10625,10359,10054,9739,9417,9119,8875,8673,8502,8345,8211,8112,8028,7952,7901,7847,7748,7610,7436,7278,7159,7048,6949,6861,6794,6740,6709,6676,6663,6628,6636,6660,6645,6502,6174,5767,5142,21.2,21.2,21.7,1568112,0.6,12.1,11.9,5.0,599,-1.00,-1.00,56.7589,-18.797885,0.000539,,,,,10 +SATSLF0720,2024246,10.009877,4.17,0.0585,0.1005,0.0160,0.00,16227,642,1,682,699,690,695,707,709,713,707,722,709,715,729,764,885,1223,1969,3171,4566,5813,6734,7378,7851,8246,8703,9232,9857,10602,11485,12484,13613,14806,15973,17094,18057,18778,19200,19351,19169,18795,18257,17657,17082,16616,16259,16020,15949,16041,16293,16682,17281,18020,18944,20017,21253,22590,24045,25530,27019,28442,29691,30711,31453,31858,31874,31541,30886,29960,28894,27643,26441,25269,24187,23184,22313,21579,20967,20496,20090,19817,19642,19548,19546,19656,19840,20106,20463,20884,21416,21992,22612,23278,23939,24545,25109,25598,25965,26229,26261,26133,25865,25377,24748,24024,23204,22331,21441,20597,19827,19122,18469,17911,17425,17024,16707,16468,16282,16196,16146,16162,16258,16409,16637,16930,17303,17739,18224,18802,19421,20061,20729,21474,22229,22993,23720,24420,25078,25675,26249,26656,26984,27236,27337,27349,27258,27041,26715,26305,25805,25243,24653,24021,23369,22714,22036,21401,20790,20188,19621,19137,18652,18259,17886,17566,17278,16999,16745,16533,16330,16137,15941,15738,15598,15449,15342,15253,15173,15099,15044,15029,15031,15035,15059,15072,15111,15166,15194,15239,15298,15307,15325,15321,15332,15353,15370,15370,15360,15317,15252,15185,15114,15033,14941,14789,14647,14461,14265,14067,13856,13606,13344,13068,12790,12490,12194,11902,11605,11342,11089,10847,10619,10344,10039,9718,9415,9117,8875,8663,8501,8333,8201,8111,8041,7959,7924,7844,7754,7613,7432,7275,7143,7025,6946,6862,6800,6734,6695,6680,6665,6637,6639,6653,6651,6506,6203,5764,5128,21.2,21.2,21.8,1568113,0.6,12.1,11.9,5.0,495,-1.00,-1.00,56.7847,-18.756366,0.000558,,,,,82 +SATSLF0720,2024246,10.010136,4.17,0.0584,0.1003,0.0153,0.00,16236,642,1,699,690,694,702,693,698,723,710,723,718,723,723,759,870,1224,1974,3162,4558,5805,6743,7385,7853,8281,8705,9233,9863,10621,11500,12497,13605,14807,15994,17110,18080,18809,19245,19373,19173,18804,18265,17653,17099,16630,16279,16045,15973,16058,16307,16700,17301,18034,18958,20052,21272,22593,24063,25549,27050,28469,29747,30741,31505,31904,31897,31584,30917,29981,28928,27673,26465,25284,24221,23209,22361,21609,20978,20493,20106,19819,19655,19553,19571,19657,19865,20117,20471,20906,21437,22007,22625,23298,23953,24566,25142,25611,25977,26248,26298,26162,25882,25412,24765,24041,23243,22371,21489,20621,19844,19131,18480,17925,17437,17037,16697,16466,16293,16193,16149,16161,16265,16422,16643,16960,17328,17749,18241,18827,19426,20059,20753,21491,22238,22983,23723,24423,25100,25690,26263,26682,27012,27245,27333,27339,27245,27049,26724,26324,25851,25269,24677,24026,23381,22707,22032,21408,20780,20200,19649,19140,18669,18261,17895,17548,17263,16997,16752,16550,16344,16162,15955,15777,15605,15457,15341,15243,15161,15099,15050,15034,15023,15033,15056,15073,15115,15155,15190,15241,15289,15307,15325,15339,15337,15364,15369,15371,15358,15317,15234,15207,15129,15040,14921,14787,14646,14477,14276,14073,13862,13613,13348,13074,12786,12483,12187,11886,11605,11344,11093,10844,10625,10354,10026,9719,9393,9120,8869,8668,8488,8331,8220,8114,8031,7954,7896,7829,7738,7591,7424,7274,7141,7025,6935,6856,6789,6722,6683,6654,6654,6635,6630,6650,6656,6505,6184,5763,5125,21.3,21.3,21.8,1568114,0.6,12.1,11.9,5.0,484,-1.00,-1.00,56.8298,-18.795165,0.000582,,,,,98 +SATSLF0720,2024246,10.010389,4.21,0.0590,0.1013,0.0161,0.00,16205,642,1,681,687,700,681,692,701,697,708,698,703,707,725,753,882,1238,1968,3171,4562,5803,6720,7375,7845,8266,8709,9216,9844,10606,11476,12491,13608,14804,15966,17081,18045,18762,19199,19334,19147,18772,18217,17627,17076,16603,16249,16020,15955,16013,16263,16679,17261,18011,18927,19991,21224,22541,24012,25501,26995,28429,29672,30669,31433,31808,31821,31492,30838,29915,28837,27611,26417,25250,24178,23156,22290,21546,20951,20456,20058,19770,19605,19512,19521,19620,19806,20082,20428,20864,21381,21953,22579,23250,23894,24500,25082,25553,25908,26169,26233,26112,25845,25358,24712,23978,23179,22295,21416,20553,19792,19105,18432,17882,17399,16997,16685,16431,16258,16157,16106,16129,16221,16385,16616,16912,17287,17729,18213,18782,19405,20033,20721,21441,22198,22936,23658,24380,25021,25613,26198,26621,26930,27184,27290,27318,27213,27004,26686,26269,25769,25206,24610,23969,23312,22654,21995,21363,20761,20170,19597,19102,18621,18209,17853,17527,17239,16971,16729,16521,16322,16122,15937,15736,15577,15424,15320,15208,15123,15059,14998,14999,15011,15005,15024,15065,15090,15133,15170,15226,15289,15287,15300,15303,15307,15327,15356,15345,15333,15287,15232,15180,15098,15006,14909,14771,14629,14456,14260,14051,13837,13602,13337,13060,12777,12477,12184,11875,11595,11337,11070,10842,10589,10328,10021,9713,9398,9115,8873,8657,8474,8327,8185,8088,8012,7940,7893,7832,7762,7609,7432,7269,7127,7025,6913,6824,6755,6711,6693,6670,6659,6642,6634,6651,6638,6491,6188,5754,5149,21.3,21.3,21.9,1568115,0.6,12.1,11.9,5.0,482,-1.00,-1.00,56.4662,-18.599712,0.000540,,,,,142 +SATSLF0720,2024246,10.010646,4.20,0.0588,0.1008,0.0166,0.00,16220,642,1,702,685,695,711,714,710,716,722,738,721,731,731,773,877,1230,1979,3179,4557,5806,6736,7373,7842,8269,8713,9249,9877,10628,11509,12493,13625,14795,15970,17094,18058,18786,19218,19354,19154,18784,18240,17651,17093,16621,16265,16029,15966,16040,16295,16697,17280,18021,18931,20002,21250,22570,24037,25521,27018,28442,29695,30698,31466,31861,31859,31522,30876,29945,28875,27639,26448,25269,24192,23182,22322,21576,20977,20457,20089,19803,19633,19533,19537,19642,19828,20104,20453,20887,21416,21990,22608,23280,23917,24519,25098,25564,25928,26193,26240,26139,25858,25381,24747,24009,23224,22345,21456,20609,19827,19126,18467,17906,17421,17030,16694,16445,16274,16177,16128,16161,16245,16388,16643,16930,17288,17741,18221,18788,19408,20045,20733,21467,22211,22946,23680,24392,25064,25644,26220,26634,26963,27220,27313,27340,27240,27021,26682,26293,25796,25227,24630,23985,23336,22681,22018,21383,20761,20167,19617,19117,18647,18231,17857,17543,17239,16965,16728,16532,16323,16125,15949,15745,15595,15450,15327,15233,15154,15080,15050,15038,15021,15026,15053,15065,15113,15145,15180,15226,15286,15302,15306,15321,15335,15347,15351,15358,15357,15295,15231,15165,15099,15016,14917,14793,14638,14466,14274,14049,13845,13596,13335,13079,12792,12501,12201,11901,11615,11337,11081,10846,10595,10336,10041,9718,9410,9117,8875,8650,8487,8348,8200,8106,8016,7941,7895,7837,7736,7608,7410,7271,7137,7018,6922,6840,6779,6737,6689,6677,6655,6642,6628,6635,6635,6483,6190,5770,5140,21.3,21.3,21.9,1568116,0.7,12.1,11.9,5.0,475,-1.00,-1.00,56.5354,-18.648210,0.000510,,,,,148 +SATSLF0720,2024246,10.010903,4.11,0.0576,0.1014,0.0162,0.00,16197,642,1,697,695,709,697,708,708,721,724,727,726,721,709,759,870,1223,1970,3162,4555,5794,6736,7353,7835,8249,8705,9224,9846,10589,11467,12457,13573,14762,15944,17045,18016,18737,19192,19314,19141,18753,18220,17625,17069,16601,16230,15994,15917,15993,16246,16652,17237,17994,18910,19981,21206,22533,23986,25466,26955,28363,29634,30653,31400,31800,31786,31456,30802,29877,28808,27570,26379,25213,24144,23149,22282,21536,20942,20432,20047,19757,19594,19505,19509,19620,19812,20069,20411,20849,21361,21929,22541,23217,23877,24478,25064,25533,25907,26158,26214,26093,25814,25319,24682,23977,23162,22294,21418,20552,19787,19094,18443,17872,17418,16997,16684,16412,16243,16165,16114,16119,16236,16386,16627,16921,17287,17707,18200,18757,19383,20014,20713,21444,22189,22922,23655,24356,25019,25608,26194,26606,26933,27177,27297,27305,27200,26996,26657,26266,25764,25197,24628,23969,23332,22664,21991,21361,20752,20148,19600,19099,18627,18227,17846,17513,17223,16961,16704,16512,16310,16117,15921,15739,15590,15437,15326,15221,15128,15062,15024,15011,15002,15013,15029,15050,15081,15139,15157,15219,15262,15285,15286,15303,15317,15322,15352,15355,15347,15284,15240,15176,15096,15017,14906,14780,14619,14445,14263,14050,13829,13594,13335,13067,12773,12488,12197,11890,11602,11323,11072,10837,10596,10315,10034,9693,9395,9101,8862,8664,8486,8327,8201,8104,8017,7947,7905,7824,7749,7592,7414,7263,7134,7008,6923,6829,6775,6725,6693,6662,6651,6655,6635,6656,6641,6497,6185,5765,5137,21.3,21.4,21.9,1568117,0.4,12.1,12.0,5.0,484,-1.00,-1.00,56.6865,-18.669596,0.000586,,,,,81 +SATSLF0720,2024246,10.011155,4.35,0.0610,0.1020,0.0168,0.00,16180,642,1,704,695,698,685,700,704,701,720,721,721,722,724,766,872,1219,1965,3166,4558,5796,6723,7361,7833,8254,8690,9215,9838,10594,11454,12475,13588,14765,15933,17037,17989,18714,19149,19287,19109,18725,18189,17605,17042,16564,16203,15981,15917,16005,16254,16658,17232,17985,18884,19965,21178,22511,23959,25458,26944,28355,29615,30624,31378,31757,31787,31442,30787,29847,28774,27548,26368,25194,24109,23110,22252,21525,20892,20420,20045,19736,19578,19482,19484,19591,19779,20050,20400,20821,21341,21921,22528,23201,23837,24445,25035,25504,25873,26137,26181,26075,25780,25314,24670,23937,23142,22270,21398,20551,19789,19072,18411,17850,17381,16977,16652,16413,16231,16146,16082,16113,16201,16357,16595,16898,17256,17693,18184,18757,19367,20010,20704,21430,22169,22912,23621,24338,24997,25581,26153,26581,26889,27133,27241,27265,27165,26954,26624,26242,25736,25166,24582,23941,23289,22634,21970,21328,20728,20131,19577,19082,18600,18199,17826,17497,17214,16936,16682,16482,16275,16091,15904,15729,15545,15409,15305,15202,15129,15056,15002,14981,14993,14981,15009,15034,15077,15129,15149,15198,15241,15263,15281,15273,15288,15303,15326,15323,15325,15268,15200,15156,15078,14985,14900,14762,14610,14425,14240,14027,13812,13577,13306,13037,12764,12476,12173,11865,11580,11309,11057,10817,10597,10326,10024,9704,9393,9113,8864,8649,8469,8307,8183,8077,7995,7936,7884,7821,7730,7603,7413,7272,7127,7023,6909,6839,6770,6725,6694,6660,6641,6633,6629,6643,6637,6478,6165,5746,5120,21.3,21.3,21.9,1568118,0.0,12.1,12.0,5.0,482,-1.00,-1.00,56.1149,-18.419723,0.000529,,,,,102 +SATSLF0720,2024246,10.011412,4.16,0.0582,0.1030,0.0178,0.00,16140,642,1,689,691,688,699,690,696,709,708,717,704,702,715,745,866,1207,1949,3143,4525,5774,6695,7321,7785,8211,8664,9184,9787,10543,11413,12389,13517,14698,15853,16962,17931,18668,19089,19226,19031,18667,18128,17545,16980,16514,16136,15925,15854,15927,16197,16588,17171,17901,18824,19908,21126,22443,23890,25364,26856,28277,29536,30530,31283,31669,31661,31343,30692,29770,28727,27490,26308,25125,24053,23042,22185,21459,20838,20354,19965,19688,19544,19437,19450,19546,19746,19991,20349,20785,21305,21869,22481,23140,23783,24402,24984,25453,25816,26081,26141,26011,25738,25249,24617,23873,23081,22213,21342,20514,19736,19028,18371,17812,17345,16942,16621,16374,16200,16115,16044,16075,16154,16321,16555,16862,17221,17656,18149,18710,19315,19955,20660,21384,22129,22866,23576,24278,24934,25529,26077,26523,26845,27093,27211,27214,27109,26907,26578,26181,25689,25113,24532,23890,23249,22578,21933,21293,20683,20077,19539,19043,18561,18159,17787,17460,17164,16900,16660,16457,16258,16061,15876,15685,15518,15385,15272,15165,15086,15031,14981,14970,14980,14977,14988,15014,15045,15084,15107,15175,15210,15228,15246,15257,15262,15281,15298,15291,15287,15242,15189,15124,15059,14958,14861,14733,14580,14393,14210,13987,13787,13569,13302,13041,12754,12453,12149,11835,11559,11290,11037,10811,10568,10304,9997,9674,9372,9077,8821,8619,8433,8279,8159,8076,7993,7927,7874,7810,7714,7577,7397,7228,7104,6988,6887,6818,6746,6706,6669,6652,6642,6628,6609,6631,6621,6462,6157,5739,5110,21.3,21.4,22.0,1568119,0.1,12.1,12.0,5.0,480,-1.00,-1.00,57.4980,-18.943996,0.000546,,,,,246 +SATSLF0720,2024246,10.011666,4.24,0.0594,0.1023,0.0172,0.00,16178,642,1,693,696,698,688,699,702,711,721,712,715,719,730,765,885,1228,1965,3157,4537,5783,6712,7345,7831,8245,8688,9211,9837,10581,11456,12445,13558,14749,15932,17032,17993,18716,19162,19283,19110,18730,18185,17592,17031,16563,16197,15976,15913,15981,16229,16654,17240,17985,18896,19964,21184,22509,23952,25425,26926,28340,29607,30605,31349,31764,31762,31431,30784,29849,28788,27550,26359,25186,24104,23099,22254,21501,20885,20413,20005,19723,19573,19469,19475,19566,19764,20016,20377,20832,21344,21917,22528,23208,23845,24448,25027,25500,25856,26131,26178,26057,25784,25299,24673,23944,23155,22280,21412,20542,19780,19065,18410,17836,17387,16969,16644,16400,16241,16146,16097,16119,16208,16366,16601,16885,17262,17688,18192,18758,19372,20009,20695,21418,22164,22898,23623,24319,24985,25585,26157,26581,26893,27141,27243,27255,27150,26938,26615,26225,25725,25166,24583,23936,23288,22637,21965,21326,20720,20113,19561,19064,18603,18193,17834,17493,17193,16931,16705,16491,16285,16109,15917,15713,15559,15413,15301,15197,15122,15056,15012,14987,14995,14989,15015,15047,15085,15121,15145,15194,15243,15267,15285,15304,15305,15321,15333,15326,15321,15271,15194,15145,15064,14984,14896,14737,14601,14429,14235,14026,13815,13580,13315,13053,12761,12477,12177,11867,11602,11326,11075,10834,10596,10329,10016,9698,9370,9092,8855,8640,8474,8322,8178,8092,8033,7958,7894,7838,7733,7587,7411,7255,7126,7012,6909,6837,6775,6717,6683,6664,6642,6637,6617,6643,6635,6484,6187,5745,5119,21.3,21.4,22.0,1568120,0.0,12.0,11.9,5.0,472,-1.00,-1.00,56.5505,-18.596639,0.000509,,,,,15 +SATSLF0720,2024246,10.011921,4.30,0.0602,0.1065,0.0197,0.00,16041,642,1,709,713,712,715,707,711,728,713,725,730,725,745,774,878,1225,1953,3115,4487,5709,6619,7237,7693,8110,8556,9074,9685,10423,11285,12295,13357,14535,15697,16808,17749,18473,18893,19029,18839,18471,17940,17367,16814,16357,16000,15783,15723,15797,16027,16435,17021,17764,18645,19714,20922,22241,23694,25168,26638,28044,29285,30286,31026,31414,31417,31096,30450,29533,28487,27254,26091,24938,23858,22874,22037,21296,20690,20196,19825,19548,19396,19285,19308,19405,19597,19846,20199,20641,21157,21709,22327,22990,23643,24238,24818,25286,25649,25909,25965,25842,25561,25085,24452,23749,22934,22086,21227,20362,19603,18917,18266,17716,17234,16839,16509,16288,16104,15987,15952,15974,16058,16235,16466,16765,17142,17564,18055,18613,19227,19853,20550,21257,22001,22726,23448,24146,24797,25387,25945,26373,26685,26945,27041,27048,26961,26773,26441,26056,25550,24997,24407,23780,23144,22496,21825,21189,20577,19978,19435,18932,18457,18052,17701,17377,17089,16823,16590,16392,16206,15997,15813,15629,15454,15312,15193,15072,15023,14956,14913,14899,14895,14910,14918,14943,14983,15026,15061,15109,15145,15169,15173,15198,15186,15218,15234,15236,15230,15190,15126,15060,14980,14894,14810,14665,14504,14335,14141,13947,13721,13511,13254,12980,12711,12404,12086,11791,11504,11232,10971,10746,10509,10240,9962,9643,9337,9066,8810,8612,8441,8273,8137,8046,7971,7890,7834,7763,7675,7551,7362,7216,7093,6978,6872,6803,6747,6685,6641,6626,6613,6591,6582,6591,6599,6444,6152,5721,5120,21.3,21.4,22.0,1568121,0.0,12.1,11.9,5.0,478,-1.00,-1.00,58.2956,-19.124624,0.000601,,,,,50 +SATSLF0720,2024246,10.012177,4.24,0.0594,0.1032,0.0176,0.00,16143,642,1,701,697,699,707,699,705,717,714,725,727,724,730,763,890,1233,1976,3152,4547,5782,6697,7326,7797,8215,8662,9161,9783,10520,11402,12394,13527,14684,15850,16960,17908,18645,19077,19213,19028,18666,18126,17539,16972,16491,16136,15927,15844,15933,16179,16593,17161,17907,18821,19888,21098,22423,23882,25353,26850,28278,29525,30521,31243,31655,31650,31325,30674,29746,28694,27468,26273,25113,24049,23045,22173,21453,20829,20345,19960,19674,19510,19429,19446,19529,19714,19986,20331,20758,21282,21840,22468,23134,23796,24389,24973,25456,25815,26083,26134,26016,25735,25246,24618,23883,23091,22218,21355,20509,19744,19051,18396,17831,17355,16937,16635,16368,16197,16100,16049,16083,16174,16337,16559,16863,17230,17657,18130,18715,19318,19965,20656,21382,22125,22866,23573,24289,24950,25550,26105,26509,26850,27104,27211,27210,27126,26909,26569,26187,25694,25133,24526,23901,23253,22597,21928,21304,20680,20109,19536,19037,18565,18169,17797,17455,17159,16893,16660,16471,16265,16079,15888,15710,15534,15394,15275,15165,15096,15029,15001,14973,14961,14978,15000,15031,15052,15091,15115,15185,15226,15255,15269,15254,15276,15294,15304,15314,15291,15252,15203,15129,15051,14959,14869,14731,14586,14413,14218,14021,13786,13555,13296,13041,12754,12457,12163,11859,11577,11296,11061,10802,10583,10316,10005,9701,9373,9095,8842,8627,8458,8301,8171,8077,7983,7925,7871,7821,7725,7571,7387,7242,7117,7003,6915,6827,6765,6723,6674,6649,6639,6612,6615,6632,6622,6489,6166,5739,5118,21.4,21.4,22.1,1568122,0.4,12.1,12.0,5.0,482,-1.00,-1.00,57.0178,-18.731193,0.000571,,,,,53 +SATSLF0720,2024246,10.012430,4.12,0.0578,0.1042,0.0184,0.00,16114,642,1,685,687,700,707,704,711,712,717,717,721,719,734,762,887,1230,1971,3144,4528,5762,6685,7319,7795,8213,8650,9165,9778,10525,11381,12384,13506,14685,15854,16949,17912,18634,19053,19191,19003,18629,18094,17501,16949,16474,16118,15879,15815,15911,16154,16559,17138,17878,18784,19846,21063,22391,23832,25310,26787,28217,29453,30464,31209,31604,31601,31294,30632,29701,28651,27421,26229,25079,23990,23000,22134,21402,20782,20301,19916,19636,19477,19384,19387,19488,19683,19939,20285,20730,21235,21815,22437,23106,23749,24341,24925,25397,25761,26025,26096,25954,25686,25194,24562,23833,23039,22165,21293,20453,19704,18997,18341,17785,17312,16916,16601,16355,16164,16075,16040,16045,16153,16310,16538,16822,17188,17614,18101,18678,19285,19930,20608,21337,22087,22829,23542,24233,24896,25479,26053,26461,26790,27033,27159,27160,27070,26848,26551,26150,25648,25080,24497,23861,23214,22545,21878,21250,20637,20041,19482,19008,18538,18144,17768,17429,17161,16882,16641,16432,16245,16052,15847,15673,15497,15360,15245,15144,15069,14990,14949,14951,14946,14953,14973,14998,15033,15069,15103,15147,15197,15218,15229,15249,15253,15273,15289,15297,15278,15223,15166,15102,15032,14932,14845,14708,14560,14393,14197,13995,13773,13533,13279,13015,12732,12426,12121,11828,11545,11270,11024,10788,10536,10280,9980,9671,9367,9083,8838,8623,8441,8295,8161,8067,7982,7920,7865,7804,7719,7569,7377,7229,7100,6990,6894,6819,6759,6708,6662,6643,6635,6617,6614,6618,6610,6452,6163,5717,5115,21.3,21.4,22.1,1568123,0.5,12.1,11.9,5.0,483,-1.00,-1.00,57.5343,-18.915660,0.000559,,,,,112 +SATSLF0720,2024246,10.012682,4.27,0.0598,0.1038,0.0184,0.00,16124,642,1,696,699,703,695,690,697,699,702,729,725,712,731,761,880,1217,1973,3144,4533,5766,6665,7319,7772,8201,8638,9159,9781,10520,11396,12389,13489,14663,15838,16935,17895,18614,19054,19199,19005,18651,18110,17513,16948,16482,16121,15877,15833,15913,16159,16563,17155,17902,18814,19884,21096,22392,23857,25339,26821,28236,29484,30485,31232,31607,31628,31293,30641,29710,28677,27434,26250,25095,23995,23011,22153,21430,20812,20315,19923,19644,19482,19401,19405,19511,19692,19966,20314,20725,21245,21822,22429,23099,23754,24369,24949,25420,25786,26043,26101,25978,25686,25207,24577,23856,23053,22200,21332,20481,19716,19009,18365,17810,17335,16925,16609,16341,16187,16089,16041,16057,16151,16320,16546,16842,17204,17653,18133,18704,19285,19936,20616,21348,22087,22821,23551,24260,24929,25514,26085,26505,26825,27069,27176,27190,27090,26888,26548,26150,25664,25094,24502,23861,23207,22561,21906,21274,20681,20077,19529,19037,18555,18159,17777,17441,17157,16888,16640,16442,16243,16066,15875,15680,15520,15384,15248,15163,15065,15009,14970,14958,14957,14960,14990,15015,15049,15085,15109,15161,15216,15229,15221,15249,15250,15282,15290,15289,15281,15227,15169,15104,15031,14957,14858,14727,14573,14402,14209,13988,13774,13539,13280,13013,12725,12446,12158,11861,11562,11307,11050,10792,10563,10295,9994,9664,9344,9056,8808,8613,8446,8301,8172,8081,8002,7923,7876,7810,7709,7557,7389,7229,7112,7002,6909,6820,6737,6701,6656,6648,6629,6631,6605,6631,6621,6468,6172,5741,5124,21.4,21.4,22.1,1568124,0.7,12.1,12.0,5.0,479,-1.00,-1.00,57.0238,-18.715906,0.000594,,,,,150 +SATSLF0720,2024246,10.012938,4.18,0.0585,0.1048,0.0191,0.00,16097,642,1,701,704,710,703,713,713,709,711,731,725,730,735,753,892,1232,1976,3147,4537,5777,6681,7316,7785,8197,8646,9161,9768,10510,11383,12385,13488,14662,15834,16940,17899,18605,19056,19171,18985,18606,18061,17468,16924,16467,16101,15866,15803,15880,16132,16544,17113,17871,18766,19836,21053,22363,23813,25296,26775,28194,29428,30425,31173,31575,31554,31236,30583,29671,28611,27385,26196,25051,23968,22970,22120,21382,20770,20285,19890,19608,19457,19358,19374,19466,19669,19917,20258,20699,21211,21760,22391,23053,23697,24326,24917,25378,25738,25986,26039,25921,25633,25160,24535,23824,23029,22155,21287,20451,19669,18967,18325,17762,17283,16885,16579,16330,16160,16051,16017,16036,16142,16294,16529,16815,17165,17597,18083,18656,19253,19905,20586,21321,22061,22804,23506,24219,24871,25453,26034,26450,26771,27018,27112,27127,27037,26813,26490,26089,25623,25041,24467,23835,23195,22533,21869,21236,20614,20020,19469,18978,18501,18107,17759,17410,17121,16864,16616,16428,16208,16014,15833,15650,15468,15351,15241,15147,15062,14989,14949,14931,14935,14933,14949,14973,15017,15043,15063,15133,15188,15204,15219,15229,15241,15253,15273,15281,15268,15208,15149,15081,15006,14936,14834,14708,14550,14381,14189,13978,13760,13510,13253,12997,12690,12412,12131,11835,11556,11272,11021,10785,10562,10285,9989,9658,9361,9070,8817,8609,8433,8296,8148,8055,7960,7907,7873,7802,7705,7570,7394,7233,7102,6990,6909,6814,6747,6691,6649,6638,6623,6619,6618,6630,6621,6477,6154,5730,5111,21.4,21.5,22.1,1568124,0.7,12.1,11.9,5.0,477,-1.00,-1.00,57.2923,-18.793309,0.000620,,,,,119 +SATSLF0720,2024246,10.013191,4.23,0.0593,0.1044,0.0185,0.00,16105,642,1,708,708,705,713,705,711,702,707,727,721,727,735,777,889,1229,1961,3163,4521,5763,6675,7331,7785,8198,8643,9168,9780,10530,11382,12389,13491,14665,15825,16922,17899,18614,19053,19181,19005,18621,18102,17493,16931,16475,16105,15885,15824,15897,16145,16562,17133,17879,18784,19844,21059,22384,23822,25297,26774,28189,29447,30446,31190,31589,31573,31254,30601,29683,28617,27389,26202,25047,23961,22977,22135,21388,20810,20304,19915,19632,19469,19375,19396,19485,19669,19926,20274,20723,21226,21797,22409,23064,23717,24328,24901,25397,25744,26006,26062,25949,25677,25197,24549,23837,23049,22161,21305,20453,19692,18981,18335,17777,17321,16912,16589,16339,16179,16073,16026,16053,16141,16294,16520,16811,17179,17605,18075,18644,19272,19904,20604,21317,22070,22809,23516,24224,24877,25472,26038,26457,26777,27017,27126,27130,27042,26814,26486,26104,25607,25043,24471,23843,23209,22536,21872,21252,20641,20046,19481,18984,18525,18125,17750,17432,17132,16858,16627,16437,16229,16035,15838,15644,15476,15348,15233,15145,15066,14998,14953,14926,14939,14938,14957,14998,15016,15069,15086,15133,15191,15205,15214,15236,15245,15253,15274,15269,15266,15214,15136,15099,15026,14944,14841,14713,14552,14375,14207,13973,13763,13535,13271,12999,12716,12421,12125,11833,11543,11273,11031,10780,10554,10282,9983,9669,9356,9061,8840,8617,8433,8279,8157,8062,7985,7915,7861,7789,7707,7571,7395,7236,7113,6999,6905,6821,6745,6693,6645,6626,6612,6603,6606,6620,6635,6469,6166,5734,5117,21.4,21.5,22.1,1568125,0.7,12.1,12.0,5.0,478,-1.00,-1.00,56.7863,-18.589692,0.000567,,,,,38 +SATSLF0720,2024246,10.013442,4.24,0.0593,0.1050,0.0193,0.00,16090,642,1,704,705,706,701,711,721,719,714,727,723,727,738,773,886,1229,1974,3150,4520,5767,6668,7320,7787,8201,8637,9154,9778,10509,11373,12368,13469,14656,15817,16913,17862,18597,19010,19159,18976,18615,18074,17475,16922,16456,16098,15862,15796,15876,16130,16545,17121,17865,18756,19818,21030,22341,23810,25265,26752,28170,29418,30420,31148,31558,31549,31236,30577,29667,28598,27362,26174,25016,23959,22964,22097,21369,20749,20265,19899,19597,19442,19350,19353,19463,19653,19900,20248,20676,21200,21776,22393,23063,23693,24316,24881,25360,25721,25977,26045,25918,25639,25162,24522,23805,23015,22138,21273,20430,19664,18973,18327,17762,17301,16891,16583,16313,16151,16061,16019,16040,16132,16281,16503,16806,17156,17603,18078,18641,19257,19897,20588,21297,22043,22775,23499,24199,24848,25445,26013,26440,26757,27013,27114,27115,27024,26832,26476,26091,25609,25045,24465,23805,23166,22523,21838,21225,20605,20015,19450,18977,18504,18097,17749,17420,17122,16848,16619,16422,16214,16021,15829,15642,15467,15337,15213,15118,15055,14981,14939,14928,14921,14934,14966,14984,15011,15045,15073,15130,15185,15213,15215,15243,15226,15246,15258,15252,15241,15195,15127,15075,14992,14923,14827,14701,14552,14373,14188,13969,13762,13525,13266,12992,12707,12419,12122,11835,11533,11271,11009,10772,10531,10275,9956,9637,9347,9068,8824,8609,8433,8283,8138,8062,7988,7894,7855,7797,7713,7563,7377,7230,7104,6986,6890,6811,6757,6685,6657,6627,6625,6611,6602,6618,6603,6452,6165,5729,5111,21.4,21.5,22.2,1568126,0.5,12.1,11.9,5.0,477,-1.00,-1.00,57.0097,-18.666192,0.000568,,,,,124 +SATSLF0720,2024246,10.013697,4.28,0.0600,0.1050,0.0192,0.00,16084,642,1,684,687,702,708,708,712,715,715,726,714,717,713,766,882,1207,1963,3154,4526,5763,6670,7308,7776,8185,8609,9131,9750,10493,11362,12361,13470,14651,15789,16894,17851,18583,18999,19147,18958,18592,18057,17456,16900,16448,16074,15860,15785,15860,16101,16509,17097,17845,18741,19823,21036,22350,23798,25269,26750,28157,29405,30394,31132,31528,31517,31190,30548,29622,28567,27342,26176,25016,23938,22930,22083,21345,20741,20262,19876,19589,19439,19351,19357,19440,19651,19904,20263,20673,21195,21760,22367,23032,23687,24293,24875,25353,25717,25966,26027,25906,25638,25161,24517,23805,23017,22140,21262,20426,19670,18958,18320,17757,17282,16881,16570,16312,16138,16039,15994,16014,16112,16270,16491,16801,17160,17589,18083,18648,19253,19881,20576,21303,22045,22790,23517,24202,24856,25438,26012,26437,26754,27005,27097,27111,27015,26813,26489,26099,25581,25031,24439,23799,23163,22522,21854,21213,20605,20026,19466,18960,18502,18094,17733,17413,17117,16843,16619,16432,16212,16018,15821,15634,15461,15331,15208,15121,15050,14981,14948,14923,14929,14920,14952,14970,14999,15037,15053,15114,15176,15195,15211,15235,15229,15255,15258,15264,15257,15193,15137,15078,15001,14935,14843,14706,14557,14376,14194,13969,13766,13524,13261,12986,12705,12410,12130,11830,11536,11275,11019,10781,10549,10275,9970,9659,9353,9060,8823,8621,8437,8285,8147,8062,7980,7913,7877,7789,7703,7551,7383,7230,7095,6978,6882,6795,6739,6679,6648,6638,6630,6602,6601,6618,6606,6454,6155,5731,5120,21.4,21.6,22.2,1568127,0.0,12.2,11.9,5.0,479,-1.00,-1.00,56.9850,-18.642965,0.000635,,,,,152 +SATSLF0720,2024246,10.013950,4.55,0.0637,0.1054,0.0187,0.00,16083,642,1,710,702,701,710,708,701,707,723,725,726,719,737,770,890,1236,1966,3148,4507,5759,6669,7308,7764,8185,8619,9129,9746,10506,11352,12365,13465,14637,15786,16906,17829,18543,18976,19119,18938,18565,18036,17453,16906,16453,16094,15865,15778,15873,16117,16528,17092,17834,18743,19810,21035,22352,23794,25256,26729,28149,29400,30396,31137,31530,31526,31184,30551,29629,28565,27336,26144,25006,23910,22920,22061,21339,20745,20261,19858,19589,19437,19334,19359,19441,19650,19904,20246,20677,21202,21762,22384,23042,23689,24300,24860,25343,25704,25962,26023,25904,25637,25141,24509,23792,23005,22132,21276,20430,19673,18969,18331,17768,17285,16887,16566,16314,16145,16052,16006,16021,16114,16278,16503,16792,17175,17592,18080,18653,19257,19899,20579,21307,22049,22788,23497,24192,24842,25440,25989,26436,26741,26981,27102,27105,27027,26804,26483,26087,25607,25030,24445,23801,23156,22507,21847,21200,20591,20018,19457,18980,18506,18106,17737,17405,17111,16855,16601,16411,16202,16020,15824,15638,15480,15341,15210,15125,15041,14972,14930,14918,14913,14935,14954,14972,15022,15061,15073,15120,15191,15213,15209,15213,15220,15241,15260,15252,15236,15207,15147,15095,15012,14909,14835,14692,14549,14365,14174,13965,13765,13516,13254,12999,12711,12413,12122,11829,11539,11279,11030,10781,10565,10289,9988,9656,9352,9069,8817,8612,8432,8300,8153,8059,7991,7909,7859,7785,7692,7564,7376,7225,7089,6973,6886,6810,6738,6695,6650,6633,6628,6610,6597,6627,6624,6465,6155,5739,5121,21.4,21.6,22.2,1568128,0.3,12.1,12.0,5.0,478,-1.00,-1.00,56.0997,-18.271855,0.000571,,,,,189 +SATSLF0720,2024246,10.014202,4.24,0.0594,0.1062,0.0196,0.00,16058,642,1,706,713,714,721,725,715,713,715,724,737,727,741,777,900,1220,1965,3153,4517,5748,6661,7285,7759,8175,8619,9126,9751,10480,11351,12340,13437,14608,15769,16869,17815,18528,18963,19098,18930,18550,18016,17433,16877,16416,16053,15817,15747,15837,16080,16488,17062,17821,18714,19764,20987,22304,23738,25218,26672,28100,29348,30344,31073,31467,31467,31138,30486,29568,28535,27296,26130,24970,23910,22917,22060,21317,20702,20218,19834,19543,19387,19299,19314,19414,19601,19861,20217,20650,21161,21718,22352,23005,23645,24264,24826,25307,25666,25931,25969,25862,25582,25105,24467,23750,22971,22113,21243,20399,19620,18940,18290,17728,17255,16853,16541,16296,16128,16011,15974,15993,16099,16257,16487,16781,17141,17574,18052,18608,19225,19849,20536,21266,21997,22744,23437,24147,24797,25397,25944,26374,26713,26953,27058,27067,26968,26759,26429,26046,25553,24987,24396,23768,23123,22486,21812,21196,20581,19988,19437,18933,18476,18073,17702,17372,17085,16833,16592,16383,16179,16001,15792,15613,15453,15319,15189,15107,15021,14944,14910,14896,14900,14907,14938,14955,14989,15035,15050,15095,15159,15168,15193,15198,15190,15211,15233,15233,15223,15169,15121,15063,15001,14897,14827,14686,14528,14354,14147,13949,13741,13501,13241,12964,12687,12400,12110,11811,11530,11253,11009,10758,10531,10271,9958,9648,9347,9049,8806,8595,8429,8282,8148,8043,7977,7901,7845,7768,7689,7542,7378,7218,7093,6986,6877,6808,6737,6681,6641,6630,6609,6609,6601,6602,6602,6454,6146,5725,5102,21.4,21.6,22.2,1568129,0.4,12.1,12.0,5.0,477,-1.00,-1.00,57.2997,-18.739937,0.000565,,,,,39 +SATSLF0720,2024246,10.014457,4.28,0.0600,0.1072,0.0211,0.00,16022,642,1,688,691,709,709,713,725,713,735,721,721,721,721,758,877,1227,1965,3141,4520,5749,6648,7303,7751,8166,8607,9128,9721,10462,11325,12314,13419,14587,15757,16858,17802,18497,18930,19059,18892,18512,17988,17390,16847,16392,16029,15805,15719,15799,16050,16467,17037,17767,18682,19725,20951,22256,23700,25154,26632,28043,29288,30281,31017,31405,31395,31081,30412,29525,28468,27248,26061,24905,23847,22845,22018,21258,20661,20178,19799,19514,19360,19258,19275,19365,19563,19813,20169,20596,21114,21677,22281,22947,23581,24198,24776,25226,25595,25866,25936,25808,25536,25058,24427,23705,22922,22044,21195,20357,19594,18880,18243,17690,17223,16805,16504,16240,16089,15997,15960,15970,16055,16211,16450,16748,17094,17527,18010,18567,19166,19815,20484,21200,21943,22679,23391,24081,24741,25341,25882,26309,26626,26880,26989,27008,26913,26705,26365,25987,25485,24925,24338,23702,23059,22423,21762,21133,20517,19939,19398,18905,18429,18027,17659,17347,17064,16797,16557,16347,16134,15945,15753,15570,15410,15273,15153,15063,14998,14918,14880,14861,14861,14861,14878,14906,14945,14986,15022,15074,15108,15141,15140,15143,15172,15180,15195,15198,15195,15136,15092,15013,14951,14862,14775,14627,14484,14312,14126,13909,13709,13465,13206,12937,12665,12381,12098,11796,11509,11237,10985,10748,10493,10239,9949,9616,9302,9013,8791,8574,8401,8238,8132,8029,7964,7885,7839,7762,7678,7527,7357,7207,7077,6965,6879,6791,6737,6670,6631,6610,6606,6573,6570,6585,6585,6437,6140,5717,5101,21.4,21.6,22.2,1568130,0.0,12.1,12.0,5.0,468,-1.00,-1.00,57.0885,-18.614031,0.000563,,,,,36 +SATSDF0720,2024246,10.259138,0.00,0.0000,0.0000,0.0000,0.00,640,0,1,623,613,617,617,624,610,628,621,615,605,618,610,613,625,610,620,626,625,638,630,627,619,635,642,636,647,643,637,640,638,638,635,632,639,633,636,642,645,644,654,650,649,643,649,641,641,651,661,650,643,637,647,657,644,638,645,642,639,652,659,652,660,649,647,644,646,652,638,641,647,635,639,644,642,638,657,648,654,651,634,644,637,629,643,645,653,645,651,664,647,647,638,645,645,626,644,645,634,631,621,633,647,646,642,647,643,636,645,649,636,637,643,649,649,634,642,659,648,638,647,628,631,633,637,645,638,640,652,629,631,639,643,646,641,648,635,647,645,625,631,640,641,642,633,624,647,645,638,654,654,643,647,640,634,640,640,646,656,653,654,653,646,638,635,637,640,634,633,630,647,644,648,649,658,634,637,647,633,635,631,639,625,638,647,649,643,643,634,640,636,628,629,640,637,635,640,645,645,633,627,639,636,628,634,647,653,648,639,647,649,660,641,636,635,634,632,635,640,637,647,640,645,639,643,647,653,649,642,644,631,635,641,625,627,647,643,642,640,645,641,635,647,649,641,647,641,642,633,623,635,642,637,640,646,634,466,0.0,0.0,0.0,1568129,0.1,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,181 +SATSLF0720,2024246,10.259693,4.23,0.0592,0.1008,0.0160,0.00,16230,640,1,695,684,697,709,700,707,693,694,711,726,711,725,756,895,1226,1972,3165,4563,5810,6726,7387,7858,8281,8731,9249,9890,10628,11509,12502,13630,14804,15995,17109,18076,18807,19243,19370,19189,18793,18266,17666,17098,16637,16271,16044,15970,16056,16312,16714,17296,18049,18964,20043,21274,22595,24055,25549,27040,28486,29725,30743,31493,31888,31877,31554,30893,29965,28905,27668,26487,25310,24214,23205,22337,21589,20992,20485,20094,19799,19635,19531,19559,19651,19860,20112,20458,20894,21437,21992,22605,23277,23936,24529,25111,25593,25953,26243,26293,26177,25877,25400,24746,24013,23207,22342,21461,20600,19843,19131,18475,17898,17437,17011,16687,16455,16284,16178,16143,16171,16245,16419,16641,16945,17325,17749,18245,18805,19418,20060,20739,21476,22219,22961,23703,24398,25079,25659,26243,26656,27001,27246,27333,27354,27255,27050,26715,26327,25830,25257,24666,24018,23379,22697,22017,21379,20776,20193,19633,19143,18662,18250,17883,17541,17248,16970,16733,16535,16346,16156,15969,15766,15607,15447,15331,15235,15157,15078,15041,15035,15017,15043,15061,15079,15131,15157,15188,15233,15283,15291,15309,15315,15330,15338,15365,15356,15349,15302,15235,15181,15111,15016,14930,14794,14630,14464,14273,14056,13849,13610,13338,13077,12781,12485,12198,11896,11626,11341,11086,10848,10606,10337,10039,9715,9393,9108,8864,8670,8485,8325,8196,8096,8019,7946,7911,7826,7736,7591,7414,7273,7140,7031,6931,6844,6761,6717,6679,6672,6656,6647,6633,6658,6649,6493,6181,5747,5125,21.2,21.2,21.7,1568130,0.5,12.1,12.0,5.0,600,-1.00,-1.00,56.3595,-18.595304,0.000501,,,,,39 +SATSLF0720,2024246,10.259874,4.19,0.0587,0.1010,0.0162,0.00,16209,640,1,698,698,696,697,682,705,713,713,709,704,723,726,750,883,1237,1977,3169,4558,5788,6707,7351,7834,8246,8697,9223,9838,10595,11470,12477,13587,14769,15938,17059,18037,18748,19173,19324,19141,18761,18217,17623,17066,16599,16237,15991,15923,15994,16254,16669,17241,18007,18922,20005,21230,22568,24002,25507,26984,28412,29664,30679,31431,31828,31820,31505,30826,29911,28854,27603,26425,25258,24187,23173,22301,21579,20947,20471,20081,19778,19617,19524,19532,19630,19811,20075,20436,20873,21387,21974,22585,23249,23888,24501,25086,25561,25924,26193,26244,26119,25841,25352,24712,24003,23194,22317,21432,20581,19813,19110,18458,17877,17419,16998,16685,16445,16265,16163,16113,16145,16231,16403,16634,16917,17298,17714,18213,18786,19399,20049,20732,21471,22213,22954,23669,24372,25043,25643,26210,26637,26945,27201,27319,27319,27246,27017,26692,26292,25799,25233,24634,23998,23353,22690,22017,21399,20777,20181,19616,19112,18641,18231,17860,17519,17242,16970,16731,16520,16315,16129,15941,15745,15575,15441,15329,15236,15149,15088,15036,15017,15009,15018,15050,15066,15111,15153,15174,15222,15287,15288,15313,15309,15303,15344,15346,15347,15343,15299,15230,15176,15104,15013,14914,14775,14619,14451,14256,14049,13840,13586,13332,13061,12778,12477,12185,11895,11600,11339,11093,10846,10610,10324,10032,9701,9384,9091,8855,8645,8477,8311,8199,8102,8033,7950,7905,7833,7739,7604,7429,7264,7137,7020,6926,6846,6790,6737,6689,6658,6649,6635,6613,6646,6647,6482,6171,5749,5115,21.2,21.2,21.8,1568131,0.7,12.1,12.0,5.0,497,-1.00,-1.00,56.9536,-18.805575,0.000608,,,,,89 +SATSLF0720,2024246,10.260133,4.17,0.0584,0.1009,0.0168,0.00,16204,640,1,692,695,693,697,699,692,703,697,706,712,721,736,756,871,1222,1972,3168,4554,5799,6721,7355,7835,8253,8709,9233,9847,10596,11467,12468,13585,14785,15940,17073,18018,18753,19197,19316,19136,18772,18217,17613,17058,16597,16237,16003,15925,16019,16262,16673,17257,17998,18914,19996,21222,22552,24006,25476,26977,28405,29671,30661,31424,31829,31832,31505,30851,29913,28842,27610,26397,25235,24145,23149,22293,21549,20946,20449,20055,19783,19626,19527,19533,19642,19838,20086,20420,20853,21389,21961,22573,23245,23886,24510,25096,25561,25931,26189,26220,26102,25825,25354,24701,23997,23170,22308,21429,20567,19803,19095,18426,17866,17406,16993,16667,16427,16262,16154,16112,16131,16222,16394,16628,16920,17261,17719,18200,18784,19396,20026,20726,21458,22200,22949,23664,24377,25030,25632,26189,26629,26950,27194,27298,27317,27229,26989,26678,26277,25771,25213,24621,23985,23341,22688,22011,21378,20768,20162,19605,19097,18626,18229,17859,17537,17237,16971,16725,16519,16297,16107,15927,15736,15574,15425,15322,15223,15153,15072,15029,15014,15002,15017,15038,15057,15086,15141,15176,15223,15285,15292,15301,15307,15316,15328,15347,15346,15333,15282,15230,15155,15095,15005,14900,14787,14628,14458,14254,14041,13828,13578,13331,13058,12781,12477,12181,11879,11602,11317,11073,10821,10589,10321,10015,9698,9372,9096,8852,8649,8487,8330,8205,8089,8013,7935,7890,7831,7729,7585,7412,7274,7145,7025,6909,6843,6782,6725,6673,6662,6642,6635,6613,6638,6637,6497,6173,5749,5141,21.2,21.2,21.8,1568132,0.6,12.2,12.0,5.0,485,-1.00,-1.00,56.8778,-18.771276,0.000575,,,,,22 +SATSLF0720,2024246,10.260386,4.10,0.0575,0.1019,0.0170,0.00,16180,640,1,695,700,705,693,711,701,705,697,701,706,705,720,759,890,1226,1977,3166,4535,5779,6706,7337,7811,8241,8682,9204,9825,10576,11457,12453,13567,14752,15921,17037,17994,18724,19147,19287,19107,18748,18192,17610,17031,16573,16198,15979,15898,15982,16232,16636,17210,17980,18878,19961,21192,22507,23979,25458,26950,28365,29619,30635,31378,31792,31780,31454,30793,29878,28810,27581,26366,25199,24113,23109,22257,21520,20917,20421,20024,19741,19566,19483,19499,19591,19799,20065,20407,20841,21373,21928,22530,23209,23849,24465,25046,25514,25888,26152,26202,26074,25804,25312,24682,23953,23157,22285,21408,20549,19790,19065,18417,17858,17385,16968,16649,16390,16221,16135,16093,16125,16212,16386,16617,16906,17259,17687,18173,18747,19367,20004,20695,21419,22160,22915,23632,24343,25001,25594,26161,26580,26914,27144,27258,27269,27179,26960,26633,26257,25749,25176,24587,23945,23290,22626,21959,21336,20713,20124,19573,19075,18610,18196,17833,17493,17208,16948,16696,16477,16275,16099,15907,15716,15557,15419,15296,15187,15109,15038,15001,14984,14984,14989,15006,15053,15078,15113,15143,15189,15253,15243,15262,15274,15282,15299,15330,15330,15332,15274,15206,15149,15065,14992,14890,14744,14589,14425,14240,14018,13807,13575,13303,13041,12746,12453,12169,11876,11594,11297,11074,10830,10594,10330,10025,9702,9387,9098,8861,8641,8466,8315,8171,8091,7998,7937,7874,7808,7713,7567,7415,7265,7130,7018,6930,6836,6779,6708,6679,6650,6627,6625,6609,6631,6633,6480,6171,5731,5119,21.3,21.3,21.9,1568133,0.5,12.1,11.9,5.0,485,-1.00,-1.00,57.4013,-18.964402,0.000616,,,,,246 +SATSLF0720,2024246,10.260643,4.20,0.0589,0.1013,0.0159,0.00,16207,640,1,690,689,690,683,701,705,708,717,721,729,731,724,770,877,1218,1969,3170,4557,5810,6730,7374,7841,8250,8699,9221,9843,10599,11473,12482,13600,14794,15950,17073,18029,18749,19191,19321,19127,18755,18226,17634,17064,16605,16235,16020,15934,16010,16270,16666,17273,18002,18907,19989,21223,22538,24005,25509,26993,28420,29677,30674,31425,31809,31809,31483,30833,29920,28855,27633,26418,25256,24163,23146,22290,21545,20933,20449,20052,19771,19617,19511,19527,19641,19812,20072,20428,20849,21370,21950,22567,23233,23869,24493,25081,25549,25926,26181,26235,26105,25834,25354,24709,23991,23194,22321,21438,20592,19813,19100,18456,17877,17409,17013,16682,16441,16265,16164,16123,16132,16220,16384,16631,16922,17289,17713,18202,18770,19392,20036,20726,21457,22206,22951,23666,24372,25037,25624,26210,26626,26949,27195,27282,27299,27205,26997,26662,26279,25783,25218,24624,23986,23329,22656,21998,21360,20759,20158,19600,19121,18632,18218,17860,17530,17237,16963,16712,16509,16318,16104,15929,15744,15576,15427,15319,15233,15146,15073,15052,15013,15019,15042,15047,15079,15110,15145,15175,15229,15273,15284,15290,15293,15299,15328,15354,15359,15345,15309,15237,15185,15100,15018,14922,14773,14623,14452,14266,14057,13824,13595,13339,13069,12775,12478,12193,11893,11597,11325,11067,10832,10597,10333,10027,9715,9413,9121,8865,8661,8477,8321,8206,8106,8033,7941,7899,7834,7741,7604,7427,7259,7135,7015,6916,6839,6781,6714,6694,6664,6653,6653,6637,6669,6649,6503,6199,5760,5138,21.3,21.3,21.9,1568134,0.5,12.2,11.9,5.0,484,-1.00,-1.00,56.7560,-18.722971,0.000519,,,,,134 +SATSLF0720,2024246,10.260898,4.16,0.0583,0.1017,0.0164,0.00,16185,640,1,707,701,704,711,709,703,716,716,727,720,737,739,767,878,1219,1973,3156,4534,5771,6699,7350,7838,8233,8699,9213,9851,10579,11471,12442,13572,14756,15920,17029,17990,18724,19169,19298,19114,18737,18198,17602,17030,16574,16210,15981,15911,15985,16242,16649,17237,17973,18891,19969,21200,22506,23973,25448,26954,28365,29629,30641,31389,31778,31773,31449,30802,29864,28805,27570,26373,25204,24125,23102,22243,21504,20900,20418,20022,19733,19576,19490,19523,19620,19790,20057,20402,20834,21335,21892,22518,23211,23861,24472,25053,25521,25889,26150,26194,26072,25802,25310,24680,23946,23149,22274,21406,20555,19767,19068,18429,17847,17391,16978,16656,16409,16241,16143,16099,16129,16213,16385,16613,16893,17270,17699,18192,18772,19374,20009,20692,21421,22161,22915,23625,24327,24996,25598,26153,26587,26912,27157,27264,27266,27179,26961,26641,26240,25751,25177,24592,23957,23307,22645,21972,21332,20727,20114,19575,19088,18614,18194,17843,17502,17217,16944,16695,16512,16308,16113,15912,15729,15560,15431,15293,15205,15138,15072,15025,15009,15002,15005,15026,15053,15089,15120,15145,15190,15257,15269,15267,15287,15277,15315,15338,15333,15345,15285,15223,15170,15089,14992,14887,14769,14609,14434,14243,14037,13816,13575,13322,13055,12779,12486,12193,11883,11594,11321,11068,10827,10599,10314,10019,9691,9369,9095,8860,8645,8475,8329,8185,8099,8021,7947,7881,7806,7731,7577,7403,7253,7121,7017,6914,6831,6771,6724,6670,6652,6662,6642,6634,6659,6641,6501,6185,5754,5133,21.3,21.3,21.9,1568135,0.3,12.1,12.0,5.0,484,-1.00,-1.00,56.9505,-18.776128,0.000571,,,,,86 +SATSLF0720,2024246,10.261151,4.21,0.0590,0.1032,0.0180,0.00,16141,640,1,683,683,692,693,708,707,705,701,710,730,714,723,765,877,1213,1963,3145,4523,5768,6675,7315,7802,8221,8665,9186,9802,10535,11416,12416,13530,14720,15873,16995,17940,18679,19108,19228,19059,18669,18129,17547,16978,16520,16148,15927,15861,15953,16186,16586,17186,17932,18832,19899,21127,22468,23893,25387,26864,28281,29541,30543,31274,31672,31692,31350,30704,29773,28718,27486,26301,25141,24068,23060,22211,21462,20845,20380,19967,19675,19523,19425,19441,19537,19713,20003,20345,20769,21286,21864,22473,23137,23799,24397,24983,25465,25819,26074,26112,26007,25728,25241,24608,23899,23101,22234,21341,20503,19740,19029,18374,17817,17349,16930,16616,16373,16202,16098,16058,16087,16165,16328,16563,16857,17213,17649,18114,18691,19309,19957,20628,21363,22101,22855,23577,24276,24931,25521,26100,26519,26843,27086,27203,27205,27116,26901,26581,26176,25680,25121,24532,23882,23238,22584,21920,21300,20677,20074,19527,19031,18553,18156,17778,17444,17161,16898,16668,16455,16264,16071,15877,15678,15517,15364,15251,15159,15082,15023,14976,14961,14965,14965,15003,15005,15049,15085,15125,15185,15237,15239,15243,15268,15252,15256,15289,15289,15277,15218,15185,15115,15040,14957,14861,14724,14578,14400,14210,14014,13800,13534,13287,13021,12734,12437,12149,11849,11553,11296,11040,10811,10577,10301,10007,9690,9377,9096,8834,8619,8445,8299,8156,8065,7981,7922,7863,7811,7720,7564,7404,7237,7109,6994,6893,6807,6739,6701,6664,6648,6632,6621,6601,6617,6613,6469,6172,5733,5113,21.3,21.3,21.9,1568136,0.0,12.1,11.9,5.0,474,-1.00,-1.00,57.0710,-18.770562,0.000580,,,,,141 +SATSLF0720,2024246,10.261410,4.22,0.0592,0.1029,0.0176,0.00,16153,640,1,701,705,711,713,706,697,694,698,709,703,717,717,764,878,1217,1974,3153,4535,5778,6694,7330,7805,8216,8683,9209,9822,10562,11440,12440,13538,14717,15882,16981,17952,18679,19106,19251,19058,18681,18155,17566,16989,16531,16169,15944,15869,15950,16213,16618,17177,17941,18848,19914,21131,22455,23912,25376,26883,28311,29564,30560,31318,31706,31723,31389,30720,29792,28725,27484,26322,25149,24075,23068,22204,21485,20876,20389,19989,19701,19536,19442,19457,19553,19737,20004,20361,20773,21299,21877,22510,23157,23797,24401,24979,25463,25833,26098,26146,26038,25756,25277,24635,23909,23113,22229,21364,20501,19739,19041,18377,17834,17376,16951,16619,16369,16212,16113,16065,16091,16190,16351,16577,16873,17241,17677,18156,18729,19336,19981,20666,21385,22119,22864,23581,24285,24961,25543,26112,26536,26866,27118,27204,27213,27125,26919,26589,26201,25696,25156,24557,23916,23274,22612,21934,21324,20688,20104,19545,19047,18577,18173,17805,17475,17177,16910,16679,16473,16267,16073,15878,15692,15528,15376,15272,15172,15086,15010,14988,14952,14967,14981,15002,15033,15057,15095,15127,15168,15235,15239,15249,15259,15276,15290,15321,15306,15307,15260,15191,15127,15058,14972,14871,14730,14584,14424,14218,14009,13798,13546,13287,13008,12737,12442,12148,11856,11569,11307,11049,10816,10577,10306,10013,9683,9377,9089,8845,8632,8466,8300,8173,8066,7996,7927,7882,7810,7717,7569,7397,7251,7117,7009,6905,6817,6767,6706,6671,6657,6648,6631,6609,6627,6635,6475,6158,5747,5121,21.3,21.4,21.9,1568137,0.0,12.1,11.9,5.0,477,-1.00,-1.00,56.9480,-18.730972,0.000580,,,,,204 +SATSLF0720,2024246,10.261664,4.13,0.0578,0.1033,0.0175,0.00,16152,640,1,695,697,705,698,715,712,726,717,727,725,731,729,765,887,1225,1973,3141,4551,5792,6700,7351,7821,8235,8674,9209,9828,10564,11434,12454,13560,14730,15887,17009,17965,18698,19107,19255,19060,18699,18165,17564,17006,16532,16171,15933,15867,15959,16194,16612,17180,17931,18845,19908,21131,22452,23897,25393,26897,28310,29555,30557,31307,31698,31701,31362,30709,29794,28744,27490,26314,25137,24061,23053,22205,21467,20865,20369,19980,19693,19532,19424,19447,19550,19741,19994,20362,20798,21312,21869,22493,23155,23805,24405,24987,25469,25829,26093,26149,26024,25737,25255,24636,23900,23110,22239,21373,20514,19745,19030,18379,17832,17348,16940,16629,16371,16212,16103,16065,16081,16167,16339,16578,16869,17242,17657,18146,18720,19345,19965,20658,21389,22129,22875,23585,24285,24936,25527,26091,26526,26845,27101,27219,27217,27132,26915,26589,26189,25681,25111,24533,23894,23241,22589,21925,21295,20696,20090,19539,19029,18567,18163,17783,17457,17175,16898,16664,16466,16261,16064,15881,15697,15505,15395,15275,15179,15103,15025,14985,14956,14972,14968,14983,15011,15056,15094,15136,15184,15232,15253,15265,15270,15264,15298,15317,15314,15301,15254,15188,15132,15049,14980,14874,14742,14599,14409,14231,14009,13793,13548,13285,13017,12741,12454,12153,11849,11573,11317,11069,10823,10572,10309,10008,9693,9370,9079,8839,8635,8464,8301,8170,8089,8001,7935,7877,7801,7709,7573,7402,7249,7125,7009,6906,6849,6769,6707,6671,6658,6642,6613,6625,6641,6633,6489,6189,5756,5141,21.3,21.4,22.0,1568138,1.4,12.1,12.0,5.0,475,-1.00,-1.00,57.1618,-18.817116,0.000580,,,,,215 +SATSLF0720,2024246,10.261918,4.29,0.0600,0.1032,0.0171,0.00,16150,640,1,692,714,709,705,723,721,725,721,717,727,725,732,767,875,1222,1961,3152,4535,5787,6688,7327,7810,8223,8667,9184,9802,10553,11419,12416,13541,14726,15873,16983,17940,18660,19095,19241,19053,18678,18151,17558,16982,16529,16167,15926,15863,15947,16198,16594,17191,17936,18842,19927,21142,22464,23892,25379,26864,28288,29542,30536,31299,31689,31691,31334,30702,29786,28717,27486,26305,25138,24053,23063,22205,21462,20861,20369,19977,19686,19529,19427,19433,19537,19735,19994,20353,20772,21305,21853,22464,23137,23790,24401,24992,25464,25829,26097,26145,26029,25745,25264,24632,23890,23093,22230,21348,20512,19742,19037,18385,17835,17345,16943,16637,16377,16213,16109,16053,16099,16177,16329,16549,16857,17224,17669,18144,18713,19334,19980,20645,21379,22116,22861,23575,24281,24933,25535,26106,26526,26871,27096,27213,27216,27127,26917,26586,26179,25692,25137,24554,23906,23265,22601,21943,21303,20686,20097,19533,19043,18562,18165,17783,17451,17173,16917,16675,16476,16269,16077,15887,15706,15545,15394,15290,15177,15109,15017,14978,14961,14956,14980,15002,15040,15062,15120,15140,15175,15225,15239,15251,15239,15267,15282,15295,15311,15286,15255,15202,15146,15059,14974,14885,14738,14597,14410,14228,14005,13791,13563,13293,13036,12753,12464,12170,11875,11581,11297,11048,10801,10571,10302,10006,9688,9383,9108,8838,8641,8456,8292,8168,8062,7984,7929,7877,7809,7723,7577,7409,7261,7126,7013,6913,6826,6769,6714,6665,6656,6651,6619,6609,6639,6632,6482,6166,5729,5119,21.3,21.4,22.0,1568139,0.8,12.1,12.0,5.0,481,-1.00,-1.00,56.6374,-18.592069,0.000540,,,,,228 +SATSLF0720,2024246,10.262174,4.22,0.0591,0.1035,0.0180,0.00,16129,640,1,683,689,697,698,697,703,709,705,707,713,723,727,763,889,1224,1965,3152,4529,5764,6699,7333,7805,8195,8649,9165,9786,10537,11397,12405,13525,14692,15846,16970,17917,18637,19074,19221,19029,18650,18129,17533,16964,16497,16135,15908,15845,15929,16168,16587,17173,17913,18832,19876,21088,22420,23862,25341,26812,28244,29495,30503,31241,31641,31644,31301,30659,29742,28693,27445,26263,25088,24034,23021,22157,21434,20827,20325,19939,19662,19496,19415,19413,19526,19709,19976,20326,20754,21273,21828,22464,23109,23751,24370,24946,25435,25800,26051,26103,25984,25704,25239,24605,23877,23076,22205,21320,20482,19721,19005,18372,17814,17334,16925,16605,16350,16197,16090,16038,16067,16153,16327,16545,16839,17211,17652,18133,18689,19302,19945,20631,21352,22100,22837,23557,24285,24938,25514,26087,26497,26827,27067,27158,27193,27082,26871,26542,26150,25654,25101,24514,23896,23241,22583,21913,21262,20667,20069,19520,19021,18541,18143,17770,17442,17153,16895,16652,16449,16252,16068,15886,15686,15515,15378,15259,15143,15083,15004,14950,14947,14949,14949,14993,15009,15050,15079,15112,15162,15232,15229,15242,15255,15249,15279,15302,15310,15277,15217,15161,15114,15043,14961,14856,14721,14581,14404,14227,13994,13783,13545,13291,13017,12733,12446,12155,11845,11555,11292,11041,10798,10563,10286,9978,9659,9359,9085,8842,8640,8461,8303,8167,8071,7988,7915,7877,7820,7713,7579,7392,7248,7113,6988,6899,6818,6766,6693,6671,6645,6647,6635,6597,6635,6618,6473,6158,5726,5119,21.3,21.4,22.0,1568140,0.3,12.1,12.0,5.0,484,-1.00,-1.00,56.9000,-18.674331,0.000518,,,,,80 +SATSLF0720,2024246,10.262428,4.41,0.0617,0.1046,0.0184,0.00,16092,640,1,691,686,696,697,705,709,717,709,717,727,721,735,765,886,1209,1959,3133,4497,5721,6632,7277,7734,8161,8602,9131,9737,10488,11344,12351,13445,14618,15778,16877,17833,18553,18980,19104,18948,18552,18038,17450,16896,16430,16064,15861,15773,15863,16095,16531,17107,17845,18745,19805,21030,22336,23779,25265,26731,28177,29424,30407,31173,31554,31541,31221,30563,29651,28596,27353,26173,25014,23948,22963,22093,21371,20763,20281,19890,19600,19455,19365,19371,19457,19644,19914,20263,20704,21221,21792,22397,23056,23713,24322,24905,25376,25739,25990,26059,25939,25659,25184,24554,23827,23021,22154,21284,20441,19676,18980,18336,17771,17302,16893,16576,16313,16155,16041,16004,16027,16133,16297,16519,16812,17185,17610,18093,18670,19264,19893,20582,21308,22059,22801,23515,24242,24872,25469,26048,26465,26789,27029,27130,27141,27064,26844,26510,26109,25605,25053,24470,23835,23204,22545,21888,21241,20631,20050,19474,18990,18525,18133,17762,17430,17154,16873,16631,16445,16224,16035,15829,15656,15476,15341,15227,15128,15057,14972,14947,14924,14914,14932,14955,14984,15013,15058,15086,15145,15197,15221,15225,15235,15230,15258,15281,15276,15274,15205,15155,15102,15021,14920,14845,14705,14569,14389,14208,13985,13765,13524,13264,13006,12716,12429,12137,11844,11549,11288,11017,10775,10542,10277,9961,9655,9341,9059,8810,8603,8440,8277,8148,8044,7975,7915,7862,7790,7713,7562,7380,7231,7107,6995,6881,6799,6732,6679,6658,6633,6626,6625,6609,6604,6607,6461,6155,5730,5106,21.3,21.4,22.0,1568141,0.0,12.1,11.9,5.0,480,-1.00,-1.00,57.2263,-18.754675,0.000623,,,,,178 +SATSLF0720,2024246,10.262679,4.22,0.0591,0.1036,0.0178,0.00,16126,640,1,693,697,697,701,717,714,727,722,721,717,718,717,759,869,1224,1976,3156,4532,5768,6686,7309,7795,8214,8658,9178,9809,10541,11412,12386,13514,14686,15848,16952,17904,18633,19061,19209,19013,18647,18110,17526,16962,16494,16129,15905,15830,15910,16155,16572,17151,17907,18806,19866,21092,22423,23876,25333,26832,28234,29489,30488,31218,31628,31626,31296,30664,29738,28674,27440,26251,25080,24008,23015,22152,21430,20809,20320,19937,19651,19511,19410,19416,19520,19709,19965,20301,20741,21252,21809,22438,23091,23753,24371,24949,25430,25777,26046,26110,25980,25720,25237,24600,23896,23082,22208,21328,20491,19717,19005,18359,17804,17330,16935,16614,16363,16179,16097,16050,16073,16158,16306,16545,16821,17199,17631,18106,18693,19307,19931,20619,21357,22104,22842,23560,24260,24905,25507,26068,26493,26825,27069,27161,27179,27085,26870,26535,26142,25660,25097,24497,23863,23224,22576,21906,21275,20659,20074,19501,19011,18541,18125,17771,17440,17160,16889,16651,16441,16247,16049,15857,15673,15514,15376,15257,15161,15070,14995,14954,14951,14945,14960,14984,14997,15042,15089,15115,15160,15207,15232,15239,15259,15257,15262,15291,15290,15268,15231,15162,15121,15037,14957,14858,14724,14572,14412,14213,14007,13794,13553,13272,13006,12721,12436,12133,11852,11567,11297,11051,10810,10570,10311,10002,9688,9370,9079,8827,8625,8453,8305,8171,8074,7984,7927,7866,7798,7721,7570,7407,7244,7105,7001,6901,6822,6745,6701,6669,6652,6634,6628,6618,6627,6618,6451,6144,5719,5111,21.3,21.4,22.1,1568141,0.3,12.1,12.0,5.0,470,-1.00,-1.00,57.0943,-18.750190,0.000573,,,,,204 +SATSLF0720,2024246,10.262938,4.23,0.0592,0.1048,0.0184,0.00,16103,640,1,704,693,695,705,709,702,711,709,729,731,730,741,770,894,1213,1968,3147,4522,5761,6669,7303,7781,8197,8631,9149,9777,10513,11373,12373,13495,14645,15829,16925,17885,18589,19031,19160,18984,18605,18077,17488,16929,16466,16093,15877,15813,15885,16133,16549,17121,17861,18769,19833,21057,22365,23808,25283,26778,28182,29420,30416,31162,31547,31537,31227,30581,29666,28645,27390,26206,25034,23968,22965,22117,21386,20774,20288,19906,19620,19456,19358,19371,19472,19656,19931,20277,20718,21217,21789,22404,23075,23708,24317,24910,25384,25750,26004,26061,25944,25656,25180,24543,23821,23038,22162,21284,20457,19696,18992,18350,17801,17325,16904,16572,16325,16158,16069,16029,16038,16133,16288,16533,16821,17173,17611,18099,18673,19282,19909,20603,21313,22056,22810,23526,24226,24882,25474,26030,26477,26781,27029,27136,27159,27060,26848,26509,26118,25613,25064,24470,23832,23184,22535,21885,21249,20638,20041,19496,18989,18523,18116,17761,17433,17141,16865,16627,16449,16234,16040,15845,15662,15501,15353,15237,15127,15062,14997,14956,14933,14935,14937,14963,15005,15021,15072,15099,15149,15207,15212,15221,15228,15234,15243,15272,15277,15274,15233,15164,15101,15029,14940,14838,14695,14561,14388,14196,13978,13776,13533,13276,13006,12725,12432,12148,11833,11546,11289,11037,10788,10567,10289,9992,9677,9369,9085,8825,8623,8457,8294,8151,8060,7978,7922,7861,7797,7707,7574,7384,7245,7111,7003,6895,6821,6753,6696,6654,6645,6635,6613,6603,6637,6601,6467,6161,5734,5110,21.4,21.5,22.1,1568142,0.0,12.1,12.0,5.0,481,-1.00,-1.00,57.0247,-18.682214,0.000481,,,,,102 +SATSLF0720,2024246,10.263191,4.19,0.0587,0.1056,0.0191,0.00,16081,640,1,705,699,700,712,713,696,711,709,727,721,731,744,768,880,1215,1961,3130,4522,5745,6657,7301,7773,8173,8625,9126,9755,10506,11369,12357,13468,14637,15791,16903,17846,18578,19013,19141,18955,18574,18031,17458,16886,16423,16078,15858,15781,15857,16115,16522,17096,17833,18740,19797,21031,22338,23773,25243,26736,28141,29388,30390,31138,31525,31522,31197,30541,29641,28585,27353,26165,25014,23940,22933,22092,21344,20744,20252,19862,19588,19424,19324,19335,19448,19649,19909,20245,20684,21200,21762,22365,23048,23689,24298,24873,25342,25702,25973,26022,25906,25626,25153,24508,23789,23005,22136,21278,20430,19665,18951,18311,17746,17295,16883,16561,16302,16141,16040,15998,16023,16117,16273,16494,16789,17152,17583,18069,18629,19252,19896,20587,21284,22021,22777,23493,24189,24849,25434,25986,26423,26737,26991,27088,27110,27021,26809,26476,26083,25589,25042,24442,23804,23157,22509,21837,21226,20602,20027,19467,18981,18508,18106,17746,17405,17120,16843,16615,16417,16196,16007,15826,15653,15495,15338,15229,15121,15063,14982,14936,14914,14907,14928,14938,14970,15010,15049,15068,15128,15170,15180,15200,15230,15210,15238,15260,15277,15249,15207,15138,15078,15017,14932,14840,14690,14555,14372,14178,13962,13746,13499,13252,12982,12724,12413,12132,11833,11538,11273,11025,10789,10551,10273,9969,9641,9335,9046,8807,8599,8435,8272,8145,8037,7967,7904,7846,7789,7705,7573,7382,7233,7099,6983,6892,6804,6745,6688,6662,6621,6624,6600,6589,6624,6610,6457,6165,5735,5099,21.4,21.5,22.1,1568143,0.0,12.2,11.9,5.0,475,-1.00,-1.00,57.4923,-18.854461,0.000573,,,,,96 +SATSLF0720,2024246,10.263442,4.23,0.0592,0.1055,0.0200,0.00,16065,640,1,709,705,705,708,701,706,707,717,722,728,732,727,765,895,1224,1957,3131,4508,5724,6642,7289,7753,8186,8617,9139,9761,10487,11354,12348,13463,14615,15787,16877,17827,18554,18992,19105,18935,18562,18032,17453,16881,16429,16076,15854,15783,15853,16087,16488,17077,17805,18709,19781,21018,22329,23745,25224,26725,28126,29368,30355,31109,31497,31499,31157,30531,29606,28539,27319,26145,24985,23915,22912,22074,21335,20738,20246,19865,19573,19418,19328,19345,19432,19616,19881,20229,20651,21177,21736,22352,23025,23669,24277,24859,25324,25688,25940,26001,25888,25605,25128,24499,23786,22981,22108,21247,20407,19642,18935,18285,17724,17271,16862,16540,16297,16119,16017,15985,16011,16090,16247,16487,16778,17146,17579,18062,18622,19229,19877,20533,21275,22013,22745,23453,24157,24811,25411,25968,26391,26729,26969,27071,27089,26996,26770,26448,26039,25560,24994,24401,23787,23139,22491,21822,21197,20581,19993,19433,18953,18485,18080,17725,17389,17106,16837,16585,16382,16187,15993,15801,15622,15466,15312,15199,15104,15029,14954,14915,14894,14905,14900,14926,14946,14984,15027,15056,15121,15165,15194,15204,15204,15204,15225,15230,15240,15224,15175,15115,15050,14989,14897,14803,14674,14521,14354,14161,13966,13755,13513,13232,12975,12688,12393,12105,11808,11515,11253,10997,10769,10535,10265,9964,9651,9332,9052,8804,8592,8418,8266,8137,8041,7958,7895,7854,7781,7700,7564,7380,7220,7087,6987,6874,6789,6721,6675,6642,6623,6612,6598,6595,6609,6597,6434,6147,5718,5106,21.4,21.5,22.1,1568144,0.0,12.1,12.0,5.0,470,-1.00,-1.00,57.2435,-18.732916,0.000599,,,,,233 +SATSLF0720,2024246,10.263701,4.33,0.0607,0.1047,0.0190,0.00,16086,640,1,682,687,701,698,704,718,708,706,713,715,722,743,764,889,1225,1959,3138,4520,5765,6673,7305,7763,8183,8609,9131,9741,10493,11365,12363,13478,14648,15798,16909,17857,18578,19011,19132,18947,18583,18045,17463,16910,16449,16090,15869,15781,15873,16117,16522,17095,17842,18733,19811,21032,22355,23805,25302,26761,28179,29422,30395,31128,31519,31547,31204,30562,29653,28589,27366,26168,25005,23930,22932,22086,21357,20746,20267,19880,19602,19456,19361,19365,19465,19650,19905,20254,20682,21194,21771,22393,23044,23691,24322,24897,25361,25739,25986,26041,25906,25632,25157,24510,23798,23001,22138,21274,20433,19675,18977,18313,17771,17285,16890,16570,16329,16154,16045,16000,16034,16119,16284,16496,16809,17171,17579,18080,18648,19250,19901,20597,21307,22041,22779,23506,24197,24856,25433,26023,26424,26745,27013,27106,27127,27028,26810,26506,26097,25600,25041,24452,23809,23177,22514,21849,21216,20615,20025,19482,18995,18524,18113,17753,17409,17128,16845,16610,16417,16211,16013,15822,15639,15469,15339,15218,15109,15035,14971,14940,14926,14928,14942,14962,14981,15021,15054,15081,15120,15178,15190,15204,15207,15220,15241,15257,15267,15261,15209,15157,15082,15015,14917,14816,14695,14547,14361,14179,13963,13763,13525,13262,12984,12699,12404,12109,11819,11530,11266,11021,10786,10526,10269,9970,9647,9341,9061,8819,8601,8439,8284,8154,8056,7976,7909,7860,7794,7705,7559,7389,7225,7091,7000,6893,6812,6748,6683,6649,6629,6613,6611,6593,6615,6613,6448,6143,5715,5105,21.4,21.5,22.1,1568145,0.0,12.1,11.9,5.0,478,-1.00,-1.00,56.9651,-18.644042,0.000628,,,,,186 +SATSLF0720,2024246,10.263954,4.11,0.0576,0.1047,0.0185,0.00,16106,640,1,693,703,712,702,709,722,720,720,717,725,722,729,762,888,1220,1962,3150,4541,5769,6689,7325,7802,8212,8663,9183,9785,10523,11392,12397,13497,14680,15841,16955,17909,18633,19061,19193,19017,18650,18101,17504,16947,16469,16104,15892,15804,15896,16140,16551,17143,17889,18793,19857,21073,22388,23837,25309,26799,28210,29465,30453,31202,31585,31586,31259,30616,29702,28637,27405,26229,25044,23978,22973,22124,21396,20782,20291,19908,19616,19458,19363,19384,19490,19688,19930,20279,20723,21229,21804,22423,23081,23730,24333,24919,25382,25738,26014,26074,25949,25670,25197,24561,23843,23034,22184,21305,20454,19704,18988,18327,17773,17307,16900,16598,16335,16162,16064,16030,16040,16135,16301,16520,16825,17186,17618,18097,18662,19266,19901,20599,21328,22066,22807,23533,24229,24885,25472,26036,26453,26764,27015,27106,27127,27029,26812,26499,26105,25614,25054,24472,23834,23193,22533,21870,21244,20622,20025,19484,18984,18520,18098,17741,17414,17131,16865,16630,16418,16231,16042,15845,15653,15492,15358,15245,15141,15069,14986,14938,14939,14933,14934,14968,14974,15013,15054,15098,15138,15195,15214,15210,15225,15232,15255,15276,15281,15262,15221,15143,15099,15026,14929,14830,14702,14551,14401,14188,13983,13778,13521,13259,12993,12705,12418,12126,11825,11543,11293,11033,10794,10539,10295,9984,9660,9348,9076,8828,8631,8453,8285,8145,8056,7973,7909,7852,7795,7709,7563,7392,7225,7095,7005,6889,6807,6744,6694,6659,6645,6633,6605,6597,6624,6619,6469,6164,5725,5115,21.4,21.6,22.2,1568146,0.0,12.1,12.0,5.0,478,-1.00,-1.00,57.3086,-18.818002,0.000611,,,,,126 +SATSLF0720,2024246,10.264204,4.29,0.0601,0.1054,0.0194,0.00,16068,640,1,709,701,710,715,727,721,725,727,728,743,741,741,777,890,1235,1969,3163,4521,5757,6664,7311,7765,8192,8621,9125,9749,10486,11353,12365,13463,14642,15797,16893,17834,18549,18997,19125,18923,18567,18033,17445,16897,16424,16061,15847,15767,15843,16097,16490,17080,17833,18729,19795,21017,22341,23771,25242,26721,28128,29369,30353,31099,31497,31504,31161,30509,29619,28553,27317,26137,24976,23920,22914,22063,21315,20728,20245,19859,19575,19416,19332,19333,19421,19598,19865,20209,20649,21177,21741,22352,23031,23666,24298,24850,25317,25690,25949,26004,25888,25613,25140,24502,23794,22990,22120,21269,20427,19637,18942,18284,17741,17270,16857,16532,16296,16138,16037,15981,16005,16101,16258,16485,16788,17145,17569,18062,18622,19218,19863,20552,21265,22013,22756,23453,24163,24825,25417,25974,26406,26713,26964,27053,27083,26981,26774,26449,26056,25565,24997,24402,23787,23124,22477,21821,21206,20585,20003,19448,18962,18480,18070,17712,17385,17108,16834,16590,16389,16192,15997,15817,15617,15450,15319,15202,15098,15024,14953,14904,14902,14900,14903,14921,14940,14983,15028,15065,15117,15175,15195,15197,15190,15209,15225,15241,15250,15229,15176,15132,15069,15003,14916,14832,14688,14533,14341,14163,13945,13748,13496,13234,12979,12705,12417,12117,11825,11548,11258,11008,10765,10535,10269,9961,9643,9341,9063,8822,8598,8423,8269,8138,8035,7963,7899,7850,7800,7701,7557,7384,7233,7102,6965,6871,6795,6734,6688,6660,6630,6631,6597,6583,6624,6613,6450,6151,5721,5101,21.4,21.6,22.2,1568147,1.3,12.1,12.0,5.0,478,-1.00,-1.00,56.9936,-18.630819,0.000618,,,,,104 +SATSLF0720,2024246,10.264460,4.23,0.0593,0.1077,0.0205,0.00,16004,640,1,710,711,708,713,705,695,701,699,714,721,721,733,777,896,1212,1959,3131,4493,5719,6621,7243,7729,8133,8572,9082,9698,10444,11284,12278,13373,14534,15686,16783,17731,18444,18878,19013,18832,18449,17911,17347,16789,16347,15978,15757,15680,15758,16005,16410,16981,17715,18626,19682,20901,22205,23632,25108,26568,27965,29205,30185,30936,31335,31314,30998,30354,29457,28410,27181,26021,24860,23792,22803,21961,21226,20640,20148,19761,19477,19339,19234,19249,19354,19548,19799,20140,20578,21093,21650,22260,22925,23553,24152,24739,25218,25570,25847,25893,25789,25501,25027,24395,23690,22901,22053,21158,20323,19557,18867,18218,17666,17198,16801,16494,16243,16069,15965,15930,15941,16044,16192,16433,16705,17084,17522,18005,18568,19166,19802,20482,21207,21953,22672,23385,24087,24741,25329,25889,26312,26629,26875,26981,27008,26901,26688,26370,25971,25483,24923,24325,23705,23068,22405,21749,21128,20508,19936,19380,18893,18413,18016,17648,17323,17029,16780,16549,16342,16141,15963,15769,15586,15406,15272,15147,15057,14974,14905,14868,14853,14871,14857,14896,14913,14957,14981,15009,15071,15125,15141,15157,15165,15162,15181,15198,15201,15190,15138,15085,15031,14941,14876,14762,14647,14489,14314,14119,13917,13700,13472,13225,12962,12670,12368,12068,11776,11493,11233,10973,10745,10505,10245,9952,9617,9313,9016,8783,8561,8401,8227,8108,8017,7945,7878,7833,7768,7680,7532,7345,7203,7083,6977,6869,6773,6727,6662,6625,6603,6599,6576,6567,6599,6601,6443,6145,5712,5097,21.4,21.6,22.2,1568148,0.0,12.1,12.0,5.0,474,-1.00,-1.00,57.7870,-18.862808,0.000555,,,,,48 +SATSDF0720,2024246,10.509138,0.00,0.0000,0.0000,0.0000,0.00,641,0,1,630,630,616,625,632,616,629,625,626,617,624,610,626,617,631,624,631,629,629,626,628,631,657,663,661,663,647,621,638,645,645,643,645,645,647,638,635,637,642,641,637,642,646,645,649,645,641,633,651,637,645,641,641,637,638,647,649,656,651,654,660,650,650,660,643,646,626,633,636,638,630,631,652,649,652,645,651,645,642,657,654,634,634,642,640,633,637,635,643,644,640,645,641,654,646,640,651,642,645,657,640,633,647,634,646,637,623,647,649,643,634,667,650,639,643,637,638,638,644,633,630,624,631,639,646,626,651,656,644,643,647,649,647,642,635,642,637,645,629,635,634,647,653,661,650,648,651,645,644,635,637,639,639,637,636,641,642,659,644,646,647,643,645,641,633,641,644,654,650,645,647,643,639,651,647,645,636,654,646,642,644,640,644,638,641,642,647,649,645,646,639,637,632,628,627,643,636,645,637,629,631,632,625,632,635,637,649,636,640,635,621,647,645,634,647,633,639,638,635,655,650,651,648,638,635,637,631,635,645,641,643,637,647,639,640,625,642,635,636,641,626,635,648,642,644,637,642,635,634,651,661,650,656,646,653,485,0.0,0.0,0.0,1568147,0.1,12.6,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,192 +SATSLF0720,2024246,10.509693,4.20,0.0588,0.0997,0.0156,0.00,16249,641,1,677,685,688,684,683,699,694,701,716,714,725,733,766,887,1224,1977,3172,4571,5815,6754,7394,7864,8299,8740,9268,9902,10653,11520,12541,13657,14848,16033,17156,18101,18827,19273,19405,19221,18839,18312,17704,17143,16677,16312,16073,16001,16076,16324,16741,17321,18069,18996,20069,21301,22632,24091,25595,27089,28514,29785,30802,31556,31934,31939,31604,30936,30009,28941,27705,26504,25339,24257,23232,22363,21627,21013,20513,20130,19840,19677,19581,19591,19692,19881,20144,20496,20928,21449,22019,22645,23314,23956,24559,25141,25627,25976,26251,26305,26179,25917,25433,24785,24046,23255,22381,21490,20638,19866,19145,18481,17939,17448,17032,16713,16454,16299,16190,16157,16169,16266,16427,16663,16962,17325,17770,18250,18839,19445,20085,20773,21504,22261,23000,23733,24429,25098,25683,26262,26695,27018,27255,27373,27396,27301,27082,26747,26354,25854,25267,24679,24041,23394,22730,22068,21425,20817,20202,19651,19142,18679,18269,17901,17568,17261,16991,16747,16553,16343,16158,15957,15776,15619,15453,15359,15269,15186,15099,15059,15046,15041,15039,15066,15097,15117,15174,15201,15241,15297,15314,15329,15337,15341,15349,15375,15364,15360,15310,15255,15195,15129,15031,14943,14814,14668,14472,14283,14069,13843,13603,13347,13082,12791,12486,12214,11899,11621,11338,11099,10853,10617,10345,10050,9733,9412,9120,8860,8663,8484,8320,8198,8099,8013,7962,7901,7845,7745,7614,7437,7277,7145,7028,6934,6834,6781,6714,6678,6660,6645,6637,6629,6647,6652,6502,6201,5769,5146,21.2,21.2,21.6,1568148,0.2,12.1,12.0,5.0,601,-1.00,-1.00,56.1261,-18.523951,0.000560,,,,,69 +SATSLF0720,2024246,10.509874,4.24,0.0594,0.0998,0.0159,0.00,16247,641,1,706,703,713,714,704,697,711,720,709,735,733,742,776,888,1226,1965,3169,4571,5817,6743,7408,7876,8300,8758,9273,9901,10645,11505,12515,13636,14825,16017,17152,18117,18849,19261,19391,19223,18837,18281,17678,17105,16645,16286,16050,15985,16065,16333,16741,17334,18082,19008,20078,21313,22628,24085,25589,27084,28531,29777,30785,31530,31932,31930,31604,30957,30025,28944,27714,26530,25346,24246,23232,22364,21607,20998,20492,20109,19835,19666,19574,19604,19686,19886,20149,20493,20929,21472,22029,22648,23302,23953,24576,25160,25625,26005,26261,26301,26178,25897,25402,24771,24038,23249,22357,21489,20640,19866,19173,18493,17933,17461,17049,16731,16466,16297,16197,16155,16185,16270,16439,16665,16963,17339,17762,18250,18817,19451,20087,20766,21509,22258,23006,23703,24438,25098,25680,26258,26672,27005,27238,27347,27367,27274,27051,26715,26321,25837,25262,24672,24026,23388,22721,22037,21399,20785,20181,19643,19145,18667,18254,17911,17562,17283,16994,16759,16546,16343,16141,15948,15765,15608,15456,15339,15259,15174,15089,15056,15048,15030,15035,15063,15087,15117,15152,15186,15243,15290,15308,15335,15337,15346,15360,15386,15378,15367,15312,15235,15187,15120,15032,14939,14797,14642,14462,14263,14066,13850,13609,13349,13077,12797,12503,12205,11920,11631,11351,11101,10853,10608,10338,10032,9713,9413,9122,8873,8675,8505,8326,8211,8105,8020,7951,7893,7841,7741,7593,7415,7271,7132,7032,6929,6851,6795,6736,6689,6681,6658,6639,6639,6648,6643,6502,6185,5761,5140,21.2,21.2,21.8,1568149,0.4,12.1,12.0,5.0,498,-1.00,-1.00,56.5168,-18.690704,0.000554,,,,,77 +SATSLF0720,2024246,10.510130,4.06,0.0569,0.1003,0.0160,0.00,16238,641,1,693,685,694,697,692,707,717,715,725,734,728,729,762,893,1233,1984,3184,4569,5825,6746,7394,7867,8278,8733,9255,9881,10626,11491,12502,13628,14806,15994,17113,18078,18809,19258,19388,19197,18821,18282,17672,17111,16634,16262,16033,15969,16049,16286,16720,17318,18049,18969,20051,21280,22592,24046,25570,27050,28472,29752,30757,31499,31898,31921,31570,30916,29987,28910,27665,26472,25291,24215,23202,22355,21610,20995,20498,20117,19817,19644,19552,19555,19673,19856,20120,20478,20906,21421,22001,22632,23290,23930,24541,25130,25595,25972,26253,26290,26165,25875,25401,24768,24027,23222,22348,21466,20615,19853,19130,18475,17917,17445,17042,16721,16477,16289,16184,16145,16161,16253,16422,16665,16963,17334,17746,18233,18825,19425,20066,20763,21490,22227,22984,23712,24409,25079,25673,26245,26677,26997,27236,27353,27354,27255,27062,26708,26317,25812,25243,24650,24010,23376,22717,22050,21413,20792,20183,19629,19143,18650,18235,17869,17550,17254,17015,16758,16564,16343,16162,15958,15767,15601,15453,15351,15236,15165,15094,15049,15036,15034,15044,15077,15093,15113,15179,15197,15246,15293,15311,15317,15339,15338,15357,15378,15371,15361,15299,15245,15182,15127,15021,14916,14795,14647,14477,14281,14064,13856,13613,13350,13079,12790,12496,12219,11908,11607,11335,11105,10853,10631,10353,10043,9722,9416,9125,8893,8673,8491,8345,8214,8106,8026,7960,7896,7835,7757,7617,7433,7297,7154,7037,6944,6853,6784,6737,6696,6679,6683,6664,6644,6656,6660,6485,6183,5749,5129,21.2,21.2,21.8,1568150,0.5,12.1,12.0,5.0,487,-1.00,-1.00,56.9415,-18.842327,0.000638,,,,,54 +SATSLF0720,2024246,10.510386,4.13,0.0579,0.1014,0.0173,0.00,16183,641,1,693,695,689,697,706,692,701,702,715,722,723,738,768,893,1242,1981,3161,4541,5793,6710,7355,7823,8249,8682,9217,9839,10594,11484,12484,13596,14784,15950,17054,18030,18743,19180,19321,19139,18759,18209,17625,17063,16589,16223,16004,15929,16012,16251,16651,17238,17989,18888,19980,21194,22541,23978,25472,26958,28392,29643,30643,31394,31801,31800,31474,30793,29883,28809,27569,26385,25220,24141,23138,22260,21531,20923,20426,20041,19749,19590,19505,19513,19602,19808,20049,20407,20832,21348,21917,22532,23204,23861,24460,25036,25509,25867,26155,26186,26066,25781,25304,24667,23952,23162,22274,21401,20545,19773,19072,18417,17853,17377,16968,16659,16401,16235,16137,16077,16105,16202,16365,16587,16900,17275,17716,18193,18773,19385,20010,20685,21437,22177,22912,23611,24353,24986,25583,26142,26576,26901,27162,27250,27268,27174,26957,26638,26244,25744,25180,24573,23937,23272,22624,21962,21318,20709,20122,19563,19082,18617,18194,17832,17500,17195,16931,16684,16488,16280,16096,15911,15720,15546,15408,15287,15181,15106,15035,15005,14993,14998,15005,15023,15050,15074,15102,15140,15193,15243,15257,15268,15282,15303,15318,15334,15325,15313,15261,15202,15138,15080,14986,14882,14759,14608,14423,14243,14013,13797,13543,13304,13038,12762,12457,12173,11864,11585,11303,11044,10814,10580,10311,10011,9684,9377,9083,8851,8641,8448,8315,8171,8074,8000,7935,7875,7810,7725,7580,7405,7242,7120,7019,6917,6825,6777,6720,6691,6668,6653,6632,6601,6637,6629,6481,6152,5729,5111,21.2,21.3,21.8,1568151,0.4,12.1,12.0,5.0,487,-1.00,-1.00,56.6817,-18.670248,0.000580,,,,,203 +SATSLF0720,2024246,10.510642,4.09,0.0574,0.1021,0.0175,0.00,16177,641,1,686,696,693,689,695,697,698,699,698,706,719,725,763,876,1223,1980,3168,4558,5794,6726,7357,7836,8253,8692,9223,9840,10587,11457,12461,13585,14764,15931,17056,18025,18757,19181,19314,19122,18747,18201,17616,17037,16590,16217,16001,15910,15984,16247,16658,17227,17973,18899,19962,21197,22505,23978,25457,26948,28368,29614,30641,31388,31768,31783,31465,30797,29872,28800,27567,26363,25216,24130,23125,22263,21530,20910,20416,20036,19734,19570,19477,19502,19585,19778,20037,20389,20825,21347,21916,22537,23210,23856,24465,25048,25515,25876,26135,26197,26060,25794,25306,24661,23933,23143,22282,21394,20541,19769,19065,18408,17863,17385,16981,16645,16405,16235,16128,16089,16117,16203,16354,16573,16873,17238,17658,18171,18741,19353,20012,20704,21424,22164,22896,23597,24320,24982,25557,26147,26571,26893,27153,27246,27250,27163,26938,26606,26218,25725,25161,24585,23930,23284,22625,21956,21317,20711,20092,19551,19065,18593,18185,17817,17491,17189,16923,16695,16485,16289,16096,15907,15706,15555,15401,15297,15169,15106,15041,14989,14952,14974,14992,15006,15037,15070,15108,15142,15190,15240,15258,15267,15275,15291,15301,15312,15324,15312,15257,15188,15134,15068,14986,14888,14749,14594,14437,14241,14022,13804,13563,13301,13031,12755,12456,12171,11859,11566,11297,11051,10816,10578,10313,10002,9683,9376,9081,8841,8626,8465,8305,8163,8081,8005,7925,7880,7810,7712,7587,7402,7253,7133,7018,6916,6821,6758,6709,6667,6644,6635,6621,6608,6637,6638,6474,6165,5742,5113,21.2,21.3,21.9,1568152,0.6,12.1,12.0,5.0,483,-1.00,-1.00,56.9145,-18.759304,0.000589,,,,,6 +SATSLF0720,2024246,10.510897,4.14,0.0580,0.1016,0.0172,0.00,16189,641,1,702,712,701,696,711,706,697,707,699,715,709,715,757,886,1209,1967,3163,4544,5787,6714,7340,7823,8229,8685,9219,9856,10597,11457,12449,13568,14756,15922,17035,18008,18726,19168,19306,19122,18734,18198,17608,17053,16589,16223,15989,15917,15991,16251,16652,17233,17975,18883,19967,21209,22518,23995,25462,26973,28389,29636,30649,31396,31799,31793,31465,30819,29897,28817,27574,26392,25222,24132,23130,22275,21525,20918,20424,20039,19760,19597,19499,19510,19607,19788,20067,20405,20851,21365,21943,22552,23222,23866,24484,25056,25531,25897,26154,26209,26097,25813,25334,24683,23970,23165,22289,21409,20567,19795,19085,18427,17865,17413,16981,16667,16416,16246,16136,16103,16130,16214,16380,16589,16900,17267,17698,18201,18762,19367,20014,20698,21445,22166,22926,23638,24344,25012,25598,26162,26603,26902,27170,27268,27281,27176,26972,26640,26256,25745,25187,24600,23948,23316,22660,21976,21347,20739,20134,19596,19077,18604,18211,17828,17495,17207,16946,16696,16494,16286,16115,15920,15726,15577,15428,15317,15209,15135,15062,15013,14995,14996,14997,15025,15073,15081,15109,15163,15212,15262,15271,15266,15303,15288,15315,15334,15334,15317,15262,15211,15143,15083,14995,14903,14754,14599,14429,14237,14045,13811,13565,13312,13062,12774,12459,12181,11877,11603,11309,11068,10831,10589,10325,10025,9716,9404,9102,8866,8645,8467,8304,8183,8078,7983,7943,7893,7830,7731,7599,7408,7254,7122,6999,6914,6833,6782,6725,6694,6667,6647,6635,6630,6641,6639,6482,6171,5745,5125,21.3,21.3,21.9,1568153,0.4,12.1,11.9,5.0,482,-1.00,-1.00,57.1096,-18.851249,0.000589,,,,,174 +SATSLF0720,2024246,10.511150,4.14,0.0580,0.1023,0.0170,0.00,16168,641,1,702,709,709,711,725,709,720,726,718,719,723,731,773,890,1232,1982,3158,4550,5794,6693,7346,7802,8227,8677,9184,9826,10562,11435,12441,13561,14745,15905,17015,17979,18693,19143,19269,19077,18701,18156,17587,17013,16550,16183,15961,15888,15946,16215,16616,17204,17941,18871,19938,21152,22481,23925,25409,26894,28320,29577,30577,31318,31715,31712,31376,30746,29813,28771,27510,26336,25176,24096,23092,22221,21488,20889,20390,20006,19721,19545,19467,19474,19568,19758,20022,20372,20804,21323,21890,22507,23188,23829,24439,25018,25477,25858,26114,26163,26039,25762,25273,24643,23938,23129,22254,21389,20537,19764,19067,18417,17844,17373,16951,16647,16384,16221,16119,16083,16098,16185,16374,16593,16878,17225,17659,18151,18741,19368,19994,20685,21425,22164,22892,23607,24301,24960,25544,26119,26551,26877,27124,27223,27236,27147,26936,26613,26214,25721,25146,24576,23917,23293,22636,21962,21333,20701,20117,19564,19061,18597,18197,17825,17489,17199,16933,16691,16486,16282,16074,15883,15705,15542,15412,15313,15209,15134,15050,15001,14983,14983,14978,15010,15037,15069,15125,15157,15212,15258,15268,15280,15289,15285,15306,15323,15321,15307,15260,15198,15148,15070,14995,14881,14752,14584,14423,14245,14029,13815,13566,13324,13042,12767,12459,12176,11853,11587,11299,11065,10820,10594,10320,10018,9707,9396,9107,8865,8658,8481,8315,8177,8087,8006,7927,7877,7821,7729,7578,7409,7259,7123,6999,6911,6834,6770,6714,6693,6662,6650,6637,6625,6644,6632,6493,6165,5747,5126,21.3,21.3,21.9,1568154,0.0,12.1,12.0,5.0,475,-1.00,-1.00,57.0218,-18.771296,0.000551,,,,,36 +SATSLF0720,2024246,10.511409,4.10,0.0575,0.1028,0.0176,0.00,16153,641,1,697,694,707,693,709,707,709,709,701,711,717,732,756,879,1221,1953,3147,4541,5778,6695,7335,7810,8232,8683,9210,9821,10573,11439,12424,13543,14714,15887,17015,17975,18685,19131,19269,19072,18702,18167,17566,17003,16560,16173,15943,15878,15962,16197,16597,17180,17926,18841,19922,21149,22469,23920,25410,26894,28315,29565,30577,31316,31725,31715,31368,30722,29805,28724,27490,26304,25143,24061,23077,22205,21465,20861,20377,19978,19701,19548,19447,19463,19541,19717,19990,20338,20776,21299,21867,22473,23149,23788,24411,24988,25466,25824,26093,26130,26023,25744,25270,24628,23901,23101,22235,21371,20525,19747,19042,18384,17829,17361,16953,16627,16367,16202,16112,16073,16100,16177,16347,16577,16861,17232,17660,18152,18712,19323,19972,20654,21385,22131,22885,23600,24295,24962,25541,26102,26539,26845,27105,27210,27235,27145,26921,26598,26189,25697,25124,24545,23901,23241,22590,21933,21301,20690,20082,19536,19047,18570,18167,17792,17461,17169,16907,16672,16481,16261,16083,15882,15693,15537,15388,15269,15161,15088,15013,14982,14962,14986,14981,15011,15021,15048,15101,15130,15159,15232,15244,15258,15266,15270,15302,15313,15297,15301,15261,15194,15128,15062,14973,14882,14741,14601,14418,14243,14021,13795,13547,13280,13027,12740,12442,12153,11869,11585,11303,11048,10800,10577,10313,10023,9690,9386,9076,8839,8616,8453,8293,8168,8069,7996,7925,7883,7815,7730,7588,7397,7234,7112,7001,6904,6820,6762,6699,6653,6645,6642,6616,6629,6646,6640,6485,6179,5747,5121,21.3,21.4,21.9,1568155,0.1,12.1,12.0,5.0,471,-1.00,-1.00,57.0992,-18.794055,0.000685,,,,,135 +SATSLF0720,2024246,10.511666,4.13,0.0578,0.1031,0.0173,0.00,16144,641,1,690,695,706,708,707,710,720,701,710,707,707,723,758,879,1227,1974,3156,4545,5768,6691,7333,7801,8216,8660,9179,9805,10557,11425,12405,13527,14705,15878,16989,17945,18665,19106,19239,19065,18681,18146,17538,16982,16519,16154,15926,15865,15937,16185,16599,17181,17925,18836,19898,21126,22442,23891,25378,26861,28281,29546,30542,31293,31685,31684,31357,30697,29772,28708,27482,26299,25121,24069,23033,22199,21472,20848,20357,19961,19695,19534,19434,19451,19543,19737,19993,20334,20775,21280,21857,22461,23144,23782,24399,24977,25448,25817,26071,26137,26021,25744,25261,24617,23895,23101,22221,21339,20503,19748,19032,18381,17813,17364,16942,16614,16385,16198,16089,16053,16087,16169,16337,16565,16851,17216,17653,18134,18713,19336,19985,20631,21380,22129,22858,23560,24283,24947,25540,26106,26545,26854,27100,27194,27213,27109,26892,26557,26173,25658,25117,24534,23890,23248,22602,21941,21301,20692,20099,19533,19037,18562,18157,17783,17457,17176,16881,16663,16464,16261,16070,15880,15697,15531,15382,15275,15173,15093,15031,14970,14962,14952,14970,14981,14998,15035,15097,15130,15166,15227,15248,15264,15269,15270,15285,15303,15303,15300,15240,15185,15140,15053,14961,14874,14727,14577,14397,14225,14013,13790,13562,13290,13012,12736,12456,12162,11856,11573,11310,11055,10824,10581,10298,10003,9685,9374,9079,8827,8620,8447,8304,8162,8070,8007,7925,7877,7797,7727,7574,7415,7253,7116,6999,6908,6813,6765,6681,6659,6647,6637,6610,6605,6614,6624,6469,6149,5729,5114,21.3,21.4,21.9,1568156,0.0,12.1,11.9,5.0,485,-1.00,-1.00,57.2854,-18.857784,0.000592,,,,,227 +SATSLF0720,2024246,10.511917,4.25,0.0595,0.1026,0.0175,0.00,16156,641,1,705,697,708,699,697,708,709,705,707,708,718,725,769,891,1215,1983,3159,4547,5779,6687,7334,7801,8236,8685,9184,9811,10551,11419,12438,13545,14715,15896,17014,17973,18690,19129,19252,19083,18701,18152,17544,16993,16529,16161,15946,15880,15965,16212,16609,17195,17953,18857,19936,21144,22473,23917,25408,26881,28320,29565,30561,31320,31714,31719,31373,30745,29802,28733,27489,26311,25152,24073,23072,22209,21466,20869,20392,19989,19708,19546,19455,19478,19579,19757,20010,20360,20788,21289,21876,22490,23157,23809,24413,25003,25453,25827,26112,26161,26041,25760,25266,24619,23927,23105,22241,21362,20510,19750,19049,18391,17836,17349,16951,16637,16380,16210,16118,16073,16087,16193,16350,16577,16870,17244,17660,18155,18717,19331,19965,20657,21400,22145,22888,23593,24299,24959,25553,26109,26535,26869,27098,27222,27237,27141,26936,26606,26208,25709,25141,24545,23909,23256,22597,21938,21316,20690,20087,19540,19054,18569,18177,17794,17473,17190,16920,16674,16484,16274,16074,15880,15691,15539,15386,15271,15165,15099,15042,14990,14971,14963,14969,15001,15012,15062,15093,15128,15173,15221,15244,15250,15254,15265,15277,15313,15313,15306,15261,15200,15133,15069,14979,14875,14753,14596,14428,14210,14011,13801,13545,13291,13033,12743,12455,12169,11865,11585,11317,11045,10804,10577,10289,10007,9666,9371,9100,8845,8634,8461,8311,8176,8074,7992,7916,7871,7806,7725,7575,7408,7255,7113,7017,6918,6845,6778,6710,6679,6653,6646,6616,6621,6638,6629,6483,6193,5753,5126,21.3,21.4,22.0,1568157,1.3,12.1,11.9,5.0,481,-1.00,-1.00,56.7458,-18.649762,0.000627,,,,,8 +SATSLF0720,2024246,10.512173,4.21,0.0590,0.1030,0.0179,0.00,16152,641,1,699,686,699,709,713,721,712,715,726,724,733,743,777,885,1239,1977,3166,4553,5785,6702,7349,7814,8234,8677,9205,9824,10565,11431,12448,13540,14722,15893,17018,17976,18708,19138,19265,19091,18706,18161,17559,16997,16541,16172,15938,15877,15954,16202,16617,17199,17953,18880,19942,21156,22477,23920,25418,26880,28296,29555,30568,31309,31699,31704,31378,30715,29787,28725,27511,26314,25147,24068,23063,22203,21460,20861,20373,19973,19701,19529,19437,19444,19558,19752,20020,20350,20793,21297,21849,22467,23146,23793,24403,24977,25447,25843,26080,26135,26017,25742,25265,24629,23894,23107,22241,21362,20510,19741,19037,18375,17817,17335,16929,16611,16357,16198,16103,16072,16099,16180,16348,16569,16857,17221,17656,18154,18712,19330,19960,20660,21376,22119,22865,23586,24268,24940,25538,26082,26523,26855,27111,27206,27205,27125,26924,26581,26189,25688,25120,24535,23886,23256,22592,21909,21295,20680,20083,19531,19044,18569,18173,17807,17462,17178,16896,16659,16449,16261,16061,15869,15708,15528,15384,15272,15171,15093,15013,14984,14953,14973,14980,14998,15028,15057,15101,15127,15187,15251,15249,15264,15246,15271,15282,15306,15313,15293,15239,15177,15120,15050,14977,14871,14743,14592,14427,14225,14020,13801,13554,13293,13026,12753,12443,12167,11850,11577,11293,11051,10797,10557,10299,10010,9677,9376,9082,8843,8634,8468,8309,8177,8077,8001,7931,7880,7825,7719,7580,7404,7253,7115,6999,6911,6833,6777,6717,6677,6653,6650,6621,6615,6633,6626,6482,6173,5742,5128,21.4,21.4,22.1,1568158,1.0,12.1,11.9,5.0,481,-1.00,-1.00,56.6176,-18.593956,0.000607,,,,,253 +SATSLF0720,2024246,10.512427,4.30,0.0603,0.1034,0.0181,0.00,16141,641,1,691,691,705,698,710,703,715,714,724,725,725,730,776,890,1217,1972,3157,4540,5784,6693,7338,7802,8214,8661,9188,9800,10560,11424,12419,13542,14722,15884,16992,17937,18665,19080,19226,19044,18653,18130,17537,16975,16509,16156,15918,15853,15937,16192,16605,17175,17917,18821,19891,21108,22432,23888,25350,26856,28275,29529,30521,31274,31678,31657,31330,30673,29751,28683,27465,26285,25106,24029,23031,22183,21442,20826,20365,19957,19682,19521,19418,19442,19540,19723,19997,20338,20772,21297,21848,22471,23129,23777,24380,24960,25445,25798,26057,26131,26013,25728,25236,24608,23877,23082,22212,21358,20493,19751,19033,18381,17816,17355,16928,16627,16370,16192,16099,16057,16076,16164,16331,16545,16853,17221,17658,18144,18704,19321,19952,20645,21373,22118,22853,23573,24276,24933,25521,26081,26504,26833,27080,27200,27201,27121,26890,26567,26170,25667,25104,24524,23882,23236,22586,21917,21291,20674,20075,19520,19028,18557,18148,17787,17452,17175,16895,16661,16458,16262,16061,15869,15703,15518,15365,15268,15162,15095,15034,14986,14973,14964,14973,15010,15017,15075,15106,15125,15163,15231,15229,15254,15268,15261,15297,15309,15305,15301,15237,15168,15114,15050,14965,14870,14729,14577,14409,14210,14005,13793,13549,13290,13013,12744,12434,12159,11851,11577,11302,11057,10807,10582,10312,9993,9686,9373,9089,8841,8635,8465,8317,8173,8073,7997,7912,7867,7804,7716,7578,7402,7255,7121,7009,6916,6833,6762,6711,6672,6645,6647,6622,6613,6637,6634,6477,6167,5731,5117,21.3,21.4,22.1,1568159,0.2,12.1,11.9,5.0,482,-1.00,-1.00,56.6407,-18.578313,0.000550,,,,,176 +SATSLF0720,2024246,10.512678,4.26,0.0597,0.1034,0.0181,0.00,16135,641,1,692,698,696,685,695,704,708,707,713,719,721,747,770,899,1229,1975,3167,4541,5776,6686,7329,7798,8221,8655,9175,9804,10553,11422,12426,13525,14704,15867,16972,17925,18650,19088,19222,19034,18663,18125,17546,16965,16497,16151,15929,15848,15933,16192,16592,17170,17914,18829,19889,21118,22432,23878,25354,26833,28258,29529,30517,31255,31661,31662,31339,30670,29751,28693,27459,26275,25105,24025,23021,22167,21437,20817,20348,19961,19689,19521,19419,19432,19538,19725,19976,20309,20740,21257,21837,22445,23120,23772,24389,24978,25426,25809,26066,26122,25996,25721,25239,24587,23875,23065,22207,21330,20488,19718,19024,18359,17804,17330,16935,16618,16373,16199,16098,16051,16094,16168,16336,16549,16843,17211,17645,18133,18700,19323,19941,20627,21371,22109,22850,23553,24264,24921,25501,26080,26499,26819,27076,27178,27195,27091,26882,26563,26165,25656,25097,24516,23888,23229,22576,21909,21271,20679,20084,19528,19033,18557,18149,17781,17435,17147,16891,16649,16445,16235,16049,15879,15682,15516,15376,15269,15169,15092,15021,14977,14954,14951,14960,14995,15014,15055,15098,15129,15178,15230,15253,15246,15254,15268,15269,15288,15296,15281,15237,15176,15111,15048,14960,14862,14725,14584,14396,14225,14010,13787,13545,13281,13015,12737,12438,12151,11857,11573,11294,11048,10804,10563,10296,10001,9669,9375,9092,8832,8631,8455,8312,8169,8071,7987,7918,7873,7797,7712,7581,7413,7242,7112,6997,6914,6822,6761,6709,6661,6653,6650,6633,6611,6615,6631,6468,6167,5735,5118,21.3,21.4,22.1,1568159,1.0,12.1,12.0,5.0,480,-1.00,-1.00,56.7757,-18.631994,0.000545,,,,,157 +SATSLF0720,2024246,10.512934,4.05,0.0568,0.1040,0.0180,0.00,16129,641,1,692,695,703,706,709,712,721,716,704,708,713,721,775,874,1219,1989,3153,4543,5779,6703,7334,7811,8227,8670,9192,9804,10558,11425,12416,13537,14705,15880,16979,17941,18686,19106,19242,19059,18679,18142,17541,16987,16531,16154,15922,15857,15926,16177,16579,17168,17925,18821,19879,21115,22438,23895,25357,26853,28272,29517,30528,31254,31673,31669,31332,30674,29760,28695,27468,26276,25106,24029,23017,22156,21435,20817,20342,19960,19673,19488,19393,19423,19529,19697,19967,20318,20737,21254,21818,22442,23123,23764,24386,24957,25435,25787,26045,26097,25975,25700,25229,24601,23860,23077,22205,21330,20480,19701,19010,18361,17805,17333,16933,16614,16359,16184,16092,16034,16069,16163,16321,16549,16836,17200,17633,18113,18682,19288,19943,20624,21349,22087,22837,23545,24242,24900,25499,26066,26501,26825,27057,27162,27165,27069,26859,26538,26137,25650,25094,24513,23888,23229,22577,21892,21268,20643,20059,19511,19024,18548,18141,17786,17449,17143,16887,16652,16434,16234,16054,15851,15659,15490,15353,15245,15143,15077,14994,14967,14946,14933,14951,14980,14992,15037,15074,15099,15151,15201,15202,15213,15223,15244,15253,15282,15279,15291,15237,15181,15116,15042,14941,14847,14713,14556,14386,14186,13999,13777,13543,13285,13013,12733,12436,12157,11849,11557,11291,11037,10791,10559,10303,9997,9668,9351,9075,8833,8628,8441,8298,8168,8065,7986,7915,7865,7816,7716,7572,7398,7236,7105,6995,6901,6813,6756,6701,6669,6653,6642,6630,6613,6625,6619,6461,6174,5721,5119,21.3,21.4,22.1,1568160,0.0,12.1,11.9,5.0,470,-1.00,-1.00,57.3018,-18.852938,0.000608,,,,,34 +SATSLF0720,2024246,10.513190,4.22,0.0591,0.1044,0.0184,0.00,16118,641,1,701,701,704,701,701,709,711,723,728,722,735,737,768,886,1233,1973,3163,4547,5783,6693,7324,7789,8210,8661,9165,9799,10546,11410,12402,13517,14694,15856,16965,17914,18633,19058,19199,19021,18648,18106,17525,16948,16480,16129,15897,15820,15913,16153,16565,17152,17886,18817,19865,21084,22406,23857,25347,26805,28235,29475,30474,31236,31613,31617,31293,30633,29721,28662,27420,26243,25092,24000,23004,22154,21413,20801,20321,19913,19623,19485,19375,19401,19497,19681,19959,20289,20728,21257,21805,22439,23090,23738,24353,24926,25398,25749,26035,26094,25973,25697,25207,24581,23865,23072,22198,21322,20469,19689,19001,18357,17777,17326,16902,16577,16339,16169,16074,16037,16053,16149,16310,16547,16830,17197,17619,18110,18686,19289,19925,20605,21323,22067,22814,23507,24222,24884,25477,26042,26469,26790,27061,27154,27168,27072,26875,26533,26129,25640,25074,24477,23854,23200,22551,21886,21258,20658,20053,19505,19001,18533,18131,17756,17440,17149,16870,16648,16434,16241,16032,15841,15661,15506,15357,15234,15157,15077,15013,14968,14940,14945,14946,14985,14997,15053,15066,15093,15152,15201,15227,15233,15232,15239,15253,15278,15283,15281,15239,15172,15101,15019,14928,14837,14711,14545,14382,14199,13993,13783,13527,13277,13003,12721,12437,12140,11858,11557,11288,11028,10790,10562,10290,9983,9659,9351,9079,8845,8626,8465,8298,8177,8066,7997,7921,7876,7818,7721,7565,7405,7237,7104,6992,6898,6822,6755,6697,6653,6640,6635,6620,6609,6621,6602,6455,6150,5735,5113,21.4,21.5,22.1,1568161,1.0,12.1,11.9,5.0,478,-1.00,-1.00,57.0346,-18.717431,0.000601,,,,,140 +SATSLF0720,2024246,10.513441,4.19,0.0587,0.1047,0.0191,0.00,16102,641,1,693,693,705,716,712,715,721,714,715,721,706,721,767,886,1241,1977,3154,4526,5767,6677,7321,7792,8219,8668,9200,9811,10550,11425,12397,13489,14667,15847,16951,17909,18641,19058,19199,19021,18633,18088,17501,16950,16474,16115,15879,15831,15909,16149,16556,17144,17877,18791,19861,21067,22391,23830,25305,26775,28194,29449,30438,31193,31599,31593,31254,30605,29695,28628,27392,26218,25044,23973,22973,22141,21392,20795,20310,19907,19631,19474,19364,19381,19464,19672,19924,20273,20697,21219,21794,22413,23080,23720,24341,24913,25381,25747,26007,26061,25934,25657,25179,24539,23819,23025,22164,21295,20455,19690,18977,18329,17776,17304,16898,16586,16337,16166,16074,16026,16053,16134,16301,16516,16806,17170,17597,18084,18654,19268,19901,20584,21317,22058,22802,23517,24210,24872,25460,26018,26441,26763,27003,27101,27119,27037,26822,26497,26093,25601,25033,24450,23817,23168,22535,21874,21245,20629,20022,19469,18993,18509,18101,17737,17415,17118,16853,16626,16425,16213,16027,15834,15639,15490,15355,15227,15121,15059,14986,14942,14934,14925,14933,14961,14983,15008,15048,15070,15143,15194,15211,15216,15217,15228,15244,15258,15261,15243,15213,15141,15081,15032,14930,14850,14690,14539,14379,14177,13972,13754,13509,13254,12998,12713,12418,12136,11841,11560,11278,11027,10776,10549,10281,9980,9654,9350,9057,8814,8601,8423,8281,8142,8055,7973,7913,7865,7808,7709,7583,7390,7242,7097,6996,6890,6805,6733,6675,6646,6643,6629,6625,6603,6630,6614,6468,6147,5725,5109,21.4,21.5,22.1,1568162,0.0,12.1,12.0,5.0,479,-1.00,-1.00,56.8551,-18.623674,0.000554,,,,,142 +SATSLF0720,2024246,10.513697,4.32,0.0604,0.1060,0.0196,0.00,16074,641,1,693,699,710,711,733,713,715,714,728,715,725,730,762,887,1231,1970,3150,4535,5766,6666,7301,7765,8191,8625,9139,9755,10504,11373,12356,13468,14642,15793,16897,17842,18555,19011,19128,18946,18586,18041,17463,16881,16439,16069,15841,15763,15848,16111,16521,17103,17841,18747,19800,21013,22347,23773,25251,26727,28155,29396,30380,31121,31531,31520,31169,30534,29619,28566,27317,26134,24984,23924,22931,22081,21351,20736,20256,19850,19568,19415,19306,19345,19441,19642,19909,20247,20685,21176,21747,22363,23013,23677,24281,24865,25329,25698,25956,26010,25890,25610,25126,24504,23785,22999,22114,21247,20417,19645,18945,18301,17746,17272,16867,16555,16313,16127,16023,15984,15996,16102,16257,16514,16790,17175,17604,18074,18641,19241,19879,20569,21283,22023,22757,23485,24169,24819,25409,25977,26400,26732,26980,27083,27105,27016,26778,26462,26062,25579,25001,24421,23798,23144,22500,21837,21200,20609,20006,19455,18963,18496,18085,17713,17395,17107,16833,16596,16400,16198,16006,15808,15628,15461,15319,15211,15117,15034,14952,14938,14903,14899,14907,14935,14957,14992,15032,15057,15118,15185,15194,15201,15209,15226,15226,15255,15245,15219,15175,15109,15063,14987,14898,14818,14665,14530,14347,14177,13974,13757,13523,13268,12986,12695,12402,12125,11805,11525,11258,11017,10770,10544,10280,9972,9636,9330,9055,8805,8594,8428,8276,8139,8042,7966,7905,7830,7782,7686,7553,7376,7229,7101,6984,6888,6812,6738,6690,6634,6622,6606,6604,6585,6621,6614,6452,6148,5727,5096,21.3,21.5,22.1,1568163,0.0,12.1,12.0,5.0,479,-1.00,-1.00,56.8154,-18.563997,0.000672,,,,,119 +SATSLF0720,2024246,10.513950,4.24,0.0594,0.1057,0.0196,0.00,16067,641,1,707,694,695,708,725,716,723,717,713,720,712,718,756,878,1206,1949,3155,4520,5749,6666,7302,7771,8192,8634,9152,9752,10490,11350,12355,13461,14621,15776,16894,17845,18570,19000,19122,18950,18571,18057,17452,16893,16445,16077,15837,15772,15851,16098,16509,17090,17837,18733,19804,21001,22336,23765,25245,26713,28119,29355,30359,31112,31500,31512,31168,30523,29606,28561,27318,26144,24989,23908,22908,22063,21330,20718,20231,19864,19570,19406,19319,19332,19446,19622,19883,20224,20661,21186,21733,22342,23008,23665,24269,24842,25324,25692,25944,26007,25870,25605,25125,24489,23769,22973,22112,21242,20419,19656,18953,18293,17734,17275,16853,16539,16296,16123,16014,15976,15997,16101,16261,16480,16791,17147,17573,18057,18630,19225,19857,20549,21266,22021,22749,23461,24166,24817,25411,25960,26389,26714,26952,27060,27089,26972,26780,26456,26064,25569,24997,24427,23788,23130,22484,21825,21190,20584,19982,19434,18944,18481,18084,17725,17405,17111,16852,16597,16396,16181,16002,15805,15612,15445,15316,15192,15107,15034,14965,14920,14901,14906,14912,14935,14957,14986,15030,15063,15112,15163,15179,15197,15194,15204,15227,15253,15237,15229,15174,15113,15063,14996,14897,14817,14673,14536,14359,14164,13963,13738,13496,13249,12977,12697,12403,12126,11817,11528,11249,11007,10773,10541,10256,9969,9648,9329,9043,8813,8586,8435,8273,8142,8046,7961,7893,7840,7769,7675,7559,7362,7232,7094,6981,6881,6799,6741,6677,6645,6619,6605,6598,6580,6606,6598,6446,6146,5724,5102,21.4,21.6,22.2,1568164,0.1,12.1,12.0,5.0,478,-1.00,-1.00,56.9852,-18.627637,0.000564,,,,,51 +SATSLF0720,2024246,10.514201,4.13,0.0579,0.1059,0.0196,0.00,16064,641,1,689,691,698,704,709,702,708,717,729,735,723,735,776,899,1228,1966,3138,4516,5729,6653,7285,7761,8186,8610,9125,9748,10480,11351,12320,13441,14612,15761,16861,17815,18527,18979,19112,18920,18558,18017,17434,16875,16404,16059,15826,15753,15826,16077,16481,17069,17813,18711,19779,20992,22294,23739,25213,26697,28093,29335,30339,31088,31485,31483,31159,30509,29579,28523,27310,26130,24973,23887,22903,22053,21303,20709,20221,19847,19571,19419,19310,19330,19434,19616,19879,20226,20651,21172,21745,22349,23008,23673,24266,24846,25326,25696,25957,25994,25881,25605,25120,24497,23773,22981,22115,21245,20421,19658,18953,18291,17729,17253,16855,16534,16272,16119,16024,15978,16012,16098,16241,16483,16787,17149,17564,18065,18633,19242,19862,20556,21267,22017,22754,23464,24165,24829,25410,25984,26400,26736,26967,27079,27097,26989,26779,26446,26065,25576,25001,24434,23797,23156,22486,21819,21200,20592,19993,19453,18945,18481,18082,17729,17401,17113,16833,16615,16397,16206,16016,15806,15622,15456,15314,15201,15105,15033,14961,14901,14890,14893,14900,14926,14938,14994,15025,15063,15120,15179,15188,15198,15213,15211,15227,15245,15253,15225,15185,15133,15062,15003,14906,14814,14683,14540,14365,14188,13984,13741,13515,13254,12983,12705,12393,12117,11806,11533,11241,11011,10772,10547,10257,9962,9640,9345,9041,8816,8613,8433,8282,8145,8046,7963,7895,7849,7772,7689,7541,7367,7219,7089,6988,6887,6812,6743,6696,6650,6629,6621,6601,6589,6605,6592,6443,6143,5721,5114,21.4,21.6,22.2,1568165,1.2,12.1,12.0,5.0,477,-1.00,-1.00,57.7421,-18.928863,0.000596,,,,,62 +SATSLF0720,2024246,10.514456,4.24,0.0594,0.1059,0.0200,0.00,16055,641,1,709,686,700,704,713,709,722,725,717,720,724,733,768,888,1228,1968,3167,4525,5758,6679,7312,7758,8183,8624,9157,9769,10499,11367,12354,13454,14620,15802,16905,17841,18555,18994,19117,18948,18581,18037,17455,16899,16449,16086,15842,15777,15853,16098,16499,17081,17825,18723,19797,21008,22316,23762,25233,26704,28119,29347,30355,31093,31499,31486,31173,30513,29600,28533,27313,26138,24979,23896,22909,22061,21321,20713,20229,19847,19557,19401,19310,19313,19419,19609,19879,20213,20635,21162,21717,22331,23004,23641,24247,24820,25299,25664,25917,25971,25854,25592,25101,24462,23758,22968,22105,21236,20402,19635,18919,18286,17729,17254,16855,16538,16279,16110,16006,15971,15981,16071,16251,16469,16763,17144,17564,18048,18594,19208,19846,20519,21233,21986,22717,23433,24140,24797,25383,25932,26360,26683,26929,27038,27047,26964,26754,26426,26033,25541,24971,24391,23756,23114,22461,21801,21172,20556,19963,19406,18923,18457,18056,17694,17358,17083,16818,16586,16378,16181,15989,15794,15611,15444,15309,15178,15079,15002,14934,14901,14893,14881,14883,14902,14932,14957,15019,15047,15080,15133,15147,15161,15172,15195,15211,15237,15226,15214,15173,15104,15049,14973,14885,14804,14658,14528,14345,14157,13949,13729,13494,13231,12969,12690,12394,12091,11805,11509,11239,10988,10757,10522,10249,9956,9625,9328,9038,8795,8577,8407,8276,8137,8041,7959,7885,7842,7781,7689,7547,7370,7217,7077,6969,6862,6790,6730,6672,6627,6613,6607,6590,6581,6602,6588,6459,6141,5715,5100,21.4,21.6,22.2,1568166,0.5,12.1,11.9,5.0,463,-1.00,-1.00,56.8112,-18.548770,0.000539,,,,,224 +SATSDF0720,2024246,10.759138,0.00,0.0000,0.0000,0.0000,0.00,641,0,1,635,617,620,613,614,609,606,611,617,609,605,621,605,613,632,630,627,629,629,623,632,630,645,643,636,641,643,630,638,637,649,645,631,651,653,661,652,661,661,649,643,651,645,636,656,653,650,645,662,644,648,641,647,651,659,653,645,647,631,643,638,631,632,638,629,647,641,640,657,659,637,639,649,640,650,649,655,648,645,653,646,634,644,645,629,647,648,652,651,660,658,667,661,661,640,638,635,651,641,656,640,655,649,640,645,642,645,659,644,644,640,628,634,635,638,634,646,653,645,645,650,637,639,631,629,637,630,632,633,637,636,644,645,643,640,636,647,652,640,644,648,643,643,640,633,647,632,628,630,633,629,634,637,641,644,649,630,647,645,638,651,642,641,634,633,625,644,651,654,646,659,645,647,641,639,636,635,636,635,646,635,635,644,641,645,632,642,637,643,650,645,645,646,640,641,650,640,642,629,647,648,656,637,659,651,633,635,635,634,634,629,630,635,639,648,648,638,650,657,641,631,628,629,629,631,639,648,651,649,649,645,634,633,634,641,638,644,645,645,642,645,645,660,658,645,641,627,631,641,628,639,645,649,648,645,483,0.0,0.0,0.0,1568165,0.1,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,194 +SATSLF0720,2024246,10.759692,4.10,0.0575,0.0993,0.0147,0.00,16263,641,1,691,683,696,686,701,701,700,706,703,701,702,712,745,867,1204,1974,3177,4568,5827,6738,7391,7867,8276,8733,9258,9881,10646,11526,12529,13648,14855,16026,17139,18118,18838,19277,19410,19239,18842,18315,17712,17129,16674,16289,16067,15985,16081,16324,16740,17327,18075,18994,20078,21336,22646,24105,25599,27105,28545,29792,30816,31573,31961,31965,31631,30965,30045,28966,27718,26519,25351,24279,23261,22383,21659,21030,20529,20147,19845,19696,19597,19621,19713,19901,20165,20507,20938,21471,22030,22656,23321,23975,24589,25171,25642,26013,26274,26343,26197,25930,25443,24795,24062,23272,22377,21503,20666,19869,19171,18513,17949,17478,17066,16745,16501,16314,16208,16168,16199,16286,16449,16669,16971,17337,17780,18264,18854,19465,20102,20802,21517,22295,23042,23757,24482,25109,25718,26296,26713,27051,27298,27401,27421,27329,27106,26777,26365,25870,25310,24718,24070,23421,22752,22082,21451,20837,20244,19664,19165,18685,18276,17915,17575,17285,17016,16775,16595,16357,16167,15972,15770,15620,15475,15364,15264,15190,15113,15078,15069,15070,15065,15104,15117,15144,15170,15203,15261,15310,15334,15341,15364,15364,15390,15400,15411,15370,15331,15263,15227,15145,15050,14951,14814,14664,14478,14301,14087,13883,13629,13355,13106,12804,12523,12217,11918,11618,11353,11102,10870,10617,10354,10053,9725,9410,9117,8887,8673,8493,8343,8219,8109,8023,7958,7912,7851,7749,7618,7437,7284,7153,7031,6941,6853,6787,6750,6714,6681,6663,6655,6646,6655,6666,6505,6189,5764,5139,21.2,21.2,21.7,1568166,0.0,12.1,12.0,4.9,601,-1.00,-1.00,56.8559,-18.841291,0.000650,,,,,97 +SATSLF0720,2024246,10.759874,4.14,0.0580,0.0989,0.0150,0.00,16270,641,1,707,695,706,706,713,705,709,722,717,718,727,729,756,875,1228,1979,3191,4601,5849,6767,7417,7876,8302,8768,9280,9907,10662,11537,12540,13669,14868,16036,17165,18133,18865,19298,19437,19249,18874,18314,17709,17149,16688,16318,16092,16016,16085,16343,16760,17352,18093,19005,20103,21325,22661,24109,25607,27127,28552,29821,30827,31578,31966,31980,31653,30985,30049,28967,27719,26551,25354,24273,23253,22388,21645,21033,20546,20162,19869,19700,19617,19618,19715,19911,20169,20509,20941,21481,22052,22668,23341,23973,24614,25176,25659,26028,26282,26333,26213,25927,25433,24800,24073,23255,22391,21502,20664,19891,19187,18525,17958,17479,17079,16752,16498,16313,16231,16178,16200,16293,16460,16692,16973,17351,17797,18273,18853,19470,20100,20791,21508,22273,23027,23742,24453,25125,25714,26301,26699,27049,27302,27392,27396,27331,27109,26784,26372,25882,25306,24714,24071,23421,22761,22078,21442,20826,20218,19668,19185,18696,18299,17926,17589,17290,17018,16770,16559,16359,16161,15969,15782,15622,15482,15363,15275,15200,15116,15088,15061,15065,15068,15079,15113,15150,15189,15218,15271,15316,15333,15337,15353,15354,15383,15377,15384,15382,15327,15282,15216,15133,15043,14951,14801,14656,14487,14297,14081,13866,13635,13368,13109,12817,12512,12216,11916,11629,11360,11103,10870,10633,10363,10057,9747,9427,9137,8897,8685,8501,8346,8222,8132,8045,7976,7931,7850,7770,7634,7454,7278,7167,7054,6942,6874,6795,6743,6685,6668,6663,6646,6641,6673,6675,6522,6205,5778,5156,21.2,21.2,21.8,1568167,0.8,12.1,12.0,5.0,498,-1.00,-1.00,56.3762,-18.649594,0.000577,,,,,250 +SATSLF0720,2024246,10.760129,4.18,0.0586,0.1008,0.0166,0.00,16212,641,1,693,699,694,700,695,699,700,704,712,708,709,727,767,885,1219,1987,3166,4541,5783,6709,7353,7827,8237,8699,9235,9849,10605,11489,12471,13590,14781,15956,17060,18025,18754,19200,19322,19142,18770,18232,17645,17078,16620,16242,16005,15941,16019,16268,16657,17256,18013,18917,20005,21229,22557,24018,25512,27009,28420,29681,30690,31434,31829,31837,31502,30842,29920,28845,27611,26429,25264,24169,23169,22305,21578,20954,20475,20073,19789,19623,19532,19541,19634,19822,20080,20434,20876,21388,21957,22580,23246,23898,24519,25102,25573,25933,26202,26235,26126,25833,25354,24721,23989,23193,22322,21441,20609,19825,19124,18459,17890,17410,17001,16680,16434,16258,16165,16119,16142,16240,16404,16632,16930,17298,17739,18221,18795,19413,20053,20731,21465,22201,22963,23659,24363,25047,25638,26216,26628,26953,27208,27306,27329,27226,27021,26693,26283,25807,25242,24634,24005,23344,22677,22011,21376,20758,20167,19601,19112,18625,18247,17869,17551,17261,16992,16745,16537,16325,16137,15937,15765,15586,15444,15324,15236,15154,15075,15048,15018,15022,15021,15041,15061,15095,15143,15185,15230,15290,15299,15319,15329,15324,15330,15348,15355,15349,15285,15232,15163,15104,15016,14917,14800,14637,14473,14270,14055,13829,13593,13333,13058,12774,12483,12199,11906,11620,11333,11075,10841,10600,10338,10041,9708,9393,9114,8857,8653,8480,8334,8197,8086,8023,7950,7889,7832,7730,7594,7422,7272,7134,7025,6925,6846,6774,6714,6679,6658,6654,6642,6642,6652,6649,6493,6185,5753,5134,21.2,21.2,21.8,1568168,0.5,12.1,11.9,5.0,486,-1.00,-1.00,56.7240,-18.712947,0.000591,,,,,192 +SATSLF0720,2024246,10.760382,4.16,0.0582,0.1014,0.0169,0.00,16190,641,1,697,695,695,690,695,688,703,709,717,709,724,725,760,879,1211,1974,3155,4546,5784,6712,7356,7831,8247,8691,9216,9833,10581,11453,12469,13581,14761,15954,17053,18015,18729,19173,19303,19126,18738,18202,17619,17041,16587,16213,15970,15905,15985,16236,16660,17248,17986,18906,19994,21189,22531,23992,25486,26964,28398,29652,30659,31402,31794,31782,31467,30814,29883,28824,27587,26403,25238,24154,23133,22280,21527,20917,20423,20039,19752,19586,19508,19521,19621,19815,20057,20417,20845,21386,21935,22545,23217,23873,24485,25050,25533,25898,26161,26215,26098,25824,25325,24678,23970,23168,22282,21410,20566,19776,19075,18425,17873,17402,16981,16653,16407,16237,16146,16093,16107,16210,16359,16600,16902,17261,17700,18180,18761,19371,20016,20708,21431,22171,22933,23644,24345,25016,25601,26192,26604,26937,27179,27274,27287,27194,26979,26665,26274,25765,25192,24602,23965,23302,22643,21991,21352,20733,20137,19581,19101,18618,18211,17835,17524,17224,16942,16717,16498,16291,16103,15911,15713,15559,15417,15310,15210,15132,15048,14999,14987,14983,15003,15025,15059,15093,15130,15161,15211,15267,15277,15270,15280,15283,15305,15351,15325,15332,15273,15225,15154,15083,14984,14888,14753,14604,14437,14249,14037,13827,13572,13311,13043,12756,12458,12163,11883,11600,11320,11073,10833,10597,10309,10023,9693,9393,9097,8836,8643,8475,8314,8190,8090,7993,7935,7895,7826,7739,7589,7412,7238,7119,7007,6920,6837,6773,6721,6677,6659,6656,6633,6615,6641,6634,6485,6169,5746,5128,21.2,21.2,21.9,1568169,0.4,12.1,12.0,5.0,485,-1.00,-1.00,57.1520,-18.871909,0.000622,,,,,84 +SATSLF0720,2024246,10.760639,4.17,0.0584,0.1018,0.0177,0.00,16188,641,1,700,697,701,701,688,696,699,707,723,721,732,725,765,884,1236,1970,3169,4546,5799,6711,7372,7824,8243,8699,9216,9834,10589,11456,12481,13588,14778,15957,17058,18024,18741,19165,19305,19110,18757,18200,17616,17060,16600,16228,15986,15922,16005,16240,16653,17244,17997,18891,19973,21204,22525,23976,25462,26953,28384,29655,30653,31414,31818,31800,31476,30829,29893,28818,27582,26393,25223,24135,23123,22258,21527,20922,20433,20036,19753,19597,19488,19506,19613,19790,20047,20403,20829,21355,21913,22539,23200,23855,24477,25050,25541,25890,26161,26203,26093,25801,25313,24678,23955,23158,22273,21403,20560,19794,19090,18417,17865,17402,16973,16666,16413,16258,16144,16102,16120,16210,16373,16589,16896,17260,17693,18186,18757,19369,20020,20708,21427,22168,22912,23634,24328,25019,25598,26165,26597,26907,27155,27268,27277,27180,26967,26648,26248,25744,25173,24594,23948,23301,22643,21961,21331,20741,20144,19577,19081,18605,18197,17828,17505,17208,16938,16707,16506,16302,16109,15913,15724,15546,15408,15292,15193,15129,15050,15028,15001,14997,15011,15029,15033,15080,15112,15143,15181,15252,15297,15289,15298,15304,15317,15351,15338,15331,15266,15199,15126,15075,14992,14889,14772,14621,14443,14240,14040,13814,13575,13312,13051,12762,12470,12186,11876,11595,11322,11074,10826,10579,10318,10016,9696,9385,9094,8857,8645,8471,8320,8182,8087,8004,7935,7884,7825,7729,7591,7419,7242,7123,7014,6912,6827,6770,6704,6683,6650,6643,6633,6622,6635,6631,6497,6177,5746,5123,21.2,21.3,21.9,1568170,0.8,12.1,12.0,5.0,482,-1.00,-1.00,56.9661,-18.794398,0.000568,,,,,85 +SATSLF0720,2024246,10.760898,4.13,0.0578,0.1014,0.0164,0.00,16193,641,1,705,693,701,706,705,701,711,727,717,724,729,729,775,894,1222,1987,3170,4549,5797,6725,7373,7845,8267,8701,9224,9850,10588,11457,12469,13578,14772,15940,17056,18028,18749,19197,19321,19142,18759,18221,17623,17037,16586,16221,15989,15917,16013,16254,16652,17259,18004,18918,19977,21210,22527,23988,25474,26977,28384,29640,30658,31394,31787,31795,31480,30826,29888,28818,27576,26389,25222,24125,23119,22253,21524,20917,20416,20023,19749,19591,19506,19521,19605,19794,20070,20412,20832,21355,21929,22550,23226,23860,24473,25058,25533,25888,26152,26186,26065,25789,25317,24665,23955,23163,22289,21421,20573,19805,19074,18445,17866,17399,17002,16677,16425,16244,16146,16092,16119,16215,16371,16598,16892,17269,17689,18182,18749,19384,20002,20697,21440,22193,22932,23642,24350,25012,25606,26161,26603,26933,27162,27266,27286,27197,26966,26641,26235,25744,25177,24588,23947,23302,22653,21996,21366,20739,20134,19578,19090,18613,18210,17835,17502,17222,16945,16701,16499,16296,16105,15931,15745,15589,15440,15321,15221,15141,15066,15026,15003,14998,14997,15024,15053,15082,15124,15160,15226,15265,15274,15291,15291,15289,15309,15344,15333,15330,15269,15231,15169,15097,15013,14900,14771,14621,14437,14249,14052,13824,13595,13316,13047,12774,12474,12190,11887,11601,11347,11085,10844,10608,10334,10034,9717,9383,9094,8855,8647,8483,8322,8191,8099,8020,7939,7907,7830,7738,7587,7410,7270,7117,7017,6923,6837,6778,6733,6688,6657,6662,6649,6625,6638,6637,6490,6173,5750,5129,21.3,21.3,21.9,1568171,0.5,12.1,11.9,5.0,483,-1.00,-1.00,56.7989,-18.723371,0.000594,,,,,1 +SATSLF0720,2024246,10.761150,4.20,0.0589,0.1018,0.0170,0.00,16179,641,1,712,697,696,691,697,697,707,706,713,722,717,721,763,894,1226,1978,3169,4552,5799,6713,7355,7827,8245,8684,9201,9825,10566,11447,12456,13572,14745,15920,17024,17992,18705,19147,19294,19088,18718,18182,17587,17020,16549,16203,15976,15907,15980,16234,16642,17218,17953,18881,19937,21161,22481,23929,25428,26925,28363,29610,30613,31364,31756,31745,31427,30761,29838,28754,27524,26353,25173,24096,23106,22243,21509,20902,20400,20023,19730,19584,19490,19489,19591,19779,20040,20393,20834,21341,21902,22527,23189,23845,24451,25040,25499,25875,26138,26186,26066,25781,25299,24663,23941,23155,22285,21403,20545,19782,19067,18405,17838,17371,16984,16652,16397,16235,16128,16091,16103,16198,16371,16594,16891,17265,17685,18171,18761,19365,20005,20686,21425,22173,22902,23623,24346,25001,25589,26148,26577,26902,27140,27257,27273,27185,26982,26630,26240,25747,25168,24592,23938,23296,22634,21981,21337,20724,20134,19577,19086,18605,18199,17836,17510,17206,16947,16693,16499,16272,16116,15915,15720,15562,15413,15307,15197,15129,15057,15025,14995,14987,14998,15012,15045,15090,15124,15159,15201,15257,15271,15283,15275,15291,15321,15341,15339,15339,15285,15225,15149,15083,14996,14905,14764,14605,14430,14241,14017,13811,13573,13319,13049,12767,12476,12165,11879,11588,11319,11077,10837,10590,10321,10013,9699,9393,9097,8855,8655,8485,8320,8180,8079,7998,7937,7891,7817,7723,7579,7417,7261,7136,7032,6923,6832,6768,6708,6676,6658,6639,6647,6630,6652,6645,6487,6189,5753,5133,21.2,21.3,21.9,1568172,0.0,12.1,11.9,5.0,481,-1.00,-1.00,56.7174,-18.659063,0.000596,,,,,206 +SATSLF0720,2024246,10.761407,4.22,0.0592,0.1032,0.0175,0.00,16143,641,1,687,689,694,689,695,695,709,710,710,715,729,722,763,872,1225,1961,3166,4540,5780,6685,7341,7808,8237,8678,9189,9805,10551,11420,12416,13500,14685,15861,16968,17931,18661,19097,19240,19050,18679,18152,17561,16982,16522,16154,15925,15853,15954,16198,16610,17193,17929,18837,19899,21127,22459,23892,25386,26844,28284,29543,30534,31277,31682,31682,31354,30693,29786,28725,27490,26289,25124,24050,23053,22197,21461,20843,20357,19970,19680,19523,19427,19449,19531,19731,19995,20338,20773,21297,21852,22484,23142,23786,24394,24986,25457,25825,26084,26129,26008,25738,25265,24610,23888,23080,22217,21341,20502,19749,19016,18356,17809,17361,16939,16624,16365,16199,16107,16059,16081,16174,16334,16557,16867,17225,17650,18133,18715,19322,19962,20649,21381,22117,22859,23577,24296,24945,25535,26097,26524,26846,27088,27200,27209,27120,26903,26578,26185,25692,25118,24525,23886,23245,22583,21929,21294,20674,20090,19526,19029,18561,18165,17785,17468,17177,16923,16677,16457,16269,16071,15872,15690,15520,15387,15264,15165,15094,15010,14978,14962,14949,14966,14996,14998,15051,15092,15131,15171,15220,15249,15264,15266,15264,15279,15302,15283,15295,15236,15169,15132,15045,14973,14885,14734,14587,14413,14233,14017,13785,13538,13283,13012,12744,12435,12150,11863,11573,11298,11041,10809,10562,10299,9998,9666,9361,9063,8828,8625,8455,8301,8165,8077,7992,7927,7867,7805,7713,7558,7378,7229,7117,7001,6910,6839,6762,6712,6672,6641,6619,6605,6597,6613,6619,6457,6162,5733,5119,21.3,21.3,21.9,1568173,0.0,12.2,11.9,5.0,480,-1.00,-1.00,56.8681,-18.684787,0.000540,,,,,177 +SATSLF0720,2024246,10.761661,4.01,0.0561,0.1039,0.0180,0.00,16113,641,1,699,682,683,681,703,708,712,721,724,739,720,727,766,865,1211,1959,3144,4537,5773,6688,7316,7799,8213,8649,9150,9783,10533,11400,12393,13514,14693,15847,16951,17927,18642,19093,19209,19024,18647,18117,17521,16968,16489,16130,15905,15842,15910,16167,16563,17157,17888,18802,19857,21074,22400,23848,25320,26817,28221,29475,30473,31217,31620,31626,31305,30653,29739,28662,27443,26249,25085,24005,23002,22142,21397,20796,20313,19922,19648,19480,19399,19401,19506,19694,19954,20294,20727,21247,21815,22426,23097,23718,24347,24929,25405,25783,26049,26083,25976,25677,25213,24557,23837,23045,22158,21284,20450,19697,18990,18350,17786,17310,16915,16602,16338,16163,16057,16017,16041,16133,16292,16519,16823,17194,17609,18112,18674,19289,19921,20604,21323,22076,22808,23520,24212,24887,25480,26033,26483,26788,27037,27145,27149,27052,26841,26506,26115,25629,25078,24496,23858,23218,22562,21909,21249,20643,20055,19467,18995,18522,18111,17745,17431,17159,16896,16640,16445,16226,16039,15826,15665,15501,15347,15234,15142,15079,14996,14949,14928,14933,14931,14967,14993,15015,15076,15102,15138,15203,15217,15217,15227,15236,15249,15278,15277,15274,15220,15165,15117,15034,14929,14849,14710,14549,14368,14171,13971,13753,13530,13249,12985,12713,12428,12136,11834,11559,11296,11033,10786,10547,10282,9985,9659,9342,9064,8830,8616,8441,8289,8153,8053,7981,7909,7849,7794,7698,7555,7399,7237,7108,6989,6909,6813,6752,6692,6653,6645,6636,6613,6608,6626,6622,6462,6150,5741,5113,21.3,21.4,21.9,1568174,0.8,12.1,11.9,5.0,481,-1.00,-1.00,57.6574,-18.978615,0.000532,,,,,46 +SATSLF0720,2024246,10.761913,4.32,0.0605,0.1045,0.0193,0.00,16096,641,1,704,699,714,717,710,712,703,715,702,715,722,725,763,880,1229,1970,3146,4525,5764,6672,7306,7787,8205,8656,9154,9771,10523,11385,12391,13489,14653,15815,16930,17884,18592,19041,19162,18994,18613,18080,17478,16924,16474,16102,15898,15817,15887,16145,16545,17139,17866,18773,19842,21060,22374,23809,25299,26772,28212,29461,30453,31205,31603,31587,31245,30587,29663,28603,27388,26211,25041,23959,22977,22132,21401,20798,20318,19912,19626,19473,19372,19380,19476,19669,19932,20265,20707,21237,21784,22407,23083,23721,24318,24888,25354,25728,25981,26039,25923,25655,25169,24548,23819,23024,22163,21288,20423,19680,18964,18314,17762,17298,16896,16583,16333,16158,16061,16001,16023,16114,16273,16506,16798,17158,17577,18089,18658,19271,19906,20581,21301,22061,22789,23518,24197,24867,25448,26019,26437,26778,27001,27117,27125,27041,26812,26493,26104,25609,25045,24445,23824,23184,22529,21865,21232,20610,20025,19462,18973,18485,18099,17733,17405,17128,16876,16641,16424,16217,16038,15816,15639,15477,15325,15227,15124,15057,14987,14944,14919,14937,14934,14953,14971,15016,15037,15075,15120,15179,15186,15213,15209,15220,15235,15259,15259,15240,15208,15137,15074,15000,14914,14816,14696,14550,14370,14187,13969,13749,13509,13240,12989,12717,12418,12127,11837,11556,11284,11031,10773,10542,10277,9974,9636,9339,9043,8814,8597,8446,8297,8168,8073,7989,7897,7848,7784,7696,7561,7377,7228,7108,6989,6893,6825,6754,6696,6650,6641,6626,6612,6601,6611,6610,6452,6152,5737,5109,21.3,21.4,22.0,1568175,1.4,12.1,11.9,5.0,482,-1.00,-1.00,56.7265,-18.565658,0.000616,,,,,24 +SATSLF0720,2024246,10.762169,4.25,0.0595,0.1044,0.0183,0.00,16119,641,1,700,697,700,711,712,710,713,716,724,721,743,733,779,889,1227,1965,3143,4539,5772,6693,7320,7791,8199,8647,9171,9801,10537,11392,12391,13489,14673,15838,16955,17909,18636,19069,19200,18990,18635,18096,17507,16947,16486,16117,15890,15819,15907,16177,16573,17142,17886,18791,19857,21065,22386,23840,25329,26822,28218,29469,30458,31218,31605,31604,31288,30624,29706,28654,27406,26222,25057,23977,22986,22139,21411,20801,20317,19930,19648,19483,19376,19394,19499,19682,19936,20291,20733,21253,21810,22436,23104,23752,24357,24933,25406,25777,26040,26084,25969,25693,25216,24561,23857,23065,22193,21316,20481,19713,19006,18357,17789,17321,16907,16587,16338,16162,16087,16042,16053,16141,16309,16534,16817,17182,17629,18118,18693,19293,19928,20598,21339,22074,22807,23546,24234,24904,25504,26052,26499,26821,27065,27165,27173,27077,26873,26526,26149,25645,25085,24507,23849,23218,22561,21901,21260,20661,20058,19507,19029,18532,18141,17769,17434,17151,16871,16631,16441,16240,16046,15864,15686,15504,15383,15257,15159,15085,14994,14957,14942,14934,14951,14978,14993,15043,15084,15113,15152,15202,15215,15239,15243,15266,15269,15283,15295,15278,15230,15175,15105,15043,14960,14861,14713,14573,14413,14213,14011,13789,13543,13294,13001,12727,12425,12149,11853,11556,11294,11041,10807,10571,10297,9997,9665,9353,9081,8845,8626,8465,8304,8157,8071,7989,7925,7870,7796,7703,7568,7393,7241,7113,6992,6903,6824,6766,6693,6656,6633,6635,6628,6615,6649,6637,6470,6174,5735,5105,21.3,21.4,22.0,1568176,0.4,12.1,11.9,5.0,472,-1.00,-1.00,56.8752,-18.643098,0.000598,,,,,26 +SATSLF0720,2024246,10.762425,4.18,0.0585,0.1048,0.0184,0.00,16101,641,1,694,696,697,696,712,697,719,722,729,732,725,743,769,886,1211,1971,3153,4527,5766,6674,7307,7783,8188,8629,9140,9768,10514,11381,12378,13483,14663,15828,16913,17881,18596,19035,19178,18987,18605,18084,17486,16919,16458,16107,15872,15801,15880,16142,16538,17117,17870,18780,19844,21051,22369,23799,25280,26756,28167,29419,30423,31181,31569,31561,31253,30590,29670,28610,27387,26194,25061,23974,22982,22117,21377,20763,20291,19897,19610,19447,19360,19378,19479,19671,19925,20278,20717,21237,21780,22413,23058,23713,24330,24909,25386,25741,26001,26051,25938,25658,25187,24530,23826,23035,22153,21293,20446,19669,18978,18331,17772,17299,16912,16580,16327,16167,16074,16038,16041,16151,16301,16516,16816,17170,17607,18082,18658,19283,19914,20596,21329,22068,22784,23518,24218,24883,25462,26025,26449,26775,27027,27122,27161,27063,26836,26517,26117,25619,25067,24470,23848,23186,22549,21869,21243,20621,20052,19493,18984,18523,18115,17755,17433,17130,16864,16633,16426,16228,16033,15842,15665,15498,15360,15249,15130,15063,14981,14952,14924,14928,14941,14954,14987,15019,15069,15097,15133,15195,15207,15219,15230,15235,15255,15267,15262,15267,15220,15168,15101,15030,14942,14854,14715,14569,14388,14213,13997,13770,13530,13255,12992,12721,12420,12130,11821,11544,11268,11028,10791,10571,10290,9990,9656,9353,9070,8811,8615,8432,8283,8142,8053,7969,7911,7859,7792,7707,7553,7387,7220,7106,6989,6891,6818,6749,6701,6658,6624,6635,6620,6614,6621,6614,6459,6152,5721,5101,21.3,21.4,22.0,1568177,0.3,12.1,11.9,5.0,471,-1.00,-1.00,57.1986,-18.754193,0.000553,,,,,55 +SATSLF0720,2024246,10.762680,4.15,0.0581,0.1050,0.0186,0.00,16086,641,1,709,705,712,705,707,709,717,713,720,714,714,721,767,873,1218,1965,3136,4519,5756,6656,7290,7749,8179,8637,9132,9771,10503,11367,12368,13469,14642,15803,16904,17858,18581,19014,19143,18953,18585,18064,17470,16906,16434,16083,15843,15780,15863,16110,16515,17108,17841,18755,19818,21041,22338,23781,25254,26733,28145,29387,30393,31142,31533,31531,31216,30577,29649,28590,27354,26180,25018,23953,22941,22093,21348,20742,20269,19881,19587,19441,19349,19360,19456,19646,19913,20266,20692,21201,21769,22385,23053,23700,24308,24885,25365,25721,25980,26023,25905,25617,25143,24508,23799,22997,22131,21274,20428,19659,18978,18313,17757,17290,16882,16564,16314,16134,16035,16002,16011,16113,16284,16507,16814,17173,17612,18077,18649,19256,19892,20569,21282,22034,22784,23505,24200,24853,25447,26002,26432,26765,27017,27109,27109,27026,26821,26482,26107,25608,25050,24454,23828,23158,22505,21849,21213,20601,20010,19461,18979,18510,18115,17753,17418,17129,16853,16614,16409,16211,16032,15833,15632,15473,15349,15240,15125,15051,14988,14929,14913,14921,14925,14953,14976,15009,15051,15081,15129,15187,15195,15222,15217,15233,15241,15255,15265,15266,15201,15137,15095,15017,14918,14823,14686,14539,14377,14177,13968,13763,13518,13255,12984,12708,12409,12117,11830,11548,11263,11003,10774,10533,10275,9973,9657,9346,9068,8810,8611,8443,8286,8156,8050,7975,7896,7863,7781,7688,7563,7378,7214,7099,6981,6887,6821,6744,6677,6645,6635,6625,6606,6590,6621,6612,6464,6163,5714,5105,21.3,21.4,22.1,1568177,0.0,12.1,11.9,5.0,475,-1.00,-1.00,57.6186,-18.912440,0.000564,,,,,192 +SATSLF0720,2024246,10.762935,4.05,0.0568,0.1062,0.0192,0.00,16060,641,1,696,699,702,696,694,701,704,705,715,729,741,757,777,891,1242,1970,3141,4513,5733,6647,7268,7737,8134,8577,9099,9719,10468,11334,12325,13417,14583,15747,16861,17793,18521,18953,19085,18906,18533,18011,17410,16858,16388,16037,15799,15726,15810,16054,16466,17036,17789,18698,19752,20963,22281,23705,25191,26664,28078,29321,30315,31068,31461,31463,31120,30496,29557,28513,27280,26112,24955,23872,22881,22038,21320,20692,20216,19818,19556,19398,19299,19321,19413,19608,19875,20209,20657,21169,21720,22337,22994,23654,24253,24819,25303,25661,25916,25980,25868,25583,25112,24485,23762,22977,22097,21243,20417,19637,18939,18283,17715,17271,16854,16548,16305,16125,16021,15979,16003,16099,16245,16478,16773,17143,17581,18045,18632,19232,19861,20552,21269,22021,22769,23477,24178,24825,25408,25977,26389,26725,26968,27069,27095,26996,26784,26442,26051,25562,25002,24423,23789,23143,22488,21838,21217,20600,20018,19458,18961,18504,18090,17713,17399,17105,16837,16595,16404,16202,16026,15825,15627,15460,15317,15203,15090,15035,14952,14931,14917,14904,14912,14933,14970,15005,15037,15062,15114,15173,15194,15193,15201,15205,15227,15258,15257,15253,15193,15136,15076,15027,14917,14836,14686,14536,14357,14167,13953,13747,13490,13243,12989,12697,12411,12122,11822,11532,11261,11009,10783,10549,10278,9960,9651,9337,9054,8810,8603,8432,8290,8156,8057,7973,7913,7837,7781,7693,7560,7389,7234,7104,7003,6888,6797,6733,6683,6639,6628,6640,6605,6603,6619,6606,6443,6154,5733,5115,21.3,21.4,22.1,1568178,1.4,12.1,12.0,5.0,481,-1.00,-1.00,58.3487,-19.166836,0.000641,,,,,83 +SATSLF0720,2024246,10.763188,4.22,0.0591,0.1046,0.0190,0.00,16097,641,1,700,701,705,699,709,713,706,720,718,732,741,747,775,897,1228,1965,3151,4537,5764,6684,7317,7788,8203,8643,9160,9773,10513,11381,12365,13468,14637,15818,16921,17884,18596,19031,19172,18981,18599,18071,17489,16917,16455,16105,15870,15813,15889,16128,16534,17122,17856,18755,19834,21049,22359,23793,25269,26756,28163,29433,30429,31166,31555,31549,31225,30573,29646,28611,27374,26179,25034,23965,22965,22117,21361,20756,20283,19882,19606,19446,19369,19374,19466,19662,19917,20253,20688,21216,21765,22395,23065,23712,24329,24897,25367,25726,25984,26044,25917,25643,25165,24530,23837,23040,22165,21285,20422,19677,18972,18312,17767,17290,16890,16573,16321,16153,16050,16005,16040,16125,16282,16519,16817,17186,17605,18104,18656,19279,19900,20595,21308,22059,22793,23501,24206,24855,25453,26019,26438,26753,27016,27114,27138,27040,26832,26505,26105,25600,25036,24459,23829,23172,22527,21864,21244,20618,20045,19485,18980,18518,18110,17737,17418,17118,16851,16629,16426,16213,16020,15821,15639,15479,15335,15236,15129,15056,14997,14954,14939,14938,14939,14966,14993,15035,15075,15097,15149,15197,15204,15221,15230,15235,15261,15280,15280,15273,15213,15152,15083,15015,14931,14849,14725,14562,14384,14194,13987,13760,13531,13261,12990,12717,12409,12135,11835,11550,11269,11017,10777,10550,10280,9986,9667,9363,9068,8815,8603,8450,8292,8151,8061,7996,7927,7872,7790,7707,7552,7387,7239,7112,6997,6902,6821,6762,6694,6656,6646,6637,6618,6614,6629,6622,6473,6167,5725,5111,21.3,21.4,22.1,1568179,0.0,12.1,12.0,5.0,481,-1.00,-1.00,56.9391,-18.639036,0.000561,,,,,72 +SATSLF0720,2024246,10.763441,4.26,0.0597,0.1058,0.0189,0.00,16066,641,1,708,708,713,709,710,725,726,723,725,729,733,737,766,892,1217,1956,3142,4509,5745,6651,7290,7761,8178,8621,9129,9737,10493,11342,12329,13435,14594,15757,16857,17799,18517,18952,19092,18922,18536,17997,17416,16870,16396,16051,15816,15741,15833,16073,16477,17055,17806,18701,19783,20997,22308,23734,25218,26705,28110,29355,30356,31082,31479,31488,31153,30496,29602,28541,27301,26129,24966,23890,22896,22053,21328,20713,20229,19848,19570,19408,19315,19327,19420,19616,19878,20223,20651,21160,21730,22333,23008,23645,24267,24836,25330,25690,25952,26011,25878,25601,25125,24482,23761,22978,22093,21247,20401,19639,18937,18289,17751,17257,16858,16551,16307,16122,16035,15981,16012,16101,16262,16473,16785,17144,17570,18064,18626,19255,19881,20545,21271,22024,22768,23477,24161,24813,25412,25968,26402,26737,26962,27063,27085,26995,26784,26481,26066,25581,25013,24424,23785,23140,22500,21833,21205,20592,19997,19448,18958,18480,18083,17724,17396,17106,16853,16595,16407,16204,16023,15832,15635,15473,15339,15209,15120,15037,14966,14948,14917,14904,14912,14936,14960,14996,15042,15078,15125,15170,15198,15202,15208,15204,15223,15246,15242,15244,15197,15140,15085,14998,14935,14838,14688,14541,14365,14184,13957,13743,13506,13240,12974,12701,12409,12132,11829,11550,11273,11024,10773,10541,10268,9962,9648,9338,9063,8813,8605,8425,8279,8153,8053,7977,7905,7846,7786,7701,7569,7376,7235,7113,6995,6899,6810,6734,6691,6645,6621,6615,6582,6583,6619,6609,6468,6162,5744,5117,21.3,21.5,22.1,1568180,0.3,12.1,12.0,5.0,480,-1.00,-1.00,57.7335,-18.928497,0.000644,,,,,84 +SATSLF0720,2024246,10.763696,4.25,0.0596,0.1065,0.0199,0.00,16059,641,1,714,702,699,709,712,701,713,695,706,719,720,744,773,897,1224,1960,3138,4521,5752,6657,7289,7751,8172,8613,9113,9737,10469,11317,12332,13428,14604,15749,16858,17803,18534,18953,19086,18909,18531,18018,17412,16871,16408,16049,15814,15752,15828,16065,16474,17051,17810,18718,19765,20977,22297,23737,25211,26682,28097,29339,30336,31077,31465,31467,31156,30482,29591,28530,27291,26128,24957,23880,22896,22053,21306,20698,20221,19846,19547,19391,19287,19308,19418,19602,19851,20211,20650,21160,21733,22353,23001,23651,24263,24848,25307,25689,25927,25975,25850,25569,25105,24485,23771,22989,22113,21250,20400,19617,18933,18269,17713,17259,16834,16530,16277,16117,16010,15977,16003,16102,16249,16485,16775,17132,17575,18064,18624,19224,19863,20546,21264,22003,22755,23465,24163,24816,25413,25968,26395,26724,26968,27073,27082,26982,26768,26441,26043,25559,24996,24410,23777,23130,22481,21801,21175,20578,20001,19455,18949,18486,18086,17713,17397,17106,16830,16583,16388,16182,15986,15806,15617,15465,15323,15221,15117,15041,14967,14922,14901,14906,14902,14924,14963,14992,15040,15069,15129,15174,15183,15191,15203,15213,15228,15241,15246,15226,15191,15133,15053,14987,14905,14811,14685,14535,14359,14161,13955,13753,13485,13228,12964,12690,12393,12112,11813,11536,11258,11014,10770,10534,10276,9975,9655,9349,9051,8817,8602,8429,8269,8131,8054,7973,7905,7837,7771,7688,7560,7381,7223,7100,6980,6891,6802,6733,6674,6645,6625,6608,6595,6582,6603,6599,6458,6146,5717,5112,21.4,21.5,22.1,1568181,1.3,12.1,12.0,5.0,478,-1.00,-1.00,57.5699,-18.853512,0.000588,,,,,93 +SATSLF0720,2024246,10.763949,4.25,0.0595,0.1061,0.0197,0.00,16048,641,1,705,704,705,707,701,721,722,709,715,718,722,721,753,873,1209,1956,3129,4508,5729,6651,7289,7743,8157,8594,9127,9733,10474,11330,12327,13416,14592,15749,16857,17800,18517,18944,19083,18909,18536,18010,17412,16858,16395,16027,15814,15745,15820,16061,16468,17065,17801,18698,19760,20978,22286,23712,25185,26676,28081,29317,30310,31066,31446,31458,31132,30469,29570,28512,27285,26096,24948,23869,22877,22016,21297,20697,20201,19825,19538,19390,19305,19294,19408,19597,19852,20195,20633,21147,21709,22336,22989,23634,24259,24821,25312,25656,25925,25977,25853,25565,25092,24469,23741,22951,22081,21218,20359,19600,18914,18248,17699,17239,16836,16525,16277,16122,16017,15977,15989,16093,16237,16461,16759,17138,17557,18029,18610,19227,19858,20537,21261,22021,22741,23447,24155,24797,25387,25953,26373,26707,26929,27035,27048,26953,26733,26403,26023,25534,24974,24406,23769,23118,22481,21812,21177,20570,19977,19421,18928,18457,18065,17707,17373,17079,16811,16576,16357,16167,15985,15800,15614,15444,15313,15195,15101,15025,14945,14905,14897,14905,14909,14928,14957,14980,15016,15056,15107,15168,15169,15187,15186,15203,15218,15229,15241,15230,15165,15118,15061,14989,14907,14816,14661,14520,14343,14160,13958,13744,13515,13242,12962,12672,12372,12080,11787,11510,11238,10994,10757,10525,10251,9948,9634,9322,9044,8802,8608,8426,8275,8137,8039,7961,7891,7819,7759,7669,7555,7369,7222,7092,6991,6891,6805,6731,6683,6637,6613,6606,6593,6587,6602,6598,6442,6143,5718,5089,21.3,21.5,22.2,1568182,0.0,12.1,12.0,5.0,477,-1.00,-1.00,57.4452,-18.790194,0.000583,,,,,250 +SATSLF0720,2024246,10.764200,4.21,0.0589,0.1056,0.0197,0.00,16065,641,1,702,693,691,701,706,708,708,727,724,732,729,738,768,875,1225,1969,3137,4511,5753,6660,7297,7769,8193,8634,9133,9755,10495,11371,12329,13437,14616,15783,16875,17825,18545,18983,19113,18938,18565,18034,17453,16889,16416,16049,15843,15764,15841,16086,16492,17064,17819,18722,19786,21010,22315,23771,25232,26728,28120,29367,30362,31090,31495,31481,31168,30514,29589,28539,27320,26146,24976,23905,22906,22053,21324,20713,20237,19838,19556,19411,19325,19326,19422,19619,19876,20234,20662,21175,21749,22361,23021,23668,24269,24860,25326,25685,25941,26009,25870,25598,25115,24495,23765,22979,22104,21237,20397,19648,18942,18316,17746,17282,16863,16552,16289,16123,16023,15975,16003,16089,16247,16484,16776,17151,17570,18067,18637,19244,19875,20563,21270,22005,22741,23457,24164,24805,25410,25976,26397,26715,26970,27073,27083,26980,26779,26452,26046,25568,25000,24406,23787,23127,22487,21824,21192,20572,19990,19437,18942,18488,18088,17717,17387,17105,16832,16596,16385,16192,16002,15801,15623,15449,15307,15201,15097,15029,14953,14916,14889,14898,14909,14929,14950,14999,15025,15045,15115,15179,15185,15205,15196,15212,15229,15251,15241,15232,15175,15123,15059,15008,14893,14811,14678,14515,14363,14156,13959,13751,13506,13240,12981,12689,12392,12110,11809,11544,11262,11005,10771,10529,10248,9951,9639,9330,9067,8809,8601,8442,8278,8147,8051,7959,7896,7840,7758,7685,7556,7373,7222,7088,6976,6887,6805,6740,6687,6652,6613,6613,6602,6589,6609,6597,6446,6144,5723,5101,21.4,21.6,22.2,1568183,0.0,12.1,11.9,5.0,479,-1.00,-1.00,57.3803,-18.787624,0.000628,,,,,253 +SATSLF0720,2024246,10.764455,4.17,0.0584,0.1057,0.0198,0.00,16068,641,1,709,700,706,711,726,713,715,731,737,729,726,743,781,898,1229,1974,3171,4525,5757,6677,7309,7762,8179,8628,9143,9768,10498,11362,12339,13454,14632,15794,16889,17831,18569,18997,19144,18962,18570,18052,17437,16898,16421,16074,15837,15778,15853,16093,16502,17089,17836,18746,19797,21011,22318,23769,25240,26704,28133,29357,30362,31095,31495,31498,31168,30517,29604,28561,27330,26148,24978,23918,22893,22071,21325,20721,20234,19853,19578,19406,19321,19338,19433,19629,19877,20233,20663,21175,21735,22353,23016,23657,24263,24843,25309,25675,25956,25994,25882,25598,25117,24487,23774,22986,22107,21251,20411,19649,18949,18296,17733,17267,16858,16548,16301,16125,16013,15965,15983,16090,16265,16488,16788,17141,17586,18053,18627,19229,19863,20549,21265,22007,22741,23453,24156,24803,25397,25972,26397,26729,26954,27068,27081,26982,26780,26437,26058,25562,24992,24417,23781,23131,22487,21828,21189,20576,19982,19434,18949,18483,18089,17734,17386,17090,16841,16580,16404,16202,16010,15808,15629,15453,15327,15216,15119,15028,14960,14928,14906,14905,14917,14931,14950,14994,15029,15061,15106,15166,15184,15194,15193,15201,15235,15241,15239,15237,15179,15117,15057,14979,14896,14807,14669,14526,14357,14165,13965,13741,13493,13233,12972,12692,12402,12100,11809,11525,11264,11005,10753,10528,10264,9965,9646,9339,9064,8807,8599,8423,8274,8130,8051,7957,7899,7855,7800,7701,7558,7389,7227,7101,6987,6895,6797,6739,6692,6655,6623,6615,6609,6593,6603,6605,6450,6148,5712,5115,21.4,21.6,22.2,1568184,0.1,12.1,12.0,5.0,478,-1.00,-1.00,57.2540,-18.738928,0.000569,,,,,137 +SATSDF0720,2024246,11.009138,0.00,0.0000,0.0000,0.0000,0.00,639,0,1,613,614,611,611,631,629,625,619,623,622,616,603,623,628,601,611,621,628,627,645,636,628,640,643,642,647,649,657,653,650,663,643,643,649,645,635,643,649,650,633,634,638,646,647,645,651,641,633,656,656,656,659,666,649,658,653,641,657,653,648,638,639,643,636,640,647,651,649,650,660,641,637,634,630,645,649,653,639,651,651,653,650,653,645,651,647,653,648,645,643,636,635,641,629,633,645,658,640,648,645,637,634,633,626,627,634,641,633,642,645,641,639,645,642,640,646,634,642,645,640,631,632,631,626,634,632,630,631,636,647,642,651,640,632,633,629,632,629,629,637,633,632,651,642,653,646,661,645,641,627,635,651,637,634,629,619,631,629,639,637,635,647,644,644,629,635,626,644,637,634,632,631,632,641,630,643,644,638,641,651,645,633,631,647,633,646,647,657,638,635,641,639,635,643,637,640,647,643,628,643,631,633,626,621,623,632,619,631,645,634,639,643,640,642,653,653,650,645,641,641,629,625,627,630,637,629,639,653,646,647,648,633,634,636,637,650,656,649,640,638,644,637,640,637,635,638,629,633,643,636,640,645,637,637,653,477,0.0,0.0,0.0,1568183,0.1,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,11 +SATSLF0720,2024246,11.009692,4.22,0.0591,0.0997,0.0157,0.00,16239,639,1,684,693,689,701,698,706,705,698,706,711,709,714,759,871,1207,1975,3157,4549,5786,6715,7360,7826,8247,8699,9221,9850,10610,11502,12501,13618,14807,15987,17101,18072,18793,19234,19355,19174,18792,18265,17671,17105,16634,16280,16040,15975,16049,16302,16716,17302,18045,18960,20045,21265,22592,24059,25575,27057,28485,29750,30756,31510,31893,31907,31577,30930,29992,28917,27689,26493,25320,24228,23221,22358,21612,20994,20515,20110,19834,19671,19580,19585,19681,19877,20131,20472,20907,21434,22017,22630,23294,23943,24548,25130,25618,25969,26243,26289,26176,25893,25394,24757,24021,23229,22353,21474,20628,19853,19137,18481,17920,17448,17033,16712,16457,16283,16189,16142,16174,16261,16435,16675,16966,17329,17745,18231,18813,19426,20065,20774,21504,22258,23017,23718,24443,25110,25696,26272,26679,27003,27255,27365,27374,27280,27072,26749,26358,25854,25273,24669,24045,23389,22722,22063,21422,20801,20214,19653,19163,18673,18281,17893,17557,17273,17006,16763,16575,16361,16165,15972,15776,15607,15460,15349,15234,15151,15091,15041,15037,15042,15040,15063,15105,15142,15177,15208,15245,15296,15319,15330,15328,15346,15356,15365,15365,15384,15321,15261,15191,15122,15034,14941,14808,14653,14474,14269,14071,13858,13610,13351,13099,12821,12521,12217,11916,11619,11349,11093,10845,10615,10345,10035,9720,9393,9123,8882,8669,8485,8340,8195,8107,8027,7953,7912,7852,7750,7614,7418,7273,7144,7025,6912,6831,6758,6718,6669,6669,6656,6650,6633,6659,6642,6481,6179,5747,5132,21.2,21.2,21.6,1568184,0.2,12.1,11.9,5.0,602,-1.00,-1.00,56.7817,-18.782151,0.000524,,,,,121 +SATSLF0720,2024246,11.009874,4.10,0.0574,0.1003,0.0157,0.00,16238,639,1,690,695,702,698,701,705,709,724,717,709,727,727,767,885,1228,1977,3175,4571,5825,6759,7397,7866,8282,8739,9258,9877,10629,11534,12535,13661,14849,16017,17143,18093,18815,19254,19387,19204,18822,18277,17681,17121,16648,16290,16056,15991,16075,16300,16711,17292,18046,18950,20030,21288,22605,24075,25573,27037,28490,29760,30761,31515,31906,31917,31580,30923,29988,28904,27672,26481,25309,24213,23207,22342,21600,20989,20497,20108,19818,19653,19552,19584,19674,19866,20118,20471,20905,21425,22002,22615,23274,23918,24537,25120,25599,25975,26233,26280,26164,25883,25387,24737,24028,23220,22341,21471,20617,19848,19133,18484,17909,17443,17032,16701,16461,16281,16180,16145,16171,16266,16438,16665,16950,17335,17749,18229,18810,19417,20065,20749,21491,22231,22982,23712,24427,25093,25668,26243,26668,27010,27241,27334,27365,27269,27041,26715,26319,25830,25250,24661,24038,23385,22713,22046,21414,20809,20202,19632,19141,18656,18256,17882,17553,17270,16973,16738,16539,16337,16151,15956,15777,15606,15463,15348,15235,15177,15097,15050,15031,15030,15041,15060,15081,15112,15143,15176,15223,15290,15314,15316,15321,15338,15344,15362,15359,15348,15304,15236,15191,15121,15029,14937,14791,14653,14472,14289,14070,13847,13616,13362,13085,12801,12502,12204,11904,11630,11348,11091,10853,10621,10342,10039,9724,9400,9126,8869,8654,8499,8340,8200,8091,8031,7957,7909,7845,7742,7601,7424,7266,7145,7034,6930,6841,6783,6734,6693,6679,6673,6663,6635,6659,6647,6494,6176,5759,5135,21.2,21.2,21.8,1568185,0.5,12.1,11.9,5.0,496,-1.00,-1.00,56.6501,-18.724943,0.000608,,,,,176 +SATSLF0720,2024246,11.010129,4.06,0.0569,0.1004,0.0154,0.00,16237,639,1,701,694,704,707,705,706,700,703,717,708,708,726,773,897,1245,2000,3168,4554,5809,6736,7378,7863,8287,8749,9257,9898,10641,11523,12522,13629,14819,15997,17113,18072,18823,19264,19398,19190,18819,18263,17675,17112,16630,16267,16038,15966,16050,16301,16728,17298,18059,18968,20036,21281,22610,24058,25553,27047,28489,29736,30753,31498,31898,31899,31581,30916,29989,28923,27674,26470,25313,24211,23211,22333,21604,20977,20485,20091,19812,19651,19549,19566,19689,19865,20128,20479,20917,21421,22003,22614,23283,23926,24539,25128,25602,25962,26230,26284,26165,25877,25405,24761,24043,23221,22359,21480,20612,19848,19136,18476,17920,17444,17036,16717,16469,16280,16195,16126,16164,16231,16416,16637,16940,17316,17749,18237,18819,19421,20069,20754,21496,22249,22992,23710,24409,25079,25672,26238,26681,27009,27237,27355,27360,27272,27049,26711,26311,25840,25252,24668,24024,23376,22712,22035,21403,20794,20199,19645,19137,18674,18265,17888,17547,17259,16998,16752,16551,16350,16160,15955,15774,15589,15450,15330,15239,15157,15088,15058,15032,15040,15037,15072,15078,15114,15163,15199,15249,15298,15316,15326,15322,15339,15357,15369,15376,15369,15322,15253,15200,15133,15044,14934,14804,14647,14464,14274,14066,13845,13618,13349,13069,12787,12499,12208,11896,11615,11344,11086,10838,10605,10341,10035,9717,9406,9129,8867,8651,8499,8345,8205,8108,8028,7953,7888,7825,7753,7602,7436,7268,7133,7043,6933,6851,6779,6741,6697,6682,6670,6660,6620,6643,6654,6490,6189,5765,5138,21.2,21.2,21.8,1568186,0.3,12.1,12.0,5.0,485,-1.00,-1.00,56.9334,-18.840957,0.000600,,,,,19 +SATSLF0720,2024246,11.010382,4.21,0.0590,0.1015,0.0166,0.00,16193,639,1,700,687,694,697,706,701,694,707,711,709,685,715,739,875,1206,1975,3161,4549,5790,6712,7346,7827,8244,8699,9221,9833,10585,11446,12456,13570,14745,15921,17034,18007,18721,19161,19307,19118,18745,18206,17612,17046,16584,16209,15979,15917,15982,16233,16648,17234,17985,18916,19986,21206,22533,23993,25481,26962,28395,29644,30634,31386,31784,31799,31472,30800,29871,28821,27564,26403,25218,24139,23138,22273,21541,20909,20423,20037,19760,19592,19499,19512,19608,19803,20070,20414,20845,21371,21945,22560,23223,23866,24478,25064,25537,25905,26164,26223,26090,25818,25322,24677,23971,23165,22299,21425,20569,19799,19085,18431,17869,17398,16999,16669,16417,16257,16149,16105,16121,16219,16387,16622,16910,17282,17703,18194,18766,19370,20029,20712,21457,22209,22942,23659,24362,25012,25607,26192,26605,26929,27174,27298,27293,27219,26993,26652,26257,25783,25209,24628,23969,23313,22659,21979,21353,20746,20153,19602,19110,18624,18219,17851,17515,17227,16947,16705,16498,16312,16116,15924,15731,15564,15427,15305,15210,15129,15046,15013,14998,15013,15002,15031,15043,15097,15134,15163,15208,15273,15267,15291,15301,15305,15317,15337,15354,15341,15289,15233,15162,15102,14993,14914,14770,14613,14431,14251,14038,13825,13581,13328,13050,12779,12470,12187,11889,11602,11324,11077,10813,10587,10316,10008,9689,9400,9109,8855,8655,8477,8313,8181,8093,8015,7930,7883,7817,7750,7603,7426,7265,7128,7031,6914,6833,6763,6725,6682,6653,6630,6631,6619,6647,6650,6489,6179,5753,5113,21.2,21.2,21.8,1568187,0.4,12.1,11.9,5.0,484,-1.00,-1.00,56.8200,-18.731073,0.000611,,,,,124 +SATSLF0720,2024246,11.010639,4.11,0.0575,0.1012,0.0171,0.00,16205,639,1,692,701,689,699,708,702,711,722,707,711,721,717,747,887,1232,1977,3177,4573,5823,6742,7380,7845,8267,8714,9229,9856,10594,11467,12484,13601,14795,15954,17080,18032,18763,19213,19344,19161,18769,18240,17652,17078,16609,16226,16017,15929,16014,16273,16689,17274,18014,18927,19995,21224,22549,24005,25489,26990,28426,29692,30706,31452,31845,31829,31499,30840,29920,28843,27613,26417,25248,24151,23173,22297,21557,20941,20457,20056,19773,19603,19513,19516,19637,19817,20067,20432,20851,21383,21945,22567,23229,23888,24493,25076,25562,25925,26187,26235,26120,25841,25341,24712,23997,23188,22313,21434,20584,19806,19097,18423,17863,17393,16987,16669,16424,16240,16151,16099,16117,16219,16371,16599,16914,17286,17718,18221,18781,19386,20032,20714,21444,22194,22946,23662,24368,25034,25637,26196,26630,26941,27187,27303,27309,27217,26998,26667,26272,25769,25193,24618,23969,23328,22674,21998,21376,20768,20166,19601,19112,18628,18218,17847,17522,17213,16965,16718,16514,16317,16119,15922,15740,15560,15430,15306,15214,15127,15054,15022,15013,15003,15003,15041,15073,15102,15141,15178,15232,15272,15305,15309,15321,15323,15334,15349,15343,15337,15281,15218,15144,15078,14988,14912,14773,14622,14445,14267,14064,13829,13592,13316,13047,12770,12480,12198,11890,11598,11332,11085,10837,10599,10327,10019,9693,9385,9112,8868,8656,8483,8320,8192,8097,8016,7959,7893,7825,7725,7588,7418,7265,7136,7015,6919,6838,6781,6738,6690,6662,6650,6640,6621,6641,6645,6497,6172,5752,5127,21.2,21.2,21.9,1568188,0.7,12.1,12.0,5.0,475,-1.00,-1.00,56.7974,-18.744030,0.000601,,,,,60 +SATSLF0720,2024246,11.010897,4.23,0.0593,0.1016,0.0164,0.00,16200,639,1,701,698,704,706,703,705,704,702,709,712,715,726,767,885,1227,1997,3174,4570,5811,6722,7367,7833,8251,8704,9211,9851,10598,11461,12471,13589,14777,15936,17067,18020,18754,19185,19303,19131,18743,18210,17633,17057,16603,16232,15993,15926,16000,16246,16658,17241,18004,18906,19981,21221,22541,24005,25495,26970,28413,29662,30658,31405,31808,31801,31481,30823,29896,28834,27590,26395,25240,24149,23124,22279,21532,20907,20432,20033,19755,19593,19494,19516,19617,19801,20076,20420,20861,21385,21949,22567,23228,23873,24468,25056,25545,25905,26176,26231,26105,25799,25352,24705,23965,23168,22302,21420,20572,19799,19093,18434,17879,17406,16994,16670,16406,16247,16132,16093,16129,16231,16393,16610,16919,17274,17722,18197,18772,19385,20021,20717,21441,22185,22941,23652,24352,25024,25621,26185,26613,26936,27178,27287,27306,27209,26992,26658,26262,25766,25188,24597,23965,23332,22658,21999,21365,20741,20138,19579,19085,18624,18221,17852,17534,17243,16977,16733,16522,16313,16118,15924,15747,15578,15435,15318,15220,15137,15074,15040,15019,15009,15025,15048,15063,15108,15136,15161,15224,15274,15282,15290,15310,15307,15339,15369,15349,15343,15289,15217,15168,15085,15008,14910,14785,14629,14457,14256,14049,13820,13588,13326,13065,12789,12494,12206,11901,11609,11333,11088,10842,10613,10336,10039,9713,9394,9111,8857,8661,8488,8327,8194,8102,8028,7957,7893,7848,7744,7592,7418,7264,7140,7009,6913,6843,6770,6710,6683,6671,6663,6645,6635,6637,6631,6487,6188,5753,5125,21.2,21.3,21.9,1568189,1.0,12.1,12.0,5.0,484,-1.00,-1.00,56.6286,-18.660183,0.000596,,,,,137 +SATSLF0720,2024246,11.011153,4.13,0.0579,0.1022,0.0167,0.00,16183,639,1,698,707,701,705,705,705,698,697,709,712,724,732,761,889,1237,1994,3186,4566,5809,6730,7369,7828,8242,8699,9228,9853,10585,11469,12459,13575,14745,15915,17032,17987,18720,19165,19303,19111,18755,18205,17595,17027,16564,16197,15962,15895,15991,16237,16649,17233,17990,18902,19973,21192,22496,23958,25448,26922,28355,29614,30625,31368,31760,31769,31440,30781,29859,28810,27553,26361,25197,24115,23115,22252,21504,20893,20410,20017,19719,19571,19468,19488,19584,19786,20057,20396,20820,21345,21912,22530,23189,23829,24451,25012,25495,25867,26137,26189,26074,25794,25320,24660,23940,23142,22276,21387,20552,19770,19068,18412,17852,17379,16968,16653,16401,16226,16139,16089,16115,16199,16374,16603,16898,17254,17703,18188,18749,19361,20000,20688,21414,22171,22918,23638,24349,24997,25591,26156,26596,26913,27160,27266,27269,27188,26961,26640,26242,25748,25178,24578,23944,23306,22643,21973,21339,20727,20135,19589,19078,18607,18197,17831,17495,17210,16953,16712,16509,16292,16104,15916,15718,15542,15411,15285,15189,15130,15063,15017,14998,15000,15000,15020,15047,15087,15117,15154,15191,15255,15264,15272,15293,15301,15313,15351,15336,15335,15299,15221,15156,15085,14997,14903,14770,14605,14448,14253,14034,13824,13576,13320,13045,12759,12470,12162,11873,11591,11310,11072,10841,10591,10327,10035,9712,9387,9108,8865,8651,8480,8320,8189,8085,7995,7939,7881,7806,7730,7591,7432,7267,7146,7017,6925,6832,6778,6728,6693,6670,6657,6638,6635,6642,6640,6490,6181,5741,5123,21.3,21.3,21.9,1568190,0.4,12.1,11.9,5.0,474,-1.00,-1.00,56.9036,-18.750252,0.000582,,,,,12 +SATSLF0720,2024246,11.011411,4.04,0.0566,0.1026,0.0167,0.00,16170,639,1,699,701,698,701,694,691,703,697,701,703,711,727,763,893,1217,1976,3161,4552,5794,6704,7347,7822,8234,8689,9194,9822,10569,11435,12442,13562,14745,15930,17044,17993,18720,19162,19305,19085,18713,18182,17589,17025,16562,16198,15971,15888,15963,16215,16635,17211,17955,18883,19942,21175,22494,23939,25422,26906,28349,29585,30595,31346,31735,31735,31411,30758,29845,28785,27540,26355,25176,24100,23080,22232,21497,20893,20401,20013,19729,19551,19454,19462,19581,19753,20023,20362,20815,21316,21902,22517,23187,23838,24433,25015,25488,25853,26121,26173,26049,25781,25309,24649,23927,23131,22254,21387,20546,19757,19051,18398,17844,17365,16968,16644,16384,16206,16116,16082,16096,16191,16366,16588,16884,17249,17686,18165,18747,19352,19993,20690,21413,22154,22901,23604,24305,24974,25549,26130,26571,26890,27128,27243,27257,27164,26946,26621,26218,25729,25161,24576,23943,23291,22608,21955,21328,20704,20112,19554,19056,18584,18187,17813,17491,17201,16931,16682,16487,16292,16097,15893,15711,15549,15409,15289,15207,15128,15052,14997,14977,14973,14971,15013,15026,15060,15106,15145,15201,15261,15267,15258,15282,15285,15305,15320,15321,15324,15265,15205,15156,15066,14983,14897,14767,14606,14430,14234,14033,13801,13574,13306,13042,12757,12455,12167,11865,11576,11307,11067,10821,10581,10308,10005,9677,9381,9101,8845,8635,8468,8317,8188,8085,8005,7926,7873,7803,7727,7582,7413,7261,7121,7012,6904,6823,6762,6708,6666,6649,6638,6637,6624,6645,6643,6486,6170,5753,5125,21.2,21.3,21.9,1568191,0.0,12.0,12.0,5.0,484,-1.00,-1.00,57.3014,-18.902243,0.000559,,,,,113 +SATSLF0720,2024246,11.011665,4.23,0.0592,0.1025,0.0172,0.00,16166,639,1,694,700,695,715,721,720,723,722,713,714,716,719,754,883,1226,1976,3170,4565,5808,6713,7355,7829,8246,8667,9195,9817,10565,11437,12436,13561,14738,15912,17020,17989,18721,19149,19282,19096,18717,18161,17561,17002,16544,16176,15968,15891,15973,16221,16626,17211,17958,18878,19937,21175,22498,23933,25420,26913,28348,29597,30593,31339,31739,31734,31401,30752,29820,28766,27510,26336,25168,24084,23078,22207,21467,20869,20376,19981,19693,19543,19456,19474,19577,19768,20023,20360,20802,21325,21876,22489,23165,23819,24413,25015,25485,25843,26113,26163,26045,25768,25296,24648,23928,23130,22244,21383,20525,19763,19055,18406,17850,17373,16964,16645,16397,16232,16129,16069,16096,16185,16358,16581,16866,17248,17680,18167,18746,19353,19988,20672,21405,22144,22881,23593,24311,24970,25554,26135,26565,26881,27136,27238,27242,27156,26930,26615,26216,25723,25153,24571,23920,23286,22614,21952,21317,20707,20108,19569,19060,18579,18172,17811,17465,17181,16916,16692,16486,16279,16093,15899,15720,15537,15395,15261,15175,15101,15028,14979,14978,14987,14997,15028,15048,15076,15123,15145,15182,15248,15272,15276,15277,15276,15299,15329,15310,15304,15271,15189,15139,15072,14980,14882,14743,14589,14422,14219,14023,13800,13551,13297,13043,12755,12461,12180,11885,11597,11312,11045,10821,10565,10294,10008,9691,9386,9106,8855,8645,8461,8301,8169,8068,7991,7933,7883,7830,7726,7587,7419,7253,7124,7019,6909,6833,6776,6701,6681,6661,6652,6632,6626,6649,6638,6473,6174,5738,5108,21.3,21.4,21.9,1568192,0.6,12.2,11.9,5.0,481,-1.00,-1.00,56.7048,-18.648616,0.000633,,,,,205 +SATSLF0720,2024246,11.011917,4.38,0.0613,0.1028,0.0173,0.00,16162,639,1,695,703,698,713,708,708,705,715,708,711,725,725,765,893,1235,1985,3162,4553,5801,6726,7346,7817,8257,8682,9207,9833,10570,11442,12437,13546,14747,15909,17027,17965,18695,19139,19272,19069,18697,18152,17558,16992,16542,16189,15965,15901,15981,16225,16629,17213,17952,18854,19940,21141,22480,23944,25413,26914,28329,29573,30579,31332,31708,31715,31381,30728,29802,28741,27520,26313,25162,24062,23072,22217,21480,20869,20377,19991,19694,19553,19442,19463,19569,19749,20002,20354,20779,21319,21869,22491,23171,23822,24437,24998,25476,25826,26120,26149,26029,25746,25259,24632,23924,23122,22234,21365,20532,19764,19063,18393,17820,17360,16940,16612,16386,16213,16126,16083,16110,16200,16372,16592,16877,17227,17659,18151,18741,19333,19967,20659,21386,22137,22876,23594,24309,24965,25560,26136,26549,26873,27109,27235,27238,27153,26938,26603,26227,25722,25141,24567,23922,23256,22593,21928,21307,20704,20108,19545,19050,18588,18183,17812,17480,17182,16909,16664,16477,16285,16089,15899,15716,15552,15400,15285,15188,15104,15033,14997,14978,14967,14979,15010,15018,15058,15104,15121,15180,15237,15260,15266,15285,15295,15311,15328,15317,15301,15262,15202,15138,15072,14990,14880,14756,14590,14410,14224,14026,13810,13573,13310,13026,12755,12458,12176,11873,11586,11302,11061,10810,10569,10315,10012,9687,9383,9100,8843,8644,8466,8302,8169,8083,7997,7933,7880,7813,7717,7581,7398,7248,7120,7011,6908,6837,6761,6721,6677,6664,6645,6634,6621,6636,6620,6474,6165,5742,5123,21.3,21.4,22.0,1568193,0.0,12.2,12.0,5.0,480,-1.00,-1.00,56.0464,-18.364873,0.000577,,,,,108 +SATSLF0720,2024246,11.012173,4.20,0.0589,0.1028,0.0176,0.00,16155,639,1,698,697,701,696,705,707,698,715,726,722,729,738,771,885,1217,1957,3155,4535,5785,6722,7350,7821,8263,8693,9212,9829,10566,11435,12424,13545,14729,15893,17001,17957,18699,19133,19261,19075,18685,18149,17560,17001,16535,16177,15949,15871,15953,16207,16619,17203,17945,18859,19936,21145,22457,23920,25396,26885,28324,29550,30555,31297,31702,31706,31378,30725,29809,28745,27498,26321,25146,24048,23052,22193,21446,20843,20368,19976,19688,19536,19442,19463,19543,19729,20006,20343,20781,21305,21871,22493,23153,23814,24420,24990,25473,25834,26107,26156,26030,25753,25261,24632,23909,23109,22237,21357,20505,19740,19042,18401,17841,17355,16952,16628,16374,16205,16093,16050,16090,16194,16348,16577,16868,17252,17672,18155,18725,19344,19965,20647,21397,22117,22861,23575,24290,24944,25541,26113,26535,26861,27100,27216,27218,27144,26909,26581,26196,25701,25129,24547,23894,23238,22580,21936,21305,20700,20106,19549,19057,18565,18161,17792,17453,17181,16904,16668,16481,16273,16093,15876,15708,15517,15386,15269,15163,15081,15023,14977,14972,14969,14981,15004,15026,15063,15090,15128,15173,15229,15253,15261,15268,15272,15288,15315,15313,15314,15264,15184,15127,15055,14975,14887,14758,14597,14429,14226,14013,13808,13570,13284,13031,12749,12462,12153,11865,11574,11304,11047,10820,10588,10330,10021,9701,9381,9094,8846,8642,8473,8306,8168,8085,8000,7925,7857,7803,7707,7581,7409,7265,7121,7011,6919,6838,6772,6712,6676,6644,6643,6649,6621,6647,6641,6488,6194,5756,5137,21.3,21.4,22.0,1568194,1.3,12.1,12.0,5.0,482,-1.00,-1.00,56.8215,-18.681296,0.000538,,,,,68 +SATSLF0720,2024246,11.012427,4.30,0.0602,0.1032,0.0177,0.00,16142,639,1,696,699,701,699,697,689,702,690,703,718,724,722,767,886,1230,1973,3163,4537,5776,6697,7328,7798,8219,8663,9192,9814,10559,11412,12424,13537,14704,15875,16996,17960,18677,19105,19225,19051,18682,18149,17536,16989,16536,16168,15925,15857,15940,16189,16594,17193,17930,18838,19905,21122,22472,23904,25376,26857,28293,29529,30519,31296,31690,31684,31351,30695,29757,28700,27463,26297,25121,24044,23045,22186,21449,20842,20354,19952,19680,19516,19425,19435,19533,19726,19994,20342,20761,21298,21844,22466,23140,23778,24401,24964,25441,25817,26065,26117,26005,25726,25237,24600,23881,23085,22235,21364,20512,19752,19044,18372,17821,17351,16934,16613,16363,16193,16090,16050,16061,16167,16329,16560,16852,17224,17657,18141,18713,19320,19953,20640,21370,22106,22852,23579,24278,24925,25527,26088,26525,26845,27069,27191,27202,27115,26880,26559,26174,25677,25114,24531,23899,23242,22579,21913,21274,20683,20092,19530,19045,18560,18155,17781,17455,17155,16893,16647,16452,16241,16065,15869,15691,15528,15390,15253,15162,15094,15017,14976,14969,14951,14963,14980,15015,15042,15103,15114,15170,15225,15237,15259,15257,15265,15285,15298,15301,15303,15245,15196,15124,15058,14959,14872,14709,14574,14401,14219,13996,13791,13554,13277,13025,12737,12441,12154,11849,11577,11306,11060,10813,10573,10306,10006,9684,9370,9099,8838,8630,8474,8296,8168,8065,7991,7921,7868,7824,7713,7576,7406,7244,7113,7011,6913,6829,6771,6717,6681,6658,6641,6618,6612,6625,6623,6467,6179,5737,5123,21.3,21.4,22.0,1568195,0.5,12.1,12.0,5.0,481,-1.00,-1.00,56.4859,-18.523887,0.000591,,,,,21 +SATSLF0720,2024246,11.012678,4.24,0.0594,0.1040,0.0178,0.00,16133,639,1,709,695,697,695,699,702,704,709,729,730,712,739,765,882,1223,1959,3145,4525,5773,6674,7320,7782,8214,8658,9176,9797,10539,11411,12411,13529,14704,15861,16965,17934,18653,19082,19213,19036,18677,18130,17536,16983,16524,16152,15931,15853,15919,16163,16589,17170,17916,18824,19903,21115,22433,23877,25357,26843,28253,29511,30509,31252,31667,31653,31329,30677,29742,28706,27449,26276,25108,24029,23038,22173,21435,20821,20343,19948,19656,19500,19393,19413,19513,19714,19965,20329,20753,21274,21842,22455,23133,23773,24382,24969,25445,25798,26055,26106,25987,25709,25218,24595,23891,23075,22206,21351,20490,19725,19011,18363,17815,17334,16917,16606,16343,16183,16089,16052,16073,16173,16325,16556,16842,17216,17646,18135,18695,19299,19950,20616,21363,22101,22854,23560,24281,24920,25505,26072,26501,26817,27075,27181,27194,27095,26898,26560,26176,25674,25102,24519,23888,23238,22577,21915,21293,20645,20071,19522,19035,18554,18148,17796,17450,17168,16896,16654,16449,16257,16061,15872,15685,15520,15384,15261,15148,15081,15008,14964,14955,14945,14971,14994,15012,15045,15082,15115,15163,15210,15241,15249,15257,15261,15275,15277,15293,15273,15223,15165,15120,15052,14956,14869,14730,14584,14406,14213,13993,13782,13538,13273,13015,12730,12437,12157,11845,11575,11296,11035,10792,10567,10280,9991,9667,9356,9078,8821,8626,8458,8301,8163,8080,7993,7921,7879,7808,7727,7574,7399,7243,7130,7006,6907,6813,6757,6703,6670,6649,6639,6625,6608,6634,6621,6487,6176,5744,5126,21.3,21.4,22.0,1568195,0.6,12.1,11.9,5.0,471,-1.00,-1.00,56.7352,-18.614931,0.000548,,,,,66 +SATSLF0720,2024246,11.012937,4.16,0.0582,0.1049,0.0197,0.00,16093,639,1,687,693,697,698,701,710,721,701,706,715,715,724,784,909,1236,1991,3184,4541,5795,6694,7331,7796,8232,8661,9172,9797,10525,11399,12404,13513,14696,15861,16961,17923,18640,19079,19204,19019,18637,18096,17500,16933,16469,16123,15892,15835,15911,16167,16569,17133,17879,18788,19857,21074,22391,23831,25296,26791,28198,29459,30455,31208,31598,31616,31269,30624,29709,28629,27397,26209,25051,23973,22976,22132,21382,20780,20282,19912,19613,19448,19352,19381,19494,19672,19934,20276,20694,21220,21777,22401,23057,23703,24308,24882,25356,25721,25996,26061,25921,25655,25165,24539,23820,23018,22142,21270,20442,19666,18955,18311,17761,17295,16894,16570,16328,16157,16041,15998,16017,16119,16273,16507,16806,17177,17595,18078,18637,19244,19886,20560,21298,22032,22784,23483,24187,24845,25430,25991,26413,26745,26984,27106,27109,27017,26808,26468,26073,25573,25010,24434,23793,23163,22513,21851,21217,20604,20013,19474,18982,18493,18112,17739,17390,17115,16841,16601,16412,16197,16021,15813,15639,15456,15320,15208,15115,15033,14974,14929,14898,14903,14912,14942,14948,14999,15032,15058,15108,15170,15194,15206,15218,15224,15243,15261,15258,15237,15185,15118,15057,14995,14924,14821,14679,14532,14369,14175,13957,13746,13505,13248,12972,12693,12400,12107,11809,11526,11255,11002,10773,10536,10261,9973,9648,9337,9058,8811,8604,8426,8271,8137,8037,7971,7919,7852,7789,7704,7541,7371,7223,7089,6970,6881,6800,6725,6670,6637,6614,6600,6597,6581,6605,6602,6452,6149,5730,5109,21.3,21.4,22.1,1568196,0.6,12.1,12.0,5.0,479,-1.00,-1.00,56.9495,-18.668750,0.000600,,,,,57 +SATSLF0720,2024246,11.013190,4.27,0.0598,0.1059,0.0194,0.00,16054,639,1,707,703,706,701,705,703,701,702,709,738,732,726,779,884,1225,1978,3154,4521,5751,6676,7297,7778,8192,8633,9149,9763,10493,11366,12345,13444,14624,15774,16889,17834,18545,18984,19113,18912,18548,18013,17448,16896,16432,16071,15842,15765,15838,16080,16490,17058,17812,18714,19776,20983,22295,23735,25211,26677,28093,29322,30327,31057,31458,31460,31128,30486,29573,28507,27287,26113,24962,23890,22878,22029,21299,20689,20215,19827,19541,19390,19309,19314,19413,19603,19866,20200,20633,21149,21709,22334,23011,23633,24255,24818,25293,25661,25924,25973,25853,25576,25092,24455,23740,22952,22085,21217,20377,19597,18905,18267,17721,17253,16843,16525,16272,16116,15997,15957,15970,16067,16240,16471,16760,17138,17570,18037,18619,19202,19847,20528,21241,21994,22728,23447,24153,24801,25395,25959,26377,26706,26941,27046,27062,26960,26728,26400,26023,25520,24973,24394,23753,23109,22475,21802,21197,20569,19978,19428,18937,18469,18061,17692,17365,17085,16823,16577,16390,16166,15986,15786,15605,15437,15313,15197,15097,15025,14943,14912,14907,14893,14901,14921,14944,14970,15029,15041,15099,15152,15171,15181,15173,15205,15216,15242,15235,15225,15195,15124,15067,15002,14916,14805,14672,14521,14338,14157,13940,13737,13493,13233,12970,12686,12393,12092,11811,11528,11266,11007,10775,10537,10274,9972,9647,9350,9058,8808,8602,8426,8274,8136,8034,7965,7898,7853,7769,7687,7557,7378,7214,7087,6968,6873,6808,6742,6681,6648,6625,6613,6612,6594,6608,6600,6434,6143,5719,5099,21.3,21.5,22.1,1568197,1.3,12.1,12.0,5.0,475,-1.00,-1.00,56.6580,-18.467837,0.000524,,,,,13 +SATSLF0720,2024246,11.013442,4.16,0.0582,0.1054,0.0194,0.00,16075,639,1,701,709,714,707,711,707,708,715,704,726,731,729,774,901,1225,1971,3149,4530,5754,6659,7293,7768,8188,8629,9140,9761,10487,11364,12366,13462,14633,15797,16910,17863,18573,19010,19145,18957,18604,18057,17468,16894,16434,16067,15833,15777,15850,16104,16507,17092,17838,18765,19826,21034,22350,23781,25256,26735,28139,29394,30387,31127,31515,31518,31195,30546,29625,28578,27349,26171,25016,23933,22931,22086,21353,20741,20266,19865,19589,19421,19329,19355,19456,19639,19909,20241,20670,21185,21738,22352,23021,23670,24292,24864,25334,25698,25957,26018,25893,25609,25143,24506,23799,23001,22144,21264,20434,19669,18945,18293,17756,17271,16859,16542,16297,16119,16023,15981,16013,16096,16256,16493,16778,17160,17582,18061,18644,19253,19893,20569,21293,22027,22770,23492,24173,24823,25421,25962,26404,26722,26971,27093,27097,27000,26781,26460,26066,25569,25018,24424,23798,23161,22515,21845,21207,20596,20001,19447,18951,18473,18087,17709,17402,17113,16849,16605,16394,16196,16024,15820,15632,15470,15309,15207,15095,15016,14941,14905,14881,14903,14903,14941,14964,15009,15034,15069,15114,15165,15185,15207,15220,15221,15237,15245,15247,15246,15197,15136,15067,14989,14909,14809,14664,14525,14355,14157,13952,13733,13499,13233,12985,12700,12402,12124,11805,11526,11262,11005,10784,10538,10261,9964,9641,9329,9056,8797,8595,8421,8263,8155,8040,7976,7909,7848,7781,7685,7546,7365,7215,7081,6970,6873,6797,6747,6677,6656,6637,6621,6600,6583,6611,6603,6443,6133,5717,5107,21.3,21.5,22.1,1568198,0.0,12.1,12.0,5.0,477,-1.00,-1.00,57.4372,-18.831579,0.000637,,,,,108 +SATSLF0720,2024246,11.013698,4.11,0.0576,0.1054,0.0193,0.00,16074,639,1,700,709,698,716,697,701,705,710,715,715,733,742,769,889,1222,1958,3122,4519,5749,6669,7297,7780,8182,8628,9152,9769,10503,11370,12363,13472,14641,15789,16898,17845,18576,19012,19149,18956,18573,18049,17448,16899,16455,16074,15850,15772,15857,16106,16518,17088,17825,18743,19803,21016,22336,23776,25234,26714,28129,29378,30381,31136,31513,31517,31205,30541,29634,28576,27346,26154,25001,23931,22913,22061,21335,20742,20254,19851,19577,19424,19329,19339,19430,19634,19889,20229,20677,21176,21742,22349,23023,23664,24279,24852,25330,25704,25975,26024,25897,25620,25141,24508,23798,23001,22138,21265,20420,19636,18935,18283,17747,17282,16856,16568,16317,16133,16032,15992,16000,16105,16266,16498,16781,17155,17562,18073,18637,19246,19877,20557,21268,22009,22762,23470,24174,24832,25413,25993,26397,26738,26977,27075,27095,26999,26794,26459,26062,25572,25009,24441,23803,23159,22499,21840,21205,20598,20008,19455,18970,18482,18081,17713,17372,17111,16833,16603,16400,16195,16010,15815,15621,15461,15328,15202,15098,15029,14963,14922,14906,14909,14917,14934,14957,14989,15049,15087,15125,15178,15182,15188,15203,15220,15229,15253,15251,15233,15197,15125,15070,14997,14906,14820,14697,14544,14374,14163,13952,13747,13507,13255,12990,12695,12403,12125,11806,11524,11255,11007,10777,10535,10274,9977,9645,9336,9066,8803,8604,8425,8279,8136,8043,7974,7900,7851,7794,7680,7555,7381,7221,7096,6978,6865,6791,6725,6677,6637,6635,6608,6607,6589,6619,6615,6445,6151,5718,5092,21.3,21.5,22.1,1568199,0.9,12.1,11.9,5.0,480,-1.00,-1.00,57.5735,-18.884094,0.000573,,,,,19 +SATSLF0720,2024246,11.013950,4.17,0.0584,0.1046,0.0192,0.00,16087,639,1,698,698,713,714,720,706,703,695,711,702,723,727,763,887,1227,1972,3157,4535,5763,6677,7317,7770,8187,8640,9157,9769,10516,11387,12381,13489,14666,15827,16931,17881,18596,19029,19156,18979,18609,18071,17485,16925,16458,16097,15872,15801,15876,16119,16523,17104,17860,18777,19814,21047,22352,23804,25274,26746,28163,29415,30417,31172,31557,31553,31233,30566,29657,28595,27372,26185,25026,23949,22967,22104,21381,20762,20282,19885,19605,19449,19365,19360,19458,19654,19910,20249,20681,21194,21757,22383,23037,23690,24314,24885,25369,25729,26010,26045,25914,25646,25152,24510,23806,22996,22148,21277,20432,19668,18967,18322,17764,17297,16881,16571,16317,16149,16039,15989,16021,16106,16275,16487,16785,17163,17575,18081,18656,19261,19905,20577,21298,22029,22784,23497,24185,24843,25431,25994,26421,26755,26981,27107,27109,27010,26801,26474,26073,25585,25028,24439,23821,23162,22515,21832,21197,20581,20005,19461,18972,18510,18101,17739,17408,17122,16849,16612,16409,16209,16021,15820,15620,15463,15326,15197,15118,15058,14985,14935,14924,14928,14933,14950,14978,14998,15031,15069,15118,15176,15193,15203,15226,15229,15234,15262,15256,15237,15182,15121,15075,15009,14916,14827,14689,14535,14354,14182,13965,13743,13499,13253,12973,12700,12403,12116,11821,11531,11257,11009,10769,10546,10283,9972,9651,9339,9061,8814,8597,8443,8277,8149,8049,7975,7893,7839,7795,7697,7555,7387,7234,7107,6985,6880,6793,6729,6676,6647,6629,6628,6613,6601,6610,6607,6461,6147,5727,5114,21.3,21.5,22.2,1568200,1.0,12.1,12.0,5.0,474,-1.00,-1.00,57.1869,-18.742672,0.000574,,,,,241 +SATSLF0720,2024246,11.014201,4.19,0.0587,0.1051,0.0187,0.00,16097,639,1,695,708,709,715,709,723,729,732,724,713,713,730,769,889,1239,1986,3153,4536,5762,6679,7309,7769,8192,8654,9164,9773,10521,11390,12400,13501,14673,15825,16942,17876,18610,19041,19169,18987,18594,18075,17488,16928,16459,16101,15869,15801,15877,16125,16522,17115,17871,18773,19834,21051,22373,23808,25284,26761,28183,29422,30405,31162,31557,31570,31232,30581,29661,28616,27371,26187,25037,23960,22962,22110,21381,20777,20285,19900,19626,19458,19345,19367,19455,19641,19905,20250,20701,21206,21783,22401,23056,23709,24305,24896,25370,25725,25987,26048,25921,25644,25166,24541,23835,23037,22176,21298,20459,19689,18985,18333,17773,17308,16885,16571,16325,16143,16051,16000,16029,16121,16292,16530,16809,17181,17603,18080,18667,19281,19914,20597,21320,22059,22785,23527,24217,24873,25445,26007,26432,26760,27004,27118,27121,27031,26811,26495,26104,25616,25049,24451,23829,23178,22540,21861,21235,20630,20025,19479,18973,18515,18114,17740,17408,17123,16857,16616,16411,16214,16027,15845,15652,15474,15349,15237,15138,15053,14975,14945,14925,14926,14923,14955,14981,15018,15056,15073,15141,15186,15200,15204,15229,15241,15248,15271,15264,15261,15198,15146,15090,15021,14930,14838,14706,14559,14376,14210,13977,13759,13532,13274,13016,12722,12433,12136,11837,11549,11280,11030,10781,10554,10273,9984,9649,9354,9081,8833,8612,8448,8281,8154,8053,7985,7901,7847,7791,7704,7563,7401,7238,7106,7001,6898,6823,6749,6689,6659,6635,6615,6604,6597,6625,6622,6475,6160,5743,5117,21.3,21.6,22.2,1568201,1.1,12.1,12.0,5.0,478,-1.00,-1.00,57.1156,-18.717482,0.000593,,,,,211 +SATSLF0720,2024246,11.014456,4.26,0.0597,0.1054,0.0190,0.00,16076,639,1,707,700,714,724,721,721,726,725,731,723,738,741,781,889,1219,1967,3155,4525,5749,6654,7296,7767,8195,8631,9149,9777,10525,11370,12361,13460,14629,15780,16885,17833,18561,19000,19127,18954,18560,18021,17443,16880,16424,16053,15844,15772,15859,16108,16523,17081,17829,18736,19805,21008,22328,23754,25238,26722,28137,29387,30376,31121,31525,31512,31186,30525,29614,28557,27328,26157,24978,23928,22928,22060,21347,20733,20247,19861,19577,19418,19329,19345,19448,19635,19898,20238,20661,21181,21751,22364,23036,23697,24292,24862,25337,25697,25961,26013,25914,25618,25141,24507,23790,22981,22123,21265,20413,19653,18954,18309,17760,17285,16878,16556,16317,16128,16042,15989,16005,16113,16294,16501,16805,17177,17593,18069,18626,19238,19860,20549,21277,22013,22752,23475,24177,24848,25432,25989,26422,26730,26982,27066,27085,27004,26792,26474,26074,25573,25022,24439,23792,23150,22497,21845,21204,20599,20001,19442,18958,18484,18090,17722,17399,17117,16858,16610,16407,16202,16011,15825,15637,15461,15323,15207,15098,15035,14955,14927,14906,14909,14912,14938,14974,14997,15049,15073,15120,15184,15187,15208,15198,15203,15225,15250,15253,15243,15198,15151,15081,15016,14929,14830,14684,14533,14369,14185,13961,13759,13510,13252,12989,12705,12422,12112,11813,11529,11261,11027,10784,10555,10279,9974,9654,9352,9061,8809,8597,8425,8268,8141,8050,7971,7910,7863,7801,7708,7564,7371,7225,7101,6981,6892,6805,6757,6696,6661,6644,6613,6599,6597,6626,6601,6451,6157,5725,5101,21.4,21.6,22.2,1568202,0.6,12.1,11.9,5.0,469,-1.00,-1.00,57.2356,-18.739299,0.000603,,,,,97 +SATSDF0720,2024246,11.259138,0.00,0.0000,0.0000,0.0000,0.00,639,0,1,633,629,617,609,605,609,604,609,618,619,615,623,625,625,617,623,618,637,629,626,625,641,629,651,643,649,653,651,654,636,638,630,626,626,646,649,661,650,646,647,649,641,634,630,653,630,651,642,647,652,645,643,659,654,644,650,641,632,640,639,643,638,645,646,649,645,649,650,649,661,641,638,643,651,641,644,639,659,641,643,644,637,643,637,648,641,633,634,638,641,634,640,641,648,643,645,643,651,641,640,645,637,645,648,658,648,643,653,630,631,639,645,645,645,649,641,645,652,649,649,636,653,637,634,638,629,627,631,622,635,634,642,642,643,644,630,627,634,634,644,638,643,642,638,631,637,631,646,640,640,641,642,641,637,631,631,641,638,645,658,660,653,645,637,639,625,627,622,626,631,641,649,650,656,652,649,640,629,630,640,624,634,633,625,643,644,637,640,638,632,626,613,623,632,629,627,638,643,646,651,649,648,645,657,661,665,648,648,649,647,649,642,643,635,635,641,645,637,638,652,641,634,642,641,644,655,645,655,645,647,640,637,632,645,640,627,627,639,637,629,645,636,647,639,643,638,646,637,636,638,642,639,629,622,639,474,0.0,0.0,0.0,1568201,0.1,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,196 +SATSLF0720,2024246,11.259693,4.21,0.0590,0.0992,0.0148,0.00,16265,639,1,698,706,689,705,700,705,722,714,730,730,714,730,768,894,1224,1974,3175,4587,5817,6756,7388,7867,8283,8742,9255,9885,10631,11507,12529,13637,14848,16013,17143,18121,18838,19281,19415,19227,18842,18297,17699,17134,16663,16293,16061,15995,16071,16334,16745,17329,18099,19028,20096,21309,22653,24113,25605,27113,28510,29791,30809,31560,31965,31966,31625,30973,30050,28976,27714,26525,25351,24269,23254,22387,21638,21026,20533,20148,19868,19697,19601,19598,19701,19892,20157,20500,20950,21481,22037,22648,23314,23975,24586,25153,25643,26005,26267,26311,26199,25909,25428,24799,24063,23258,22377,21503,20656,19877,19169,18510,17941,17457,17057,16739,16488,16321,16204,16164,16193,16289,16449,16679,16988,17346,17800,18289,18849,19472,20110,20793,21515,22269,23028,23755,24459,25116,25725,26296,26725,27051,27297,27401,27412,27329,27097,26769,26381,25864,25301,24712,24054,23410,22760,22105,21461,20825,20230,19667,19154,18683,18280,17904,17573,17290,17018,16777,16558,16381,16184,15989,15811,15623,15491,15368,15271,15193,15117,15077,15065,15057,15076,15097,15127,15149,15181,15207,15256,15313,15318,15334,15356,15366,15396,15412,15413,15385,15339,15275,15220,15153,15046,14966,14820,14673,14484,14290,14073,13866,13634,13371,13110,12806,12503,12227,11917,11627,11362,11126,10877,10647,10385,10076,9733,9426,9133,8879,8671,8501,8354,8206,8121,8053,7986,7925,7853,7763,7614,7432,7272,7151,7036,6944,6871,6807,6750,6711,6692,6685,6661,6650,6679,6660,6512,6211,5780,5152,21.2,21.2,21.6,1568202,0.6,12.1,12.0,5.0,601,-1.00,-1.00,56.4857,-18.689703,0.000601,,,,,62 +SATSLF0720,2024246,11.259875,4.14,0.0580,0.1000,0.0163,0.00,16241,639,1,694,688,683,695,704,708,695,699,701,710,711,717,753,877,1213,1970,3170,4571,5811,6730,7370,7842,8267,8729,9242,9879,10625,11515,12508,13625,14807,15992,17107,18066,18800,19256,19381,19197,18818,18261,17675,17114,16642,16275,16057,15973,16073,16312,16716,17290,18060,18973,20037,21266,22609,24073,25559,27048,28475,29755,30754,31527,31906,31904,31585,30921,29992,28922,27675,26480,25314,24226,23217,22360,21609,20993,20508,20121,19829,19673,19565,19584,19670,19878,20142,20488,20912,21422,22000,22618,23283,23928,24547,25113,25601,25984,26236,26307,26176,25897,25408,24761,24043,23240,22366,21494,20631,19860,19149,18493,17925,17461,17051,16701,16455,16288,16201,16156,16166,16258,16433,16668,16951,17320,17759,18241,18833,19433,20081,20765,21501,22241,22995,23712,24433,25094,25690,26263,26688,27021,27268,27360,27371,27284,27057,26727,26346,25834,25250,24685,24034,23405,22743,22062,21434,20806,20203,19629,19145,18668,18262,17894,17561,17273,17006,16757,16544,16343,16155,15965,15781,15614,15461,15351,15243,15184,15098,15050,15042,15035,15033,15072,15094,15130,15174,15197,15238,15298,15317,15321,15351,15348,15365,15377,15381,15357,15315,15245,15172,15125,15029,14938,14805,14649,14479,14289,14078,13853,13610,13345,13082,12796,12500,12215,11913,11616,11346,11092,10840,10613,10345,10048,9730,9413,9120,8872,8664,8475,8334,8197,8103,8028,7945,7915,7819,7737,7592,7435,7261,7143,7026,6924,6855,6790,6721,6679,6667,6647,6646,6643,6666,6653,6503,6201,5766,5150,21.2,21.2,21.8,1568203,0.6,12.0,11.9,5.0,496,-1.00,-1.00,56.6626,-18.731318,0.000565,,,,,166 +SATSLF0720,2024246,11.260130,4.01,0.0562,0.1007,0.0162,0.00,16210,639,1,690,702,697,686,686,702,685,703,706,713,713,731,761,887,1220,1974,3166,4567,5825,6742,7387,7859,8291,8728,9253,9874,10629,11499,12501,13629,14793,15974,17111,18073,18817,19249,19386,19186,18803,18258,17661,17089,16626,16267,16037,15949,16033,16291,16691,17277,18036,18937,20021,21259,22597,24036,25525,27033,28451,29705,30732,31474,31874,31858,31531,30880,29949,28877,27639,26455,25271,24186,23178,22301,21571,20955,20473,20069,19799,19629,19534,19547,19634,19843,20085,20446,20872,21398,21968,22584,23248,23910,24505,25090,25566,25925,26196,26230,26112,25824,25344,24692,23978,23181,22295,21432,20587,19813,19104,18441,17872,17406,17005,16678,16425,16265,16165,16107,16137,16221,16387,16606,16909,17281,17709,18214,18777,19389,20030,20716,21449,22189,22936,23648,24360,25024,25628,26206,26634,26944,27197,27287,27312,27219,27008,26674,26280,25779,25211,24610,23968,23323,22679,21997,21366,20765,20162,19605,19101,18618,18201,17849,17520,17226,16965,16724,16525,16314,16130,15941,15750,15569,15431,15318,15200,15127,15058,15017,14999,15004,15013,15031,15071,15094,15139,15173,15213,15269,15273,15278,15301,15297,15322,15333,15337,15340,15290,15221,15175,15081,15011,14921,14770,14609,14454,14241,14043,13813,13575,13317,13037,12759,12479,12173,11880,11601,11317,11067,10834,10593,10317,10017,9693,9394,9104,8857,8647,8460,8312,8194,8104,8021,7949,7894,7831,7742,7592,7404,7249,7125,7010,6924,6841,6761,6714,6677,6666,6653,6637,6621,6647,6643,6479,6173,5749,5115,21.2,21.2,21.8,1568204,0.6,12.1,11.9,5.0,485,-1.00,-1.00,56.9577,-18.830381,0.000616,,,,,121 +SATSLF0720,2024246,11.260383,4.14,0.0580,0.1022,0.0173,0.00,16167,639,1,694,682,703,704,717,713,714,725,725,715,717,737,761,887,1209,1964,3162,4539,5781,6699,7353,7816,8235,8673,9191,9825,10563,11443,12442,13556,14727,15895,17003,17964,18685,19131,19261,19079,18711,18187,17581,17018,16574,16198,15963,15892,15972,16202,16625,17204,17954,18866,19925,21161,22481,23922,25412,26912,28330,29587,30589,31341,31729,31741,31389,30752,29837,28768,27529,26355,25177,24105,23093,22229,21488,20869,20382,19994,19712,19547,19469,19485,19581,19781,20034,20378,20806,21332,21897,22516,23172,23837,24451,25026,25492,25848,26117,26161,26037,25765,25285,24642,23920,23116,22257,21376,20530,19761,19054,18393,17831,17352,16942,16627,16386,16213,16129,16090,16101,16193,16357,16581,16886,17261,17676,18171,18753,19353,19986,20669,21411,22146,22897,23608,24320,24977,25557,26145,26569,26889,27121,27232,27251,27161,26940,26615,26208,25719,25137,24559,23912,23277,22621,21965,21332,20722,20125,19561,19063,18606,18198,17831,17490,17197,16929,16685,16485,16272,16091,15885,15703,15540,15400,15288,15206,15112,15040,15002,14987,14995,15005,15013,15029,15065,15109,15141,15191,15241,15258,15261,15268,15279,15303,15321,15320,15312,15253,15198,15136,15071,14983,14888,14737,14595,14429,14240,14020,13812,13568,13312,13040,12750,12471,12158,11854,11575,11301,11047,10811,10585,10317,10020,9687,9363,9091,8839,8628,8451,8303,8165,8074,8002,7932,7889,7834,7757,7593,7398,7249,7137,7009,6913,6830,6779,6721,6687,6661,6653,6632,6631,6650,6637,6483,6185,5746,5118,21.2,21.2,21.8,1568205,0.4,12.0,11.9,5.0,484,-1.00,-1.00,57.0582,-18.795712,0.000523,,,,,86 +SATSLF0720,2024246,11.260640,4.18,0.0585,0.1007,0.0160,0.00,16215,639,1,708,711,710,698,693,692,695,703,717,726,734,738,766,891,1230,1987,3178,4567,5827,6726,7385,7861,8288,8729,9250,9858,10619,11490,12480,13607,14795,15979,17104,18055,18797,19220,19362,19160,18770,18242,17650,17078,16616,16245,16029,15956,16017,16288,16689,17278,18017,18946,20001,21237,22565,24021,25506,27009,28426,29687,30697,31451,31848,31859,31525,30880,29925,28854,27611,26417,25262,24173,23160,22288,21559,20938,20456,20069,19789,19632,19536,19549,19633,19849,20085,20433,20867,21397,21969,22594,23253,23915,24516,25099,25572,25920,26205,26246,26124,25840,25365,24731,23998,23208,22327,21443,20583,19813,19104,18461,17885,17419,17018,16687,16435,16264,16158,16126,16127,16222,16389,16621,16921,17298,17733,18221,18793,19397,20037,20728,21451,22196,22948,23641,24371,25045,25626,26201,26630,26953,27201,27312,27329,27226,27008,26672,26277,25780,25211,24635,23966,23339,22680,22005,21379,20769,20161,19618,19117,18633,18235,17872,17542,17237,16979,16737,16525,16321,16131,15930,15753,15576,15434,15332,15214,15147,15077,15035,15030,15030,15017,15051,15067,15111,15150,15177,15225,15279,15289,15287,15318,15308,15337,15361,15368,15369,15313,15246,15181,15105,15011,14919,14775,14639,14468,14270,14050,13840,13589,13335,13061,12779,12498,12205,11905,11621,11336,11081,10825,10605,10338,10026,9713,9402,9121,8875,8658,8485,8336,8205,8103,8034,7969,7905,7826,7729,7602,7400,7267,7137,7022,6928,6857,6788,6740,6693,6678,6662,6635,6634,6648,6640,6486,6194,5753,5143,21.2,21.2,21.8,1568206,0.7,12.1,11.9,5.0,486,-1.00,-1.00,56.4547,-18.607990,0.000590,,,,,69 +SATSLF0720,2024246,11.260895,4.22,0.0591,0.1013,0.0163,0.00,16209,639,1,683,682,678,691,708,701,718,706,716,731,725,737,786,885,1238,1976,3162,4564,5814,6730,7382,7854,8279,8722,9226,9859,10604,11477,12471,13607,14785,15959,17081,18044,18771,19198,19345,19149,18765,18230,17626,17079,16600,16240,16022,15950,16030,16275,16682,17262,18009,18928,20012,21233,22551,24024,25504,26981,28423,29688,30696,31440,31828,31825,31506,30853,29920,28857,27625,26427,25245,24147,23140,22286,21540,20928,20445,20069,19752,19623,19508,19537,19627,19829,20098,20441,20873,21386,21952,22565,23218,23879,24491,25069,25553,25914,26177,26232,26118,25839,25367,24709,23998,23185,22299,21432,20577,19815,19102,18437,17901,17418,17006,16695,16418,16247,16158,16120,16133,16213,16393,16622,16924,17307,17733,18227,18788,19396,20037,20718,21443,22200,22955,23654,24355,25024,25608,26187,26622,26953,27206,27306,27333,27233,27024,26693,26295,25800,25221,24625,23976,23329,22656,22003,21362,20755,20160,19595,19117,18645,18237,17860,17533,17227,16955,16711,16524,16325,16119,15938,15746,15586,15432,15316,15219,15145,15073,15025,15011,15007,15019,15050,15058,15119,15153,15188,15233,15279,15289,15304,15305,15325,15333,15358,15341,15347,15279,15223,15170,15105,15017,14909,14784,14629,14452,14269,14053,13829,13593,13331,13069,12786,12482,12190,11898,11605,11332,11081,10849,10596,10330,10026,9700,9394,9112,8857,8653,8490,8320,8193,8093,8013,7941,7909,7817,7740,7594,7420,7267,7137,7024,6925,6855,6777,6735,6697,6660,6651,6641,6629,6653,6644,6491,6184,5754,5130,21.2,21.3,21.9,1568207,0.6,12.1,11.9,5.0,483,-1.00,-1.00,56.5491,-18.643383,0.000526,,,,,145 +SATSLF0720,2024246,11.261151,4.25,0.0595,0.1018,0.0170,0.00,16188,639,1,693,697,695,698,706,702,711,703,721,714,718,717,765,865,1209,1971,3158,4556,5805,6711,7351,7808,8249,8680,9203,9845,10593,11464,12479,13594,14769,15937,17040,18004,18726,19162,19289,19117,18741,18204,17604,17050,16574,16215,15982,15906,16010,16249,16653,17260,17989,18900,19973,21194,22519,23966,25465,26961,28373,29630,30630,31389,31791,31787,31481,30824,29885,28819,27571,26384,25200,24123,23120,22261,21526,20902,20427,20041,19738,19579,19485,19504,19595,19799,20050,20397,20834,21353,21913,22533,23205,23856,24477,25041,25521,25890,26153,26209,26075,25793,25318,24683,23957,23149,22276,21405,20567,19802,19077,18422,17856,17378,16995,16657,16404,16235,16139,16091,16119,16226,16389,16602,16903,17257,17689,18193,18765,19370,19994,20697,21432,22185,22915,23649,24358,25015,25600,26166,26601,26908,27157,27252,27284,27188,26980,26648,26265,25762,25174,24595,23965,23317,22660,22001,21357,20733,20133,19571,19078,18601,18199,17839,17513,17221,16942,16712,16502,16299,16100,15910,15721,15560,15421,15301,15202,15140,15066,15018,15002,14999,15012,15020,15041,15087,15127,15154,15200,15265,15277,15294,15302,15310,15324,15347,15339,15335,15273,15220,15148,15095,15009,14915,14766,14615,14437,14249,14030,13822,13576,13319,13046,12773,12476,12186,11885,11581,11318,11060,10822,10586,10325,10027,9703,9390,9109,8854,8647,8474,8320,8197,8093,8008,7934,7891,7822,7744,7594,7407,7259,7143,7010,6919,6828,6769,6729,6701,6666,6648,6632,6623,6633,6627,6487,6170,5741,5118,21.2,21.3,21.9,1568208,0.0,12.1,12.0,5.0,483,-1.00,-1.00,56.6949,-18.677565,0.000521,,,,,135 +SATSLF0720,2024246,11.261407,4.17,0.0584,0.1021,0.0165,0.00,16182,639,1,699,707,709,707,705,696,702,704,714,721,720,726,767,880,1214,1971,3163,4557,5800,6702,7351,7815,8243,8693,9211,9843,10578,11445,12451,13558,14760,15922,17029,18001,18729,19162,19308,19114,18730,18181,17591,17029,16564,16191,15980,15898,15985,16233,16648,17227,17977,18887,19959,21177,22501,23949,25453,26944,28366,29623,30629,31383,31773,31766,31435,30790,29860,28791,27534,26349,25182,24115,23089,22237,21508,20885,20403,20007,19732,19576,19474,19493,19597,19776,20036,20388,20830,21353,21920,22539,23211,23846,24461,25038,25509,25881,26153,26197,26069,25784,25310,24666,23950,23149,22273,21405,20553,19797,19077,18425,17861,17385,16984,16672,16425,16253,16153,16099,16119,16212,16382,16581,16885,17263,17696,18170,18737,19368,20009,20705,21432,22173,22930,23637,24354,24992,25582,26159,26578,26905,27146,27250,27278,27169,26966,26626,26241,25729,25187,24601,23958,23301,22663,21979,21357,20737,20147,19572,19074,18598,18193,17832,17486,17201,16946,16695,16506,16294,16106,15912,15720,15553,15398,15308,15189,15126,15056,15026,15005,14985,15013,15031,15040,15084,15120,15163,15197,15258,15264,15283,15280,15293,15320,15325,15333,15329,15277,15219,15165,15085,14990,14916,14762,14619,14421,14224,14024,13823,13568,13310,13041,12766,12471,12182,11885,11594,11328,11065,10825,10595,10321,10018,9700,9376,9099,8849,8651,8471,8331,8189,8097,8016,7949,7893,7831,7724,7585,7394,7243,7123,7018,6920,6842,6781,6732,6696,6672,6656,6637,6616,6642,6621,6481,6181,5733,5108,21.2,21.3,21.9,1568209,0.0,12.1,11.9,5.0,478,-1.00,-1.00,56.8451,-18.724500,0.000645,,,,,54 +SATSLF0720,2024246,11.261661,4.21,0.0590,0.1041,0.0181,0.00,16118,639,1,699,700,704,698,713,709,713,707,717,725,731,731,781,894,1219,1962,3151,4525,5774,6685,7330,7793,8215,8649,9169,9787,10524,11404,12386,13509,14676,15843,16937,17901,18613,19067,19201,19025,18643,18102,17517,16950,16489,16121,15895,15829,15905,16153,16558,17150,17901,18816,19881,21086,22405,23835,25313,26789,28217,29456,30452,31211,31605,31601,31268,30611,29708,28653,27416,26241,25067,24000,22990,22140,21415,20797,20312,19924,19625,19489,19386,19408,19505,19701,19941,20299,20723,21249,21818,22433,23088,23736,24365,24941,25395,25769,26021,26073,25962,25687,25213,24566,23851,23052,22188,21317,20471,19707,18991,18355,17793,17331,16917,16592,16336,16168,16074,16024,16043,16135,16306,16531,16821,17192,17613,18115,18669,19278,19912,20602,21331,22093,22829,23543,24260,24901,25495,26060,26477,26804,27046,27173,27170,27065,26859,26539,26138,25655,25093,24499,23854,23209,22549,21886,21251,20646,20057,19499,19004,18538,18128,17767,17451,17162,16890,16650,16453,16242,16048,15850,15664,15486,15345,15242,15142,15080,15003,14976,14939,14955,14957,14986,15002,15039,15077,15101,15161,15202,15225,15231,15238,15239,15266,15298,15285,15297,15229,15179,15109,15042,14942,14847,14717,14556,14406,14209,13988,13773,13546,13283,13006,12734,12440,12145,11845,11569,11285,11045,10793,10556,10298,10002,9675,9363,9080,8829,8629,8448,8292,8168,8065,7989,7924,7875,7793,7715,7570,7399,7240,7113,6996,6899,6817,6763,6713,6668,6647,6639,6628,6613,6633,6616,6474,6157,5737,5125,21.3,21.3,21.9,1568210,0.1,12.1,12.0,5.0,479,-1.00,-1.00,56.7634,-18.597266,0.000520,,,,,56 +SATSLF0720,2024246,11.261913,4.19,0.0586,0.1045,0.0188,0.00,16111,639,1,699,701,698,699,709,709,725,711,708,719,721,718,771,881,1223,1975,3158,4540,5789,6699,7336,7794,8198,8653,9173,9786,10545,11410,12413,13530,14709,15865,16980,17913,18640,19074,19212,19036,18658,18123,17536,16977,16515,16154,15929,15852,15917,16168,16562,17171,17896,18802,19879,21092,22413,23872,25336,26822,28240,29486,30491,31235,31642,31633,31305,30649,29718,28674,27441,26264,25112,24026,23001,22147,21401,20800,20307,19916,19640,19472,19370,19398,19503,19697,19959,20297,20715,21255,21813,22418,23088,23723,24332,24905,25389,25754,26021,26081,25949,25681,25195,24574,23834,23025,22169,21294,20455,19685,18985,18327,17765,17303,16889,16583,16329,16167,16061,16020,16024,16127,16292,16515,16800,17175,17595,18093,18658,19266,19891,20593,21324,22052,22804,23515,24204,24873,25464,26033,26456,26773,27012,27121,27140,27046,26835,26502,26119,25621,25060,24464,23832,23192,22538,21865,21239,20632,20030,19481,18987,18533,18123,17751,17436,17137,16875,16629,16430,16215,16037,15849,15645,15497,15352,15218,15140,15044,14985,14943,14922,14921,14937,14952,14982,15013,15060,15101,15148,15196,15211,15220,15222,15216,15245,15260,15255,15260,15213,15157,15087,15025,14934,14843,14709,14551,14390,14186,13978,13767,13521,13277,12997,12709,12419,12124,11838,11546,11271,11024,10781,10556,10281,9981,9661,9338,9069,8818,8615,8451,8286,8161,8056,7991,7913,7847,7787,7694,7551,7383,7205,7103,6978,6885,6804,6759,6691,6651,6625,6611,6609,6602,6613,6612,6465,6151,5731,5115,21.3,21.4,21.9,1568211,0.0,12.1,12.0,5.0,480,-1.00,-1.00,56.7715,-18.616512,0.000520,,,,,183 +SATSLF0720,2024246,11.262169,4.19,0.0587,0.1035,0.0179,0.00,16136,639,1,696,690,695,704,710,709,713,715,709,707,696,707,755,884,1225,1963,3142,4543,5768,6691,7323,7784,8206,8661,9179,9810,10562,11416,12424,13517,14701,15865,16964,17947,18650,19102,19232,19058,18685,18139,17536,16978,16516,16152,15934,15867,15943,16181,16584,17182,17928,18833,19907,21117,22443,23889,25376,26866,28278,29531,30544,31290,31693,31670,31350,30701,29770,28701,27464,26295,25123,24044,23034,22181,21445,20836,20342,19954,19682,19522,19413,19427,19527,19709,19965,20315,20754,21286,21849,22469,23138,23781,24401,24954,25429,25800,26062,26117,26006,25728,25239,24615,23881,23080,22208,21338,20486,19725,19017,18368,17817,17348,16928,16623,16378,16200,16094,16038,16059,16147,16327,16549,16860,17229,17650,18146,18717,19324,19949,20636,21361,22099,22843,23554,24254,24920,25506,26073,26497,26837,27077,27193,27210,27105,26884,26570,26165,25661,25110,24520,23883,23237,22596,21915,21293,20676,20086,19522,19017,18542,18153,17769,17431,17149,16885,16650,16453,16247,16061,15876,15690,15524,15383,15259,15150,15081,14999,14983,14937,14943,14957,14992,15006,15040,15085,15110,15166,15218,15237,15242,15247,15250,15264,15299,15285,15278,15232,15175,15117,15045,14963,14859,14736,14570,14404,14213,13993,13784,13537,13281,13005,12713,12435,12150,11847,11565,11294,11026,10799,10570,10285,9979,9664,9346,9072,8826,8635,8456,8315,8178,8089,7993,7910,7875,7784,7707,7568,7398,7245,7113,6992,6899,6826,6757,6689,6655,6635,6627,6609,6594,6616,6612,6460,6158,5746,5129,21.3,21.4,22.0,1568212,0.2,12.1,11.9,5.0,472,-1.00,-1.00,56.9828,-18.730421,0.000601,,,,,8 +SATSLF0720,2024246,11.262426,4.25,0.0595,0.1034,0.0176,0.00,16143,639,1,685,697,701,708,708,707,715,711,713,717,714,733,757,873,1223,1965,3165,4540,5786,6701,7337,7821,8221,8648,9175,9806,10544,11405,12411,13527,14715,15883,16989,17961,18677,19106,19247,19058,18677,18132,17549,16992,16534,16173,15941,15865,15938,16198,16602,17183,17938,18841,19904,21134,22448,23898,25380,26874,28293,29533,30538,31292,31689,31689,31353,30701,29778,28718,27478,26295,25121,24042,23050,22190,21446,20835,20344,19967,19690,19521,19418,19439,19538,19718,19981,20341,20768,21282,21867,22473,23136,23794,24384,24982,25457,25808,26082,26133,26022,25738,25252,24609,23887,23089,22226,21333,20496,19720,19031,18362,17815,17341,16942,16621,16378,16216,16102,16057,16078,16186,16333,16565,16866,17233,17652,18155,18710,19315,19953,20650,21377,22125,22865,23572,24273,24945,25525,26087,26528,26861,27091,27200,27205,27118,26906,26576,26182,25701,25138,24526,23882,23239,22581,21925,21276,20665,20072,19520,19015,18557,18152,17793,17466,17166,16924,16673,16475,16257,16071,15865,15688,15510,15359,15253,15153,15086,15019,14993,14960,14976,14976,14997,14999,15042,15097,15113,15149,15202,15227,15250,15262,15269,15280,15319,15313,15305,15245,15178,15127,15057,14964,14868,14737,14578,14410,14224,14007,13774,13543,13286,12997,12743,12441,12155,11853,11560,11301,11042,10820,10580,10320,10017,9685,9374,9078,8833,8629,8457,8286,8150,8070,7998,7925,7859,7803,7717,7578,7401,7245,7113,6997,6898,6806,6755,6706,6665,6637,6626,6619,6611,6628,6618,6471,6157,5737,5105,21.3,21.4,22.0,1568213,0.4,12.1,11.9,5.0,474,-1.00,-1.00,56.6755,-18.606794,0.000550,,,,,239 +SATSLF0720,2024246,11.262680,4.20,0.0588,0.1037,0.0181,0.00,16140,639,1,701,708,708,699,709,711,705,701,712,716,712,728,753,904,1242,1996,3177,4549,5776,6688,7325,7810,8218,8677,9189,9799,10554,11429,12421,13545,14729,15872,16987,17938,18663,19097,19221,19040,18673,18130,17541,16982,16513,16151,15925,15846,15927,16170,16587,17163,17911,18832,19897,21125,22444,23890,25376,26848,28283,29528,30522,31267,31681,31678,31337,30697,29753,28699,27469,26270,25109,24036,23035,22178,21449,20834,20344,19940,19659,19497,19405,19421,19517,19706,19979,20310,20755,21273,21833,22458,23131,23773,24395,24964,25438,25806,26062,26101,26006,25732,25240,24611,23889,23085,22210,21336,20491,19730,19021,18372,17815,17360,16942,16638,16382,16211,16102,16049,16076,16152,16331,16549,16835,17227,17656,18133,18701,19310,19950,20634,21364,22100,22853,23560,24256,24920,25507,26085,26497,26843,27097,27189,27197,27108,26880,26548,26152,25668,25100,24517,23893,23245,22584,21918,21296,20688,20074,19527,19033,18553,18145,17792,17464,17162,16907,16654,16455,16248,16069,15866,15690,15524,15380,15284,15168,15091,15022,14995,14966,14969,14970,15002,15024,15053,15094,15124,15177,15221,15235,15259,15269,15273,15301,15313,15321,15313,15249,15184,15111,15037,14964,14865,14743,14582,14413,14221,14026,13802,13561,13297,13032,12753,12445,12152,11856,11557,11295,11045,10811,10572,10308,9996,9696,9365,9089,8843,8637,8464,8305,8167,8085,8005,7929,7879,7801,7736,7565,7413,7256,7127,7014,6914,6839,6762,6720,6677,6656,6645,6627,6616,6629,6627,6470,6177,5745,5118,21.3,21.4,22.1,1568213,0.0,12.1,12.0,5.0,482,-1.00,-1.00,57.0588,-18.756825,0.000635,,,,,117 +SATSLF0720,2024246,11.262935,4.29,0.0601,0.1043,0.0183,0.00,16115,639,1,697,709,709,698,721,713,717,720,731,725,741,744,775,896,1228,1973,3166,4541,5776,6696,7326,7793,8211,8642,9165,9781,10517,11381,12369,13487,14673,15836,16948,17901,18606,19047,19190,19001,18610,18080,17496,16926,16475,16126,15889,15824,15907,16147,16565,17144,17877,18797,19852,21076,22401,23829,25323,26795,28206,29457,30440,31201,31593,31593,31257,30624,29698,28647,27419,26241,25072,23983,22979,22127,21393,20805,20312,19927,19637,19470,19377,19405,19488,19689,19948,20294,20721,21254,21810,22435,23095,23734,24361,24925,25387,25770,26030,26077,25953,25676,25203,24561,23847,23061,22180,21323,20467,19700,19003,18349,17788,17324,16913,16589,16347,16187,16069,16035,16061,16149,16308,16529,16816,17191,17626,18116,18688,19285,19934,20628,21339,22089,22825,23538,24250,24896,25490,26054,26477,26811,27042,27150,27149,27069,26859,26525,26141,25648,25080,24500,23852,23221,22557,21893,21271,20644,20037,19492,19009,18533,18129,17768,17445,17157,16896,16638,16429,16225,16035,15838,15658,15493,15362,15248,15145,15080,15002,14952,14951,14934,14949,14976,14988,15040,15075,15111,15153,15206,15224,15213,15246,15253,15266,15273,15286,15282,15224,15163,15103,15035,14938,14859,14728,14569,14387,14218,13992,13796,13546,13281,13010,12743,12433,12135,11826,11563,11288,11040,10794,10557,10279,9985,9665,9351,9072,8827,8620,8458,8301,8160,8060,7992,7916,7867,7807,7718,7578,7402,7241,7107,6999,6896,6817,6764,6692,6665,6633,6630,6621,6603,6627,6634,6473,6160,5739,5111,21.3,21.4,22.1,1568214,0.0,12.2,11.9,5.0,481,-1.00,-1.00,56.8889,-18.647127,0.000508,,,,,28 +SATSLF0720,2024246,11.263190,4.34,0.0607,0.1068,0.0195,0.00,16032,639,1,701,685,691,695,698,704,716,714,730,729,734,733,775,881,1204,1948,3113,4470,5685,6583,7213,7686,8097,8534,9047,9653,10391,11249,12232,13340,14504,15649,16740,17693,18411,18846,18981,18798,18434,17911,17325,16777,16313,15965,15745,15681,15757,16003,16410,16987,17729,18638,19677,20896,22213,23650,25116,26598,28008,29249,30234,30978,31360,31362,31041,30391,29501,28439,27243,26061,24902,23833,22848,21997,21283,20665,20179,19809,19517,19376,19273,19285,19387,19574,19835,20177,20614,21122,21693,22305,22970,23603,24221,24800,25268,25637,25901,25955,25829,25553,25077,24442,23733,22944,22070,21204,20369,19605,18905,18263,17708,17239,16836,16526,16269,16107,16009,15968,15994,16084,16234,16471,16744,17127,17556,18037,18609,19204,19836,20519,21249,21977,22727,23440,24142,24812,25397,25950,26387,26698,26941,27056,27077,26974,26769,26432,26043,25559,24986,24411,23776,23127,22477,21808,21184,20571,19988,19444,18945,18471,18064,17698,17370,17086,16817,16593,16389,16185,16001,15806,15615,15456,15325,15191,15099,15035,14949,14918,14903,14920,14914,14931,14959,14981,15029,15050,15105,15167,15189,15205,15202,15224,15233,15241,15236,15233,15182,15121,15065,14985,14903,14818,14684,14536,14369,14173,13950,13735,13502,13241,12965,12696,12393,12110,11809,11523,11255,11013,10771,10535,10270,9961,9641,9332,9044,8804,8595,8422,8267,8141,8038,7954,7890,7848,7781,7693,7540,7377,7227,7094,6976,6880,6794,6730,6677,6659,6628,6622,6610,6586,6613,6601,6446,6145,5723,5094,21.3,21.4,22.1,1568215,1.5,12.1,11.9,5.0,481,-1.00,-1.00,58.6430,-19.245299,0.000565,,,,,47 +SATSLF0720,2024246,11.263440,4.06,0.0568,0.1049,0.0191,0.00,16088,639,1,697,702,701,700,707,711,717,706,723,708,712,720,763,889,1236,1965,3162,4541,5772,6677,7308,7772,8195,8629,9158,9778,10523,11384,12370,13483,14665,15824,16944,17897,18617,19056,19181,18985,18620,18080,17493,16917,16455,16105,15877,15810,15877,16136,16537,17123,17853,18766,19830,21041,22360,23800,25267,26764,28172,29419,30410,31168,31554,31569,31234,30576,29666,28613,27370,26199,25026,23977,22965,22101,21373,20765,20277,19891,19605,19446,19353,19361,19473,19656,19918,20271,20694,21201,21767,22385,23042,23705,24296,24885,25354,25738,25992,26039,25911,25634,25163,24533,23813,23011,22156,21280,20437,19662,18956,18316,17746,17270,16875,16557,16317,16161,16053,16010,16017,16110,16266,16496,16789,17155,17601,18074,18658,19261,19891,20566,21303,22037,22781,23505,24189,24853,25441,25995,26429,26752,26994,27106,27113,27031,26814,26484,26091,25613,25041,24438,23810,23156,22502,21851,21220,20610,20024,19464,18964,18492,18093,17712,17403,17111,16845,16592,16404,16210,16024,15825,15650,15466,15323,15201,15103,15029,14971,14937,14922,14922,14929,14955,14977,15000,15056,15072,15125,15165,15202,15186,15202,15219,15230,15255,15267,15257,15205,15138,15076,15008,14913,14820,14690,14533,14366,14178,13966,13753,13521,13260,12979,12713,12408,12135,11825,11540,11273,11025,10774,10547,10285,9968,9637,9339,9049,8807,8592,8420,8273,8141,8036,7965,7905,7841,7782,7688,7544,7378,7221,7105,6989,6887,6815,6746,6675,6650,6631,6627,6602,6595,6605,6619,6443,6143,5719,5098,21.3,21.5,22.1,1568216,0.0,12.1,12.0,5.0,478,-1.00,-1.00,57.4327,-18.848415,0.000551,,,,,208 +SATSLF0720,2024246,11.263696,4.23,0.0592,0.1043,0.0181,0.00,16106,639,1,711,713,709,700,704,706,703,711,729,730,738,741,782,886,1227,1975,3172,4522,5768,6679,7315,7779,8211,8645,9195,9802,10550,11413,12401,13524,14685,15844,16945,17895,18616,19052,19184,19012,18641,18109,17511,16967,16498,16131,15905,15821,15897,16151,16549,17141,17897,18789,19866,21086,22385,23828,25317,26802,28224,29474,30461,31206,31600,31605,31268,30635,29705,28649,27419,26217,25072,23984,22992,22121,21380,20783,20298,19904,19628,19467,19378,19392,19499,19677,19939,20282,20712,21216,21796,22402,23065,23722,24341,24909,25386,25755,26017,26059,25941,25659,25196,24571,23851,23049,22164,21312,20469,19691,18994,18329,17779,17306,16896,16570,16339,16170,16060,16027,16046,16145,16302,16520,16823,17177,17604,18099,18670,19273,19905,20587,21318,22048,22790,23509,24213,24871,25463,26018,26437,26765,27020,27128,27131,27037,26826,26499,26117,25618,25056,24483,23830,23175,22531,21867,21226,20628,20026,19478,18984,18510,18110,17742,17417,17129,16861,16625,16424,16229,16042,15846,15648,15483,15353,15218,15115,15044,14980,14939,14930,14929,14942,14970,14998,15012,15065,15090,15141,15193,15191,15207,15225,15225,15234,15270,15269,15260,15215,15149,15110,15041,14941,14837,14683,14549,14372,14193,13974,13771,13534,13272,13015,12729,12425,12137,11824,11545,11277,11021,10775,10549,10278,9977,9662,9356,9059,8827,8615,8440,8273,8135,8047,7975,7914,7852,7801,7713,7571,7394,7248,7105,6999,6901,6809,6737,6688,6649,6633,6622,6593,6593,6612,6605,6461,6152,5738,5126,21.3,21.5,22.1,1568217,0.9,12.1,12.0,5.0,481,-1.00,-1.00,56.7974,-18.610511,0.000562,,,,,126 +SATSLF0720,2024246,11.263949,4.18,0.0585,0.1054,0.0195,0.00,16081,639,1,695,699,698,710,715,721,729,738,741,725,731,725,759,884,1211,1971,3149,4529,5767,6688,7310,7795,8188,8651,9158,9796,10518,11398,12389,13501,14660,15819,16932,17865,18588,19026,19166,18976,18595,18076,17469,16929,16458,16098,15870,15792,15875,16112,16519,17110,17846,18753,19834,21049,22361,23797,25271,26741,28171,29398,30411,31146,31544,31539,31213,30568,29638,28595,27357,26184,25029,23924,22919,22074,21346,20742,20248,19874,19597,19437,19333,19353,19457,19645,19902,20250,20680,21195,21756,22364,23027,23687,24299,24858,25341,25701,25969,26021,25909,25626,25161,24537,23788,22993,22130,21261,20434,19669,18947,18301,17741,17288,16877,16576,16313,16145,16041,16001,16006,16103,16253,16502,16773,17145,17578,18066,18629,19251,19869,20560,21269,22026,22755,23458,24171,24832,25433,25980,26403,26742,26976,27080,27097,26998,26789,26471,26073,25578,25021,24430,23781,23131,22499,21829,21207,20596,20006,19445,18960,18491,18090,17707,17394,17102,16826,16599,16392,16182,15998,15813,15638,15468,15326,15211,15109,15040,14956,14930,14910,14898,14903,14940,14954,15005,15047,15081,15143,15194,15185,15197,15210,15205,15221,15256,15253,15245,15194,15136,15065,14997,14917,14827,14694,14538,14368,14176,13952,13747,13511,13248,12985,12705,12411,12125,11814,11536,11257,10995,10755,10528,10247,9975,9658,9340,9067,8829,8613,8449,8277,8137,8047,7976,7895,7851,7800,7709,7554,7381,7225,7094,6973,6871,6794,6739,6690,6662,6637,6627,6605,6599,6611,6602,6455,6137,5736,5113,21.3,21.5,22.1,1568218,0.3,12.1,11.9,5.0,481,-1.00,-1.00,57.0770,-18.691626,0.000581,,,,,175 +SATSLF0720,2024246,11.264200,4.34,0.0608,0.1051,0.0187,0.00,16090,639,1,692,690,699,701,697,711,725,722,739,736,726,734,755,891,1222,1964,3155,4517,5769,6683,7304,7776,8204,8633,9146,9747,10504,11368,12369,13470,14653,15805,16912,17847,18572,19004,19130,18958,18578,18059,17468,16919,16464,16080,15853,15781,15863,16128,16525,17125,17873,18765,19819,21036,22340,23776,25255,26736,28157,29413,30408,31145,31554,31552,31211,30564,29639,28594,27370,26186,25013,23947,22941,22091,21354,20752,20269,19883,19605,19446,19345,19358,19449,19651,19897,20265,20684,21201,21754,22379,23048,23690,24296,24878,25349,25728,25996,26038,25927,25641,25165,24521,23802,23006,22154,21285,20447,19683,18968,18331,17751,17284,16878,16561,16321,16152,16041,16001,16017,16128,16281,16498,16801,17158,17600,18082,18678,19281,19908,20600,21310,22041,22785,23483,24199,24864,25445,26005,26421,26764,27009,27117,27117,27029,26810,26493,26089,25600,25042,24459,23816,23173,22534,21849,21233,20620,20026,19463,18993,18513,18105,17737,17415,17116,16855,16608,16408,16205,16017,15833,15641,15477,15346,15234,15131,15047,14976,14939,14922,14932,14928,14945,14967,15018,15046,15083,15141,15186,15211,15214,15222,15220,15248,15267,15260,15248,15208,15149,15089,15026,14937,14837,14699,14558,14378,14194,13975,13757,13522,13261,12999,12717,12418,12117,11836,11542,11264,11028,10785,10562,10280,9988,9662,9358,9069,8836,8618,8430,8282,8158,8057,7986,7901,7868,7791,7719,7564,7397,7230,7089,6983,6886,6809,6740,6688,6649,6637,6631,6615,6606,6615,6619,6469,6157,5710,5107,21.3,21.6,22.2,1568219,0.0,12.1,12.0,5.0,477,-1.00,-1.00,56.8668,-18.605175,0.000518,,,,,53 +SATSLF0720,2024246,11.264454,4.16,0.0582,0.1059,0.0194,0.00,16064,639,1,701,699,707,713,719,713,713,711,709,719,734,725,764,887,1213,1950,3145,4517,5745,6656,7294,7762,8181,8608,9114,9741,10490,11353,12344,13435,14619,15777,16874,17824,18544,18983,19113,18938,18565,18034,17440,16875,16422,16072,15845,15749,15849,16091,16484,17051,17803,18723,19792,21000,22318,23760,25228,26690,28119,29357,30346,31085,31476,31484,31157,30512,29598,28541,27318,26139,24978,23906,22916,22065,21315,20715,20240,19841,19565,19410,19309,19329,19432,19611,19876,20209,20643,21166,21719,22348,23009,23667,24269,24844,25314,25696,25941,25989,25876,25580,25108,24491,23762,22987,22105,21255,20416,19645,18938,18288,17738,17262,16855,16540,16308,16117,16023,15978,16004,16074,16249,16481,16776,17163,17558,18052,18620,19229,19857,20544,21275,22023,22768,23477,24162,24829,25420,25973,26398,26717,26968,27070,27079,26974,26775,26446,26073,25562,25008,24423,23797,23145,22503,21837,21189,20577,19992,19425,18943,18462,18085,17697,17399,17093,16838,16615,16398,16192,16008,15809,15624,15454,15307,15203,15111,15035,14962,14915,14884,14899,14893,14941,14953,14994,15037,15074,15111,15159,15181,15191,15213,15208,15226,15238,15246,15217,15178,15117,15067,14999,14909,14804,14681,14522,14343,14167,13957,13746,13494,13245,12980,12693,12389,12108,11800,11527,11258,11006,10775,10542,10269,9967,9640,9330,9055,8797,8603,8429,8270,8138,8041,7959,7905,7846,7784,7689,7557,7367,7225,7093,6987,6887,6818,6729,6678,6642,6618,6621,6590,6595,6616,6605,6456,6153,5733,5097,21.3,21.6,22.2,1568220,0.0,12.1,11.9,5.0,475,-1.00,-1.00,57.4920,-18.831543,0.000596,,,,,202 +SATSDF0720,2024246,11.509138,0.00,0.0000,0.0000,0.0000,0.00,641,0,1,641,636,629,613,616,611,617,613,612,605,610,601,615,615,613,626,611,623,626,631,623,638,649,641,651,647,653,637,642,648,641,641,634,636,648,646,641,647,650,653,664,654,679,661,662,653,644,641,652,629,631,635,647,645,655,633,639,643,645,651,663,657,646,637,645,649,652,648,653,629,647,641,639,647,641,648,654,634,650,639,640,648,648,656,649,661,662,661,659,656,642,647,634,636,637,633,635,645,635,653,657,657,653,644,653,642,637,642,635,645,638,638,634,653,641,621,643,652,646,647,635,645,641,639,641,645,640,638,649,644,634,651,648,645,654,637,645,643,639,646,640,650,657,641,640,648,647,641,636,638,636,625,635,647,637,641,633,654,646,637,653,631,640,640,633,638,635,642,651,636,635,637,619,624,631,632,647,658,653,639,637,648,640,651,636,631,638,631,625,639,638,639,652,653,647,643,636,647,636,630,634,637,637,629,642,646,642,652,645,649,640,653,651,658,640,647,638,634,635,641,642,637,649,647,641,650,647,643,641,635,640,642,643,648,641,651,654,642,643,653,644,659,641,631,639,647,636,641,647,645,651,638,649,641,647,475,0.0,0.0,0.0,1568219,0.1,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,185 +SATSLF0720,2024246,11.509689,4.11,0.0575,0.0994,0.0158,0.00,16239,641,1,687,691,691,686,687,695,701,710,718,717,726,722,757,882,1211,1965,3159,4558,5809,6740,7384,7853,8265,8711,9243,9885,10616,11507,12504,13642,14837,16018,17128,18093,18821,19262,19391,19224,18833,18292,17692,17125,16631,16275,16040,15984,16048,16314,16728,17317,18066,18993,20056,21293,22609,24070,25579,27070,28512,29770,30774,31527,31925,31917,31604,30929,30007,28939,27674,26485,25313,24236,23211,22346,21608,20997,20509,20125,19833,19681,19592,19578,19681,19875,20128,20483,20916,21433,21994,22625,23296,23953,24561,25148,25621,25969,26226,26278,26169,25898,25397,24769,24037,23240,22348,21467,20619,19845,19141,18487,17921,17451,17040,16714,16472,16290,16183,16149,16174,16236,16427,16648,16951,17320,17757,18245,18829,19441,20070,20773,21491,22238,22985,23702,24412,25077,25669,26260,26690,27005,27242,27353,27362,27256,27049,26727,26331,25831,25272,24669,24026,23381,22720,22038,21409,20791,20186,19641,19155,18674,18258,17891,17539,17261,16986,16752,16546,16332,16149,15950,15767,15597,15445,15338,15245,15164,15098,15053,15037,15041,15033,15063,15083,15116,15153,15188,15250,15286,15303,15323,15316,15325,15341,15362,15370,15365,15312,15262,15189,15126,15022,14919,14789,14637,14464,14270,14066,13851,13614,13365,13078,12804,12507,12210,11894,11611,11329,11087,10838,10600,10329,10035,9713,9417,9114,8871,8663,8483,8331,8196,8099,8043,7965,7925,7842,7755,7606,7433,7266,7138,7013,6913,6839,6785,6728,6695,6677,6666,6651,6633,6645,6644,6489,6176,5767,5142,21.2,21.2,21.6,1568220,0.6,12.1,12.0,5.0,601,-1.00,-1.00,56.7659,-18.781390,0.000646,,,,,44 +SATSLF0720,2024246,11.509871,4.21,0.0589,0.1001,0.0155,0.00,16240,641,1,693,700,689,699,696,701,712,708,717,725,734,738,759,891,1228,1991,3171,4567,5822,6745,7386,7853,8274,8725,9244,9865,10635,11491,12507,13617,14822,16010,17118,18086,18824,19252,19360,19189,18805,18270,17676,17104,16637,16283,16051,15974,16054,16311,16714,17299,18050,18961,20046,21273,22600,24050,25554,27040,28471,29744,30734,31497,31896,31897,31557,30905,29986,28901,27667,26476,25289,24215,23210,22346,21620,20992,20509,20108,19829,19651,19563,19571,19671,19869,20131,20461,20901,21437,21996,22619,23309,23944,24558,25142,25620,25973,26246,26277,26149,25877,25397,24764,24032,23232,22346,21488,20631,19842,19137,18474,17901,17429,17035,16710,16461,16291,16186,16149,16183,16264,16420,16651,16957,17328,17745,18258,18825,19432,20073,20763,21494,22245,22990,23713,24412,25061,25651,26235,26678,26997,27255,27370,27368,27283,27073,26726,26337,25828,25269,24664,24041,23397,22731,22057,21414,20801,20209,19645,19146,18669,18263,17891,17554,17270,16987,16763,16561,16363,16154,15965,15783,15606,15469,15353,15261,15158,15081,15060,15051,15037,15053,15082,15093,15133,15179,15201,15237,15299,15309,15317,15344,15338,15357,15386,15384,15362,15315,15266,15198,15120,15033,14930,14794,14653,14481,14288,14075,13867,13621,13362,13081,12804,12503,12214,11909,11621,11341,11110,10858,10620,10344,10057,9717,9403,9117,8877,8669,8500,8346,8202,8116,8033,7958,7921,7840,7754,7605,7426,7263,7146,7025,6922,6849,6778,6725,6699,6680,6677,6657,6649,6669,6656,6505,6208,5768,5136,21.2,21.2,21.8,1568221,0.6,12.1,12.0,5.0,499,-1.00,-1.00,56.3860,-18.607307,0.000513,,,,,92 +SATSLF0720,2024246,11.510127,4.13,0.0579,0.1007,0.0158,0.00,16218,641,1,685,682,696,701,709,704,713,707,713,718,725,729,777,893,1233,1979,3175,4558,5812,6733,7374,7845,8264,8713,9236,9859,10605,11506,12497,13627,14797,15974,17072,18033,18768,19199,19355,19170,18792,18238,17658,17094,16616,16252,16034,15955,16026,16274,16677,17255,18023,18938,20010,21248,22568,24025,25524,27015,28443,29701,30704,31446,31866,31848,31531,30860,29941,28866,27625,26441,25269,24161,23171,22298,21559,20944,20462,20060,19785,19634,19537,19549,19645,19848,20082,20443,20884,21405,21958,22587,23261,23904,24521,25105,25574,25949,26202,26242,26115,25838,25351,24705,24003,23182,22317,21451,20586,19811,19121,18465,17896,17422,17018,16694,16442,16279,16174,16119,16151,16229,16395,16623,16930,17286,17731,18226,18804,19417,20048,20737,21473,22217,22965,23662,24391,25049,25645,26206,26642,26973,27213,27320,27341,27245,27028,26685,26295,25801,25241,24650,24019,23349,22681,22019,21374,20762,20171,19612,19110,18639,18245,17869,17536,17245,16981,16749,16540,16324,16135,15943,15741,15603,15441,15334,15223,15177,15094,15061,15025,15042,15049,15058,15082,15101,15159,15181,15237,15287,15287,15310,15323,15329,15349,15360,15357,15345,15304,15243,15189,15113,15017,14904,14774,14620,14451,14263,14043,13840,13606,13340,13068,12783,12496,12198,11885,11617,11339,11090,10841,10615,10341,10049,9720,9396,9106,8867,8666,8489,8325,8196,8100,8023,7944,7902,7832,7742,7602,7426,7270,7146,7027,6933,6848,6786,6736,6688,6673,6657,6650,6630,6643,6647,6488,6177,5760,5136,21.2,21.2,21.8,1568222,0.6,12.1,12.0,5.0,484,-1.00,-1.00,56.7727,-18.744068,0.000591,,,,,168 +SATSLF0720,2024246,11.510380,4.17,0.0584,0.1010,0.0169,0.00,16196,641,1,680,691,685,689,702,705,706,700,711,706,735,729,754,871,1217,1969,3158,4549,5787,6707,7356,7808,8251,8685,9211,9841,10592,11474,12466,13587,14770,15953,17060,18007,18745,19171,19307,19129,18744,18195,17632,17065,16586,16226,16000,15922,15991,16252,16669,17241,17997,18898,19987,21220,22527,23994,25486,26969,28395,29659,30681,31411,31811,31813,31500,30837,29904,28840,27607,26404,25225,24161,23145,22273,21544,20929,20454,20059,19754,19617,19524,19529,19621,19809,20071,20402,20845,21369,21952,22560,23238,23890,24489,25051,25536,25894,26160,26219,26102,25814,25339,24699,23979,23177,22304,21425,20577,19788,19081,18430,17853,17390,16973,16678,16433,16242,16146,16110,16113,16218,16381,16598,16919,17266,17705,18193,18790,19378,20021,20703,21437,22190,22926,23647,24361,25025,25610,26189,26610,26941,27180,27289,27301,27209,26994,26672,26262,25777,25224,24625,23977,23335,22658,22003,21368,20760,20155,19589,19101,18625,18228,17845,17527,17238,16960,16702,16515,16292,16116,15912,15737,15575,15422,15310,15210,15132,15058,15014,14996,15004,15001,15034,15057,15094,15136,15145,15207,15253,15260,15274,15289,15297,15326,15346,15349,15335,15270,15215,15153,15085,14986,14898,14761,14613,14448,14253,14032,13818,13581,13314,13054,12754,12462,12189,11885,11610,11318,11072,10835,10601,10329,10022,9697,9373,9101,8856,8648,8478,8330,8194,8090,8011,7940,7882,7821,7731,7588,7410,7253,7119,7012,6910,6829,6777,6710,6679,6651,6643,6622,6620,6642,6636,6497,6173,5751,5128,21.2,21.2,21.8,1568223,0.3,12.1,12.0,5.0,484,-1.00,-1.00,57.1450,-18.877927,0.000571,,,,,156 +SATSLF0720,2024246,11.510636,3.98,0.0558,0.1019,0.0171,0.00,16187,641,1,688,691,688,686,699,703,696,699,710,709,713,721,767,891,1225,1987,3173,4570,5818,6742,7385,7859,8270,8709,9230,9859,10600,11479,12482,13597,14795,15970,17096,18064,18781,19209,19341,19157,18780,18238,17632,17075,16599,16239,16004,15926,16002,16262,16673,17251,18009,18925,19979,21215,22537,23995,25469,26950,28404,29657,30656,31409,31827,31814,31495,30825,29904,28827,27594,26405,25220,24130,23134,22262,21529,20900,20430,20021,19747,19587,19485,19514,19602,19790,20049,20400,20836,21362,21938,22550,23209,23851,24480,25052,25536,25901,26155,26201,26080,25805,25321,24679,23943,23139,22273,21399,20544,19768,19072,18413,17850,17378,16973,16657,16409,16240,16130,16091,16122,16201,16379,16604,16905,17277,17696,18197,18761,19365,20016,20699,21438,22166,22923,23632,24341,24995,25580,26153,26587,26912,27159,27244,27266,27179,26955,26645,26237,25741,25179,24589,23941,23302,22647,21981,21352,20729,20121,19558,19053,18590,18189,17829,17497,17202,16944,16697,16502,16290,16099,15895,15705,15544,15410,15305,15201,15133,15050,15013,14985,14989,14985,15018,15041,15077,15116,15145,15189,15251,15262,15276,15284,15297,15313,15324,15333,15322,15274,15210,15147,15066,14982,14902,14745,14588,14428,14229,14028,13805,13578,13307,13042,12759,12453,12162,11872,11560,11312,11050,10814,10565,10311,10013,9689,9379,9093,8852,8645,8453,8299,8168,8081,7991,7931,7875,7807,7735,7589,7418,7262,7117,7006,6906,6833,6758,6702,6664,6645,6634,6620,6611,6630,6625,6480,6166,5736,5123,21.2,21.2,21.8,1568224,0.4,12.1,11.9,5.0,476,-1.00,-1.00,57.1063,-18.857995,0.000555,,,,,45 +SATSLF0720,2024246,11.510894,4.37,0.0612,0.1033,0.0177,0.00,16140,641,1,693,693,692,700,710,714,709,732,721,730,732,751,773,886,1237,1970,3156,4543,5769,6695,7328,7789,8213,8650,9180,9804,10534,11403,12390,13523,14700,15864,16953,17917,18656,19070,19207,19019,18653,18094,17526,16968,16498,16139,15929,15853,15926,16166,16574,17159,17906,18827,19893,21099,22439,23897,25377,26853,28269,29517,30510,31257,31657,31650,31314,30661,29745,28685,27461,26280,25125,24043,23038,22177,21449,20834,20329,19955,19673,19521,19422,19447,19545,19744,19985,20325,20755,21288,21841,22462,23121,23777,24396,24973,25461,25818,26070,26117,25995,25717,25235,24609,23882,23076,22208,21341,20496,19745,19025,18373,17798,17344,16929,16603,16353,16183,16096,16053,16089,16172,16341,16542,16848,17214,17658,18155,18720,19349,19965,20655,21381,22122,22858,23570,24278,24933,25518,26077,26519,26852,27092,27189,27206,27114,26898,26570,26184,25682,25120,24541,23900,23254,22592,21930,21297,20686,20097,19536,19037,18553,18151,17773,17443,17165,16900,16683,16474,16282,16077,15882,15693,15517,15362,15267,15173,15089,15037,14997,14981,14973,14969,14995,15022,15059,15095,15136,15173,15233,15236,15249,15264,15269,15293,15317,15305,15296,15255,15189,15126,15049,14974,14871,14736,14586,14413,14225,14005,13789,13552,13291,13029,12741,12454,12149,11849,11574,11285,11041,10807,10566,10309,10005,9678,9361,9077,8828,8627,8457,8308,8186,8088,8010,7924,7872,7810,7720,7573,7389,7243,7119,7014,6909,6830,6754,6689,6665,6637,6622,6623,6621,6650,6630,6475,6165,5739,5113,21.2,21.2,21.9,1568225,0.0,12.1,11.9,5.0,484,-1.00,-1.00,56.6950,-18.597471,0.000602,,,,,212 +SATSLF0720,2024246,11.511147,4.27,0.0598,0.1017,0.0170,0.00,16190,641,1,712,716,704,715,706,704,705,717,720,721,739,716,767,894,1242,1989,3173,4554,5795,6726,7357,7817,8243,8697,9218,9857,10599,11483,12473,13595,14788,15956,17053,18011,18733,19175,19302,19123,18730,18197,17581,17042,16577,16229,16001,15928,15994,16248,16654,17237,17982,18891,19979,21205,22528,23974,25470,26950,28363,29643,30631,31386,31769,31780,31446,30804,29873,28805,27569,26374,25207,24125,23129,22253,21517,20903,20421,20030,19745,19591,19492,19505,19594,19787,20048,20382,20829,21361,21913,22540,23209,23862,24473,25047,25533,25901,26158,26204,26070,25793,25313,24661,23950,23164,22297,21426,20560,19794,19069,18415,17851,17401,16981,16661,16405,16243,16149,16098,16122,16229,16365,16596,16897,17269,17692,18186,18762,19365,20008,20701,21446,22166,22923,23634,24337,24996,25589,26165,26596,26916,27168,27274,27289,27200,26977,26642,26245,25751,25180,24589,23963,23312,22642,21985,21355,20731,20139,19597,19098,18610,18214,17846,17501,17217,16945,16707,16519,16310,16109,15899,15719,15562,15424,15297,15204,15127,15054,15031,15001,15011,15017,15049,15037,15087,15137,15165,15213,15270,15278,15291,15309,15321,15333,15344,15335,15328,15287,15227,15149,15072,14979,14900,14763,14618,14449,14269,14045,13824,13592,13306,13054,12770,12481,12197,11889,11584,11315,11072,10826,10599,10328,10028,9706,9389,9115,8856,8651,8470,8311,8182,8100,8021,7955,7889,7823,7737,7589,7423,7264,7142,7022,6929,6849,6781,6730,6694,6659,6640,6643,6625,6650,6632,6483,6176,5751,5132,21.2,21.2,21.9,1568226,0.0,12.1,11.9,5.0,480,-1.00,-1.00,56.4091,-18.551732,0.000562,,,,,74 +SATSLF0720,2024246,11.511407,4.11,0.0576,0.1022,0.0173,0.00,16168,641,1,689,689,706,697,699,683,703,698,706,703,707,722,749,895,1242,1974,3171,4550,5781,6718,7361,7816,8242,8684,9211,9825,10574,11445,12436,13545,14743,15909,17033,17977,18704,19143,19285,19099,18722,18173,17576,17022,16553,16188,15973,15893,15990,16234,16642,17210,17947,18869,19941,21162,22474,23925,25419,26914,28357,29600,30601,31369,31749,31746,31426,30770,29844,28780,27540,26343,25171,24087,23078,22233,21486,20878,20409,20010,19730,19562,19473,19484,19570,19757,20028,20370,20807,21332,21882,22505,23168,23809,24428,25012,25486,25864,26122,26154,26051,25776,25282,24647,23941,23125,22273,21396,20541,19774,19058,18395,17844,17365,16968,16649,16401,16227,16126,16085,16122,16202,16362,16578,16866,17239,17665,18157,18729,19333,19979,20681,21400,22145,22877,23601,24311,24970,25569,26141,26570,26894,27128,27237,27240,27153,26939,26601,26211,25712,25159,24567,23932,23296,22641,21954,21322,20695,20100,19537,19050,18586,18181,17825,17478,17202,16924,16685,16485,16296,16093,15912,15726,15550,15412,15293,15191,15114,15033,14996,14991,14979,14980,15026,15037,15063,15114,15137,15187,15234,15257,15277,15274,15287,15297,15323,15329,15316,15284,15197,15138,15080,14981,14881,14743,14600,14416,14224,14013,13799,13571,13309,13044,12772,12479,12180,11876,11570,11303,11036,10797,10560,10299,9994,9683,9371,9074,8851,8641,8466,8320,8182,8082,8004,7930,7875,7812,7726,7574,7407,7251,7123,7002,6918,6836,6761,6711,6680,6663,6646,6626,6619,6634,6647,6485,6165,5725,5108,21.2,21.3,21.9,1568227,0.6,12.1,12.0,5.0,482,-1.00,-1.00,57.1952,-18.858653,0.000572,,,,,103 +SATSLF0720,2024246,11.511661,4.15,0.0581,0.1032,0.0178,0.00,16133,641,1,677,677,695,703,698,702,705,697,711,705,720,729,772,894,1223,1968,3155,4512,5758,6673,7317,7773,8198,8638,9158,9788,10536,11395,12400,13502,14693,15853,16968,17917,18633,19079,19197,19011,18655,18113,17523,16967,16501,16136,15899,15835,15909,16173,16573,17144,17903,18810,19858,21091,22413,23861,25353,26830,28249,29508,30491,31253,31657,31650,31325,30673,29741,28675,27448,26256,25104,24018,23022,22167,21430,20826,20343,19963,19675,19511,19427,19437,19524,19710,19962,20320,20742,21259,21829,22459,23144,23779,24395,24954,25447,25805,26069,26113,25998,25712,25224,24594,23873,23095,22210,21339,20496,19717,19021,18378,17809,17331,16913,16609,16349,16183,16099,16045,16075,16171,16327,16565,16859,17219,17648,18148,18706,19306,19947,20637,21358,22088,22851,23560,24272,24935,25517,26093,26522,26859,27086,27185,27223,27120,26897,26569,26167,25665,25107,24519,23884,23245,22585,21913,21289,20674,20084,19521,19048,18564,18156,17779,17460,17154,16899,16663,16464,16274,16073,15867,15692,15518,15364,15251,15168,15082,15021,14986,14959,14961,14965,14992,15018,15049,15107,15134,15172,15227,15252,15249,15267,15281,15288,15310,15298,15283,15249,15185,15124,15032,14956,14862,14731,14582,14405,14235,14012,13798,13552,13287,13011,12734,12421,12139,11845,11548,11281,11034,10811,10568,10308,10001,9661,9371,9074,8829,8625,8438,8307,8162,8070,8005,7937,7875,7805,7716,7563,7394,7238,7108,6986,6889,6813,6751,6695,6661,6642,6625,6610,6606,6626,6621,6485,6173,5749,5111,21.3,21.3,21.9,1568228,0.1,12.1,11.9,5.0,482,-1.00,-1.00,57.4829,-18.917820,0.000618,,,,,246 +SATSLF0720,2024246,11.511913,4.12,0.0577,0.1035,0.0175,0.00,16139,641,1,689,705,701,700,709,701,703,719,726,725,727,735,773,880,1214,1982,3151,4547,5776,6694,7326,7793,8211,8660,9181,9802,10541,11408,12396,13526,14701,15879,16978,17930,18648,19095,19221,19044,18681,18128,17536,16984,16509,16149,15911,15851,15932,16183,16580,17165,17923,18835,19889,21110,22439,23885,25372,26857,28269,29531,30544,31284,31671,31675,31345,30693,29773,28710,27473,26296,25125,24038,23049,22154,21447,20838,20341,19953,19669,19522,19414,19443,19537,19731,20003,20333,20765,21284,21833,22459,23127,23769,24379,24973,25448,25810,26071,26131,26005,25725,25242,24590,23891,23096,22232,21354,20509,19729,19022,18370,17805,17335,16917,16614,16357,16201,16097,16053,16087,16166,16343,16560,16841,17211,17646,18125,18705,19306,19949,20632,21367,22105,22857,23562,24276,24933,25518,26069,26499,26835,27085,27192,27201,27104,26900,26568,26178,25681,25122,24533,23893,23246,22577,21914,21285,20674,20092,19540,19045,18568,18157,17806,17461,17162,16903,16661,16446,16259,16058,15871,15680,15519,15369,15262,15155,15104,15010,14978,14954,14957,14961,14993,15024,15053,15093,15126,15184,15210,15235,15249,15253,15261,15286,15294,15303,15287,15241,15186,15133,15051,14971,14876,14737,14588,14398,14212,14002,13787,13552,13287,13018,12743,12445,12149,11851,11575,11296,11045,10806,10579,10299,9984,9661,9366,9070,8829,8614,8439,8299,8177,8084,7997,7937,7877,7812,7704,7570,7399,7252,7120,7003,6907,6826,6771,6701,6665,6643,6635,6626,6619,6635,6613,6469,6161,5728,5107,21.2,21.4,22.0,1568229,0.0,12.1,12.0,5.0,480,-1.00,-1.00,57.5318,-18.956443,0.000599,,,,,109 +SATSLF0720,2024246,11.512169,4.20,0.0588,0.1025,0.0170,0.00,16166,641,1,690,684,699,705,709,717,718,709,723,716,723,734,765,874,1231,1966,3176,4553,5797,6720,7350,7820,8229,8673,9195,9814,10551,11426,12439,13537,14724,15885,17008,17966,18689,19128,19264,19095,18717,18174,17581,17012,16530,16186,15956,15885,15965,16209,16615,17207,17947,18859,19937,21170,22489,23933,25422,26913,28324,29565,30563,31304,31712,31704,31382,30729,29803,28747,27533,26329,25179,24085,23088,22213,21466,20861,20374,19995,19723,19558,19457,19479,19577,19756,20007,20361,20781,21307,21877,22512,23185,23826,24441,25006,25486,25850,26112,26155,26041,25760,25270,24628,23915,23131,22254,21393,20548,19769,19070,18416,17858,17371,16967,16639,16390,16217,16107,16071,16089,16180,16351,16564,16872,17249,17678,18169,18733,19344,19985,20682,21405,22149,22885,23607,24308,24980,25568,26133,26540,26875,27121,27237,27245,27157,26949,26617,26203,25713,25146,24555,23927,23275,22628,21950,21317,20699,20107,19570,19080,18586,18195,17829,17495,17195,16920,16675,16483,16267,16092,15898,15716,15553,15416,15297,15202,15121,15048,15016,14997,14997,14993,15012,15035,15068,15115,15153,15197,15253,15266,15262,15275,15274,15301,15325,15327,15319,15269,15210,15149,15084,14981,14894,14759,14605,14442,14235,14035,13814,13578,13306,13049,12757,12468,12157,11863,11587,11314,11064,10835,10595,10331,10013,9693,9381,9098,8844,8643,8476,8317,8183,8088,8018,7944,7892,7821,7723,7591,7397,7246,7116,7009,6922,6827,6771,6719,6681,6657,6647,6629,6630,6634,6637,6493,6174,5747,5122,21.3,21.3,22.0,1568230,0.4,12.1,11.9,5.0,480,-1.00,-1.00,56.7090,-18.639490,0.000560,,,,,215 +SATSLF0720,2024246,11.512422,4.34,0.0608,0.1036,0.0179,0.00,16136,641,1,696,695,710,702,715,693,708,706,709,721,716,740,778,901,1225,1988,3156,4532,5771,6694,7323,7790,8213,8661,9177,9796,10529,11408,12403,13498,14683,15847,16969,17927,18651,19085,19213,19024,18649,18108,17529,16966,16509,16151,15941,15856,15946,16174,16584,17170,17908,18813,19882,21114,22433,23872,25360,26832,28257,29527,30503,31257,31646,31643,31323,30670,29737,28695,27457,26267,25100,24022,23022,22176,21445,20808,20333,19936,19666,19501,19411,19433,19536,19713,19969,20326,20744,21264,21835,22452,23117,23772,24381,24962,25442,25802,26065,26088,25984,25705,25222,24590,23878,23088,22216,21337,20497,19736,19026,18378,17810,17323,16928,16617,16358,16178,16091,16045,16077,16171,16330,16551,16855,17208,17656,18142,18700,19317,19963,20642,21361,22113,22854,23576,24282,24936,25539,26096,26530,26845,27082,27185,27189,27099,26886,26561,26157,25680,25097,24539,23892,23245,22592,21925,21300,20669,20087,19541,19029,18561,18144,17803,17454,17169,16893,16657,16448,16253,16063,15881,15693,15524,15380,15265,15165,15101,15017,14967,14958,14953,14961,14985,15020,15049,15098,15134,15162,15226,15227,15230,15242,15276,15273,15307,15286,15287,15239,15200,15120,15047,14984,14874,14739,14592,14404,14216,14008,13797,13547,13291,13025,12747,12472,12153,11857,11574,11304,11057,10813,10576,10317,10005,9693,9369,9087,8827,8632,8464,8301,8179,8075,8011,7933,7880,7810,7729,7574,7399,7255,7125,7001,6902,6823,6758,6688,6657,6651,6634,6627,6602,6629,6623,6469,6160,5743,5131,21.3,21.4,22.0,1568231,0.0,12.1,12.0,5.0,481,-1.00,-1.00,56.5152,-18.519601,0.000537,,,,,99 +SATSLF0720,2024246,11.512674,4.30,0.0602,0.1048,0.0184,0.00,16096,641,1,694,703,705,709,707,715,712,713,720,733,717,736,762,880,1211,1971,3157,4534,5757,6665,7303,7758,8202,8632,9154,9764,10519,11373,12381,13484,14653,15815,16925,17874,18592,19024,19150,18970,18605,18083,17494,16934,16480,16105,15881,15804,15873,16133,16535,17123,17877,18777,19841,21069,22395,23811,25291,26760,28195,29438,30434,31185,31565,31560,31259,30597,29687,28629,27397,26217,25052,23971,22981,22112,21374,20775,20277,19891,19627,19461,19361,19379,19478,19676,19933,20266,20707,21218,21771,22397,23072,23713,24326,24897,25370,25728,25994,26050,25918,25654,25162,24527,23815,23022,22154,21284,20446,19671,18976,18310,17766,17292,16891,16564,16328,16152,16048,16003,16021,16129,16274,16504,16811,17181,17614,18085,18659,19265,19893,20568,21303,22050,22808,23513,24213,24869,25461,26028,26433,26774,27012,27117,27130,27035,26811,26496,26105,25610,25051,24457,23828,23173,22532,21870,21235,20635,20027,19485,19000,18504,18115,17734,17420,17138,16867,16616,16422,16227,16013,15831,15637,15469,15333,15226,15141,15069,14995,14945,14924,14918,14934,14965,14984,15031,15066,15076,15138,15184,15201,15218,15224,15229,15253,15265,15277,15269,15213,15153,15103,15009,14939,14824,14685,14540,14382,14189,13976,13764,13521,13257,13001,12708,12427,12128,11823,11534,11270,11013,10781,10536,10268,9981,9655,9344,9059,8810,8611,8425,8271,8144,8054,7978,7900,7857,7777,7699,7554,7387,7237,7101,6996,6878,6809,6739,6683,6651,6627,6614,6596,6597,6622,6612,6450,6135,5731,5113,21.2,21.4,22.1,1568231,0.0,12.1,11.9,5.0,473,-1.00,-1.00,57.0251,-18.690018,0.000533,,,,,211 +SATSLF0720,2024246,11.512931,4.22,0.0591,0.1046,0.0186,0.00,16102,641,1,698,701,705,698,698,694,699,714,713,701,717,727,760,873,1217,1968,3159,4517,5767,6676,7304,7761,8193,8632,9149,9777,10510,11369,12357,13470,14659,15821,16938,17876,18605,19034,19152,18981,18607,18074,17482,16924,16466,16105,15873,15803,15872,16135,16530,17120,17867,18769,19840,21056,22391,23834,25305,26792,28208,29463,30452,31187,31595,31592,31267,30601,29698,28634,27400,26218,25066,23962,22976,22115,21393,20770,20286,19897,19627,19478,19369,19392,19488,19673,19930,20269,20701,21222,21786,22411,23065,23712,24324,24896,25387,25745,26007,26067,25949,25680,25185,24556,23840,23052,22174,21297,20458,19693,18976,18333,17777,17301,16912,16592,16338,16157,16055,16016,16033,16141,16291,16512,16810,17169,17616,18081,18661,19261,19911,20593,21346,22081,22820,23537,24229,24896,25477,26042,26460,26785,27005,27131,27142,27050,26836,26501,26131,25633,25065,24481,23842,23189,22534,21876,21242,20654,20052,19485,19002,18533,18130,17767,17421,17142,16861,16631,16417,16230,16041,15833,15660,15493,15337,15235,15153,15060,14997,14957,14928,14929,14944,14977,14981,15017,15054,15092,15138,15193,15214,15221,15237,15248,15255,15285,15290,15261,15213,15159,15096,15018,14927,14839,14707,14557,14378,14193,13997,13770,13524,13273,13000,12709,12427,12138,11842,11546,11271,11017,10769,10561,10266,9984,9661,9357,9059,8816,8615,8434,8273,8151,8053,7981,7901,7851,7794,7699,7564,7390,7229,7106,6993,6886,6803,6740,6695,6641,6643,6617,6599,6593,6615,6610,6438,6154,5725,5099,21.3,21.4,22.1,1568232,0.0,12.1,12.0,5.0,471,-1.00,-1.00,57.5836,-18.929416,0.000642,,,,,102 +SATSLF0720,2024246,11.513187,4.17,0.0585,0.1048,0.0191,0.00,16094,641,1,690,701,701,709,707,711,701,698,709,701,719,729,777,899,1232,1985,3162,4545,5773,6676,7319,7785,8200,8637,9151,9777,10500,11376,12362,13461,14663,15809,16923,17873,18605,19040,19172,18987,18618,18073,17490,16928,16459,16100,15867,15803,15875,16134,16546,17129,17860,18775,19828,21052,22357,23789,25278,26752,28174,29413,30416,31156,31564,31557,31238,30585,29661,28594,27358,26194,25029,23939,22953,22109,21374,20773,20298,19898,19608,19465,19357,19381,19469,19668,19925,20257,20701,21226,21786,22398,23066,23690,24317,24896,25376,25737,25998,26042,25943,25651,25156,24528,23804,23002,22151,21288,20446,19669,18976,18320,17769,17289,16889,16558,16315,16158,16049,16005,16037,16117,16280,16499,16803,17174,17601,18086,18664,19262,19891,20578,21317,22050,22792,23492,24204,24866,25456,26013,26455,26758,27015,27096,27109,27032,26808,26491,26097,25600,25048,24461,23833,23169,22527,21861,21230,20621,20026,19468,18984,18507,18089,17749,17418,17127,16859,16628,16433,16209,16018,15824,15637,15490,15348,15221,15129,15061,14981,14938,14918,14930,14934,14960,14982,15014,15055,15086,15125,15172,15185,15200,15228,15226,15250,15273,15269,15267,15218,15145,15079,15019,14931,14837,14689,14532,14382,14180,13975,13758,13511,13266,12993,12715,12421,12134,11832,11549,11267,11031,10797,10557,10275,9980,9661,9337,9047,8814,8604,8437,8290,8149,8051,7983,7909,7857,7782,7702,7568,7381,7220,7095,6981,6889,6813,6758,6713,6660,6634,6625,6607,6606,6606,6594,6459,6145,5725,5096,21.3,21.4,22.1,1568233,0.9,12.1,11.9,5.0,482,-1.00,-1.00,57.0238,-18.675008,0.000554,,,,,228 +SATSLF0720,2024246,11.513438,4.33,0.0606,0.1048,0.0189,0.00,16100,641,1,703,705,716,709,710,704,716,713,723,718,727,743,769,897,1234,1975,3152,4521,5757,6683,7314,7791,8198,8642,9159,9771,10523,11392,12379,13482,14658,15811,16930,17890,18596,19022,19153,18982,18614,18077,17482,16908,16462,16106,15885,15797,15873,16127,16531,17120,17865,18778,19834,21054,22386,23828,25293,26773,28180,29447,30432,31165,31561,31554,31229,30591,29661,28615,27385,26185,25029,23937,22947,22086,21358,20752,20290,19912,19619,19460,19357,19395,19477,19666,19936,20288,20708,21220,21769,22391,23086,23714,24333,24906,25376,25736,25997,26056,25937,25650,25179,24530,23825,23022,22156,21285,20457,19689,18969,18331,17773,17316,16897,16584,16335,16154,16055,16012,16026,16109,16283,16506,16803,17172,17623,18094,18667,19270,19891,20585,21323,22065,22797,23506,24227,24882,25465,26024,26458,26785,27026,27117,27148,27040,26824,26512,26106,25617,25060,24484,23843,23191,22539,21865,21246,20612,20038,19481,18983,18519,18114,17760,17433,17137,16886,16629,16426,16205,16027,15832,15657,15497,15353,15249,15141,15070,14997,14957,14933,14935,14923,14950,14977,15031,15062,15090,15146,15202,15202,15214,15221,15227,15247,15273,15279,15268,15223,15166,15085,15028,14941,14841,14710,14556,14375,14209,13989,13771,13539,13258,13000,12707,12416,12130,11842,11547,11271,11031,10781,10551,10286,9984,9664,9360,9061,8835,8621,8447,8301,8162,8071,7986,7915,7863,7782,7703,7563,7387,7244,7114,7006,6905,6815,6763,6698,6653,6636,6631,6609,6599,6631,6617,6462,6159,5727,5110,21.3,21.4,22.1,1568234,0.3,12.1,11.9,5.0,479,-1.00,-1.00,56.7800,-18.580342,0.000618,,,,,109 +SATSLF0720,2024246,11.513693,4.23,0.0593,0.1047,0.0185,0.00,16107,641,1,695,693,697,701,689,701,706,717,711,727,727,735,770,893,1235,1974,3145,4531,5769,6693,7314,7787,8202,8649,9173,9789,10521,11399,12390,13512,14685,15845,16950,17899,18620,19045,19179,19009,18618,18088,17496,16928,16477,16116,15879,15810,15892,16134,16549,17133,17875,18794,19850,21082,22413,23819,25309,26790,28192,29461,30444,31209,31604,31594,31269,30605,29697,28634,27400,26214,25053,23972,22976,22119,21381,20784,20305,19905,19626,19472,19363,19385,19482,19661,19945,20293,20709,21221,21805,22410,23074,23729,24343,24917,25392,25749,26005,26064,25954,25676,25197,24561,23834,23046,22176,21318,20452,19703,18994,18345,17780,17308,16894,16592,16335,16162,16068,16021,16037,16136,16283,16515,16797,17179,17620,18106,18685,19287,19906,20597,21322,22052,22798,23501,24209,24875,25469,26036,26461,26785,27031,27145,27152,27064,26848,26509,26114,25628,25045,24462,23841,23200,22533,21877,21256,20640,20049,19492,18992,18525,18112,17757,17424,17129,16865,16633,16429,16226,16030,15857,15665,15491,15349,15232,15130,15061,14989,14951,14935,14935,14955,14985,14992,15017,15063,15086,15147,15204,15205,15223,15235,15217,15251,15267,15271,15257,15225,15157,15100,15031,14954,14842,14717,14556,14384,14185,13991,13769,13546,13273,12998,12719,12413,12128,11834,11541,11274,11029,10787,10571,10290,9984,9662,9344,9055,8830,8603,8438,8284,8165,8074,7985,7918,7866,7797,7707,7565,7387,7236,7107,7009,6901,6820,6754,6700,6662,6642,6622,6615,6594,6625,6623,6467,6172,5738,5119,21.3,21.5,22.1,1568235,0.0,12.1,11.9,5.0,482,-1.00,-1.00,57.0962,-18.727706,0.000626,,,,,50 +SATSLF0720,2024246,11.513946,4.27,0.0598,0.1051,0.0190,0.00,16085,641,1,698,700,709,704,705,706,729,724,733,734,733,725,771,884,1218,1963,3152,4529,5754,6669,7316,7770,8189,8624,9159,9769,10523,11380,12374,13486,14653,15810,16907,17879,18592,19025,19153,18974,18600,18065,17469,16912,16453,16074,15860,15789,15858,16128,16534,17109,17867,18757,19838,21045,22368,23821,25290,26762,28158,29412,30413,31146,31542,31543,31218,30574,29661,28590,27367,26183,25029,23945,22955,22088,21357,20740,20258,19869,19589,19443,19345,19358,19455,19636,19907,20245,20669,21190,21755,22369,23044,23690,24313,24884,25361,25721,25972,26024,25910,25621,25153,24519,23789,23004,22142,21288,20440,19685,18961,18311,17749,17290,16881,16557,16311,16133,16040,15994,16014,16096,16279,16512,16797,17171,17594,18081,18656,19245,19883,20561,21289,22021,22772,23497,24186,24841,25436,26000,26427,26744,26985,27091,27095,27000,26789,26469,26073,25587,25031,24437,23803,23162,22505,21837,21220,20606,20009,19455,18967,18500,18109,17730,17381,17117,16849,16599,16407,16210,16004,15821,15649,15473,15325,15225,15114,15059,14977,14935,14927,14937,14902,14951,14960,15010,15045,15079,15122,15187,15188,15196,15205,15216,15229,15259,15260,15251,15213,15147,15083,15029,14926,14837,14696,14530,14362,14165,13963,13739,13521,13237,12989,12697,12413,12122,11829,11537,11269,11013,10788,10534,10262,9966,9648,9322,9063,8821,8609,8449,8277,8152,8061,7965,7896,7831,7778,7694,7568,7381,7212,7093,6980,6874,6803,6737,6697,6661,6645,6615,6615,6594,6615,6610,6448,6141,5716,5090,21.3,21.5,22.1,1568236,0.0,12.1,12.0,5.0,479,-1.00,-1.00,57.0286,-18.674911,0.000629,,,,,60 +SATSLF0720,2024246,11.514197,4.30,0.0603,0.1062,0.0198,0.00,16057,641,1,696,710,702,710,719,703,716,720,709,714,722,739,771,900,1227,1967,3153,4522,5744,6667,7285,7750,8171,8605,9147,9741,10494,11349,12349,13449,14635,15786,16882,17838,18558,18997,19094,18937,18565,18030,17425,16879,16409,16058,15829,15761,15841,16093,16504,17082,17819,18724,19787,20996,22307,23756,25225,26704,28107,29355,30345,31091,31465,31479,31144,30501,29595,28533,27302,26114,24951,23883,22892,22040,21306,20714,20235,19838,19559,19404,19298,19312,19427,19617,19869,20215,20637,21154,21724,22328,22984,23648,24252,24829,25298,25673,25949,25993,25873,25602,25106,24489,23762,22961,22102,21220,20391,19621,18926,18277,17738,17248,16862,16533,16285,16113,16010,15971,15985,16087,16253,16469,16772,17149,17566,18052,18609,19214,19849,20533,21257,21986,22723,23437,24150,24786,25377,25958,26381,26702,26961,27061,27063,26974,26757,26436,26025,25545,24966,24387,23758,23118,22475,21821,21183,20588,19992,19429,18930,18455,18073,17696,17373,17097,16824,16594,16390,16168,15984,15794,15610,15445,15313,15197,15090,15017,14940,14916,14890,14893,14912,14924,14958,14986,15017,15058,15101,15147,15161,15169,15176,15179,15211,15234,15241,15224,15172,15120,15055,14987,14899,14803,14666,14511,14337,14148,13944,13723,13480,13235,12963,12687,12414,12098,11806,11533,11242,10976,10755,10523,10257,9963,9644,9341,9045,8805,8592,8430,8277,8137,8041,7979,7890,7855,7781,7693,7538,7358,7216,7085,6971,6884,6812,6747,6694,6648,6633,6619,6602,6593,6597,6587,6451,6132,5719,5107,21.3,21.6,22.2,1568237,0.0,12.1,12.0,5.0,481,-1.00,-1.00,56.8755,-18.569212,0.000600,,,,,235 +SATSLF0720,2024246,11.514451,4.44,0.0622,0.1052,0.0187,0.00,16088,641,1,717,711,709,706,699,703,717,716,718,724,737,742,769,898,1233,1972,3157,4529,5765,6669,7317,7786,8193,8647,9176,9793,10529,11401,12388,13495,14649,15822,16901,17861,18601,19021,19145,18961,18599,18067,17467,16906,16459,16100,15885,15816,15885,16129,16535,17118,17877,18760,19816,21042,22355,23799,25258,26740,28162,29404,30404,31162,31538,31548,31220,30565,29643,28568,27348,26165,25005,23935,22941,22097,21373,20762,20277,19875,19598,19449,19341,19353,19456,19648,19907,20264,20690,21195,21752,22374,23056,23703,24297,24876,25344,25720,25965,26013,25897,25610,25129,24507,23808,23002,22135,21285,20430,19662,18962,18333,17754,17295,16883,16585,16328,16141,16045,15992,16035,16118,16277,16517,16794,17158,17577,18073,18641,19249,19889,20558,21293,22038,22781,23494,24210,24850,25449,26016,26452,26749,26985,27086,27112,27005,26808,26474,26088,25594,25020,24432,23802,23154,22515,21841,21216,20611,20018,19454,18969,18499,18102,17741,17409,17118,16844,16611,16401,16208,16013,15827,15648,15479,15337,15217,15127,15062,14981,14948,14922,14924,14921,14951,14973,14985,15047,15095,15136,15184,15194,15213,15205,15227,15244,15262,15260,15258,15198,15143,15092,15002,14915,14835,14693,14545,14374,14165,13965,13753,13508,13256,12989,12706,12414,12141,11837,11534,11275,11017,10779,10538,10277,9985,9666,9357,9063,8831,8617,8442,8293,8149,8056,7985,7902,7875,7798,7715,7576,7389,7238,7111,6990,6888,6807,6731,6669,6655,6634,6621,6602,6600,6610,6609,6471,6160,5726,5102,21.3,21.6,22.2,1568238,0.9,12.1,11.9,5.0,475,-1.00,-1.00,56.0455,-18.258673,0.000537,,,,,19 +SATSDF0720,2024246,11.759138,0.00,0.0000,0.0000,0.0000,0.00,641,0,1,633,619,631,629,642,634,635,629,631,601,614,614,613,618,616,609,613,619,622,624,625,633,640,647,639,647,645,643,643,653,655,644,651,651,660,645,644,640,641,642,648,636,665,649,655,642,639,641,654,646,651,654,650,650,629,640,639,647,642,641,645,646,651,653,644,648,655,641,657,653,658,640,647,652,640,653,645,657,650,652,644,636,630,631,642,631,639,647,652,652,653,652,649,643,633,641,635,631,640,641,637,629,643,650,652,653,641,636,631,631,635,644,643,640,645,637,637,651,641,639,649,650,657,657,657,656,647,637,647,634,626,643,627,625,628,636,647,639,633,649,641,642,644,641,628,638,641,628,647,641,654,653,637,645,635,628,633,635,631,650,638,649,646,641,635,638,638,629,640,652,638,643,645,654,633,639,651,651,650,640,634,641,632,640,647,641,642,642,652,641,635,627,625,637,637,647,644,644,649,643,653,652,645,650,642,645,644,638,644,641,634,643,630,630,633,636,638,644,654,657,644,649,649,629,627,635,643,640,640,643,640,642,641,647,648,637,647,644,645,641,643,654,647,647,650,650,645,643,641,635,635,627,630,638,634,477,0.0,0.0,0.0,1568237,0.1,12.6,0.1,5.0,60,0.00,0.00,0.0000,0.000000,0.000000,,,,,0 +SATSLF0720,2024246,11.759693,4.15,0.0581,0.1005,0.0163,0.00,16221,641,1,691,690,691,689,699,692,701,713,701,705,713,718,759,881,1225,1980,3173,4570,5803,6725,7373,7829,8264,8722,9237,9869,10611,11505,12501,13613,14802,15969,17077,18053,18774,19214,19366,19181,18809,18263,17666,17092,16631,16266,16034,15959,16042,16290,16706,17280,18038,18946,20025,21267,22586,24033,25507,27016,28437,29712,30715,31465,31881,31877,31540,30891,29958,28887,27636,26445,25274,24178,23175,22317,21586,20956,20477,20087,19799,19643,19543,19556,19642,19828,20093,20454,20868,21400,21970,22593,23272,23893,24518,25102,25591,25950,26213,26265,26150,25867,25381,24746,24010,23218,22341,21453,20589,19826,19112,18464,17896,17433,17024,16697,16454,16278,16180,16130,16155,16241,16397,16628,16921,17295,17731,18229,18805,19418,20055,20744,21489,22227,22965,23677,24400,25058,25641,26225,26665,26966,27239,27344,27348,27242,27041,26713,26317,25806,25243,24635,24002,23362,22702,22030,21402,20776,20194,19632,19136,18653,18246,17865,17517,17237,16963,16738,16528,16322,16156,15933,15755,15587,15446,15331,15236,15159,15078,15047,15013,15019,15025,15053,15084,15111,15161,15178,15224,15284,15291,15318,15316,15329,15340,15359,15357,15334,15291,15232,15173,15113,15006,14919,14782,14625,14461,14269,14065,13845,13602,13333,13072,12793,12487,12202,11885,11616,11348,11098,10850,10619,10338,10039,9701,9387,9113,8857,8658,8474,8306,8186,8088,8004,7932,7895,7844,7733,7608,7417,7267,7141,7022,6925,6843,6769,6721,6680,6659,6659,6629,6637,6641,6642,6480,6170,5746,5125,21.2,21.2,21.6,1568238,0.2,12.1,12.0,5.0,600,-1.00,-1.00,56.5409,-18.656174,0.000532,,,,,141 +SATSLF0720,2024246,11.759875,4.23,0.0592,0.1009,0.0161,0.00,16215,641,1,677,689,705,698,700,701,711,713,712,727,729,742,770,891,1221,1972,3157,4547,5806,6721,7382,7841,8268,8698,9221,9846,10609,11472,12477,13601,14785,15956,17072,18048,18772,19213,19334,19148,18778,18233,17638,17071,16612,16241,16010,15940,16025,16277,16695,17268,18019,18935,20011,21239,22565,24018,25527,27002,28444,29699,30701,31466,31852,31863,31533,30858,29929,28861,27609,26435,25261,24197,23182,22317,21578,20969,20479,20076,19797,19629,19527,19547,19661,19817,20103,20424,20871,21399,21965,22597,23253,23901,24515,25109,25557,25927,26196,26233,26125,25838,25353,24715,23998,23194,22314,21442,20595,19809,19111,18451,17890,17414,17009,16670,16426,16256,16162,16122,16141,16231,16416,16625,16925,17286,17718,18225,18802,19398,20041,20738,21477,22234,22961,23677,24378,25043,25632,26197,26631,26966,27211,27316,27332,27237,27017,26688,26289,25777,25216,24635,23994,23347,22691,22021,21384,20763,20170,19613,19114,18636,18247,17867,17531,17240,16975,16726,16524,16309,16136,15936,15746,15587,15429,15324,15242,15149,15073,15032,15028,15011,15027,15059,15082,15105,15138,15173,15228,15285,15293,15322,15320,15325,15343,15369,15363,15348,15299,15226,15179,15102,15015,14915,14775,14632,14469,14279,14052,13835,13591,13318,13062,12768,12478,12199,11898,11602,11326,11077,10847,10613,10345,10039,9721,9399,9115,8869,8647,8472,8308,8187,8090,7998,7947,7898,7852,7757,7619,7437,7280,7146,7012,6923,6840,6782,6722,6693,6665,6666,6646,6648,6646,6647,6487,6177,5751,5123,21.2,21.2,21.8,1568239,0.6,12.0,12.0,5.0,497,-1.00,-1.00,56.6583,-18.695034,0.000613,,,,,21 +SATSLF0720,2024246,11.760130,4.40,0.0616,0.1008,0.0167,0.00,16201,641,1,694,700,689,695,693,695,701,699,711,711,722,731,757,869,1219,1964,3163,4555,5809,6730,7362,7836,8247,8689,9227,9861,10606,11495,12493,13612,14801,15973,17082,18048,18776,19197,19341,19150,18782,18245,17632,17069,16603,16241,16021,15941,16037,16289,16693,17283,18029,18946,20018,21263,22578,24037,25521,26997,28459,29705,30698,31457,31851,31835,31501,30851,29920,28854,27635,26437,25254,24163,23159,22295,21555,20928,20459,20072,19784,19620,19531,19540,19636,19820,20089,20425,20864,21393,21972,22580,23257,23905,24507,25083,25561,25920,26185,26237,26115,25835,25354,24707,23986,23181,22301,21421,20584,19802,19095,18446,17885,17406,16995,16686,16421,16251,16142,16104,16123,16221,16360,16603,16909,17277,17710,18197,18775,19384,20016,20712,21445,22181,22941,23641,24353,25029,25613,26188,26618,26939,27192,27301,27304,27208,26997,26665,26277,25763,25192,24595,23970,23306,22650,21976,21344,20742,20132,19587,19082,18612,18203,17841,17522,17230,16957,16720,16509,16297,16121,15917,15721,15558,15417,15310,15200,15123,15057,15010,14993,14983,15003,15014,15041,15077,15127,15157,15192,15256,15262,15271,15291,15293,15302,15331,15340,15328,15278,15211,15159,15086,14993,14891,14743,14595,14433,14248,14029,13821,13573,13306,13037,12772,12461,12183,11874,11603,11309,11063,10819,10585,10316,10007,9693,9370,9077,8839,8625,8454,8307,8174,8081,7998,7941,7883,7825,7730,7590,7402,7244,7110,7003,6910,6829,6754,6710,6678,6641,6644,6625,6609,6634,6620,6485,6176,5738,5125,21.2,21.2,21.8,1568240,0.6,12.1,12.0,5.0,484,-1.00,-1.00,55.9104,-18.383628,0.000564,,,,,212 +SATSLF0720,2024246,11.760383,4.22,0.0590,0.1025,0.0178,0.00,16158,641,1,671,673,691,695,695,704,705,713,728,715,723,713,755,865,1212,1969,3180,4556,5796,6706,7351,7825,8229,8689,9205,9816,10560,11447,12439,13564,14741,15913,17024,17973,18715,19138,19253,19082,18711,18157,17566,17005,16541,16200,15969,15889,15969,16204,16616,17195,17944,18857,19929,21162,22499,23925,25429,26912,28325,29585,30583,31339,31741,31748,31402,30744,29819,28740,27517,26337,25157,24087,23073,22241,21497,20865,20392,19982,19703,19549,19457,19461,19570,19757,20017,20380,20801,21318,21883,22489,23157,23816,24421,25002,25486,25844,26113,26162,26025,25755,25261,24645,23912,23100,22255,21369,20514,19744,19027,18395,17822,17341,16957,16632,16384,16220,16129,16073,16081,16187,16344,16569,16849,17235,17666,18181,18737,19348,19982,20666,21389,22137,22869,23593,24293,24964,25563,26119,26542,26896,27121,27209,27234,27146,26923,26608,26213,25722,25133,24541,23911,23268,22604,21926,21307,20681,20090,19552,19061,18586,18166,17811,17469,17178,16921,16682,16486,16266,16078,15901,15697,15524,15392,15265,15177,15098,15017,14993,14979,14976,14984,15000,15034,15065,15090,15127,15176,15234,15245,15265,15264,15260,15283,15313,15297,15305,15258,15184,15124,15048,14960,14866,14731,14589,14394,14215,14007,13780,13559,13285,13033,12753,12443,12151,11850,11570,11293,11057,10798,10579,10305,9991,9679,9370,9090,8829,8632,8461,8304,8173,8071,7997,7931,7882,7818,7716,7579,7389,7247,7105,6990,6899,6835,6761,6717,6670,6654,6640,6619,6610,6633,6615,6451,6157,5733,5111,21.2,21.2,21.8,1568241,0.3,12.1,12.0,5.0,486,-1.00,-1.00,56.9098,-18.729705,0.000631,,,,,40 +SATSLF0720,2024246,11.760634,4.22,0.0591,0.1023,0.0171,0.00,16170,641,1,705,690,705,698,693,699,702,702,714,729,733,717,771,897,1237,2001,3173,4551,5793,6706,7349,7813,8222,8666,9185,9800,10561,11428,12431,13553,14724,15895,17009,17953,18682,19125,19261,19083,18701,18166,17579,17013,16544,16181,15947,15881,15946,16206,16620,17201,17952,18856,19940,21146,22500,23942,25414,26912,28333,29589,30594,31332,31725,31730,31405,30736,29830,28746,27500,26330,25163,24089,23097,22231,21499,20877,20395,20000,19707,19560,19466,19492,19569,19769,20023,20384,20800,21335,21903,22527,23184,23828,24438,25011,25504,25858,26116,26169,26044,25760,25287,24645,23943,23117,22250,21376,20529,19746,19058,18398,17842,17368,16960,16635,16387,16216,16119,16071,16094,16190,16354,16581,16877,17255,17677,18181,18748,19369,19996,20683,21420,22153,22898,23620,24325,24993,25574,26154,26580,26896,27153,27257,27269,27157,26960,26621,26237,25738,25156,24571,23948,23297,22641,21968,21340,20714,20132,19570,19082,18602,18189,17820,17491,17204,16937,16689,16487,16288,16100,15921,15730,15554,15408,15293,15190,15109,15051,15005,14984,14973,14985,15009,15052,15080,15125,15154,15205,15249,15259,15284,15282,15273,15297,15319,15317,15323,15269,15214,15146,15087,14994,14896,14746,14592,14423,14234,14021,13799,13576,13321,13066,12769,12485,12181,11876,11605,11330,11065,10825,10590,10315,10020,9703,9370,9095,8844,8633,8473,8311,8192,8093,8013,7947,7889,7825,7722,7591,7412,7265,7128,7016,6913,6841,6765,6716,6685,6661,6654,6633,6624,6640,6618,6479,6177,5744,5121,21.2,21.2,21.8,1568242,0.9,12.1,11.9,5.0,475,-1.00,-1.00,56.9050,-18.726095,0.000652,,,,,107 +SATSLF0720,2024246,11.760891,4.17,0.0584,0.1023,0.0171,0.00,16166,641,1,700,695,696,710,705,717,711,708,719,721,721,737,769,882,1230,1987,3178,4556,5793,6717,7346,7819,8239,8690,9201,9838,10574,11445,12441,13550,14742,15909,17019,17976,18704,19148,19273,19093,18702,18169,17577,17015,16566,16192,15972,15888,15973,16197,16626,17200,17959,18871,19937,21165,22477,23929,25416,26898,28337,29586,30588,31344,31729,31718,31387,30752,29818,28759,27512,26334,25166,24081,23091,22217,21486,20870,20371,19995,19718,19543,19466,19468,19553,19771,20013,20365,20797,21312,21883,22517,23172,23822,24444,25005,25479,25851,26114,26154,26037,25749,25283,24640,23922,23117,22234,21383,20526,19751,19046,18400,17835,17354,16963,16641,16389,16219,16113,16077,16101,16181,16354,16574,16872,17239,17683,18169,18743,19347,19993,20669,21384,22137,22892,23601,24311,24965,25569,26125,26573,26888,27126,27248,27258,27157,26941,26614,26213,25734,25155,24567,23933,23285,22626,21956,21325,20712,20102,19547,19053,18592,18185,17806,17491,17198,16933,16689,16485,16288,16097,15905,15705,15542,15394,15278,15186,15120,15041,15002,14988,14989,14989,15008,15044,15077,15118,15140,15194,15242,15257,15262,15287,15281,15299,15319,15327,15315,15274,15206,15146,15070,14969,14875,14743,14597,14420,14230,14028,13815,13581,13314,13041,12764,12459,12162,11864,11584,11303,11059,10813,10584,10309,9995,9676,9358,9095,8846,8644,8472,8318,8184,8093,8007,7939,7881,7799,7725,7587,7413,7257,7138,7017,6927,6842,6766,6717,6663,6655,6642,6621,6616,6637,6635,6488,6173,5730,5119,21.2,21.2,21.8,1568243,0.0,12.1,12.0,5.0,484,-1.00,-1.00,56.7958,-18.680677,0.000589,,,,,198 +SATSLF0720,2024246,11.761144,4.08,0.0572,0.1031,0.0184,0.00,16135,641,1,691,682,684,687,696,698,714,713,724,712,727,729,765,880,1228,1972,3169,4549,5784,6708,7346,7811,8229,8689,9196,9818,10582,11433,12427,13549,14716,15895,17005,17953,18690,19130,19258,19072,18705,18156,17575,16990,16535,16165,15922,15863,15928,16175,16593,17185,17932,18851,19910,21144,22465,23894,25383,26861,28292,29550,30538,31288,31682,31685,31341,30688,29760,28697,27471,26285,25134,24050,23056,22202,21443,20841,20344,19954,19687,19518,19434,19445,19542,19725,19985,20331,20760,21277,21833,22457,23125,23771,24370,24960,25427,25797,26044,26114,25985,25705,25225,24581,23885,23085,22209,21325,20493,19726,19017,18359,17802,17325,16913,16609,16355,16197,16085,16041,16053,16146,16315,16539,16832,17197,17632,18128,18696,19310,19951,20630,21353,22103,22843,23564,24265,24908,25507,26066,26499,26830,27058,27171,27185,27095,26871,26541,26163,25657,25093,24498,23875,23225,22569,21909,21284,20656,20079,19525,19033,18547,18135,17773,17441,17153,16895,16646,16448,16242,16046,15856,15681,15505,15361,15255,15164,15090,15010,14969,14950,14936,14946,14967,14992,15029,15073,15102,15158,15221,15221,15239,15245,15261,15271,15297,15286,15283,15233,15162,15101,15039,14945,14861,14720,14564,14381,14200,14000,13779,13531,13275,13012,12733,12424,12147,11849,11549,11280,11037,10792,10545,10291,9990,9669,9357,9071,8832,8611,8446,8297,8149,8061,7987,7921,7859,7808,7705,7570,7389,7229,7103,6988,6899,6818,6768,6719,6665,6641,6637,6621,6599,6611,6619,6466,6161,5732,5127,21.2,21.2,21.9,1568244,1.1,12.1,11.9,5.0,481,-1.00,-1.00,56.9420,-18.711523,0.000685,,,,,29 +SATSLF0720,2024246,11.761404,4.25,0.0595,0.1025,0.0175,0.00,16156,641,1,699,698,693,695,705,689,695,698,706,710,709,730,771,885,1216,1975,3143,4536,5779,6691,7347,7797,8215,8669,9197,9799,10548,11429,12422,13534,14736,15886,17003,17967,18688,19124,19259,19053,18683,18149,17557,16990,16541,16169,15950,15867,15956,16202,16612,17200,17953,18857,19921,21158,22469,23928,25413,26904,28329,29586,30584,31341,31725,31725,31389,30731,29813,28743,27525,26330,25163,24085,23078,22219,21493,20861,20390,20002,19709,19545,19457,19467,19558,19746,20004,20355,20784,21306,21870,22498,23156,23810,24439,25013,25482,25857,26113,26161,26029,25755,25266,24640,23909,23115,22260,21365,20520,19752,19050,18393,17821,17365,16945,16631,16386,16221,16129,16077,16098,16192,16361,16581,16876,17248,17664,18151,18711,19336,19985,20669,21395,22137,22874,23597,24293,24955,25554,26132,26557,26880,27124,27229,27252,27149,26928,26587,26192,25698,25139,24542,23913,23262,22608,21940,21301,20697,20097,19540,19076,18593,18177,17798,17460,17178,16921,16684,16459,16274,16065,15874,15690,15529,15392,15276,15162,15098,15021,14986,14972,14969,14977,14985,15035,15061,15104,15136,15170,15230,15241,15256,15258,15276,15284,15315,15314,15317,15257,15195,15131,15067,14962,14866,14727,14573,14408,14219,14011,13798,13562,13296,13029,12731,12439,12144,11844,11568,11309,11046,10808,10581,10301,10013,9685,9377,9086,8843,8621,8451,8305,8169,8067,7993,7913,7869,7797,7715,7563,7395,7266,7120,6999,6912,6833,6759,6697,6662,6640,6638,6619,6609,6638,6626,6485,6164,5730,5119,21.2,21.3,21.9,1568245,0.0,12.1,12.0,5.0,479,-1.00,-1.00,57.1102,-18.810116,0.000625,,,,,167 +SATSLF0720,2024246,11.761658,4.23,0.0592,0.1031,0.0175,0.00,16144,641,1,695,694,697,701,708,688,699,712,713,717,713,739,772,891,1223,1975,3140,4535,5773,6689,7325,7797,8229,8675,9188,9812,10563,11427,12423,13533,14712,15886,16994,17960,18693,19116,19259,19072,18705,18162,17573,17005,16546,16168,15942,15873,15961,16201,16607,17191,17937,18850,19927,21149,22480,23926,25394,26896,28301,29550,30561,31298,31699,31705,31370,30725,29790,28723,27484,26308,25140,24065,23056,22193,21461,20850,20361,19981,19696,19533,19434,19433,19543,19733,19986,20333,20763,21293,21862,22477,23149,23791,24389,24968,25445,25810,26084,26123,26016,25745,25248,24605,23888,23085,22219,21353,20497,19735,19025,18375,17812,17341,16937,16606,16367,16208,16097,16050,16074,16151,16339,16552,16858,17225,17650,18145,18697,19325,19965,20635,21368,22096,22850,23552,24267,24929,25529,26081,26528,26842,27082,27177,27209,27114,26899,26558,26183,25685,25108,24515,23881,23233,22581,21920,21282,20677,20085,19537,19021,18551,18138,17780,17453,17155,16889,16657,16471,16260,16068,15873,15691,15521,15383,15264,15170,15092,15013,14976,14963,14957,14961,14982,15015,15054,15093,15112,15176,15225,15233,15238,15253,15246,15264,15291,15289,15283,15234,15167,15131,15047,14971,14873,14739,14588,14409,14217,14013,13794,13550,13293,13029,12738,12432,12143,11845,11556,11291,11057,10809,10561,10315,10004,9677,9360,9097,8841,8630,8454,8309,8157,8062,7978,7919,7863,7805,7715,7575,7397,7245,7117,7019,6909,6826,6765,6701,6679,6648,6633,6619,6608,6617,6631,6466,6146,5742,5132,21.2,21.3,21.9,1568246,1.2,12.1,12.0,5.0,480,-1.00,-1.00,56.5787,-18.574245,0.000597,,,,,215 +SATSLF0720,2024246,11.761910,4.21,0.0589,0.1032,0.0172,0.00,16149,641,1,694,703,695,699,712,702,717,717,729,727,732,741,779,885,1234,1988,3168,4541,5767,6684,7331,7788,8223,8661,9192,9805,10551,11424,12408,13511,14692,15851,16979,17934,18661,19092,19232,19042,18669,18126,17550,16970,16519,16151,15937,15856,15929,16177,16582,17174,17909,18831,19893,21117,22456,23893,25358,26862,28274,29532,30525,31285,31674,31657,31332,30678,29763,28704,27469,26285,25131,24043,23040,22189,21453,20833,20344,19956,19681,19523,19428,19445,19533,19725,19991,20345,20768,21301,21850,22466,23141,23781,24396,24980,25459,25825,26084,26130,26007,25717,25241,24613,23893,23088,22226,21353,20506,19735,19030,18373,17821,17360,16933,16627,16373,16207,16114,16073,16090,16177,16338,16560,16865,17221,17656,18160,18728,19341,19976,20665,21389,22130,22866,23580,24296,24961,25554,26112,26541,26850,27095,27214,27211,27130,26911,26591,26195,25705,25130,24549,23906,23271,22605,21936,21306,20698,20092,19543,19045,18576,18165,17803,17485,17191,16921,16677,16469,16263,16074,15885,15693,15531,15392,15272,15173,15099,15041,15001,14973,14971,14981,15001,15024,15063,15103,15137,15178,15227,15233,15259,15271,15286,15303,15309,15323,15314,15271,15202,15142,15057,14985,14885,14736,14590,14421,14237,14022,13809,13575,13306,13050,12762,12452,12170,11872,11577,11303,11047,10823,10592,10306,10005,9694,9389,9100,8858,8637,8479,8321,8169,8077,8008,7940,7894,7825,7719,7587,7413,7253,7118,7011,6917,6824,6763,6716,6689,6653,6636,6631,6625,6642,6634,6481,6163,5732,5120,21.2,21.3,21.9,1568247,1.1,12.1,11.9,5.0,481,-1.00,-1.00,57.0096,-18.735296,0.000598,,,,,122 +SATSLF0720,2024246,11.762166,4.17,0.0585,0.1033,0.0179,0.00,16138,641,1,684,683,691,703,698,721,733,717,713,716,714,727,758,879,1223,1973,3161,4539,5789,6709,7342,7815,8225,8673,9188,9805,10553,11409,12409,13527,14704,15863,16979,17934,18658,19092,19222,19045,18673,18144,17538,16979,16509,16143,15919,15865,15932,16176,16594,17184,17925,18834,19898,21104,22435,23857,25352,26834,28267,29515,30498,31274,31666,31665,31334,30685,29760,28693,27469,26284,25117,24040,23040,22166,21435,20821,20325,19963,19667,19486,19423,19448,19525,19718,19988,20325,20756,21280,21834,22457,23110,23764,24370,24954,25429,25800,26060,26107,25997,25728,25241,24600,23878,23082,22217,21345,20491,19738,19026,18377,17801,17360,16926,16623,16353,16187,16100,16042,16065,16143,16317,16550,16841,17217,17646,18149,18709,19325,19952,20631,21363,22097,22837,23559,24267,24934,25523,26098,26518,26852,27082,27195,27203,27105,26874,26542,26163,25664,25095,24531,23885,23253,22588,21936,21289,20676,20075,19517,19024,18560,18149,17795,17457,17174,16922,16681,16478,16269,16075,15867,15688,15508,15367,15251,15159,15082,15013,14979,14955,14971,14974,14992,15025,15054,15099,15110,15156,15219,15228,15241,15249,15271,15278,15298,15301,15286,15241,15173,15118,15048,14969,14867,14752,14580,14423,14217,13995,13787,13555,13290,13021,12749,12433,12157,11864,11577,11301,11042,10810,10560,10309,10001,9677,9389,9089,8854,8651,8465,8311,8170,8065,7981,7929,7865,7811,7728,7585,7397,7243,7115,7000,6893,6823,6772,6720,6678,6654,6656,6632,6615,6633,6625,6475,6174,5734,5127,21.2,21.4,21.9,1568248,0.3,12.1,11.9,5.0,484,-1.00,-1.00,57.0268,-18.738235,0.000516,,,,,197 +SATSLF0720,2024246,11.762419,4.14,0.0581,0.1042,0.0184,0.00,16119,641,1,693,718,693,697,705,708,705,705,697,707,717,721,757,869,1214,1962,3164,4546,5765,6690,7321,7793,8212,8638,9171,9795,10534,11402,12406,13506,14689,15857,16964,17920,18648,19081,19205,19010,18660,18108,17527,16960,16510,16149,15916,15842,15907,16167,16565,17137,17899,18802,19867,21085,22410,23853,25337,26816,28244,29498,30485,31232,31626,31618,31288,30651,29728,28671,27434,26257,25094,24013,23005,22140,21410,20808,20325,19942,19643,19483,19383,19394,19500,19685,19949,20291,20733,21257,21819,22442,23099,23750,24349,24921,25409,25761,26027,26084,25971,25685,25209,24583,23853,23059,22179,21312,20448,19687,18995,18346,17792,17328,16909,16599,16345,16171,16071,16027,16043,16138,16290,16528,16836,17192,17623,18110,18681,19293,19925,20626,21349,22096,22818,23536,24239,24903,25506,26058,26474,26807,27053,27160,27157,27067,26865,26536,26141,25652,25085,24499,23863,23213,22568,21888,21257,20646,20050,19494,19003,18545,18138,17782,17437,17157,16889,16637,16449,16237,16059,15850,15674,15497,15354,15237,15136,15065,14997,14962,14948,14965,14960,14980,14996,15028,15067,15097,15158,15201,15226,15237,15252,15252,15285,15301,15286,15282,15222,15165,15101,15043,14957,14850,14722,14567,14389,14210,14001,13777,13553,13282,13010,12737,12433,12138,11833,11552,11277,11026,10787,10560,10281,9979,9665,9345,9078,8817,8631,8459,8301,8169,8071,7997,7921,7875,7802,7705,7569,7383,7234,7109,6992,6905,6818,6753,6685,6657,6641,6633,6611,6600,6621,6616,6468,6150,5724,5114,21.2,21.4,22.0,1568249,0.0,12.2,11.9,5.0,480,-1.00,-1.00,57.1532,-18.771064,0.000561,,,,,60 +SATSLF0720,2024246,11.762671,4.17,0.0584,0.1039,0.0180,0.00,16133,641,1,689,693,701,705,705,703,709,705,710,715,721,729,781,885,1227,1981,3163,4550,5789,6695,7333,7801,8224,8670,9173,9803,10549,11435,12418,13527,14704,15872,16973,17942,18665,19098,19223,19041,18664,18120,17531,16957,16507,16137,15926,15851,15926,16172,16593,17177,17914,18818,19877,21104,22437,23874,25364,26851,28273,29518,30507,31259,31637,31650,31321,30676,29753,28713,27458,26275,25106,24029,23025,22163,21429,20811,20331,19950,19653,19497,19396,19408,19519,19718,19977,20329,20746,21282,21835,22450,23117,23764,24384,24961,25429,25789,26039,26099,25982,25693,25230,24580,23872,23076,22209,21332,20493,19716,19011,18363,17817,17342,16917,16625,16361,16192,16089,16021,16057,16145,16313,16548,16835,17203,17643,18128,18688,19308,19944,20628,21361,22096,22848,23557,24263,24914,25504,26056,26507,26822,27072,27176,27200,27101,26894,26554,26165,25648,25098,24512,23877,23229,22583,21913,21282,20682,20089,19525,19033,18564,18146,17777,17457,17160,16890,16664,16449,16242,16053,15872,15689,15521,15383,15267,15178,15097,15003,14967,14963,14951,14963,14988,15015,15050,15086,15139,15177,15233,15235,15245,15258,15257,15289,15286,15296,15280,15252,15192,15117,15053,14976,14869,14727,14571,14415,14213,13991,13767,13543,13271,13010,12725,12454,12157,11862,11563,11287,11036,10778,10567,10282,9988,9667,9374,9088,8844,8626,8453,8288,8152,8069,7984,7915,7869,7806,7721,7573,7402,7252,7121,7001,6897,6817,6738,6705,6673,6650,6632,6633,6624,6633,6639,6480,6168,5738,5119,21.3,21.4,22.0,1568249,1.2,12.1,11.9,5.0,479,-1.00,-1.00,57.1766,-18.798214,0.000579,,,,,9 +SATSLF0720,2024246,11.762928,4.30,0.0602,0.1038,0.0182,0.00,16136,641,1,711,709,702,715,716,709,713,718,722,730,732,744,776,892,1227,1991,3169,4548,5768,6685,7320,7777,8211,8657,9163,9795,10541,11406,12411,13520,14680,15863,16956,17917,18629,19068,19194,19011,18642,18124,17530,16982,16517,16149,15927,15836,15922,16167,16567,17150,17901,18799,19879,21106,22414,23880,25352,26832,28258,29506,30497,31245,31643,31644,31304,30672,29738,28688,27441,26249,25097,24009,23009,22167,21441,20821,20334,19945,19672,19498,19403,19417,19518,19693,19973,20310,20737,21275,21834,22450,23123,23773,24373,24946,25428,25774,26049,26109,25986,25717,25228,24606,23866,23069,22222,21337,20500,19731,19037,18374,17810,17344,16924,16615,16357,16201,16091,16039,16067,16152,16324,16554,16857,17234,17661,18141,18720,19318,19958,20629,21367,22101,22845,23573,24269,24946,25522,26082,26513,26840,27075,27184,27192,27097,26875,26561,26165,25659,25112,24526,23889,23253,22585,21928,21288,20677,20084,19525,19021,18561,18152,17783,17451,17168,16901,16659,16454,16255,16069,15882,15692,15522,15372,15268,15165,15105,15033,14996,14956,14963,14984,14993,15023,15057,15088,15132,15178,15243,15249,15253,15275,15278,15285,15307,15297,15297,15251,15182,15110,15051,14965,14867,14732,14586,14416,14227,14021,13805,13561,13312,13044,12746,12461,12157,11865,11565,11290,11044,10810,10583,10309,10013,9689,9374,9093,8842,8637,8457,8302,8173,8074,7996,7929,7882,7814,7721,7587,7405,7234,7103,6999,6905,6824,6756,6715,6673,6657,6653,6615,6598,6631,6617,6471,6167,5732,5130,21.3,21.4,22.1,1568250,0.0,12.1,11.9,5.0,480,-1.00,-1.00,56.7424,-18.608444,0.000596,,,,,58 +SATSLF0720,2024246,11.763181,4.31,0.0604,0.1040,0.0183,0.00,16120,641,1,705,703,711,711,722,709,711,707,717,718,717,728,772,892,1237,1973,3153,4545,5778,6680,7324,7793,8205,8662,9173,9794,10533,11387,12389,13501,14688,15842,16953,17908,18628,19072,19184,18996,18621,18087,17495,16954,16473,16119,15905,15821,15917,16146,16568,17140,17889,18788,19867,21083,22405,23837,25331,26805,28216,29478,30466,31218,31596,31619,31274,30628,29708,28643,27404,26229,25079,23998,23003,22141,21410,20797,20321,19927,19643,19489,19392,19402,19509,19702,19965,20293,20721,21239,21797,22413,23079,23735,24356,24923,25403,25770,26041,26087,25970,25694,25197,24576,23846,23056,22181,21301,20482,19713,18997,18346,17802,17334,16906,16605,16356,16173,16082,16036,16060,16152,16329,16537,16821,17200,17633,18103,18688,19293,19938,20614,21349,22084,22834,23550,24264,24914,25509,26061,26483,26816,27044,27158,27181,27081,26871,26537,26139,25648,25094,24487,23859,23217,22558,21890,21265,20648,20061,19494,19003,18541,18140,17775,17433,17155,16882,16648,16440,16246,16060,15850,15682,15506,15365,15259,15169,15099,15017,14967,14945,14942,14941,14967,15001,15041,15079,15103,15149,15232,15233,15240,15251,15259,15284,15285,15296,15292,15250,15160,15107,15038,14949,14848,14719,14578,14409,14216,13998,13789,13538,13269,13019,12727,12445,12138,11848,11558,11295,11051,10817,10569,10298,9985,9677,9370,9084,8845,8631,8458,8298,8171,8064,7994,7927,7895,7813,7717,7571,7390,7242,7117,6997,6909,6825,6769,6702,6667,6650,6633,6606,6586,6615,6615,6471,6165,5751,5110,21.3,21.4,22.1,1568251,0.0,12.1,12.0,5.0,480,-1.00,-1.00,56.7382,-18.586760,0.000606,,,,,33 +SATSLF0720,2024246,11.763432,4.17,0.0584,0.1044,0.0181,0.00,16115,641,1,709,709,707,699,695,710,705,712,717,704,709,725,759,892,1225,1967,3163,4545,5781,6698,7336,7799,8196,8647,9178,9795,10535,11409,12395,13507,14676,15851,16954,17920,18635,19072,19189,19015,18645,18112,17521,16966,16470,16123,15898,15825,15912,16150,16552,17147,17889,18795,19849,21073,22393,23845,25320,26794,28218,29475,30481,31211,31613,31607,31269,30628,29697,28633,27410,26219,25064,23981,22996,22133,21405,20793,20319,19929,19636,19477,19377,19384,19475,19687,19932,20288,20723,21252,21798,22423,23082,23731,24345,24928,25393,25761,26024,26071,25962,25674,25199,24567,23848,23040,22176,21309,20466,19698,18989,18350,17785,17333,16904,16602,16347,16171,16076,16025,16045,16136,16301,16536,16813,17204,17618,18115,18688,19298,19927,20611,21337,22065,22811,23531,24233,24896,25469,26055,26472,26805,27050,27149,27160,27057,26864,26533,26125,25625,25079,24494,23852,23202,22549,21891,21258,20652,20052,19497,19022,18537,18116,17757,17421,17133,16877,16634,16445,16245,16058,15865,15669,15520,15369,15253,15141,15061,14996,14953,14938,14932,14939,14977,15008,15041,15070,15111,15159,15213,15224,15227,15223,15227,15255,15275,15283,15288,15229,15162,15114,15032,14955,14858,14713,14576,14398,14216,13993,13776,13543,13265,13011,12733,12423,12138,11834,11547,11281,11033,10797,10558,10296,9997,9677,9361,9063,8829,8621,8450,8297,8164,8050,7972,7908,7857,7796,7707,7560,7401,7250,7120,6995,6907,6822,6763,6707,6659,6637,6635,6608,6595,6621,6642,6481,6161,5737,5109,21.3,21.4,22.1,1568252,1.3,12.1,11.9,5.0,479,-1.00,-1.00,56.9552,-18.674003,0.000620,,,,,20 +SATSLF0720,2024246,11.763687,4.12,0.0577,0.1050,0.0189,0.00,16089,641,1,686,707,714,714,717,709,722,701,709,712,716,722,761,881,1207,1947,3136,4514,5754,6666,7313,7772,8186,8619,9131,9745,10494,11365,12343,13465,14637,15798,16900,17864,18594,19030,19149,18966,18605,18061,17474,16897,16448,16074,15851,15781,15866,16117,16519,17104,17867,18753,19822,21040,22345,23781,25265,26740,28150,29417,30405,31161,31549,31537,31211,30560,29662,28606,27360,26176,25034,23941,22940,22076,21367,20749,20269,19881,19607,19450,19350,19367,19449,19649,19904,20254,20689,21210,21773,22398,23051,23704,24317,24891,25371,25739,25993,26043,25933,25653,25174,24525,23815,23025,22157,21281,20439,19677,18966,18301,17751,17290,16889,16558,16311,16147,16050,15994,16035,16121,16290,16518,16815,17186,17613,18093,18651,19264,19889,20572,21302,22053,22793,23509,24210,24867,25458,26013,26446,26763,27000,27109,27122,27029,26810,26481,26085,25607,25045,24457,23827,23163,22519,21858,21220,20605,20029,19468,18979,18514,18107,17739,17414,17127,16861,16635,16419,16221,16023,15842,15641,15483,15330,15225,15106,15051,14965,14930,14930,14917,14931,14957,14973,15021,15065,15101,15130,15191,15201,15198,15219,15216,15243,15268,15259,15265,15209,15154,15085,15016,14930,14834,14699,14558,14370,14180,13975,13757,13514,13258,12986,12720,12414,12123,11829,11530,11265,11028,10786,10554,10277,9987,9665,9355,9057,8827,8610,8436,8277,8150,8064,7989,7909,7866,7794,7703,7566,7389,7236,7105,6974,6891,6801,6739,6681,6645,6633,6622,6603,6599,6617,6618,6465,6149,5699,5088,21.3,21.5,22.1,1568253,1.0,12.1,11.9,5.0,470,-1.00,-1.00,57.6492,-18.929326,0.000618,,,,,121 +SATSLF0720,2024246,11.763943,4.37,0.0612,0.1051,0.0188,0.00,16077,641,1,697,694,711,705,709,706,725,709,720,716,715,731,776,901,1232,1979,3156,4536,5758,6683,7286,7755,8158,8618,9143,9752,10497,11370,12349,13465,14635,15784,16901,17849,18576,18981,19127,18939,18571,18038,17448,16888,16445,16081,15844,15769,15853,16100,16522,17105,17843,18749,19805,21014,22334,23777,25253,26723,28147,29394,30375,31139,31529,31525,31190,30551,29633,28565,27341,26154,25019,23930,22925,22062,21335,20727,20259,19877,19605,19429,19344,19351,19456,19628,19901,20238,20666,21176,21753,22364,23015,23671,24279,24867,25345,25701,25970,26012,25898,25634,25144,24509,23794,23005,22136,21256,20428,19656,18946,18295,17738,17274,16877,16563,16316,16142,16042,16000,16009,16097,16266,16498,16786,17157,17584,18077,18644,19245,19877,20569,21297,22039,22773,23477,24174,24842,25418,25993,26413,26743,26982,27095,27101,27008,26800,26472,26078,25567,25020,24433,23797,23163,22506,21841,21221,20608,20008,19453,18955,18499,18092,17732,17398,17110,16845,16611,16409,16203,16018,15814,15627,15459,15326,15202,15118,15034,14960,14930,14906,14898,14903,14938,14951,14993,15041,15077,15128,15159,15191,15203,15208,15209,15235,15258,15252,15240,15188,15134,15089,14997,14925,14835,14683,14529,14361,14161,13963,13751,13501,13249,12986,12704,12416,12117,11818,11523,11264,10999,10777,10533,10262,9966,9645,9335,9047,8817,8609,8445,8285,8160,8056,7985,7909,7867,7793,7703,7552,7377,7226,7097,6983,6893,6815,6740,6682,6645,6634,6609,6588,6581,6607,6605,6452,6160,5728,5119,21.3,21.5,22.1,1568254,0.2,12.1,12.0,5.0,475,-1.00,-1.00,56.9340,-18.619086,0.000579,,,,,13 +SATSLF0720,2024246,11.764194,4.21,0.0590,0.1058,0.0188,0.00,16071,641,1,702,701,702,699,697,708,713,707,723,737,728,742,779,903,1237,1985,3149,4533,5746,6667,7288,7746,8171,8612,9121,9740,10474,11344,12332,13449,14617,15766,16884,17833,18541,18988,19116,18925,18578,18025,17431,16883,16423,16069,15843,15771,15854,16093,16503,17089,17809,18707,19768,21000,22310,23749,25234,26715,28129,29373,30358,31104,31492,31486,31170,30507,29600,28551,27325,26137,24980,23906,22915,22062,21331,20721,20237,19850,19568,19406,19315,19330,19447,19621,19896,20237,20679,21180,21744,22356,23020,23661,24267,24848,25330,25706,25965,26009,25888,25620,25140,24501,23773,22990,22112,21255,20429,19652,18953,18309,17740,17280,16860,16547,16292,16140,16025,15996,16012,16103,16272,16492,16796,17160,17606,18089,18640,19256,19868,20562,21277,22018,22755,23479,24181,24842,25405,25987,26400,26730,26970,27065,27082,26989,26788,26465,26070,25573,25011,24438,23802,23155,22514,21832,21214,20598,20011,19453,18979,18489,18091,17725,17393,17092,16849,16606,16412,16215,16013,15808,15625,15437,15319,15206,15103,15037,14966,14940,14906,14925,14934,14944,14957,14993,15037,15049,15115,15176,15190,15205,15221,15218,15241,15266,15262,15260,15197,15137,15088,15004,14903,14827,14690,14530,14359,14161,13947,13745,13495,13258,12980,12710,12411,12122,11825,11530,11262,11014,10770,10548,10262,9975,9676,9357,9067,8811,8599,8426,8267,8135,8048,7968,7896,7847,7782,7698,7545,7377,7213,7099,6984,6884,6814,6741,6683,6645,6637,6617,6601,6593,6608,6605,6457,6152,5729,5111,21.3,21.5,22.2,1568255,0.0,12.1,12.0,5.0,478,-1.00,-1.00,57.3509,-18.775565,0.000586,,,,,132 +SATSLF0720,2024246,11.764449,4.34,0.0607,0.1060,0.0195,0.00,16062,641,1,715,714,714,715,701,703,711,718,719,722,722,733,772,881,1221,1967,3144,4508,5735,6640,7284,7748,8153,8605,9133,9742,10486,11358,12349,13445,14618,15785,16860,17813,18529,18956,19094,18919,18538,18016,17429,16862,16417,16065,15825,15755,15835,16073,16490,17064,17794,18699,19767,20994,22304,23741,25203,26681,28100,29347,30341,31077,31466,31469,31141,30482,29566,28508,27284,26113,24963,23901,22890,22041,21301,20701,20214,19829,19544,19402,19308,19313,19431,19620,19876,20219,20646,21162,21716,22336,22992,23649,24261,24845,25300,25675,25948,25993,25874,25597,25124,24492,23764,22965,22115,21246,20404,19625,18925,18281,17718,17247,16851,16531,16292,16128,16038,15989,16012,16102,16253,16480,16761,17142,17563,18044,18624,19222,19863,20545,21266,22008,22743,23467,24164,24816,25408,25968,26385,26715,26957,27066,27082,26993,26770,26465,26064,25576,25013,24414,23779,23134,22488,21820,21195,20588,19997,19437,18968,18485,18078,17713,17398,17106,16828,16604,16397,16183,15997,15799,15627,15462,15323,15202,15115,15028,14962,14922,14901,14903,14933,14951,14973,14994,15048,15074,15120,15169,15195,15193,15203,15206,15229,15250,15241,15237,15188,15129,15067,15005,14907,14817,14677,14521,14353,14172,13957,13738,13498,13246,12969,12709,12408,12124,11816,11544,11274,11029,10786,10541,10275,9969,9652,9326,9048,8810,8601,8436,8278,8149,8058,7962,7915,7857,7784,7701,7557,7381,7214,7097,6981,6891,6804,6746,6689,6648,6631,6616,6618,6587,6613,6606,6461,6157,5722,5107,21.3,21.6,22.2,1568256,1.4,12.1,12.0,5.0,473,-1.00,-1.00,56.9096,-18.574506,0.000601,,,,,68 +SATSDF0720,2024246,12.009138,0.00,0.0000,0.0000,0.0000,0.00,640,0,1,625,619,616,616,620,619,620,629,614,611,616,625,609,619,618,614,616,611,619,625,629,634,637,646,653,652,657,649,637,650,641,640,651,649,630,647,642,651,637,647,647,644,643,641,637,638,638,643,643,647,658,654,652,652,647,647,639,632,635,647,637,638,641,637,644,640,648,644,648,665,653,650,636,635,647,642,635,635,638,637,643,652,656,653,667,650,650,637,639,637,635,623,638,627,628,642,633,641,643,663,645,651,653,650,643,639,641,645,644,641,631,629,637,630,635,643,641,639,645,664,649,650,644,646,644,647,641,639,623,630,644,636,642,641,638,637,657,645,643,639,651,641,640,633,641,652,646,657,649,643,645,637,624,630,629,621,632,639,651,645,649,637,636,633,641,645,637,646,653,642,648,638,623,634,644,640,638,649,641,647,635,635,633,635,636,631,643,641,641,631,638,643,643,642,639,638,645,645,638,642,644,633,637,638,645,633,639,643,637,643,637,627,635,631,639,632,631,631,639,633,631,647,638,651,645,645,645,643,650,650,641,634,642,640,648,655,644,648,642,654,649,649,641,639,640,638,651,637,638,640,639,632,641,648,634,481,0.0,0.0,0.0,1568255,0.1,12.7,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,202 +SATSLF0720,2024246,12.009692,4.14,0.0579,0.1009,0.0162,0.00,16208,640,1,695,697,683,699,701,708,697,718,710,716,718,722,750,876,1202,1977,3165,4560,5795,6716,7361,7827,8247,8684,9209,9824,10583,11461,12458,13587,14757,15947,17068,18038,18755,19181,19318,19133,18748,18205,17607,17049,16596,16214,15996,15929,16012,16261,16660,17254,17992,18908,19975,21216,22532,24001,25493,26978,28399,29664,30666,31412,31816,31821,31490,30842,29906,28849,27602,26423,25245,24176,23152,22296,21546,20933,20450,20061,19780,19616,19525,19540,19625,19838,20092,20439,20861,21382,21956,22577,23240,23885,24489,25078,25568,25938,26190,26240,26125,25836,25344,24709,23984,23175,22298,21428,20579,19802,19102,18449,17886,17402,17011,16691,16445,16273,16160,16120,16137,16233,16398,16605,16923,17303,17722,18216,18797,19406,20050,20737,21477,22211,22953,23669,24393,25053,25637,26213,26644,26963,27218,27326,27338,27251,27022,26686,26297,25786,25210,24631,23985,23353,22684,22010,21387,20762,20180,19626,19117,18650,18246,17877,17526,17243,16977,16736,16525,16327,16137,15945,15754,15578,15438,15325,15234,15150,15083,15054,15011,15019,15010,15039,15059,15099,15134,15184,15222,15289,15291,15313,15317,15318,15341,15369,15361,15369,15302,15245,15174,15118,15026,14921,14773,14615,14461,14279,14057,13842,13598,13322,13075,12777,12490,12205,11898,11603,11331,11079,10842,10595,10325,10027,9722,9397,9114,8872,8665,8485,8333,8195,8082,8007,7949,7903,7833,7742,7599,7421,7272,7137,7012,6915,6847,6778,6733,6692,6676,6657,6637,6629,6633,6629,6487,6174,5747,5145,21.2,21.2,21.6,1568256,0.0,12.2,12.0,5.0,598,-1.00,-1.00,57.2601,-18.928817,0.000550,,,,,35 +SATSLF0720,2024246,12.009874,4.09,0.0573,0.1005,0.0156,0.00,16223,640,1,693,681,695,701,706,701,714,713,708,719,725,716,762,883,1223,1975,3175,4572,5805,6731,7370,7831,8263,8708,9239,9866,10607,11473,12480,13594,14797,15946,17073,18048,18773,19222,19358,19182,18794,18246,17647,17086,16634,16262,16027,15942,16012,16273,16684,17261,18024,18944,20020,21261,22580,24043,25544,27029,28448,29698,30709,31451,31854,31857,31525,30866,29943,28877,27645,26439,25294,24187,23176,22307,21563,20957,20463,20096,19794,19637,19546,19550,19645,19835,20096,20450,20867,21403,21962,22573,23273,23921,24538,25108,25599,25957,26205,26245,26125,25848,25355,24731,24005,23197,22325,21453,20608,19841,19120,18469,17901,17410,17019,16701,16433,16275,16171,16133,16153,16243,16407,16634,16955,17317,17736,18240,18818,19422,20061,20738,21479,22227,22962,23697,24405,25063,25664,26225,26647,26981,27226,27330,27348,27249,27031,26700,26316,25829,25258,24672,24023,23365,22706,22033,21401,20777,20187,19629,19136,18659,18229,17870,17547,17256,16990,16750,16544,16347,16150,15955,15772,15586,15434,15336,15237,15158,15093,15051,15040,15031,15031,15060,15085,15117,15155,15190,15245,15285,15297,15307,15321,15333,15359,15370,15381,15358,15311,15238,15195,15111,15034,14937,14798,14649,14467,14266,14055,13837,13595,13324,13063,12784,12493,12198,11901,11611,11342,11092,10864,10608,10344,10029,9709,9399,9120,8872,8657,8490,8317,8205,8097,8027,7952,7907,7833,7731,7599,7424,7264,7141,7020,6925,6856,6785,6718,6684,6670,6664,6646,6631,6647,6635,6510,6188,5748,5133,21.2,21.2,21.7,1568257,0.3,12.1,12.0,5.0,496,-1.00,-1.00,56.9130,-18.807122,0.000643,,,,,137 +SATSLF0720,2024246,12.010129,4.07,0.0571,0.1017,0.0169,0.00,16190,640,1,706,705,700,699,711,709,709,712,716,707,717,734,778,887,1233,1978,3182,4557,5799,6727,7365,7831,8243,8705,9229,9865,10602,11479,12481,13586,14759,15937,17072,18026,18761,19196,19329,19144,18760,18218,17620,17062,16596,16222,16001,15914,16000,16261,16666,17237,17992,18903,19989,21220,22532,23981,25484,26989,28392,29653,30653,31415,31796,31811,31468,30837,29888,28826,27579,26402,25229,24142,23128,22267,21534,20923,20432,20044,19761,19605,19492,19511,19601,19792,20056,20413,20841,21370,21941,22541,23217,23854,24461,25043,25527,25890,26165,26201,26081,25805,25313,24672,23941,23146,22263,21407,20572,19784,19085,18429,17859,17392,16981,16651,16403,16237,16149,16081,16112,16203,16365,16588,16904,17269,17689,18194,18749,19365,20008,20698,21421,22160,22915,23639,24345,25002,25597,26166,26585,26912,27159,27269,27283,27205,26973,26644,26228,25739,25165,24586,23945,23293,22630,21988,21340,20720,20135,19581,19089,18606,18202,17837,17517,17220,16936,16693,16508,16297,16106,15915,15728,15571,15413,15304,15196,15110,15043,15005,14984,14994,14992,15027,15043,15083,15133,15159,15208,15265,15283,15277,15298,15301,15313,15332,15339,15325,15274,15225,15153,15093,14993,14893,14761,14602,14446,14248,14036,13819,13573,13314,13043,12762,12460,12183,11873,11591,11315,11059,10832,10589,10331,10027,9698,9376,9111,8861,8647,8472,8324,8181,8090,7997,7939,7883,7817,7721,7586,7426,7253,7135,7020,6918,6841,6768,6715,6690,6670,6655,6630,6631,6649,6643,6490,6177,5739,5121,21.2,21.2,21.8,1568258,0.4,12.2,11.9,5.0,483,-1.00,-1.00,57.0186,-18.819280,0.000604,,,,,102 +SATSLF0720,2024246,12.010382,4.06,0.0568,0.1020,0.0170,0.00,16175,640,1,697,689,691,699,705,709,716,706,729,713,721,736,764,878,1233,1984,3167,4546,5783,6699,7346,7810,8235,8673,9193,9806,10566,11437,12449,13568,14754,15914,17034,17989,18697,19141,19288,19104,18730,18187,17597,17024,16557,16187,15963,15894,15969,16219,16626,17204,17960,18873,19947,21175,22502,23959,25440,26913,28364,29600,30598,31347,31746,31749,31421,30784,29846,28789,27546,26360,25201,24115,23109,22248,21508,20885,20411,20013,19735,19568,19481,19489,19589,19772,20034,20395,20821,21345,21898,22515,23197,23837,24455,25021,25490,25875,26137,26193,26061,25772,25299,24662,23942,23127,22256,21395,20534,19759,19069,18401,17847,17370,16965,16645,16404,16232,16126,16099,16118,16210,16368,16586,16881,17245,17682,18178,18752,19363,20002,20695,21418,22168,22897,23624,24321,24987,25581,26153,26585,26890,27138,27245,27269,27181,26965,26630,26236,25734,25165,24587,23933,23290,22628,21969,21335,20729,20121,19560,19066,18587,18187,17825,17497,17209,16941,16691,16497,16286,16101,15909,15725,15554,15409,15290,15197,15117,15048,15015,15008,14985,14990,15011,15025,15063,15115,15143,15201,15250,15267,15282,15289,15302,15316,15346,15333,15333,15276,15208,15149,15079,14967,14895,14746,14594,14424,14222,14033,13816,13571,13310,13049,12765,12477,12176,11869,11588,11308,11050,10827,10573,10310,10013,9691,9386,9093,8836,8638,8461,8317,8178,8075,8007,7942,7890,7816,7724,7581,7407,7245,7131,7009,6921,6835,6754,6707,6664,6653,6641,6630,6617,6645,6631,6487,6179,5748,5125,21.2,21.2,21.8,1568259,0.4,12.1,11.9,5.0,483,-1.00,-1.00,57.4394,-18.964761,0.000595,,,,,197 +SATSLF0720,2024246,12.010639,4.29,0.0601,0.1007,0.0158,0.00,16227,640,1,683,689,707,702,698,715,716,709,706,709,709,717,750,875,1224,1992,3172,4569,5818,6731,7364,7847,8264,8722,9248,9876,10636,11497,12514,13637,14825,16001,17104,18057,18795,19228,19358,19200,18808,18279,17685,17109,16640,16270,16043,15973,16052,16290,16713,17288,18051,18973,20053,21281,22597,24053,25549,27042,28478,29729,30741,31497,31895,31894,31561,30893,29956,28885,27653,26455,25275,24201,23197,22341,21590,20979,20502,20105,19801,19637,19537,19554,19645,19844,20096,20455,20887,21416,21982,22600,23287,23921,24538,25124,25585,25960,26223,26273,26144,25860,25373,24736,24010,23205,22341,21441,20603,19833,19136,18474,17917,17438,17036,16701,16459,16267,16179,16118,16160,16237,16405,16650,16922,17309,17724,18240,18804,19419,20068,20749,21485,22229,22973,23693,24395,25067,25654,26233,26657,26992,27232,27337,27337,27236,27031,26692,26309,25821,25241,24664,24016,23364,22698,22032,21404,20773,20189,19626,19128,18658,18230,17866,17537,17239,16991,16748,16531,16325,16133,15941,15757,15581,15441,15317,15225,15154,15074,15041,15025,15019,15047,15064,15077,15100,15138,15182,15229,15280,15294,15296,15316,15325,15338,15363,15371,15360,15305,15252,15188,15118,15025,14925,14789,14630,14465,14271,14052,13835,13597,13344,13081,12779,12475,12204,11901,11597,11331,11085,10850,10617,10337,10048,9717,9409,9116,8873,8656,8480,8320,8192,8119,8024,7961,7906,7851,7753,7603,7432,7265,7123,7019,6926,6826,6779,6720,6668,6671,6656,6652,6618,6647,6639,6502,6178,5763,5134,21.2,21.2,21.8,1568260,0.4,12.1,11.9,5.0,483,-1.00,-1.00,55.9220,-18.409773,0.000586,,,,,124 +SATSLF0720,2024246,12.010894,4.25,0.0595,0.1032,0.0179,0.00,16132,640,1,687,689,702,695,683,691,704,697,712,714,727,730,769,878,1219,1963,3135,4515,5745,6657,7294,7765,8177,8615,9144,9785,10510,11381,12387,13500,14679,15840,16945,17908,18621,19053,19173,19015,18637,18106,17521,16949,16473,16118,15909,15828,15906,16160,16577,17169,17902,18807,19875,21105,22426,23879,25354,26836,28256,29482,30509,31259,31653,31667,31341,30680,29776,28713,27466,26274,25110,24018,23037,22169,21432,20832,20337,19940,19671,19514,19429,19453,19528,19742,19994,20337,20761,21285,21834,22465,23122,23786,24381,24965,25442,25799,26045,26107,25984,25699,25227,24597,23872,23071,22218,21336,20488,19713,19027,18365,17815,17335,16925,16616,16370,16196,16085,16050,16069,16161,16319,16550,16851,17215,17645,18137,18722,19317,19952,20633,21364,22109,22849,23564,24272,24934,25521,26089,26516,26833,27077,27203,27210,27137,26910,26587,26178,25686,25109,24523,23892,23240,22574,21923,21301,20689,20084,19533,19021,18557,18157,17785,17461,17172,16896,16650,16453,16258,16051,15867,15671,15506,15370,15264,15165,15095,15022,14986,14977,14957,14963,14989,15016,15057,15085,15125,15173,15230,15238,15245,15252,15258,15269,15291,15289,15284,15225,15165,15117,15050,14979,14865,14729,14580,14417,14228,14005,13788,13538,13286,13017,12729,12441,12148,11847,11563,11297,11040,10806,10576,10292,9985,9655,9354,9073,8821,8615,8450,8302,8170,8058,7992,7913,7855,7790,7703,7566,7402,7237,7109,7001,6904,6811,6761,6698,6661,6637,6621,6609,6613,6614,6635,6485,6170,5739,5119,21.2,21.2,21.8,1568261,0.0,12.2,11.9,5.0,481,-1.00,-1.00,57.7091,-19.022998,0.000584,,,,,51 +SATSLF0720,2024246,12.011146,4.12,0.0577,0.1019,0.0164,0.00,16187,640,1,699,686,697,710,714,710,704,707,724,715,731,731,781,883,1223,1987,3169,4566,5802,6728,7370,7830,8259,8698,9235,9845,10585,11465,12462,13591,14777,15949,17053,18004,18752,19185,19303,19137,18746,18210,17617,17048,16585,16214,15995,15917,15990,16248,16658,17239,18001,18901,19970,21194,22529,23978,25463,26962,28385,29645,30630,31385,31780,31780,31460,30820,29878,28824,27568,26393,25210,24125,23110,22255,21528,20902,20424,20020,19744,19595,19482,19489,19607,19793,20058,20402,20840,21362,21921,22538,23214,23853,24476,25052,25529,25890,26162,26187,26075,25794,25323,24677,23944,23127,22277,21404,20549,19773,19072,18427,17857,17398,16978,16657,16406,16235,16140,16091,16120,16194,16369,16597,16887,17277,17701,18202,18768,19383,20010,20698,21417,22153,22897,23610,24332,24994,25598,26153,26577,26877,27146,27262,27255,27165,26961,26637,26240,25748,25173,24569,23939,23287,22636,21975,21341,20716,20147,19576,19077,18603,18189,17830,17504,17213,16936,16717,16508,16297,16105,15893,15721,15552,15421,15293,15213,15121,15053,15012,15000,14992,14987,15008,15033,15093,15130,15156,15215,15277,15285,15284,15293,15305,15316,15339,15332,15323,15272,15214,15168,15082,15001,14914,14762,14615,14430,14242,14030,13809,13571,13309,13053,12768,12474,12182,11875,11595,11320,11079,10833,10586,10327,10028,9705,9396,9112,8858,8641,8475,8321,8182,8082,7993,7936,7882,7819,7746,7593,7406,7248,7122,7021,6913,6839,6777,6709,6691,6661,6647,6632,6611,6638,6650,6489,6165,5743,5127,21.2,21.2,21.9,1568262,0.0,12.2,11.9,5.0,471,-1.00,-1.00,56.9046,-18.763204,0.000542,,,,,87 +SATSLF0720,2024246,12.011405,4.07,0.0571,0.1023,0.0169,0.00,16179,640,1,712,694,707,699,708,711,729,722,731,716,723,736,757,870,1221,1973,3167,4566,5817,6725,7365,7825,8234,8686,9195,9829,10579,11450,12451,13561,14754,15918,17033,17997,18725,19174,19304,19105,18731,18209,17605,17009,16557,16193,15979,15905,15973,16227,16630,17221,17961,18874,19955,21194,22503,23958,25452,26933,28363,29604,30610,31367,31757,31737,31429,30769,29854,28793,27533,26346,25202,24117,23098,22243,21510,20889,20394,20010,19718,19555,19467,19478,19575,19780,20045,20378,20823,21332,21894,22521,23187,23829,24445,25017,25504,25866,26137,26183,26060,25787,25314,24672,23944,23145,22277,21399,20538,19774,19069,18413,17836,17372,16965,16649,16405,16235,16139,16092,16119,16211,16359,16585,16885,17237,17662,18161,18749,19357,20017,20698,21435,22177,22912,23625,24320,24986,25573,26157,26578,26909,27145,27261,27282,27181,26953,26631,26224,25733,25160,24582,23930,23284,22633,21964,21337,20716,20135,19577,19085,18602,18195,17825,17507,17209,16938,16711,16494,16291,16102,15905,15717,15557,15405,15298,15203,15136,15051,15018,14993,15005,15009,15021,15045,15077,15106,15145,15205,15256,15280,15264,15294,15302,15312,15343,15334,15329,15275,15211,15153,15095,15002,14897,14764,14616,14449,14248,14030,13818,13562,13315,13040,12771,12470,12191,11897,11595,11328,11075,10832,10583,10327,10016,9693,9385,9086,8843,8639,8471,8317,8193,8103,8010,7954,7889,7835,7735,7582,7413,7264,7129,7031,6922,6854,6777,6727,6688,6668,6640,6648,6637,6657,6636,6476,6167,5733,5119,21.2,21.3,21.9,1568263,0.0,12.2,11.9,5.0,477,-1.00,-1.00,57.0742,-18.813492,0.000664,,,,,67 +SATSLF0720,2024246,12.011660,4.39,0.0616,0.1027,0.0172,0.00,16158,640,1,697,705,713,700,711,711,704,707,705,708,716,709,758,875,1218,1958,3147,4527,5779,6688,7348,7805,8217,8672,9177,9798,10546,11418,12412,13527,14711,15866,16987,17957,18679,19104,19247,19053,18688,18145,17559,16997,16529,16177,15941,15873,15953,16203,16616,17194,17953,18853,19930,21141,22485,23913,25421,26888,28307,29580,30588,31326,31703,31710,31385,30714,29803,28729,27485,26317,25146,24074,23072,22206,21480,20860,20376,19977,19685,19542,19449,19461,19561,19738,20005,20347,20800,21316,21870,22491,23144,23809,24418,25002,25481,25846,26111,26157,26027,25761,25277,24641,23909,23097,22247,21367,20523,19753,19050,18401,17828,17363,16949,16629,16391,16221,16117,16065,16096,16173,16349,16572,16875,17237,17683,18161,18736,19346,19992,20678,21399,22126,22880,23594,24303,24971,25541,26126,26538,26877,27108,27224,27232,27152,26920,26603,26215,25691,25148,24549,23913,23263,22603,21954,21316,20705,20115,19573,19060,18587,18181,17817,17472,17201,16928,16685,16485,16281,16083,15902,15710,15537,15409,15300,15187,15123,15029,14995,14971,14974,14971,15001,15035,15053,15093,15121,15187,15238,15255,15267,15272,15299,15313,15332,15345,15313,15259,15201,15143,15057,14974,14890,14749,14597,14429,14217,14023,13805,13564,13312,13046,12768,12461,12163,11866,11582,11311,11073,10818,10578,10320,10013,9689,9356,9083,8833,8631,8477,8321,8185,8089,8016,7934,7877,7822,7725,7575,7411,7246,7124,7003,6917,6832,6768,6710,6677,6653,6628,6621,6614,6633,6625,6475,6167,5735,5130,21.2,21.3,21.9,1568264,0.0,12.2,12.0,5.0,479,-1.00,-1.00,56.3632,-18.491417,0.000612,,,,,111 +SATSLF0720,2024246,12.011915,4.25,0.0595,0.1030,0.0172,0.00,16157,640,1,686,688,681,697,698,711,705,709,717,709,717,725,765,874,1216,1971,3153,4544,5797,6710,7349,7811,8228,8678,9205,9817,10565,11428,12440,13549,14718,15894,16990,17965,18680,19117,19250,19073,18702,18152,17571,17001,16545,16161,15939,15869,15953,16203,16613,17216,17946,18870,19933,21138,22467,23918,25412,26889,28302,29561,30571,31302,31712,31709,31378,30722,29796,28743,27506,26324,25140,24069,23053,22198,21460,20855,20360,19972,19685,19537,19437,19465,19547,19741,20002,20349,20776,21312,21870,22497,23162,23813,24405,24992,25478,25841,26097,26155,26043,25760,25273,24636,23917,23105,22237,21365,20509,19742,19035,18378,17820,17350,16955,16629,16376,16202,16106,16073,16090,16197,16346,16581,16872,17227,17651,18178,18725,19339,19974,20652,21389,22131,22886,23601,24320,24965,25541,26124,26555,26865,27115,27219,27245,27145,26920,26602,26204,25719,25140,24565,23917,23272,22613,21937,21315,20693,20114,19548,19051,18589,18194,17813,17477,17181,16931,16662,16483,16269,16082,15885,15707,15534,15401,15290,15182,15104,15028,15013,14984,14977,14987,15004,15034,15058,15108,15131,15185,15245,15249,15250,15263,15266,15286,15310,15306,15304,15254,15195,15142,15063,14979,14885,14752,14594,14434,14240,14029,13820,13565,13294,13025,12743,12434,12165,11870,11570,11305,11068,10822,10575,10311,10009,9683,9369,9089,8838,8627,8465,8312,8164,8065,7985,7918,7881,7814,7723,7589,7413,7259,7118,7014,6921,6829,6764,6693,6667,6653,6641,6630,6613,6631,6638,6474,6173,5746,5121,21.2,21.3,21.9,1568265,0.0,12.2,12.0,5.0,478,-1.00,-1.00,56.7433,-18.649516,0.000558,,,,,109 +SATSLF0720,2024246,12.012171,4.53,0.0634,0.1093,0.0209,0.00,15957,640,1,692,691,697,695,709,701,723,714,723,731,738,741,775,876,1211,1937,3082,4427,5639,6530,7151,7627,8037,8469,8976,9576,10314,11171,12151,13248,14396,15538,16614,17549,18267,18686,18832,18666,18306,17773,17207,16670,16210,15853,15640,15583,15666,15897,16289,16871,17625,18517,19550,20758,22065,23506,24970,26432,27836,29076,30069,30797,31185,31191,30859,30216,29305,28267,27050,25898,24741,23700,22709,21870,21149,20560,20081,19688,19425,19275,19165,19179,19285,19472,19741,20078,20520,21024,21582,22215,22874,23514,24100,24683,25145,25505,25771,25817,25708,25421,24938,24315,23614,22808,21968,21105,20262,19498,18818,18171,17621,17148,16741,16445,16192,16030,15922,15888,15918,16008,16173,16404,16690,17061,17484,17968,18536,19125,19769,20453,21176,21909,22651,23366,24053,24712,25312,25874,26285,26599,26857,26946,26962,26861,26653,26338,25937,25447,24881,24308,23687,23051,22405,21741,21114,20506,19921,19360,18864,18412,18022,17642,17314,17030,16773,16546,16321,16121,15923,15753,15569,15402,15266,15153,15057,14977,14905,14858,14861,14853,14859,14878,14899,14937,14967,14995,15048,15106,15129,15141,15153,15153,15170,15201,15194,15186,15141,15091,15019,14953,14869,14769,14637,14480,14297,14110,13908,13678,13453,13185,12926,12650,12352,12069,11769,11493,11234,10974,10733,10492,10231,9941,9613,9300,9010,8775,8567,8405,8237,8122,8029,7955,7880,7834,7754,7655,7511,7355,7197,7064,6955,6852,6769,6711,6656,6630,6618,6603,6592,6577,6596,6580,6408,6119,5703,5089,21.2,21.3,21.9,1568266,0.0,12.1,12.0,5.0,477,-1.00,-1.00,58.8066,-19.200307,0.000645,,,,,88 +SATSLF0720,2024246,12.012425,4.21,0.0590,0.1045,0.0181,0.00,16113,640,1,699,711,711,709,719,706,721,716,725,736,723,739,779,889,1238,1973,3168,4538,5758,6691,7326,7782,8207,8631,9152,9781,10517,11390,12386,13482,14666,15826,16941,17873,18620,19034,19187,18992,18614,18077,17489,16939,16469,16110,15874,15817,15884,16138,16539,17122,17877,18782,19845,21058,22395,23834,25312,26791,28202,29458,30442,31172,31587,31597,31265,30617,29677,28643,27397,26216,25053,23986,22984,22120,21386,20802,20313,19921,19632,19475,19371,19390,19501,19686,19933,20288,20713,21245,21808,22417,23083,23732,24338,24912,25393,25762,26016,26062,25937,25657,25202,24560,23837,23049,22171,21315,20471,19685,19003,18321,17773,17313,16908,16583,16355,16172,16075,16038,16046,16147,16313,16539,16833,17200,17624,18097,18677,19285,19914,20611,21328,22080,22807,23551,24233,24893,25493,26044,26471,26798,27040,27147,27163,27085,26853,26518,26129,25626,25064,24477,23849,23204,22537,21895,21253,20655,20053,19494,19008,18549,18124,17760,17425,17143,16865,16638,16428,16227,16051,15857,15682,15512,15361,15250,15150,15082,14998,14965,14953,14937,14956,14978,14994,15034,15068,15108,15169,15221,15223,15239,15252,15255,15270,15303,15305,15290,15242,15162,15112,15029,14954,14861,14711,14566,14395,14203,14001,13777,13532,13273,13009,12722,12421,12135,11835,11559,11290,11046,10818,10577,10305,10001,9674,9361,9081,8828,8625,8458,8309,8180,8082,7997,7923,7872,7804,7718,7562,7400,7240,7108,6989,6908,6835,6769,6713,6674,6642,6633,6609,6593,6616,6611,6453,6152,5725,5111,21.2,21.4,22.0,1568267,0.1,12.1,11.9,5.0,480,-1.00,-1.00,57.2535,-18.791497,0.000608,,,,,112 +SATSLF0720,2024246,12.012677,4.18,0.0586,0.1035,0.0184,0.00,16124,640,1,697,696,694,705,703,711,711,721,710,743,733,743,773,893,1226,1977,3153,4543,5781,6699,7329,7801,8221,8672,9186,9793,10549,11415,12397,13500,14684,15832,16951,17924,18645,19075,19203,19031,18650,18101,17518,16948,16491,16131,15898,15835,15926,16154,16578,17153,17905,18797,19867,21083,22420,23869,25347,26818,28242,29481,30482,31242,31635,31644,31319,30665,29728,28672,27441,26240,25071,23984,22999,22129,21401,20804,20324,19932,19645,19493,19415,19417,19509,19697,19949,20298,20721,21248,21821,22450,23105,23768,24354,24952,25397,25773,26041,26084,25958,25678,25204,24571,23833,23045,22187,21323,20477,19716,19017,18345,17786,17325,16913,16602,16350,16185,16091,16028,16055,16151,16312,16535,16834,17204,17628,18114,18695,19297,19929,20608,21343,22084,22827,23538,24248,24902,25516,26060,26497,26833,27061,27175,27184,27104,26877,26544,26147,25651,25086,24503,23861,23225,22567,21890,21277,20661,20058,19515,19024,18544,18134,17764,17451,17154,16901,16661,16445,16234,16043,15857,15677,15510,15360,15265,15157,15088,15005,14965,14955,14945,14952,14967,14993,15030,15079,15101,15163,15227,15226,15240,15246,15258,15257,15289,15294,15280,15232,15172,15102,15030,14955,14864,14720,14568,14392,14214,13986,13781,13530,13274,13017,12724,12443,12133,11840,11553,11273,11035,10805,10568,10304,10005,9673,9348,9067,8818,8611,8449,8311,8172,8083,8000,7917,7885,7813,7718,7569,7393,7235,7114,7005,6910,6831,6758,6729,6669,6657,6634,6623,6605,6625,6621,6469,6153,5730,5116,21.2,21.4,22.0,1568267,0.3,12.2,11.9,5.0,469,-1.00,-1.00,57.2357,-18.809840,0.000617,,,,,138 +SATSLF0720,2024246,12.012934,4.03,0.0565,0.1049,0.0188,0.00,16100,640,1,682,679,688,687,703,701,712,705,712,705,705,721,762,881,1214,1962,3146,4525,5770,6676,7329,7788,8209,8645,9164,9779,10508,11372,12366,13461,14656,15816,16928,17895,18619,19050,19185,19000,18619,18108,17498,16950,16470,16111,15884,15797,15887,16141,16546,17118,17875,18775,19859,21053,22378,23818,25296,26774,28196,29438,30432,31187,31597,31590,31267,30605,29696,28637,27402,26232,25061,23977,22967,22117,21382,20768,20277,19898,19600,19447,19352,19383,19484,19674,19926,20261,20724,21237,21797,22419,23064,23701,24322,24893,25374,25732,26004,26048,25930,25662,25189,24546,23824,23030,22154,21301,20446,19694,18980,18334,17765,17283,16883,16576,16328,16155,16064,16008,16029,16118,16275,16514,16810,17180,17602,18091,18660,19277,19914,20597,21328,22061,22790,23511,24212,24857,25454,26017,26452,26765,27015,27129,27133,27036,26827,26500,26103,25604,25045,24458,23840,23189,22544,21880,21256,20629,20039,19496,19005,18524,18121,17748,17416,17128,16860,16627,16409,16215,16032,15837,15642,15489,15346,15239,15137,15065,14989,14950,14935,14918,14919,14950,14965,15013,15049,15085,15138,15200,15218,15226,15237,15243,15269,15281,15280,15262,15215,15147,15089,15014,14925,14847,14705,14545,14369,14187,13970,13752,13513,13259,12986,12721,12426,12136,11840,11539,11267,11025,10785,10536,10275,9969,9643,9353,9061,8821,8605,8446,8294,8156,8047,7973,7905,7847,7779,7703,7549,7395,7230,7099,6999,6901,6820,6748,6696,6642,6646,6634,6610,6592,6619,6614,6464,6150,5728,5117,21.2,21.4,22.0,1568268,0.0,12.2,11.9,5.0,480,-1.00,-1.00,57.7587,-19.000719,0.000557,,,,,71 +SATSLF0720,2024246,12.013187,4.25,0.0595,0.1045,0.0182,0.00,16112,640,1,689,688,696,693,701,705,717,702,717,733,720,747,769,889,1228,1974,3154,4539,5766,6688,7312,7781,8202,8650,9140,9783,10538,11392,12389,13501,14679,15837,16947,17906,18613,19044,19173,19009,18628,18098,17509,16949,16496,16116,15888,15817,15894,16156,16551,17139,17880,18780,19853,21073,22381,23829,25310,26797,28221,29468,30461,31212,31597,31601,31266,30603,29686,28640,27397,26230,25062,23992,22977,22133,21392,20786,20309,19925,19628,19475,19369,19385,19495,19665,19943,20278,20708,21233,21797,22423,23091,23728,24359,24916,25399,25752,26022,26080,25950,25667,25200,24581,23852,23056,22181,21314,20461,19689,19005,18353,17792,17312,16899,16597,16317,16163,16050,16021,16047,16141,16308,16553,16834,17199,17625,18116,18669,19277,19906,20606,21321,22067,22820,23523,24237,24891,25486,26049,26477,26797,27035,27144,27147,27067,26854,26525,26136,25641,25083,24493,23861,23213,22560,21882,21248,20640,20051,19482,19010,18528,18125,17759,17442,17136,16875,16632,16435,16237,16053,15853,15653,15495,15345,15240,15138,15080,14982,14966,14947,14951,14979,14978,15002,15033,15075,15090,15138,15201,15212,15222,15241,15248,15278,15299,15291,15292,15222,15169,15109,15037,14941,14862,14720,14548,14395,14199,13979,13778,13525,13268,13007,12725,12429,12138,11841,11557,11278,11027,10791,10557,10293,9997,9663,9365,9070,8825,8632,8454,8283,8156,8055,7976,7910,7869,7790,7692,7563,7392,7240,7117,7000,6897,6826,6754,6705,6662,6648,6621,6617,6593,6627,6610,6460,6154,5730,5109,21.3,21.4,22.1,1568269,0.1,12.2,11.9,5.0,483,-1.00,-1.00,56.8624,-18.632418,0.000571,,,,,32 +SATSLF0720,2024246,12.013438,4.22,0.0591,0.1058,0.0195,0.00,16061,640,1,711,700,709,705,707,713,712,721,716,730,738,739,775,883,1222,1970,3136,4514,5729,6634,7267,7737,8159,8599,9124,9726,10473,11344,12308,13426,14597,15756,16855,17799,18531,18955,19093,18916,18537,18003,17433,16873,16403,16046,15818,15760,15813,16062,16477,17057,17803,18715,19771,20987,22299,23746,25217,26672,28094,29347,30318,31076,31464,31477,31150,30496,29589,28529,27301,26122,24965,23881,22891,22042,21314,20711,20232,19844,19562,19414,19314,19325,19418,19622,19872,20216,20647,21164,21730,22357,23013,23660,24273,24852,25321,25670,25948,25976,25860,25597,25105,24477,23767,22973,22104,21248,20407,19642,18944,18285,17721,17261,16850,16532,16274,16108,16011,15969,15995,16107,16269,16480,16771,17159,17569,18049,18621,19221,19849,20539,21278,22009,22747,23453,24151,24811,25397,25960,26383,26701,26951,27072,27077,26993,26770,26452,26064,25579,24996,24419,23787,23147,22501,21822,21207,20586,19997,19445,18938,18475,18091,17723,17395,17110,16840,16597,16392,16207,16008,15819,15632,15461,15335,15215,15103,15047,14968,14929,14909,14912,14912,14945,14962,14993,15040,15059,15114,15164,15187,15191,15195,15204,15217,15239,15239,15236,15191,15125,15065,14998,14922,14824,14691,14523,14361,14154,13943,13741,13493,13243,12973,12697,12407,12121,11817,11525,11270,11017,10770,10541,10278,9965,9647,9345,9061,8825,8600,8435,8280,8161,8062,7974,7899,7857,7786,7694,7554,7377,7237,7098,6971,6895,6816,6744,6688,6658,6639,6624,6596,6599,6601,6595,6456,6152,5723,5118,21.2,21.4,22.1,1568270,0.0,12.2,12.0,5.0,476,-1.00,-1.00,57.6348,-18.881740,0.000599,,,,,36 +SATSLF0720,2024246,12.013693,4.27,0.0598,0.1051,0.0188,0.00,16087,640,1,700,684,700,685,711,705,705,715,721,727,732,745,774,880,1219,1962,3153,4527,5749,6667,7307,7770,8190,8635,9148,9766,10494,11364,12364,13456,14635,15796,16901,17858,18578,19012,19139,18951,18587,18050,17457,16898,16438,16088,15861,15790,15872,16132,16533,17101,17840,18752,19809,21015,22348,23789,25261,26736,28153,29397,30403,31138,31552,31540,31193,30557,29633,28595,27368,26177,25018,23947,22946,22073,21333,20738,20254,19865,19601,19432,19346,19353,19456,19654,19913,20259,20693,21229,21781,22391,23066,23690,24301,24868,25347,25710,25981,26034,25904,25625,25144,24514,23797,23009,22150,21277,20427,19661,18956,18302,17753,17269,16867,16551,16305,16144,16037,16007,16023,16135,16284,16507,16796,17149,17577,18071,18648,19254,19897,20569,21300,22034,22780,23511,24202,24867,25448,26005,26434,26759,27005,27101,27117,27014,26811,26477,26093,25610,25046,24469,23825,23171,22527,21846,21228,20597,20006,19463,18974,18512,18113,17741,17410,17115,16861,16620,16416,16213,16017,15828,15658,15486,15346,15227,15131,15056,14972,14929,14915,14922,14919,14967,14984,15027,15065,15099,15141,15197,15208,15220,15226,15225,15243,15269,15264,15253,15206,15133,15088,15017,14933,14825,14695,14557,14376,14185,13967,13767,13529,13266,12995,12711,12427,12134,11826,11537,11266,11021,10784,10547,10278,9989,9666,9362,9077,8840,8618,8446,8291,8144,8048,7968,7907,7852,7785,7700,7572,7404,7242,7115,6979,6891,6812,6736,6679,6645,6631,6633,6606,6603,6624,6625,6480,6165,5742,5103,21.3,21.5,22.1,1568271,0.0,12.2,12.0,5.0,477,-1.00,-1.00,57.1206,-18.706072,0.000527,,,,,140 +SATSLF0720,2024246,12.013946,4.15,0.0581,0.1050,0.0189,0.00,16090,640,1,696,703,713,701,717,712,710,719,716,713,727,728,775,885,1227,1988,3154,4531,5780,6677,7315,7782,8181,8634,9150,9784,10531,11378,12368,13474,14656,15815,16923,17879,18599,19051,19185,18985,18611,18082,17475,16915,16458,16102,15869,15796,15892,16145,16530,17107,17867,18773,19834,21052,22353,23796,25268,26752,28160,29425,30413,31164,31561,31552,31207,30571,29651,28597,27382,26172,25029,23947,22963,22101,21352,20750,20269,19877,19593,19435,19351,19368,19461,19643,19915,20242,20685,21197,21776,22397,23053,23691,24304,24880,25346,25719,25977,26035,25918,25629,25161,24525,23803,23011,22134,21273,20438,19666,18961,18320,17757,17286,16881,16577,16318,16152,16052,16001,16024,16123,16285,16503,16791,17171,17597,18098,18661,19269,19900,20557,21307,22042,22778,23489,24178,24848,25440,26005,26427,26754,27012,27117,27117,27030,26817,26481,26107,25614,25047,24453,23805,23175,22518,21856,21228,20603,20027,19464,18971,18494,18104,17736,17418,17117,16853,16615,16409,16201,16011,15818,15639,15482,15337,15220,15124,15045,14973,14939,14917,14925,14925,14938,14964,15001,15060,15085,15129,15187,15200,15219,15227,15225,15250,15266,15266,15243,15209,15140,15085,15011,14928,14837,14700,14536,14369,14180,13954,13744,13508,13249,12997,12709,12418,12126,11834,11548,11277,11021,10791,10547,10279,9980,9666,9347,9052,8830,8610,8436,8284,8147,8045,7971,7901,7854,7793,7701,7564,7388,7237,7102,6989,6892,6817,6746,6681,6661,6638,6629,6609,6601,6625,6617,6461,6150,5729,5105,21.2,21.5,22.1,1568272,0.0,12.2,11.9,5.0,463,-1.00,-1.00,57.0267,-18.674107,0.000589,,,,,150 +SATSLF0720,2024246,12.014199,4.27,0.0598,0.1054,0.0191,0.00,16067,640,1,694,690,699,693,704,698,704,716,718,727,727,749,772,893,1245,1976,3163,4530,5759,6659,7289,7753,8169,8622,9133,9750,10509,11367,12375,13469,14639,15781,16905,17847,18570,18990,19127,18957,18568,18021,17443,16886,16432,16068,15837,15771,15856,16101,16500,17077,17836,18726,19793,21008,22322,23767,25237,26713,28120,29367,30365,31092,31488,31488,31145,30515,29609,28541,27322,26135,24981,23911,22902,22058,21321,20710,20224,19846,19569,19426,19330,19318,19431,19619,19874,20224,20650,21165,21735,22356,23011,23669,24273,24840,25323,25689,25939,25993,25876,25600,25115,24486,23777,22981,22112,21263,20421,19638,18938,18296,17728,17265,16859,16537,16284,16117,16023,15979,16004,16085,16254,16469,16770,17134,17564,18051,18624,19237,19881,20552,21271,22016,22746,23466,24165,24825,25410,25977,26391,26718,26961,27075,27088,26996,26769,26442,26060,25573,25004,24439,23798,23153,22494,21834,21189,20597,19992,19443,18957,18484,18091,17722,17392,17096,16829,16584,16390,16188,16006,15797,15616,15468,15325,15213,15117,15036,14979,14935,14902,14889,14901,14924,14948,14986,15033,15063,15133,15178,15196,15217,15214,15217,15229,15247,15229,15243,15198,15137,15078,14999,14918,14827,14677,14528,14363,14173,13973,13745,13508,13246,12971,12689,12390,12103,11821,11521,11253,11014,10789,10548,10275,9979,9652,9329,9047,8802,8595,8428,8282,8153,8048,7965,7886,7846,7765,7678,7543,7373,7218,7095,6976,6884,6795,6737,6661,6647,6614,6605,6589,6587,6604,6599,6434,6146,5707,5103,21.3,21.4,22.1,1568273,0.0,12.2,11.9,5.0,476,-1.00,-1.00,56.9012,-18.588770,0.000573,,,,,128 +SATSLF0720,2024246,12.014454,4.29,0.0602,0.1060,0.0196,0.00,16056,640,1,706,696,698,699,711,699,710,719,734,720,735,744,775,889,1230,1968,3151,4521,5744,6647,7277,7751,8168,8609,9122,9711,10471,11321,12321,13419,14584,15734,16858,17797,18517,18946,19092,18912,18530,17993,17405,16849,16394,16029,15812,15730,15825,16076,16485,17068,17812,18696,19767,20971,22285,23740,25198,26661,28089,29331,30318,31064,31453,31442,31144,30496,29574,28516,27291,26105,24958,23877,22886,22029,21293,20688,20217,19821,19543,19395,19308,19311,19413,19597,19858,20203,20630,21161,21714,22343,22997,23669,24253,24833,25314,25666,25925,25969,25856,25580,25101,24461,23762,22978,22101,21254,20394,19652,18932,18290,17721,17240,16845,16523,16283,16127,16029,15978,16004,16098,16251,16470,16770,17133,17565,18057,18627,19246,19867,20549,21285,22006,22742,23449,24153,24797,25402,25980,26377,26721,26962,27059,27081,26967,26770,26443,26042,25561,24996,24401,23777,23128,22478,21825,21191,20586,20004,19449,18955,18482,18081,17704,17388,17088,16835,16605,16386,16182,16000,15813,15630,15457,15336,15198,15124,15028,14955,14917,14893,14893,14889,14921,14952,14989,15014,15049,15106,15162,15181,15187,15215,15221,15234,15252,15249,15226,15186,15113,15061,14972,14903,14807,14687,14529,14351,14163,13962,13745,13513,13224,12971,12685,12400,12098,11808,11523,11259,11014,10765,10540,10273,9965,9655,9353,9064,8814,8598,8437,8272,8138,8041,7981,7908,7848,7785,7699,7571,7380,7221,7099,6977,6875,6797,6741,6685,6650,6623,6631,6619,6594,6611,6602,6439,6145,5719,5097,21.3,21.5,22.1,1568274,0.2,12.1,11.9,5.0,478,-1.00,-1.00,57.4117,-18.781660,0.000588,,,,,13 +SATSDF0720,2024246,12.259138,0.00,0.0000,0.0000,0.0000,0.00,640,0,1,625,615,622,620,629,617,627,629,629,628,628,620,621,613,620,614,624,622,620,630,628,643,633,657,653,652,648,629,635,642,645,648,649,644,644,636,638,639,643,648,642,654,645,663,654,643,657,647,659,650,642,632,643,643,642,653,648,662,641,650,642,637,636,642,648,660,654,657,660,660,645,643,637,642,641,629,634,641,640,644,658,649,651,640,647,655,644,654,657,645,651,649,653,646,636,641,643,641,640,641,647,648,629,632,634,642,624,643,629,640,625,639,637,636,634,641,626,623,631,630,637,644,636,642,634,634,639,637,649,636,647,643,649,645,642,633,628,635,633,635,648,636,640,634,631,645,632,643,646,650,642,648,652,645,639,632,631,643,630,635,616,635,634,646,644,645,636,639,645,629,637,637,628,644,650,649,645,647,644,642,629,626,638,642,640,643,641,648,636,645,642,636,638,641,642,641,636,643,647,645,648,630,634,631,631,631,652,645,645,644,643,636,629,635,637,631,643,644,645,637,638,637,621,619,632,630,626,631,634,643,647,640,641,653,658,649,646,641,643,644,640,629,643,639,635,659,649,643,646,639,631,636,645,644,650,473,0.0,0.0,0.0,1568273,0.2,12.8,0.1,5.0,59,0.00,0.00,0.0000,0.000000,0.000000,,,,,225 +SATSLF0720,2024246,12.259693,4.08,0.0571,0.0991,0.0148,0.00,16269,640,1,679,690,685,693,692,691,705,717,722,719,721,743,769,901,1227,1990,3197,4578,5823,6757,7406,7885,8317,8756,9287,9917,10669,11538,12548,13677,14873,16057,17178,18141,18873,19315,19446,19249,18866,18342,17733,17181,16693,16333,16093,16011,16094,16340,16752,17345,18108,19012,20103,21341,22669,24137,25618,27115,28545,29811,30816,31578,31973,31974,31645,30982,30058,28990,27734,26545,25365,24289,23257,22403,21658,21042,20548,20149,19863,19705,19605,19613,19718,19908,20169,20519,20951,21479,22053,22677,23342,23992,24608,25190,25658,26017,26290,26330,26206,25925,25438,24785,24059,23265,22382,21503,20640,19879,19185,18504,17947,17492,17074,16742,16488,16318,16206,16173,16193,16277,16448,16683,16986,17356,17783,18268,18839,19458,20100,20794,21541,22272,23032,23752,24457,25130,25729,26282,26709,27058,27292,27399,27412,27308,27094,26761,26370,25864,25287,24701,24059,23418,22760,22076,21453,20824,20240,19665,19176,18693,18293,17924,17578,17299,17018,16773,16563,16357,16173,15975,15786,15623,15476,15364,15277,15194,15113,15080,15054,15061,15053,15095,15104,15136,15187,15217,15278,15318,15330,15337,15355,15353,15378,15397,15393,15376,15345,15276,15222,15145,15054,14957,14816,14674,14504,14306,14081,13871,13613,13363,13091,12806,12511,12215,11919,11639,11370,11106,10877,10633,10364,10059,9730,9415,9141,8876,8649,8487,8323,8200,8119,8041,7977,7939,7876,7772,7623,7434,7269,7142,7026,6945,6857,6797,6756,6714,6681,6670,6654,6649,6669,6654,6495,6193,5769,5131,21.1,21.2,21.6,1568274,0.3,12.3,11.9,5.0,591,-1.00,-1.00,56.3406,-18.636930,0.000555,,,,,181 +SATSLF0720,2024246,12.259874,4.25,0.0595,0.1002,0.0154,0.00,16241,640,1,694,693,698,697,702,703,697,695,696,704,717,720,763,871,1225,1964,3163,4574,5805,6734,7397,7862,8273,8722,9236,9879,10640,11517,12522,13638,14823,15995,17121,18073,18820,19255,19387,19209,18813,18283,17690,17114,16651,16290,16058,15989,16068,16313,16738,17322,18071,18977,20058,21287,22626,24085,25578,27067,28511,29782,30784,31526,31921,31932,31601,30937,30010,28933,27686,26501,25320,24238,23223,22357,21620,21008,20506,20113,19837,19660,19557,19566,19675,19857,20128,20477,20913,21434,21994,22626,23298,23938,24555,25134,25623,25979,26247,26301,26169,25882,25416,24753,24039,23238,22348,21468,20621,19858,19140,18473,17911,17434,17024,16709,16462,16300,16197,16160,16173,16265,16424,16653,16957,17329,17765,18245,18839,19436,20083,20770,21506,22257,23015,23727,24427,25094,25666,26249,26666,26992,27236,27349,27363,27267,27069,26728,26340,25856,25281,24694,24041,23381,22713,22046,21418,20797,20203,19653,19157,18666,18273,17890,17565,17269,16994,16752,16535,16341,16146,15961,15781,15610,15461,15329,15243,15173,15083,15052,15024,15019,15027,15068,15073,15119,15177,15200,15243,15303,15314,15321,15325,15317,15350,15364,15362,15359,15321,15258,15202,15121,15021,14919,14784,14636,14469,14283,14070,13857,13620,13355,13094,12787,12508,12205,11910,11605,11331,11093,10837,10619,10336,10035,9723,9405,9126,8874,8667,8498,8341,8213,8108,8029,7965,7905,7837,7740,7595,7420,7271,7131,7019,6923,6845,6775,6737,6686,6670,6660,6633,6641,6650,6651,6496,6206,5761,5133,21.2,21.2,21.7,1568275,0.2,12.3,11.9,5.0,487,-1.00,-1.00,56.3213,-18.600617,0.000555,,,,,139 +SATSLF0720,2024246,12.260130,4.15,0.0582,0.1001,0.0160,0.00,16237,640,1,689,685,683,686,698,683,701,706,712,712,711,727,762,881,1221,1983,3176,4570,5834,6746,7394,7870,8279,8731,9249,9874,10624,11482,12507,13633,14820,15985,17123,18092,18821,19265,19382,19197,18823,18291,17688,17109,16647,16288,16061,15989,16057,16317,16722,17304,18059,18968,20055,21296,22618,24069,25559,27066,28495,29753,30772,31520,31923,31936,31594,30934,30007,28923,27674,26487,25307,24213,23210,22352,21594,20985,20489,20107,19825,19662,19562,19569,19687,19861,20132,20485,20901,21426,22005,22621,23297,23952,24554,25140,25613,25970,26231,26269,26169,25890,25389,24759,24029,23233,22341,21467,20613,19827,19134,18470,17901,17432,17022,16709,16457,16290,16195,16151,16162,16246,16429,16649,16929,17308,17739,18233,18813,19429,20082,20761,21485,22235,22997,23717,24402,25073,25669,26218,26664,26994,27237,27346,27354,27276,27070,26742,26330,25838,25268,24676,24017,23369,22696,22032,21405,20786,20181,19627,19137,18663,18261,17885,17554,17253,16997,16741,16553,16353,16153,15949,15763,15613,15449,15340,15239,15169,15083,15028,15035,15036,15031,15051,15079,15115,15152,15190,15243,15305,15315,15333,15338,15333,15360,15379,15365,15362,15312,15252,15182,15131,15046,14933,14799,14651,14485,14280,14068,13846,13600,13329,13066,12778,12501,12197,11898,11607,11344,11094,10859,10613,10360,10056,9717,9419,9121,8872,8660,8488,8320,8187,8107,8013,7943,7906,7832,7734,7606,7417,7254,7131,7020,6918,6837,6781,6732,6689,6665,6663,6642,6637,6650,6651,6494,6197,5749,5133,21.2,21.2,21.8,1568276,0.2,12.3,11.9,5.0,476,-1.00,-1.00,56.5893,-18.706180,0.000579,,,,,72 +SATSLF0720,2024246,12.260383,4.13,0.0579,0.1000,0.0157,0.00,16233,640,1,705,703,705,709,697,711,727,709,717,721,717,727,769,891,1233,1979,3179,4562,5821,6729,7377,7847,8267,8710,9243,9869,10622,11488,12485,13619,14807,15991,17093,18053,18792,19230,19367,19177,18816,18266,17676,17101,16644,16266,16041,15969,16044,16292,16689,17293,18036,18960,20028,21271,22599,24061,25550,27050,28476,29735,30733,31488,31895,31896,31563,30909,29973,28901,27671,26465,25283,24200,23206,22322,21589,20972,20487,20089,19806,19649,19565,19562,19676,19853,20123,20462,20890,21412,21985,22595,23277,23929,24546,25129,25598,25966,26229,26273,26155,25878,25392,24744,24037,23217,22363,21477,20606,19835,19124,18469,17923,17442,17028,16722,16457,16293,16185,16144,16165,16256,16425,16669,16949,17307,17753,18240,18804,19419,20049,20738,21485,22234,22983,23698,24423,25082,25657,26229,26660,26988,27218,27337,27350,27261,27044,26712,26334,25829,25246,24654,24020,23365,22701,22045,21398,20785,20194,19650,19141,18676,18253,17899,17562,17258,17004,16746,16541,16326,16155,15959,15770,15603,15451,15347,15241,15155,15098,15050,15031,15031,15038,15065,15081,15121,15165,15189,15250,15306,15313,15331,15341,15341,15360,15376,15377,15373,15309,15241,15191,15117,15029,14935,14796,14653,14471,14280,14072,13857,13626,13348,13074,12794,12499,12200,11896,11619,11346,11097,10853,10616,10343,10046,9722,9412,9114,8881,8666,8487,8328,8198,8121,8024,7959,7907,7833,7744,7605,7421,7268,7149,7018,6947,6841,6801,6733,6703,6668,6662,6647,6634,6656,6645,6503,6197,5771,5149,21.2,21.2,21.8,1568277,0.6,12.3,12.0,5.0,479,-1.00,-1.00,56.8115,-18.783514,0.000589,,,,,0 +SATSLF0720,2024246,12.260639,4.14,0.0579,0.1012,0.0157,0.00,16213,640,1,690,695,700,698,697,695,699,709,719,729,718,746,774,877,1222,1980,3170,4562,5813,6730,7369,7837,8249,8708,9227,9855,10619,11493,12494,13609,14794,15976,17081,18045,18772,19216,19337,19174,18781,18261,17638,17066,16609,16258,16013,15937,16023,16270,16676,17279,18024,18939,20020,21229,22564,24013,25517,27010,28430,29700,30692,31463,31848,31846,31505,30845,29922,28865,27617,26439,25273,24189,23160,22301,21554,20947,20445,20056,19774,19607,19515,19544,19642,19830,20098,20445,20878,21395,21966,22580,23244,23893,24500,25084,25570,25929,26183,26232,26114,25838,25355,24714,23988,23189,22317,21429,20595,19821,19112,18452,17897,17416,16997,16680,16432,16257,16167,16129,16149,16241,16400,16634,16920,17303,17728,18214,18781,19393,20020,20717,21440,22185,22951,23667,24375,25050,25640,26210,26629,26965,27207,27300,27320,27232,27018,26689,26294,25796,25217,24621,23993,23333,22678,22001,21378,20761,20178,19607,19123,18637,18235,17870,17527,17240,16969,16738,16530,16320,16126,15939,15752,15585,15437,15321,15214,15141,15067,15030,15015,15021,15024,15053,15066,15106,15153,15177,15215,15274,15285,15295,15306,15303,15339,15358,15359,15365,15293,15247,15193,15107,15010,14932,14790,14630,14465,14265,14061,13845,13609,13344,13078,12794,12489,12183,11877,11587,11316,11076,10831,10619,10338,10045,9718,9394,9115,8869,8661,8491,8313,8201,8117,8025,7963,7902,7835,7751,7610,7424,7261,7141,7014,6921,6837,6782,6729,6691,6675,6659,6667,6645,6667,6645,6489,6176,5770,5138,21.2,21.2,21.8,1568278,0.0,12.3,11.9,5.0,478,-1.00,-1.00,56.7455,-18.728672,0.000601,,,,,102 +SATSLF0720,2024246,12.260895,4.16,0.0583,0.1012,0.0165,0.00,16201,640,1,693,683,691,699,714,712,721,716,715,711,715,718,751,879,1235,1990,3171,4564,5794,6727,7362,7822,8241,8697,9244,9866,10605,11480,12474,13592,14781,15962,17066,18045,18754,19200,19336,19141,18765,18221,17622,17054,16590,16238,16010,15929,16036,16284,16674,17265,18019,18913,19981,21213,22544,23997,25481,26993,28419,29671,30685,31440,31839,31841,31508,30839,29927,28852,27609,26410,25237,24154,23137,22277,21531,20925,20439,20049,19755,19603,19513,19497,19621,19797,20061,20401,20847,21371,21953,22565,23222,23861,24483,25051,25543,25894,26163,26211,26109,25830,25333,24710,23981,23181,22309,21434,20581,19786,19072,18426,17864,17396,16997,16674,16426,16261,16160,16117,16140,16221,16384,16590,16882,17271,17693,18183,18769,19374,20018,20707,21440,22195,22937,23651,24357,25029,25613,26205,26614,26941,27184,27282,27300,27217,27010,26676,26284,25783,25206,24612,23958,23319,22672,22000,21373,20764,20136,19586,19093,18609,18215,17858,17522,17233,16962,16722,16505,16311,16122,15917,15726,15570,15425,15324,15225,15145,15069,15038,15026,15017,15014,15043,15065,15090,15124,15165,15212,15269,15287,15290,15318,15305,15321,15345,15342,15330,15289,15235,15165,15092,15004,14917,14779,14630,14445,14257,14064,13826,13590,13325,13064,12772,12473,12187,11885,11607,11336,11083,10837,10598,10313,10023,9685,9383,9097,8841,8647,8475,8321,8193,8097,8021,7941,7898,7818,7729,7581,7410,7266,7138,7018,6918,6834,6777,6701,6673,6656,6650,6637,6625,6633,6638,6488,6185,5760,5118,21.2,21.2,21.8,1568279,0.3,12.3,11.9,5.0,476,-1.00,-1.00,56.8803,-18.776383,0.000576,,,,,164 +SATSLF0720,2024246,12.261147,4.11,0.0575,0.1022,0.0173,0.00,16177,640,1,696,681,686,682,708,708,701,716,721,717,710,725,757,877,1224,1973,3157,4561,5789,6712,7342,7823,8230,8690,9202,9825,10560,11447,12448,13562,14750,15915,17025,18007,18732,19169,19290,19123,18743,18193,17613,17042,16570,16202,15971,15907,15979,16225,16640,17228,17994,18901,19962,21184,22510,23960,25451,26933,28369,29624,30634,31369,31773,31761,31429,30792,29861,28794,27560,26381,25195,24108,23106,22254,21513,20907,20410,20024,19742,19561,19472,19480,19579,19773,20023,20389,20810,21342,21895,22519,23164,23827,24450,25022,25512,25853,26139,26193,26067,25793,25308,24673,23950,23142,22263,21403,20548,19766,19063,18423,17858,17385,16978,16653,16404,16219,16130,16081,16103,16211,16365,16576,16887,17261,17664,18174,18749,19360,19989,20685,21429,22155,22903,23617,24341,24993,25586,26161,26586,26912,27154,27253,27266,27170,26958,26625,26242,25736,25169,24597,23970,23285,22632,21961,21330,20725,20129,19562,19072,18592,18197,17817,17497,17209,16925,16691,16494,16289,16106,15898,15727,15549,15410,15289,15188,15118,15029,15004,14986,14999,15002,15031,15059,15070,15110,15139,15195,15249,15265,15283,15288,15302,15313,15317,15308,15299,15257,15187,15139,15071,14986,14890,14765,14606,14444,14242,14043,13814,13572,13309,13049,12756,12460,12172,11874,11577,11318,11053,10817,10579,10312,10017,9684,9371,9094,8853,8637,8471,8311,8174,8073,7998,7922,7877,7811,7719,7569,7403,7251,7123,6999,6911,6829,6773,6717,6664,6659,6645,6625,6610,6629,6636,6470,6170,5746,5132,21.2,21.2,21.8,1568280,0.0,12.3,11.9,5.0,473,-1.00,-1.00,57.0574,-18.815885,0.000574,,,,,59 +SATSLF0720,2024246,12.261404,4.26,0.0596,0.1024,0.0167,0.00,16181,640,1,691,700,693,697,691,708,706,713,720,719,721,731,775,890,1230,1974,3172,4547,5791,6708,7357,7836,8245,8691,9206,9821,10567,11445,12443,13549,14730,15905,17029,17982,18717,19136,19278,19097,18717,18186,17588,17029,16567,16205,15978,15904,15983,16225,16631,17217,17957,18877,19949,21173,22506,23945,25443,26937,28353,29611,30609,31360,31744,31743,31424,30761,29833,28784,27544,26357,25199,24116,23099,22229,21505,20886,20400,20005,19728,19556,19462,19488,19570,19768,20033,20395,20830,21345,21915,22528,23191,23851,24441,25043,25506,25869,26125,26178,26066,25768,25320,24668,23946,23140,22256,21380,20546,19784,19077,18421,17862,17381,16974,16651,16407,16221,16126,16083,16116,16211,16373,16599,16903,17286,17720,18202,18761,19362,20002,20689,21418,22162,22912,23625,24333,24999,25593,26148,26599,26917,27160,27268,27284,27192,26965,26631,26231,25729,25156,24574,23955,23290,22648,21962,21342,20727,20138,19589,19092,18608,18205,17829,17507,17212,16946,16702,16497,16297,16105,15905,15725,15573,15417,15303,15207,15144,15055,15014,14993,14990,14993,15026,15046,15082,15134,15166,15202,15261,15271,15290,15301,15296,15312,15339,15345,15333,15277,15224,15160,15113,15008,14923,14793,14645,14453,14243,14035,13813,13549,13307,13041,12747,12467,12181,11881,11600,11328,11091,10833,10605,10325,10022,9711,9398,9098,8857,8632,8467,8300,8192,8093,8006,7937,7885,7811,7739,7597,7418,7256,7129,7033,6921,6851,6788,6733,6699,6673,6657,6638,6627,6647,6640,6501,6193,5758,5146,21.2,21.2,21.9,1568281,0.2,12.3,11.9,5.0,473,-1.00,-1.00,56.5911,-18.610805,0.000546,,,,,95 +SATSLF0720,2024246,12.261658,4.39,0.0615,0.1027,0.0171,0.00,16154,640,1,693,687,693,689,706,708,712,712,724,705,724,721,759,882,1224,1971,3157,4546,5769,6688,7322,7804,8217,8652,9178,9802,10552,11397,12417,13500,14693,15845,16979,17914,18645,19090,19189,19011,18658,18115,17540,16965,16496,16136,15904,15842,15941,16192,16585,17187,17927,18842,19897,21129,22457,23896,25383,26858,28276,29530,30528,31277,31673,31681,31355,30716,29782,28722,27469,26297,25132,24040,23047,22181,21462,20837,20373,19977,19699,19542,19449,19455,19549,19735,19990,20333,20770,21301,21857,22480,23149,23805,24400,24992,25467,25833,26085,26140,26018,25739,25264,24622,23909,23101,22235,21368,20513,19761,19047,18402,17836,17373,16955,16637,16393,16214,16127,16067,16103,16185,16329,16567,16868,17229,17673,18158,18742,19342,19989,20678,21389,22141,22870,23594,24305,24960,25546,26139,26549,26878,27126,27222,27240,27143,26930,26584,26199,25700,25127,24543,23910,23274,22614,21954,21328,20713,20117,19559,19069,18602,18169,17817,17490,17197,16925,16698,16490,16279,16094,15899,15717,15537,15392,15286,15177,15114,15029,14996,14976,14989,14984,15014,15035,15093,15121,15139,15202,15261,15266,15288,15285,15283,15302,15320,15315,15307,15266,15205,15146,15086,14994,14887,14757,14622,14450,14248,14037,13817,13566,13293,13041,12753,12461,12169,11873,11588,11323,11073,10816,10595,10328,10018,9701,9374,9106,8857,8637,8469,8315,8177,8087,8007,7934,7878,7819,7724,7589,7413,7262,7144,7034,6914,6851,6776,6708,6679,6649,6653,6635,6620,6626,6630,6474,6179,5743,5117,21.2,21.3,21.9,1568282,0.1,12.3,12.0,5.0,474,-1.00,-1.00,56.9238,-18.709063,0.000593,,,,,163 +SATSLF0720,2024246,12.261914,4.25,0.0595,0.1044,0.0185,0.00,16109,640,1,698,693,691,700,699,695,693,703,709,720,733,733,775,887,1232,1966,3160,4525,5774,6672,7314,7777,8208,8633,9156,9772,10523,11384,12385,13485,14676,15821,16925,17879,18615,19048,19180,18997,18621,18082,17494,16917,16471,16112,15892,15817,15902,16154,16557,17140,17866,18779,19852,21070,22389,23821,25315,26795,28206,29445,30455,31213,31612,31605,31277,30617,29691,28649,27396,26219,25057,23987,22985,22128,21396,20776,20311,19912,19639,19489,19374,19400,19488,19670,19938,20277,20704,21235,21792,22427,23091,23744,24343,24928,25393,25755,26003,26062,25926,25648,25179,24551,23844,23045,22178,21296,20473,19693,18980,18324,17762,17300,16885,16579,16330,16148,16061,16021,16036,16127,16293,16531,16814,17186,17632,18113,18688,19267,19934,20605,21326,22064,22820,23538,24232,24894,25484,26056,26490,26798,27050,27157,27165,27072,26849,26522,26129,25641,25065,24485,23860,23205,22546,21896,21257,20642,20049,19498,19009,18538,18136,17768,17427,17143,16865,16631,16429,16229,16041,15865,15654,15503,15346,15247,15153,15072,15000,14969,14940,14929,14929,14968,14990,15021,15065,15094,15148,15201,15204,15228,15226,15233,15262,15274,15280,15273,15229,15157,15099,15042,14941,14838,14696,14558,14379,14199,13995,13776,13548,13285,13022,12732,12431,12137,11829,11550,11285,11023,10781,10562,10286,9989,9649,9351,9063,8814,8611,8445,8301,8158,8070,7987,7910,7866,7792,7711,7566,7393,7236,7113,6998,6894,6811,6759,6701,6664,6636,6642,6621,6617,6624,6615,6469,6149,5739,5101,21.2,21.3,21.9,1568283,0.1,12.3,11.9,5.0,472,-1.00,-1.00,57.1086,-18.735829,0.000593,,,,,250 +SATSLF0720,2024246,12.262170,4.10,0.0574,0.1033,0.0179,0.00,16139,640,1,697,699,693,690,701,709,705,706,717,719,718,733,768,889,1216,1976,3149,4539,5778,6681,7325,7789,8220,8665,9172,9792,10534,11410,12392,13507,14699,15853,16964,17928,18657,19097,19213,19047,18669,18133,17537,16967,16503,16151,15916,15850,15928,16178,16572,17154,17898,18811,19885,21116,22449,23895,25367,26855,28285,29541,30535,31287,31686,31672,31333,30691,29762,28704,27467,26283,25125,24029,23047,22180,21447,20846,20341,19959,19670,19517,19424,19432,19530,19717,19978,20328,20773,21284,21855,22477,23147,23787,24403,24967,25453,25805,26073,26138,26007,25732,25244,24608,23889,23085,22205,21336,20493,19730,19021,18386,17810,17341,16937,16624,16365,16182,16093,16051,16078,16164,16330,16547,16861,17213,17651,18135,18715,19333,19959,20652,21370,22115,22865,23570,24274,24939,25524,26104,26517,26830,27084,27195,27205,27118,26894,26560,26171,25689,25109,24530,23891,23243,22584,21904,21287,20681,20081,19530,19030,18573,18165,17792,17454,17173,16904,16657,16453,16243,16064,15876,15693,15526,15383,15268,15169,15100,15008,14984,14967,14962,14977,14989,15013,15049,15085,15115,15165,15225,15255,15261,15270,15277,15292,15312,15306,15306,15252,15171,15118,15040,14955,14865,14728,14584,14418,14221,14010,13801,13558,13301,13021,12737,12443,12147,11848,11561,11305,11040,10800,10565,10297,9993,9677,9368,9088,8841,8633,8450,8314,8162,8067,7988,7918,7863,7799,7718,7578,7389,7235,7107,6993,6889,6810,6757,6689,6667,6652,6634,6619,6611,6637,6643,6466,6167,5733,5111,21.2,21.3,21.9,1568284,0.2,12.3,11.9,5.0,471,-1.00,-1.00,57.6435,-19.001453,0.000685,,,,,20 +SATSLF0720,2024246,12.262423,4.36,0.0610,0.1048,0.0190,0.00,16097,640,1,695,693,693,695,708,696,701,709,718,709,722,729,764,907,1229,1986,3161,4524,5741,6654,7289,7771,8193,8635,9155,9766,10510,11371,12356,13466,14649,15801,16907,17859,18573,18997,19139,18977,18597,18053,17467,16921,16453,16099,15855,15792,15866,16123,16532,17109,17867,18769,19827,21056,22374,23826,25296,26768,28189,29422,30411,31169,31558,31549,31230,30578,29677,28624,27381,26199,25040,23968,22970,22118,21384,20775,20288,19900,19609,19453,19356,19361,19481,19653,19927,20265,20689,21213,21770,22401,23072,23710,24318,24909,25358,25738,25997,26051,25922,25651,25180,24534,23820,23024,22150,21288,20451,19665,18979,18317,17769,17293,16895,16577,16301,16143,16052,16021,16040,16144,16293,16520,16808,17186,17607,18105,18673,19275,19893,20583,21307,22049,22798,23512,24219,24880,25467,26035,26458,26784,27017,27133,27141,27047,26835,26499,26109,25623,25052,24458,23835,23197,22528,21865,21250,20629,20049,19474,18986,18518,18112,17757,17421,17140,16865,16631,16423,16221,16025,15826,15649,15484,15344,15233,15137,15057,14986,14945,14920,14917,14935,14963,14985,15013,15063,15096,15137,15194,15206,15200,15229,15237,15259,15276,15273,15269,15214,15147,15082,15010,14937,14853,14714,14561,14389,14209,13981,13769,13516,13264,12990,12710,12414,12138,11840,11558,11269,11031,10784,10548,10278,9982,9649,9341,9063,8826,8609,8442,8290,8153,8063,7990,7909,7852,7777,7707,7562,7380,7232,7111,6994,6899,6826,6762,6694,6659,6644,6640,6619,6601,6619,6602,6447,6153,5709,5104,21.2,21.3,21.9,1568285,0.0,12.3,11.9,5.0,472,-1.00,-1.00,57.0379,-18.688493,0.000584,,,,,229 +SATSLF0720,2024246,12.262676,4.20,0.0589,0.1044,0.0190,0.00,16104,640,1,693,703,697,698,709,710,712,718,729,730,724,722,775,896,1226,1991,3160,4536,5773,6688,7323,7786,8203,8641,9175,9789,10533,11404,12390,13489,14670,15817,16928,17906,18633,19048,19179,19003,18641,18094,17494,16928,16475,16102,15872,15819,15889,16144,16544,17125,17867,18775,19856,21069,22394,23828,25307,26788,28193,29449,30428,31177,31583,31587,31255,30605,29680,28615,27379,26204,25033,23974,22969,22097,21379,20770,20293,19896,19609,19453,19373,19377,19481,19671,19932,20274,20705,21208,21771,22402,23062,23704,24320,24893,25367,25739,26016,26053,25934,25649,25173,24535,23817,23011,22148,21293,20437,19681,18978,18332,17775,17323,16910,16605,16329,16178,16053,16027,16037,16117,16289,16517,16820,17186,17598,18091,18654,19267,19908,20600,21337,22049,22797,23511,24219,24882,25461,26032,26445,26777,27011,27123,27142,27045,26845,26512,26104,25637,25053,24461,23819,23173,22533,21869,21241,20632,20041,19481,18994,18530,18137,17753,17429,17138,16869,16628,16429,16221,16043,15834,15650,15477,15339,15235,15126,15068,14994,14957,14945,14953,14938,14976,14989,15017,15058,15093,15132,15195,15220,15236,15241,15232,15263,15276,15284,15260,15214,15149,15083,15009,14945,14841,14697,14562,14379,14205,13989,13769,13538,13277,13006,12728,12424,12138,11841,11538,11297,11044,10801,10567,10288,9986,9677,9368,9088,8845,8625,8437,8290,8150,8055,7988,7912,7850,7783,7697,7573,7405,7247,7111,7003,6903,6809,6743,6685,6644,6637,6632,6622,6603,6619,6612,6471,6173,5734,5107,21.2,21.4,22.0,1568285,0.0,12.3,12.0,5.0,458,-1.00,-1.00,56.9399,-18.654828,0.000631,,,,,10 +SATSLF0720,2024246,12.262934,4.22,0.0591,0.1046,0.0190,0.00,16102,640,1,692,681,691,695,708,709,708,713,727,724,723,745,774,887,1227,1977,3165,4537,5776,6689,7322,7781,8215,8645,9169,9778,10522,11392,12371,13477,14645,15806,16934,17872,18606,19041,19178,18997,18621,18090,17477,16921,16476,16113,15880,15817,15895,16138,16537,17126,17867,18775,19843,21050,22383,23834,25313,26789,28195,29447,30440,31202,31585,31586,31232,30606,29673,28627,27377,26223,25069,23973,22972,22101,21395,20782,20293,19885,19605,19459,19368,19383,19465,19670,19933,20293,20718,21237,21789,22412,23076,23722,24324,24901,25384,25732,25994,26054,25927,25652,25178,24541,23825,23018,22155,21265,20447,19662,18962,18329,17775,17298,16893,16580,16320,16148,16063,16029,16042,16160,16304,16529,16824,17184,17607,18104,18670,19280,19905,20595,21320,22054,22804,23521,24222,24888,25467,26026,26463,26774,27015,27117,27147,27050,26842,26505,26117,25638,25064,24469,23837,23189,22545,21869,21242,20641,20034,19480,19003,18522,18117,17736,17404,17140,16866,16620,16424,16237,16034,15846,15672,15490,15341,15229,15125,15056,14976,14942,14909,14918,14933,14958,14994,15034,15074,15100,15153,15191,15206,15220,15230,15237,15256,15285,15278,15256,15203,15146,15082,15020,14933,14850,14708,14566,14386,14193,13978,13767,13523,13253,12997,12713,12414,12128,11833,11541,11254,11021,10781,10546,10283,9997,9661,9349,9079,8821,8612,8443,8288,8143,8057,7981,7913,7859,7789,7707,7552,7391,7229,7116,6993,6890,6805,6734,6683,6647,6638,6628,6606,6603,6624,6628,6460,6149,5735,5115,21.2,21.4,22.0,1568286,0.0,12.4,11.9,5.0,472,-1.00,-1.00,57.0779,-18.713823,0.000616,,,,,87 +SATSLF0720,2024246,12.263188,4.33,0.0606,0.1045,0.0184,0.00,16107,640,1,693,711,701,705,705,703,713,693,710,713,721,733,777,880,1227,1977,3154,4527,5750,6674,7313,7765,8195,8631,9169,9773,10509,11385,12368,13491,14660,15826,16922,17881,18594,19031,19165,18988,18617,18094,17482,16939,16477,16116,15889,15821,15893,16122,16551,17124,17879,18782,19858,21072,22389,23835,25313,26785,28213,29457,30439,31184,31581,31578,31262,30612,29700,28617,27404,26220,25065,23989,22985,22125,21381,20772,20294,19913,19613,19462,19370,19388,19476,19677,19940,20281,20709,21225,21786,22416,23080,23719,24330,24900,25373,25741,26017,26074,25946,25670,25197,24569,23849,23049,22169,21297,20457,19682,18977,18328,17773,17313,16903,16589,16330,16161,16067,16034,16045,16126,16305,16520,16834,17181,17614,18097,18662,19291,19926,20612,21330,22073,22816,23541,24243,24910,25491,26057,26483,26794,27031,27142,27161,27051,26843,26513,26128,25624,25059,24478,23838,23211,22545,21881,21249,20645,20033,19488,19000,18520,18133,17757,17435,17151,16869,16648,16445,16244,16026,15851,15661,15496,15361,15243,15151,15072,14995,14964,14937,14941,14944,14977,14992,15037,15069,15090,15140,15208,15209,15223,15244,15241,15264,15267,15287,15273,15220,15159,15101,15036,14949,14861,14722,14581,14407,14197,14002,13772,13527,13275,13013,12726,12436,12125,11827,11551,11269,11024,10786,10544,10279,9981,9656,9357,9078,8828,8644,8461,8298,8171,8053,7973,7915,7848,7784,7685,7545,7373,7229,7105,7003,6909,6816,6739,6685,6656,6628,6633,6597,6597,6617,6619,6461,6165,5738,5121,21.2,21.4,22.0,1568287,0.0,12.3,11.9,5.0,472,-1.00,-1.00,56.7851,-18.596560,0.000571,,,,,98 +SATSLF0720,2024246,12.263439,4.17,0.0584,0.1044,0.0186,0.00,16107,640,1,697,702,707,709,713,718,710,715,705,710,716,729,762,890,1226,1980,3173,4536,5780,6677,7314,7772,8192,8629,9144,9773,10517,11389,12377,13502,14664,15821,16932,17883,18614,19039,19179,18998,18624,18091,17500,16933,16473,16113,15882,15805,15899,16133,16552,17133,17874,18786,19833,21061,22379,23822,25298,26784,28194,29450,30443,31195,31581,31573,31259,30601,29688,28636,27402,26222,25054,23979,22977,22111,21383,20781,20297,19909,19624,19470,19377,19385,19470,19661,19929,20269,20711,21214,21785,22413,23080,23720,24333,24906,25370,25739,26005,26059,25943,25659,25188,24553,23842,23028,22184,21309,20468,19697,18996,18342,17780,17314,16901,16597,16333,16173,16071,16033,16040,16139,16305,16540,16822,17205,17611,18103,18665,19271,19905,20587,21317,22058,22797,23514,24219,24886,25472,26043,26469,26791,27041,27138,27152,27058,26850,26496,26123,25623,25058,24480,23847,23197,22544,21882,21261,20645,20049,19493,19008,18532,18118,17758,17431,17135,16875,16641,16437,16235,16042,15843,15662,15485,15341,15223,15116,15053,14982,14951,14953,14922,14951,14978,14993,15031,15091,15112,15154,15217,15221,15232,15243,15236,15266,15293,15288,15280,15229,15168,15095,15035,14951,14848,14724,14565,14389,14209,13995,13781,13526,13264,13011,12714,12421,12122,11827,11559,11284,11039,10795,10561,10296,9985,9668,9369,9073,8833,8614,8444,8291,8161,8059,7989,7920,7867,7789,7709,7575,7386,7243,7115,6993,6905,6821,6743,6689,6653,6630,6617,6613,6601,6618,6621,6470,6165,5728,5113,21.2,21.4,22.1,1568288,0.3,12.3,12.0,5.0,472,-1.00,-1.00,57.2513,-18.788285,0.000538,,,,,93 +SATSLF0720,2024246,12.263694,4.20,0.0588,0.1069,0.0207,0.00,16022,640,1,722,717,709,727,717,704,706,706,717,715,723,734,767,883,1227,1971,3139,4519,5731,6635,7265,7741,8155,8598,9118,9729,10453,11312,12296,13407,14584,15725,16834,17771,18499,18933,19072,18885,18508,17986,17397,16827,16387,16023,15790,15720,15809,16049,16457,17033,17766,18670,19731,20934,22262,23693,25141,26635,28036,29270,30266,30996,31388,31387,31075,30429,29511,28455,27255,26070,24910,23837,22837,22000,21271,20674,20181,19794,19501,19362,19268,19274,19373,19561,19821,20169,20605,21125,21670,22287,22954,23589,24202,24791,25253,25617,25870,25934,25798,25511,25048,24409,23689,22905,22035,21180,20353,19586,18888,18252,17698,17229,16820,16501,16250,16075,15991,15936,15962,16057,16231,16445,16740,17096,17522,18010,18573,19185,19815,20493,21216,21959,22695,23405,24097,24756,25353,25893,26321,26650,26893,26978,26995,26914,26701,26376,25981,25511,24957,24354,23732,23095,22414,21779,21145,20529,19948,19389,18889,18423,18016,17668,17345,17047,16787,16559,16353,16146,15950,15762,15588,15413,15291,15165,15070,14985,14910,14881,14870,14849,14864,14885,14917,14952,14990,15028,15063,15125,15125,15143,15146,15157,15173,15202,15208,15196,15153,15093,15025,14955,14850,14779,14632,14487,14314,14116,13910,13699,13449,13196,12941,12656,12370,12086,11787,11499,11243,10986,10731,10513,10253,9942,9626,9305,9024,8790,8588,8394,8246,8125,8017,7938,7861,7824,7758,7668,7538,7367,7206,7095,6981,6878,6803,6729,6677,6633,6612,6597,6581,6589,6608,6596,6448,6146,5739,5105,21.2,21.4,22.1,1568289,0.0,12.3,12.0,5.0,473,-1.00,-1.00,57.3756,-18.731438,0.000525,,,,,195 +SATSLF0720,2024246,12.263947,4.25,0.0595,0.1056,0.0192,0.00,16074,640,1,698,697,711,697,705,706,708,715,730,712,715,735,778,895,1229,1981,3155,4517,5742,6657,7291,7769,8185,8630,9142,9757,10489,11362,12339,13450,14620,15779,16900,17834,18564,18992,19134,18946,18562,18026,17443,16889,16443,16066,15844,15769,15860,16095,16494,17083,17824,18743,19800,21018,22321,23767,25234,26717,28123,29371,30368,31092,31499,31498,31179,30537,29611,28557,27319,26142,24983,23907,22919,22072,21325,20726,20241,19874,19577,19421,19322,19339,19437,19611,19891,20228,20653,21179,21730,22363,23018,23669,24277,24848,25319,25694,25937,25993,25874,25600,25122,24500,23773,22989,22126,21254,20418,19638,18934,18295,17729,17275,16873,16549,16315,16141,16036,16000,16016,16104,16270,16492,16785,17160,17584,18061,18637,19245,19897,20556,21295,22033,22770,23483,24171,24835,25425,25992,26425,26746,26976,27085,27101,27010,26794,26469,26069,25577,25015,24426,23778,23147,22491,21830,21209,20593,20003,19469,18965,18499,18085,17725,17406,17123,16855,16613,16410,16202,16010,15808,15626,15460,15309,15207,15109,15038,14973,14917,14907,14912,14922,14944,14966,14996,15031,15086,15126,15163,15182,15201,15203,15223,15240,15254,15254,15241,15202,15137,15074,15010,14926,14835,14677,14534,14365,14177,13974,13759,13531,13248,12986,12705,12403,12115,11827,11529,11263,11019,10781,10553,10272,9981,9658,9349,9053,8817,8610,8442,8281,8151,8051,7981,7910,7841,7776,7706,7565,7386,7237,7117,6993,6907,6805,6759,6685,6651,6624,6627,6602,6605,6621,6606,6458,6165,5724,5102,21.2,21.4,22.1,1568290,0.0,12.3,12.0,5.0,469,-1.00,-1.00,57.1077,-18.679966,0.000582,,,,,97 +SATSLF0720,2024246,12.264198,4.33,0.0606,0.1058,0.0190,0.00,16069,640,1,699,705,701,709,705,723,718,729,722,722,729,733,761,879,1207,1967,3134,4512,5733,6654,7287,7756,8174,8622,9128,9747,10490,11349,12333,13444,14617,15769,16882,17830,18548,18981,19102,18923,18538,18011,17428,16873,16422,16057,15830,15755,15846,16085,16500,17080,17832,18729,19780,20983,22313,23756,25227,26679,28103,29355,30360,31098,31506,31501,31173,30513,29597,28536,27312,26126,24962,23892,22908,22061,21321,20711,20241,19857,19570,19412,19315,19330,19438,19632,19895,20246,20674,21165,21732,22354,23003,23654,24265,24845,25312,25684,25965,25993,25888,25600,25141,24508,23786,22980,22113,21242,20406,19629,18937,18297,17730,17271,16869,16546,16302,16119,16019,15981,16000,16104,16242,16499,16784,17143,17571,18075,18619,19248,19876,20557,21280,22016,22769,23475,24190,24837,25425,25984,26393,26732,26961,27081,27084,26988,26775,26457,26069,25575,25021,24422,23799,23154,22498,21838,21213,20584,19997,19441,18960,18469,18067,17717,17397,17092,16842,16620,16416,16206,16009,15831,15648,15461,15335,15210,15106,15051,14969,14925,14919,14922,14920,14941,14968,15008,15046,15066,15120,15173,15185,15191,15213,15227,15243,15267,15261,15259,15198,15131,15083,15002,14909,14827,14684,14540,14363,14177,13973,13761,13518,13246,12979,12712,12413,12125,11833,11552,11264,11015,10765,10531,10272,9968,9643,9341,9067,8814,8623,8432,8293,8149,8055,7982,7910,7842,7787,7696,7540,7370,7226,7100,6995,6891,6795,6759,6702,6648,6639,6615,6602,6587,6621,6609,6463,6149,5731,5117,21.2,21.5,22.1,1568291,0.0,12.3,11.9,5.0,475,-1.00,-1.00,57.1424,-18.687104,0.000591,,,,,127 +SATSLF0720,2024246,12.264453,4.26,0.0596,0.1059,0.0193,0.00,16069,640,1,689,689,699,689,703,705,704,703,707,717,719,720,771,882,1237,1979,3159,4522,5757,6658,7296,7752,8171,8610,9141,9749,10485,11359,12347,13459,14637,15786,16893,17849,18560,18994,19121,18956,18567,18043,17447,16890,16438,16066,15849,15769,15837,16103,16506,17092,17819,18736,19808,21012,22321,23770,25228,26715,28119,29356,30345,31095,31496,31489,31154,30519,29610,28546,27321,26141,24983,23933,22918,22069,21336,20706,20230,19838,19569,19402,19310,19326,19429,19612,19869,20232,20660,21178,21758,22365,23037,23685,24295,24857,25333,25686,25937,25994,25861,25598,25120,24485,23771,22984,22112,21246,20407,19633,18940,18292,17722,17267,16860,16553,16311,16130,16034,15997,16011,16093,16255,16487,16775,17151,17575,18064,18635,19229,19872,20557,21280,22017,22752,23485,24181,24829,25424,25976,26416,26740,26972,27089,27096,27003,26776,26456,26070,25556,25002,24421,23787,23140,22497,21832,21204,20596,19991,19456,18953,18487,18071,17718,17389,17095,16819,16584,16403,16193,16009,15817,15633,15464,15333,15224,15124,15035,14977,14921,14903,14909,14913,14940,14957,14981,15043,15064,15114,15172,15178,15185,15201,15217,15221,15264,15258,15237,15199,15138,15073,15002,14919,14822,14668,14532,14355,14155,13958,13758,13501,13256,12984,12701,12401,12108,11814,11532,11262,11008,10764,10545,10269,9968,9636,9336,9053,8804,8594,8423,8273,8144,8043,7979,7906,7847,7779,7683,7552,7373,7228,7092,6987,6891,6806,6740,6677,6641,6627,6605,6599,6602,6605,6589,6455,6151,5723,5096,21.3,21.5,22.1,1568292,0.1,12.3,12.0,5.0,469,-1.00,-1.00,56.9053,-18.591271,0.000545,,,,,249 +SATSDF0720,2024246,12.509138,0.00,0.0000,0.0000,0.0000,0.00,640,0,1,629,601,615,617,625,617,620,614,626,618,629,600,604,612,598,621,618,639,629,627,636,629,629,659,657,657,649,645,653,645,657,649,649,642,649,651,659,658,664,645,642,644,644,656,646,634,631,637,640,643,631,647,638,643,651,641,638,640,632,643,642,630,646,642,653,652,654,649,647,653,662,651,643,638,634,643,644,637,638,637,657,646,641,647,652,640,653,648,645,649,645,632,651,645,631,637,641,634,641,640,653,648,649,651,634,643,630,633,633,639,635,642,654,649,653,648,651,641,642,629,630,619,632,629,635,643,637,636,624,632,633,637,636,641,649,641,651,653,641,640,645,617,635,634,624,635,646,640,641,649,645,641,649,654,645,637,629,640,638,631,638,625,630,637,629,630,635,644,637,656,645,654,652,665,646,643,643,634,639,630,642,646,638,647,649,652,642,641,641,659,656,648,651,663,628,639,635,629,626,639,650,641,655,644,639,635,618,635,632,632,631,647,637,631,637,637,640,640,651,643,650,643,654,641,633,647,643,634,640,634,640,640,638,638,635,651,649,642,644,629,643,640,645,637,635,653,658,646,647,635,645,636,636,637,643,471,0.0,0.0,0.0,1568291,0.2,13.2,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,193 +SATSLF0720,2024246,12.509693,4.15,0.0581,0.1011,0.0163,0.00,16205,640,1,701,692,703,700,697,699,705,720,717,715,721,717,778,893,1227,1986,3171,4552,5781,6702,7340,7819,8240,8682,9194,9815,10562,11452,12457,13561,14765,15921,17047,18008,18746,19187,19322,19139,18752,18223,17618,17054,16596,16222,16002,15922,16003,16259,16666,17261,18009,18924,19989,21218,22553,24004,25489,26976,28405,29667,30690,31409,31819,31825,31489,30837,29914,28848,27613,26428,25249,24168,23160,22296,21557,20950,20461,20065,19772,19621,19516,19541,19642,19837,20082,20435,20858,21387,21965,22570,23232,23880,24498,25074,25555,25914,26186,26233,26111,25821,25332,24699,23970,23184,22306,21426,20569,19789,19092,18448,17876,17405,16998,16680,16448,16273,16165,16119,16126,16223,16385,16604,16914,17285,17710,18199,18779,19389,20033,20725,21459,22194,22948,23663,24381,25028,25640,26205,26642,26961,27205,27302,27328,27236,27024,26694,26280,25787,25222,24622,23975,23335,22683,22009,21380,20759,20165,19604,19118,18635,18233,17863,17539,17250,16964,16725,16526,16327,16128,15917,15747,15573,15430,15323,15226,15159,15070,15044,15013,15028,15026,15045,15070,15093,15141,15161,15221,15282,15285,15303,15316,15304,15319,15351,15348,15351,15295,15229,15172,15098,15014,14916,14781,14630,14448,14253,14048,13835,13592,13318,13062,12769,12483,12197,11896,11595,11325,11067,10844,10613,10333,10039,9705,9397,9106,8866,8645,8469,8325,8199,8099,8026,7943,7895,7831,7742,7595,7420,7265,7135,7029,6932,6834,6773,6723,6698,6670,6665,6627,6629,6645,6629,6473,6163,5755,5130,21.2,21.2,21.6,1568292,0.1,12.7,12.0,5.0,575,-1.00,-1.00,57.1080,-18.868610,0.000544,,,,,92 +SATSLF0720,2024246,12.509874,4.17,0.0584,0.1004,0.0161,0.00,16223,640,1,680,683,683,689,681,687,711,720,725,705,718,717,761,867,1223,1975,3165,4544,5788,6716,7355,7829,8260,8704,9229,9865,10596,11475,12495,13613,14812,15981,17093,18053,18761,19210,19345,19183,18802,18253,17657,17098,16621,16279,16034,15949,16033,16274,16689,17281,18042,18941,20023,21252,22592,24037,25530,27015,28455,29718,30731,31473,31870,31867,31538,30870,29953,28887,27637,26468,25304,24204,23186,22328,21584,20966,20485,20088,19803,19639,19549,19554,19659,19846,20097,20451,20896,21408,21995,22610,23287,23925,24535,25108,25579,25953,26221,26261,26140,25859,25395,24738,24021,23220,22345,21463,20593,19830,19128,18464,17905,17438,17025,16699,16439,16277,16165,16123,16153,16245,16421,16648,16939,17318,17733,18235,18789,19413,20058,20743,21478,22242,22965,23691,24408,25072,25660,26235,26660,26981,27237,27350,27341,27255,27051,26708,26306,25798,25243,24656,24019,23360,22709,22032,21399,20772,20182,19613,19131,18646,18235,17880,17546,17257,16980,16744,16529,16318,16129,15937,15749,15592,15456,15330,15239,15170,15095,15061,15036,15013,15043,15064,15083,15113,15159,15190,15229,15285,15304,15314,15312,15323,15348,15369,15355,15363,15298,15243,15177,15101,15020,14910,14784,14622,14443,14259,14047,13838,13607,13338,13072,12774,12487,12193,11900,11621,11346,11088,10849,10613,10328,10033,9702,9394,9108,8868,8673,8489,8318,8199,8122,8029,7968,7893,7833,7737,7589,7408,7254,7132,7007,6913,6839,6778,6713,6697,6666,6645,6635,6632,6651,6646,6503,6181,5754,5133,21.2,21.2,21.7,1568293,0.0,12.7,12.0,5.0,475,-1.00,-1.00,56.6893,-18.720101,0.000567,,,,,62 +SATSLF0720,2024246,12.510129,4.10,0.0575,0.1006,0.0161,0.00,16224,640,1,676,695,685,679,699,702,716,705,712,731,721,723,755,882,1229,1988,3174,4583,5813,6747,7366,7857,8282,8730,9242,9870,10624,11505,12506,13633,14823,16004,17133,18089,18810,19232,19389,19189,18825,18277,17667,17098,16645,16266,16047,15966,16057,16297,16710,17286,18042,18960,20042,21269,22592,24053,25565,27045,28470,29719,30743,31490,31897,31893,31574,30901,29977,28908,27664,26465,25285,24212,23205,22333,21584,20966,20473,20078,19798,19636,19541,19561,19666,19851,20115,20468,20906,21425,21973,22587,23270,23911,24525,25111,25579,25949,26218,26262,26137,25873,25389,24742,24011,23214,22318,21443,20593,19833,19120,18464,17901,17421,17003,16689,16439,16266,16169,16117,16141,16230,16405,16635,16933,17304,17738,18222,18807,19413,20059,20735,21475,22217,22949,23671,24390,25048,25644,26226,26645,26976,27216,27313,27341,27248,27043,26711,26309,25805,25234,24642,23994,23342,22695,22025,21381,20781,20178,19625,19120,18659,18249,17868,17548,17253,16971,16739,16538,16329,16142,15936,15751,15589,15443,15331,15234,15148,15080,15040,15012,15001,15021,15034,15063,15092,15154,15171,15227,15285,15290,15310,15310,15320,15337,15357,15362,15349,15315,15242,15177,15101,15012,14907,14779,14619,14461,14263,14057,13846,13607,13331,13067,12778,12477,12189,11889,11601,11334,11078,10840,10602,10330,10034,9711,9394,9111,8856,8646,8472,8323,8187,8081,8002,7943,7899,7826,7751,7597,7423,7274,7134,7021,6921,6828,6761,6715,6686,6676,6661,6645,6653,6673,6666,6482,6182,5752,5128,21.2,21.2,21.7,1568294,0.0,12.7,12.0,5.0,455,-1.00,-1.00,56.7525,-18.758928,0.000582,,,,,159 +SATSLF0720,2024246,12.510385,4.20,0.0588,0.1010,0.0156,0.00,16219,640,1,699,704,695,700,695,713,725,715,735,734,733,729,775,881,1217,1987,3170,4557,5792,6711,7367,7834,8263,8701,9219,9863,10612,11489,12505,13609,14795,15958,17079,18042,18766,19205,19353,19150,18775,18227,17650,17089,16617,16237,16011,15944,16041,16270,16685,17260,18023,18944,20029,21242,22564,24013,25509,27003,28432,29685,30706,31458,31866,31853,31518,30859,29931,28869,27627,26432,25272,24188,23168,22317,21574,20949,20471,20065,19787,19633,19522,19533,19637,19829,20096,20437,20870,21416,21969,22589,23260,23911,24531,25098,25579,25946,26212,26246,26130,25859,25365,24726,23993,23184,22320,21448,20589,19829,19128,18457,17914,17426,17002,16691,16455,16264,16175,16109,16137,16223,16402,16630,16919,17303,17723,18219,18795,19411,20048,20728,21458,22208,22949,23681,24394,25052,25655,26221,26641,26967,27223,27312,27331,27237,27021,26706,26293,25802,25222,24653,23993,23361,22678,22021,21389,20779,20168,19619,19138,18629,18240,17851,17532,17244,16968,16737,16544,16330,16133,15954,15753,15595,15450,15350,15241,15163,15101,15053,15020,15016,15008,15037,15072,15124,15150,15199,15234,15294,15298,15306,15306,15321,15341,15357,15359,15342,15307,15254,15196,15105,15027,14922,14786,14629,14472,14273,14069,13849,13599,13346,13073,12800,12488,12189,11893,11602,11348,11072,10841,10613,10355,10037,9718,9402,9131,8860,8647,8477,8322,8192,8097,8027,7952,7906,7841,7754,7624,7429,7275,7145,7037,6942,6873,6794,6741,6693,6662,6669,6633,6627,6634,6647,6491,6189,5766,5134,21.2,21.2,21.8,1568295,0.2,12.7,11.9,5.0,462,-1.00,-1.00,56.6622,-18.697050,0.000577,,,,,102 +SATSLF0720,2024246,12.510642,4.09,0.0573,0.1014,0.0162,0.00,16202,640,1,701,705,698,711,714,720,712,722,713,715,715,725,769,886,1223,1992,3177,4557,5803,6743,7374,7829,8247,8691,9216,9848,10595,11451,12462,13575,14766,15941,17069,18016,18753,19189,19318,19140,18757,18227,17624,17040,16585,16215,16004,15931,16005,16269,16653,17255,17995,18907,19979,21207,22537,23997,25489,26965,28403,29646,30662,31401,31815,31808,31477,30823,29909,28829,27607,26413,25246,24148,23141,22267,21543,20916,20447,20053,19773,19602,19506,19536,19610,19810,20084,20405,20845,21367,21939,22563,23237,23882,24489,25076,25543,25910,26164,26232,26110,25821,25344,24696,23973,23161,22282,21420,20579,19795,19097,18454,17874,17402,16992,16669,16422,16245,16162,16118,16139,16221,16386,16613,16919,17288,17705,18203,18775,19399,20038,20721,21463,22201,22951,23661,24363,25030,25609,26167,26595,26939,27185,27289,27304,27208,26999,26676,26281,25786,25213,24626,23986,23338,22670,21999,21373,20748,20140,19601,19101,18626,18217,17846,17515,17227,16960,16717,16512,16310,16125,15933,15746,15573,15432,15309,15210,15147,15084,15042,15013,15015,15022,15042,15076,15100,15145,15179,15219,15285,15305,15310,15315,15316,15317,15335,15344,15341,15282,15223,15176,15094,15009,14912,14768,14626,14445,14246,14034,13837,13606,13329,13069,12798,12496,12202,11888,11605,11317,11084,10834,10593,10323,10034,9710,9395,9117,8854,8651,8481,8317,8193,8087,8015,7945,7885,7824,7747,7593,7420,7257,7152,7025,6935,6837,6779,6733,6685,6645,6655,6632,6627,6653,6650,6490,6169,5751,5146,21.2,21.2,21.8,1568296,0.0,12.7,11.9,5.0,463,-1.00,-1.00,57.1457,-18.876144,0.000547,,,,,137 +SATSLF0720,2024246,12.510897,4.08,0.0571,0.1027,0.0177,0.00,16141,640,1,693,688,703,702,691,689,705,697,706,711,732,717,756,871,1214,1961,3137,4531,5746,6663,7306,7781,8204,8638,9169,9781,10542,11397,12407,13492,14695,15850,16971,17918,18651,19086,19217,19029,18662,18118,17517,16960,16498,16132,15899,15842,15933,16157,16581,17160,17901,18821,19898,21114,22422,23895,25350,26850,28270,29520,30536,31272,31668,31669,31347,30685,29779,28714,27477,26300,25136,24052,23063,22194,21465,20842,20353,19981,19694,19526,19447,19454,19546,19731,19986,20337,20760,21283,21849,22468,23144,23778,24394,24977,25457,25810,26081,26118,26000,25733,25264,24621,23897,23084,22209,21356,20493,19744,19029,18376,17815,17360,16933,16629,16381,16206,16107,16057,16084,16162,16321,16553,16853,17206,17648,18146,18711,19338,19984,20661,21384,22145,22893,23576,24286,24955,25547,26104,26530,26853,27096,27194,27214,27124,26916,26587,26210,25704,25129,24551,23899,23242,22581,21936,21289,20682,20091,19540,19044,18566,18171,17806,17461,17185,16921,16672,16450,16251,16061,15867,15683,15532,15397,15285,15172,15104,15015,14971,14971,14958,14972,14989,15031,15073,15106,15133,15180,15223,15237,15242,15262,15253,15275,15304,15308,15291,15257,15194,15125,15071,14974,14861,14737,14565,14403,14212,14017,13802,13552,13300,13017,12737,12448,12149,11837,11571,11281,11037,10794,10570,10298,10010,9681,9383,9089,8851,8637,8465,8307,8183,8065,7979,7902,7861,7789,7713,7546,7390,7240,7120,6994,6909,6836,6765,6709,6673,6650,6634,6607,6610,6625,6620,6472,6145,5724,5101,21.2,21.2,21.8,1568297,0.1,12.7,11.9,5.0,463,-1.00,-1.00,58.0671,-19.178848,0.000620,,,,,70 +SATSLF0720,2024246,12.511150,4.22,0.0591,0.1025,0.0167,0.00,16167,640,1,689,685,674,675,679,698,704,699,695,705,715,721,767,883,1237,1978,3163,4545,5764,6675,7319,7773,8211,8658,9200,9813,10554,11437,12430,13547,14717,15892,16994,17955,18684,19109,19255,19060,18692,18176,17585,17019,16545,16189,15955,15878,15954,16211,16609,17203,17949,18864,19937,21147,22480,23936,25409,26909,28325,29578,30599,31345,31735,31744,31421,30756,29826,28778,27528,26326,25173,24086,23088,22234,21497,20885,20397,20005,19727,19576,19458,19472,19571,19761,20032,20375,20805,21322,21879,22510,23166,23821,24423,25015,25497,25857,26126,26184,26056,25780,25293,24665,23941,23117,22257,21389,20540,19772,19069,18410,17837,17384,16949,16651,16377,16219,16128,16066,16098,16179,16344,16580,16881,17245,17669,18171,18742,19345,20000,20678,21399,22154,22901,23617,24322,24987,25568,26141,26571,26890,27136,27250,27257,27176,26952,26628,26224,25738,25170,24561,23937,23290,22632,21975,21341,20740,20138,19556,19074,18596,18194,17824,17495,17216,16930,16695,16477,16284,16074,15891,15703,15531,15400,15277,15178,15109,15050,15004,14987,14983,14990,15013,15031,15068,15114,15137,15201,15246,15266,15277,15285,15284,15305,15323,15306,15307,15264,15205,15157,15080,14993,14903,14760,14592,14425,14214,14007,13803,13554,13297,13048,12756,12451,12175,11882,11592,11309,11061,10821,10581,10313,10007,9690,9365,9088,8852,8642,8455,8309,8178,8085,8005,7938,7890,7821,7732,7582,7411,7243,7120,7003,6911,6821,6762,6711,6670,6655,6645,6633,6617,6645,6633,6486,6173,5740,5108,21.2,21.2,21.8,1568298,0.2,12.8,12.0,5.0,457,-1.00,-1.00,57.1189,-18.820755,0.000591,,,,,25 +SATSLF0720,2024246,12.511406,4.12,0.0577,0.1021,0.0173,0.00,16184,640,1,708,708,691,705,704,699,703,705,725,721,723,735,783,881,1229,1973,3162,4560,5804,6714,7365,7824,8246,8689,9225,9830,10600,11469,12453,13566,14749,15927,17035,18007,18729,19169,19288,19111,18726,18188,17592,17019,16562,16185,15971,15906,15984,16241,16642,17230,17979,18881,19956,21179,22489,23947,25433,26922,28349,29610,30621,31380,31780,31780,31441,30791,29860,28778,27543,26365,25192,24114,23098,22247,21502,20899,20417,20029,19731,19569,19475,19495,19605,19785,20047,20409,20839,21361,21917,22529,23196,23843,24462,25041,25505,25877,26144,26193,26083,25814,25316,24695,23959,23164,22290,21411,20541,19781,19068,18431,17865,17408,16989,16667,16401,16229,16130,16084,16106,16215,16370,16610,16912,17269,17704,18190,18769,19361,20010,20682,21408,22153,22895,23619,24333,25006,25577,26152,26589,26914,27170,27280,27281,27194,26970,26641,26237,25744,25172,24597,23957,23309,22642,21968,21338,20729,20125,19565,19082,18606,18199,17831,17490,17203,16933,16710,16505,16305,16113,15928,15746,15573,15428,15301,15215,15124,15049,15010,14990,14981,14993,15021,15048,15097,15127,15164,15221,15281,15278,15303,15301,15302,15317,15341,15344,15318,15266,15206,15139,15080,14992,14903,14755,14612,14451,14261,14039,13838,13589,13333,13057,12784,12481,12183,11879,11597,11317,11073,10823,10591,10331,10023,9709,9397,9106,8864,8638,8473,8314,8161,8070,7998,7927,7878,7825,7741,7589,7421,7257,7125,7007,6917,6837,6771,6723,6686,6664,6654,6648,6631,6635,6645,6489,6189,5749,5124,21.2,21.2,21.9,1568299,0.0,12.7,12.0,5.0,452,-1.00,-1.00,57.1536,-18.851805,0.000590,,,,,79 +SATSLF0720,2024246,12.511660,4.17,0.0584,0.1030,0.0179,0.00,16146,640,1,705,711,692,715,708,714,713,714,725,729,731,730,780,903,1226,1975,3141,4523,5768,6696,7314,7798,8211,8666,9186,9802,10553,11418,12410,13534,14717,15873,16997,17944,18670,19099,19237,19053,18673,18147,17538,16983,16534,16157,15933,15857,15938,16182,16594,17175,17936,18844,19898,21131,22453,23899,25383,26864,28289,29533,30529,31305,31697,31687,31361,30721,29781,28706,27489,26309,25136,24042,23031,22194,21454,20849,20347,19967,19687,19527,19437,19450,19560,19737,20006,20356,20779,21296,21853,22479,23141,23793,24389,24983,25453,25810,26074,26132,26019,25739,25264,24628,23892,23101,22227,21357,20506,19751,19030,18370,17810,17341,16941,16622,16370,16197,16103,16065,16098,16170,16346,16564,16873,17220,17658,18148,18712,19332,19959,20643,21373,22128,22866,23582,24293,24933,25523,26096,26521,26839,27080,27189,27191,27112,26886,26555,26165,25682,25124,24530,23882,23236,22581,21922,21303,20693,20101,19528,19043,18555,18151,17799,17459,17179,16917,16676,16455,16263,16077,15873,15714,15533,15394,15278,15170,15104,15025,14992,14969,14946,14968,14990,15029,15058,15084,15114,15173,15234,15234,15259,15266,15272,15293,15317,15305,15289,15259,15182,15118,15056,14973,14876,14740,14598,14419,14249,14009,13797,13538,13294,13024,12724,12430,12155,11856,11581,11302,11060,10822,10582,10309,10000,9675,9380,9077,8829,8625,8454,8298,8169,8074,7995,7936,7879,7815,7725,7567,7400,7244,7109,6989,6899,6817,6741,6703,6666,6642,6636,6631,6608,6631,6630,6491,6189,5765,5124,21.2,21.2,21.9,1568300,0.1,12.8,12.0,5.0,461,-1.00,-1.00,57.2416,-18.844276,0.000582,,,,,237 +SATSLF0720,2024246,12.511916,4.11,0.0575,0.1041,0.0185,0.00,16111,640,1,688,693,698,706,708,708,706,705,702,694,723,722,775,893,1230,1970,3151,4521,5757,6661,7282,7763,8181,8627,9147,9764,10517,11377,12382,13488,14664,15838,16938,17879,18611,19051,19181,19005,18625,18077,17497,16938,16454,16109,15883,15809,15884,16149,16564,17140,17883,18794,19841,21075,22389,23822,25291,26793,28196,29465,30462,31226,31613,31618,31278,30640,29712,28652,27431,26234,25079,23996,22990,22135,21400,20793,20309,19927,19637,19478,19390,19419,19500,19692,19944,20279,20717,21243,21801,22427,23064,23728,24349,24926,25403,25767,26038,26089,25971,25672,25203,24576,23822,23038,22178,21295,20455,19691,18990,18343,17776,17315,16908,16589,16346,16164,16072,16027,16034,16141,16314,16534,16826,17205,17624,18125,18690,19292,19910,20608,21335,22069,22822,23530,24238,24889,25486,26052,26485,26805,27048,27162,27162,27072,26869,26522,26124,25628,25073,24488,23844,23196,22550,21882,21251,20640,20058,19524,19008,18544,18147,17772,17448,17145,16880,16641,16444,16242,16038,15849,15653,15493,15354,15266,15157,15075,15011,14966,14951,14949,14943,14966,14989,15019,15063,15097,15146,15205,15211,15236,15234,15248,15264,15283,15272,15267,15200,15167,15098,15025,14930,14846,14705,14567,14384,14201,13994,13777,13527,13262,12997,12702,12421,12140,11833,11563,11277,11033,10800,10560,10295,9995,9685,9357,9079,8827,8614,8441,8290,8150,8054,7982,7918,7853,7779,7711,7561,7387,7229,7107,6983,6885,6805,6756,6703,6650,6635,6629,6613,6601,6617,6619,6472,6165,5736,5119,21.2,21.3,21.9,1568301,0.2,12.8,12.0,5.0,457,-1.00,-1.00,57.8650,-19.057324,0.000583,,,,,63 +SATSLF0720,2024246,12.512171,4.16,0.0583,0.1053,0.0206,0.00,16056,640,1,697,705,689,691,680,701,706,707,705,706,716,722,779,883,1221,1975,3152,4525,5764,6673,7304,7776,8192,8647,9163,9783,10535,11392,12385,13504,14680,15842,16949,17902,18600,19052,19192,18989,18626,18097,17492,16935,16477,16094,15874,15804,15889,16142,16538,17127,17883,18782,19819,21047,22366,23810,25291,26757,28180,29434,30414,31175,31557,31575,31234,30583,29652,28600,27369,26179,25020,23945,22949,22107,21373,20765,20282,19893,19598,19435,19337,19345,19449,19623,19895,20235,20674,21177,21750,22370,23009,23671,24278,24852,25333,25680,25947,26002,25888,25604,25121,24493,23777,22974,22104,21242,20410,19630,18925,18271,17723,17257,16845,16534,16277,16103,16007,15962,15994,16080,16246,16456,16747,17112,17545,18035,18606,19213,19847,20508,21242,21981,22728,23428,24147,24779,25363,25945,26360,26661,26909,27016,27029,26933,26727,26408,26004,25510,24962,24381,23756,23102,22459,21788,21163,20557,19957,19401,18922,18448,18044,17668,17350,17052,16793,16554,16354,16148,15962,15754,15573,15413,15283,15161,15065,14985,14913,14870,14845,14834,14857,14884,14909,14939,14980,15013,15067,15129,15133,15140,15144,15147,15174,15197,15189,15205,15136,15076,15027,14938,14849,14757,14606,14455,14286,14107,13907,13697,13445,13191,12917,12655,12356,12075,11776,11487,11221,10966,10736,10496,10235,9940,9613,9303,9024,8785,8569,8407,8253,8119,8013,7931,7853,7809,7736,7663,7535,7347,7197,7069,6956,6866,6773,6721,6660,6628,6597,6583,6565,6556,6581,6565,6432,6132,5703,5095,21.2,21.3,21.9,1568302,0.1,12.7,11.9,5.0,458,-1.00,-1.00,56.8029,-18.585515,0.000610,,,,,16 +SATSLF0720,2024246,12.512426,4.27,0.0598,0.1039,0.0175,0.00,16128,640,1,689,690,711,701,728,717,725,724,727,723,718,720,758,882,1221,1976,3155,4542,5773,6691,7320,7782,8201,8635,9153,9772,10521,11385,12376,13501,14676,15844,16957,17912,18640,19066,19202,19005,18633,18101,17511,16965,16481,16125,15892,15832,15919,16158,16566,17143,17902,18801,19867,21109,22406,23857,25343,26811,28249,29494,30481,31237,31624,31639,31288,30656,29732,28669,27424,26240,25066,24007,23005,22149,21421,20809,20330,19927,19651,19485,19395,19415,19516,19712,19981,20317,20755,21277,21832,22450,23106,23760,24357,24928,25419,25792,26058,26101,26000,25712,25225,24575,23867,23078,22228,21348,20485,19715,19015,18363,17805,17328,16934,16621,16362,16192,16097,16044,16071,16148,16322,16545,16853,17206,17630,18135,18694,19326,19952,20646,21357,22107,22839,23546,24265,24921,25513,26086,26513,26816,27058,27173,27193,27090,26869,26549,26150,25661,25100,24512,23885,23240,22589,21908,21280,20672,20068,19515,19037,18548,18156,17784,17456,17166,16902,16656,16451,16251,16068,15876,15689,15517,15373,15283,15165,15091,15015,14957,14941,14957,14961,14983,15010,15042,15077,15103,15158,15214,15226,15250,15246,15267,15277,15293,15298,15282,15235,15182,15130,15059,14961,14871,14730,14570,14393,14207,13985,13789,13540,13295,13031,12749,12440,12155,11856,11567,11289,11025,10795,10557,10289,10003,9666,9363,9083,8836,8624,8457,8281,8151,8052,7993,7911,7869,7805,7703,7581,7394,7245,7104,7015,6913,6827,6763,6699,6653,6653,6646,6628,6615,6629,6631,6461,6163,5737,5120,21.2,21.3,21.9,1568303,0.3,12.7,12.0,5.0,450,-1.00,-1.00,56.9881,-18.703707,0.000620,,,,,147 +SATSLF0720,2024246,12.512681,4.21,0.0589,0.1036,0.0174,0.00,16140,640,1,693,701,685,695,693,708,713,720,726,727,741,733,781,913,1245,1993,3173,4551,5779,6693,7333,7796,8218,8653,9176,9790,10539,11406,12398,13515,14694,15879,16979,17932,18649,19081,19224,19041,18661,18131,17538,16977,16512,16158,15930,15857,15945,16170,16561,17164,17906,18827,19901,21112,22453,23882,25367,26832,28243,29507,30508,31264,31664,31661,31333,30689,29769,28695,27453,26276,25109,24013,23028,22164,21445,20825,20339,19954,19671,19509,19408,19422,19515,19707,19992,20322,20759,21281,21856,22472,23133,23772,24376,24954,25438,25789,26071,26112,25995,25715,25243,24605,23889,23091,22226,21341,20500,19731,19019,18370,17813,17357,16937,16613,16363,16187,16099,16059,16067,16176,16343,16548,16841,17221,17644,18136,18698,19315,19948,20645,21364,22109,22848,23573,24279,24931,25523,26087,26528,26834,27081,27179,27206,27113,26896,26573,26161,25666,25105,24523,23892,23245,22596,21933,21310,20692,20093,19531,19037,18557,18151,17790,17465,17157,16915,16662,16469,16270,16058,15867,15706,15532,15374,15265,15171,15094,15023,14976,14963,14964,14981,15001,15027,15061,15097,15113,15164,15223,15239,15261,15265,15272,15277,15315,15314,15306,15257,15197,15136,15056,14962,14867,14742,14581,14413,14220,14018,13789,13559,13296,13011,12731,12442,12157,11860,11565,11307,11056,10810,10586,10304,10021,9699,9381,9091,8855,8626,8461,8296,8167,8071,7993,7916,7879,7805,7721,7579,7405,7241,7101,6997,6908,6824,6766,6711,6683,6648,6648,6642,6620,6636,6630,6487,6162,5741,5129,21.2,21.4,21.9,1568303,0.1,12.7,12.0,5.0,457,-1.00,-1.00,56.9634,-18.711417,0.000578,,,,,31 +SATSLF0720,2024246,12.512937,4.38,0.0613,0.1069,0.0203,0.00,16015,640,1,687,693,696,695,711,725,722,723,721,727,725,717,759,887,1230,1977,3140,4505,5717,6610,7243,7698,8105,8552,9049,9656,10408,11264,12259,13358,14516,15669,16770,17701,18423,18857,18987,18813,18443,17922,17326,16767,16329,15970,15744,15678,15751,16005,16409,16994,17725,18649,19693,20896,22216,23649,25114,26582,27993,29218,30224,30964,31357,31342,31012,30383,29473,28425,27208,26042,24874,23815,22837,21981,21235,20637,20161,19776,19501,19353,19269,19272,19369,19565,19825,20168,20581,21108,21660,22277,22929,23589,24189,24765,25241,25600,25859,25913,25797,25510,25033,24419,23709,22913,22038,21179,20340,19584,18875,18235,17678,17209,16802,16485,16246,16075,15975,15943,15956,16050,16215,16440,16733,17096,17521,18017,18586,19193,19825,20510,21226,21963,22707,23418,24107,24773,25356,25920,26346,26636,26901,26997,27017,26922,26714,26373,25997,25517,24953,24370,23724,23079,22443,21782,21154,20533,19948,19396,18912,18450,18045,17681,17347,17064,16802,16562,16367,16157,15962,15780,15590,15434,15291,15174,15077,15013,14930,14896,14875,14877,14883,14905,14935,14966,15001,15028,15089,15136,15140,15147,15172,15169,15191,15232,15221,15225,15165,15098,15038,14961,14866,14780,14649,14497,14342,14147,13933,13717,13470,13223,12945,12681,12378,12094,11786,11510,11233,10991,10750,10520,10245,9955,9629,9319,9021,8784,8568,8401,8248,8116,8027,7956,7901,7849,7776,7705,7557,7380,7223,7078,6962,6851,6775,6717,6661,6637,6635,6621,6605,6592,6605,6593,6436,6125,5700,5077,21.2,21.4,22.0,1568304,0.2,12.7,12.0,5.0,457,-1.00,-1.00,58.0017,-18.966947,0.000585,,,,,37 +SATSLF0720,2024246,12.513190,4.32,0.0605,0.1052,0.0185,0.00,16082,640,1,692,693,690,693,693,703,713,705,722,710,722,725,767,874,1226,1970,3143,4517,5741,6647,7295,7748,8174,8618,9131,9746,10496,11360,12340,13453,14624,15777,16881,17822,18546,18981,19104,18934,18557,18024,17434,16878,16441,16056,15849,15776,15856,16097,16493,17079,17828,18728,19799,21005,22328,23781,25257,26718,28147,29380,30385,31125,31508,31522,31194,30539,29618,28576,27338,26157,25002,23936,22929,22084,21355,20733,20256,19874,19604,19434,19340,19355,19447,19637,19902,20249,20693,21204,21763,22391,23052,23690,24299,24868,25351,25694,25972,26022,25907,25646,25158,24533,23816,23014,22137,21258,20420,19655,18957,18317,17760,17301,16885,16573,16327,16141,16042,15998,16020,16100,16274,16494,16785,17169,17597,18081,18656,19260,19896,20578,21309,22040,22784,23489,24192,24857,25443,26005,26440,26770,27001,27111,27106,27031,26813,26494,26098,25589,25053,24445,23821,23176,22527,21863,21224,20626,20024,19461,18983,18505,18103,17736,17389,17106,16839,16616,16420,16224,16030,15830,15640,15480,15337,15223,15111,15051,14977,14951,14917,14923,14929,14950,14969,15009,15044,15073,15131,15186,15195,15214,15226,15234,15253,15271,15265,15255,15211,15155,15098,15010,14924,14826,14684,14541,14365,14192,13961,13773,13525,13270,12986,12704,12409,12129,11821,11533,11267,11027,10772,10541,10271,9964,9657,9346,9059,8824,8601,8444,8275,8151,8047,7976,7898,7853,7789,7708,7565,7387,7236,7105,6984,6887,6802,6738,6681,6643,6629,6630,6613,6618,6632,6612,6451,6153,5713,5104,21.2,21.4,22.0,1568305,0.2,12.7,12.0,5.0,459,-1.00,-1.00,57.3668,-18.797227,0.000604,,,,,163 +SATSLF0720,2024246,12.513441,4.11,0.0576,0.1052,0.0194,0.00,16081,640,1,699,702,697,706,695,703,689,707,710,727,717,726,754,883,1219,1977,3145,4528,5753,6670,7301,7766,8187,8620,9159,9767,10517,11380,12368,13474,14659,15805,16926,17874,18594,19021,19166,18970,18585,18059,17467,16904,16449,16093,15877,15793,15865,16112,16515,17102,17835,18757,19817,21034,22359,23801,25275,26752,28178,29416,30420,31164,31564,31536,31210,30575,29665,28609,27365,26199,25024,23964,22949,22094,21354,20738,20262,19857,19595,19442,19342,19357,19456,19645,19898,20241,20673,21190,21760,22373,23029,23676,24289,24867,25344,25715,25973,26028,25909,25625,25142,24519,23805,23006,22128,21259,20433,19664,18961,18305,17747,17293,16885,16566,16302,16134,16034,15984,16008,16117,16277,16501,16797,17165,17598,18078,18641,19233,19876,20553,21291,22021,22761,23480,24167,24821,25408,25993,26415,26729,26970,27085,27105,27013,26793,26471,26083,25583,25024,24433,23806,23153,22505,21846,21218,20616,20021,19464,18971,18505,18104,17721,17389,17105,16834,16599,16403,16189,16006,15812,15621,15458,15323,15201,15115,15042,14967,14938,14902,14917,14920,14937,14952,14999,15040,15061,15115,15173,15177,15195,15194,15207,15239,15245,15245,15237,15189,15127,15067,15016,14914,14827,14683,14541,14368,14181,13965,13745,13504,13258,12978,12689,12403,12106,11795,11523,11266,11016,10772,10546,10265,9957,9646,9335,9063,8817,8605,8432,8283,8161,8061,7971,7900,7833,7769,7680,7547,7380,7215,7095,6993,6881,6799,6740,6679,6632,6625,6614,6599,6598,6612,6604,6461,6151,5731,5109,21.2,21.4,22.1,1568306,0.1,12.7,11.9,5.0,456,-1.00,-1.00,57.7692,-18.985288,0.000619,,,,,40 +SATSLF0720,2024246,12.513697,4.25,0.0595,0.1058,0.0196,0.00,16075,640,1,697,693,711,704,697,700,707,715,717,721,712,735,758,887,1226,1969,3141,4526,5764,6666,7307,7764,8178,8611,9136,9749,10495,11344,12343,13441,14633,15789,16890,17847,18577,18998,19123,18945,18574,18037,17449,16905,16439,16069,15843,15768,15850,16090,16514,17077,17815,18743,19801,21019,22340,23770,25243,26721,28131,29376,30373,31098,31507,31499,31185,30533,29606,28560,27328,26135,24977,23911,22921,22061,21337,20734,20244,19854,19577,19421,19314,19344,19441,19621,19899,20235,20666,21181,21749,22356,23012,23666,24281,24850,25332,25685,25947,26003,25892,25609,25137,24509,23783,22980,22115,21257,20421,19654,18952,18299,17744,17273,16869,16555,16308,16140,16027,16003,16009,16093,16271,16490,16790,17156,17577,18075,18634,19241,19869,20565,21285,22024,22766,23486,24186,24855,25433,25993,26427,26744,26981,27090,27090,27002,26794,26473,26066,25597,25024,24436,23796,23146,22510,21846,21210,20600,20012,19452,18974,18510,18096,17720,17399,17117,16849,16614,16408,16197,16011,15827,15655,15473,15329,15217,15121,15035,14967,14928,14905,14913,14928,14966,14985,15003,15041,15079,15128,15177,15191,15198,15217,15230,15241,15261,15264,15252,15198,15136,15061,15003,14909,14811,14690,14542,14365,14171,13975,13741,13504,13253,12989,12705,12414,12131,11843,11538,11258,11024,10773,10551,10293,9980,9649,9339,9063,8822,8602,8432,8278,8155,8066,7978,7894,7843,7779,7699,7549,7381,7227,7115,6998,6893,6805,6758,6693,6665,6644,6628,6623,6606,6605,6600,6445,6154,5717,5107,21.2,21.4,22.1,1568307,0.1,12.7,11.9,5.0,462,-1.00,-1.00,57.0699,-18.665927,0.000616,,,,,58 +SATSLF0720,2024246,12.513949,4.28,0.0599,0.1052,0.0186,0.00,16079,640,1,698,685,699,693,709,701,713,697,711,725,724,751,782,904,1243,1985,3168,4529,5751,6668,7293,7761,8180,8624,9133,9756,10498,11367,12369,13456,14624,15789,16900,17851,18589,18997,19131,18944,18580,18044,17454,16900,16438,16084,15848,15779,15853,16113,16524,17093,17842,18744,19802,21022,22333,23777,25253,26734,28156,29397,30389,31141,31531,31533,31189,30551,29637,28576,27349,26163,24999,23930,22928,22073,21344,20732,20245,19874,19592,19413,19339,19344,19443,19646,19901,20245,20660,21188,21751,22355,23047,23685,24307,24874,25337,25717,25981,26021,25904,25632,25138,24506,23799,23004,22141,21262,20420,19669,18951,18321,17757,17269,16872,16566,16316,16141,16029,15979,15998,16096,16259,16491,16781,17155,17590,18070,18646,19244,19886,20576,21300,22046,22772,23483,24185,24829,25425,25997,26413,26734,26981,27089,27093,27005,26778,26473,26068,25576,25009,24433,23789,23158,22498,21834,21205,20602,20001,19459,18973,18490,18087,17725,17394,17109,16855,16599,16407,16205,16010,15813,15618,15463,15318,15216,15116,15053,14969,14940,14924,14914,14926,14944,14969,14997,15038,15073,15125,15173,15189,15198,15218,15221,15248,15266,15257,15256,15197,15131,15096,15013,14916,14807,14679,14529,14354,14187,13965,13770,13511,13266,12989,12711,12414,12125,11836,11515,11263,11013,10780,10542,10282,9973,9671,9344,9070,8829,8617,8436,8291,8155,8050,7975,7898,7857,7799,7693,7551,7382,7242,7116,6991,6891,6813,6740,6690,6651,6635,6626,6605,6594,6618,6618,6453,6155,5733,5101,21.2,21.4,22.1,1568308,0.2,12.7,12.0,5.0,455,-1.00,-1.00,57.1824,-18.726152,0.000568,,,,,219 +SATSLF0720,2024246,12.514200,4.42,0.0620,0.1062,0.0194,0.00,16054,640,1,705,702,713,700,704,711,717,730,727,720,727,727,766,868,1205,1945,3136,4501,5733,6637,7280,7738,8165,8594,9106,9730,10473,11329,12310,13422,14589,15749,16851,17788,18509,18942,19061,18887,18528,17977,17403,16853,16378,16030,15801,15738,15819,16070,16485,17058,17794,18711,19758,20973,22294,23723,25195,26678,28084,29341,30321,31060,31461,31448,31121,30472,29559,28513,27285,26109,24952,23877,22884,22036,21305,20688,20215,19836,19566,19386,19298,19307,19402,19597,19861,20200,20629,21154,21731,22355,23018,23649,24260,24825,25309,25654,25915,25970,25854,25585,25118,24470,23757,22969,22114,21229,20407,19635,18930,18290,17733,17248,16848,16545,16277,16128,16021,15977,15995,16084,16253,16473,16775,17137,17569,18048,18626,19229,19851,20544,21280,22001,22733,23457,24153,24819,25413,25972,26388,26714,26951,27045,27077,26970,26774,26448,26043,25559,24997,24398,23771,23131,22483,21827,21189,20581,19973,19427,18939,18471,18080,17712,17399,17091,16842,16589,16383,16178,16002,15792,15616,15458,15309,15209,15105,15041,14950,14921,14898,14903,14889,14919,14947,14976,15028,15072,15113,15160,15179,15191,15197,15211,15222,15236,15253,15241,15184,15125,15070,14981,14899,14810,14675,14528,14352,14170,13957,13737,13505,13229,12961,12691,12403,12121,11805,11532,11257,11007,10762,10528,10261,9969,9645,9329,9060,8817,8601,8437,8253,8137,8036,7944,7888,7825,7782,7701,7547,7379,7225,7082,6979,6874,6787,6726,6666,6645,6625,6619,6608,6605,6613,6605,6440,6143,5709,5097,21.3,21.5,22.1,1568309,0.2,12.7,12.0,5.0,456,-1.00,-1.00,57.1343,-18.664217,0.000585,,,,,71 +SATSLF0720,2024246,12.514455,4.28,0.0599,0.1061,0.0192,0.00,16049,640,1,695,686,703,706,701,702,709,707,713,711,723,729,770,881,1214,1955,3119,4496,5725,6631,7266,7738,8148,8583,9109,9713,10457,11309,12309,13409,14572,15737,16829,17794,18501,18941,19083,18893,18509,17972,17380,16814,16367,16024,15817,15730,15821,16066,16473,17033,17784,18690,19752,20964,22277,23709,25178,26663,28066,29304,30300,31043,31440,31450,31117,30477,29554,28498,27269,26097,24937,23860,22867,22019,21294,20690,20201,19831,19533,19399,19304,19293,19399,19602,19865,20208,20633,21163,21724,22333,22985,23638,24226,24832,25294,25656,25917,25979,25861,25587,25104,24472,23745,22949,22080,21225,20391,19621,18923,18274,17725,17258,16854,16538,16284,16118,16006,15970,15993,16101,16249,16483,16778,17160,17569,18050,18633,19234,19869,20540,21269,21996,22743,23451,24158,24818,25418,25970,26393,26715,26954,27050,27059,26982,26765,26440,26042,25559,24992,24396,23777,23120,22479,21819,21206,20584,19986,19441,18948,18483,18073,17701,17382,17097,16830,16578,16381,16181,15986,15798,15626,15462,15312,15200,15103,15027,14941,14896,14885,14890,14901,14909,14939,14979,15025,15066,15123,15165,15175,15187,15177,15191,15230,15245,15247,15242,15190,15117,15075,14986,14901,14805,14669,14523,14338,14158,13953,13743,13500,13234,12979,12699,12397,12122,11817,11537,11253,10998,10760,10521,10247,9950,9636,9326,9047,8817,8609,8433,8270,8135,8035,7966,7892,7837,7771,7706,7541,7370,7216,7096,6967,6877,6794,6733,6679,6637,6633,6617,6597,6593,6583,6592,6443,6133,5710,5108,21.3,21.5,22.1,1568310,0.1,12.7,12.0,5.0,455,-1.00,-1.00,57.6696,-18.878418,0.000628,,,,,225 +SATSDF0720,2024246,12.759138,0.00,0.0000,0.0000,0.0000,0.00,640,0,1,626,629,637,635,648,630,627,617,600,611,617,625,613,613,631,629,633,624,621,623,627,617,633,656,662,653,649,643,637,651,655,647,641,647,650,656,646,639,635,645,647,650,645,662,652,649,640,639,643,638,635,640,632,639,633,647,649,657,665,658,652,649,648,645,633,638,635,640,647,650,649,649,640,635,637,644,630,641,634,637,639,644,649,645,654,645,644,654,641,647,653,649,638,642,637,647,645,645,631,651,653,653,655,641,644,637,623,627,631,631,635,645,643,637,640,641,635,635,636,634,635,641,650,648,649,660,649,649,640,633,626,632,635,635,650,641,644,637,646,641,631,641,630,644,641,643,652,665,646,655,640,641,641,636,637,621,634,637,644,657,647,644,641,643,637,638,623,635,642,630,639,640,631,633,645,642,653,637,633,647,640,644,648,636,647,642,638,637,633,650,648,647,635,636,655,645,641,642,655,645,647,615,638,633,627,631,631,637,640,631,647,644,643,642,648,649,642,642,650,637,647,645,627,637,640,645,653,642,645,647,633,639,649,634,639,629,635,633,629,633,624,639,641,657,645,650,634,641,637,627,619,631,625,642,637,487,0.0,0.0,0.0,1568309,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,200 +SATSLF0720,2024246,12.759693,4.09,0.0573,0.1001,0.0161,0.00,16229,640,1,689,692,695,694,701,681,702,697,701,720,709,719,752,875,1214,1963,3174,4561,5788,6729,7350,7816,8251,8707,9224,9848,10598,11469,12484,13601,14807,15973,17093,18051,18790,19242,19377,19189,18798,18253,17657,17076,16603,16243,16022,15952,16042,16286,16700,17291,18053,18970,20042,21270,22582,24058,25536,27035,28464,29718,30730,31496,31885,31898,31552,30891,29976,28902,27653,26469,25293,24197,23188,22337,21594,20981,20496,20097,19819,19653,19563,19565,19665,19850,20107,20475,20898,21417,21985,22612,23277,23923,24531,25107,25588,25957,26229,26270,26169,25872,25395,24750,24021,23221,22330,21469,20611,19829,19131,18479,17910,17440,17024,16697,16439,16283,16185,16149,16169,16253,16426,16659,16937,17304,17741,18240,18813,19430,20065,20759,21496,22232,22982,23699,24419,25060,25671,26240,26676,26990,27236,27344,27362,27282,27062,26729,26330,25831,25239,24656,24022,23371,22706,22050,21425,20802,20201,19635,19133,18660,18245,17892,17545,17268,16991,16753,16549,16332,16130,15938,15750,15590,15463,15347,15259,15173,15082,15048,15026,15013,15017,15047,15065,15114,15153,15193,15241,15300,15315,15313,15323,15339,15339,15366,15366,15340,15299,15254,15177,15106,15037,14946,14802,14636,14456,14270,14058,13836,13612,13334,13080,12784,12491,12205,11906,11607,11339,11085,10849,10616,10337,10052,9720,9410,9121,8886,8653,8478,8318,8181,8102,8018,7947,7904,7845,7747,7599,7419,7278,7146,7029,6929,6830,6793,6718,6679,6691,6656,6638,6647,6669,6650,6507,6205,5771,5133,21.2,21.2,21.6,1568310,0.4,13.0,11.9,5.0,566,-1.00,-1.00,57.1407,-18.917764,0.000653,,,,,67 +SATSLF0720,2024246,12.759874,4.23,0.0593,0.1008,0.0160,0.00,16213,640,1,692,693,692,708,701,700,703,720,718,717,733,733,766,885,1238,1988,3181,4565,5790,6717,7360,7821,8250,8701,9224,9853,10597,11479,12493,13586,14796,15975,17091,18058,18771,19213,19342,19153,18765,18221,17637,17071,16599,16238,16030,15946,16023,16276,16689,17268,18021,18928,20005,21245,22569,24013,25502,26985,28407,29671,30669,31442,31832,31824,31495,30848,29927,28855,27613,26421,25256,24160,23178,22310,21552,20950,20464,20082,19792,19629,19529,19537,19625,19815,20084,20425,20851,21383,21962,22568,23235,23893,24490,25075,25555,25941,26185,26228,26111,25837,25349,24717,23986,23181,22311,21440,20574,19816,19096,18453,17895,17429,17003,16686,16448,16266,16173,16121,16154,16235,16393,16631,16934,17290,17721,18216,18789,19403,20048,20734,21459,22201,22976,23685,24378,25043,25638,26209,26636,26960,27208,27317,27333,27241,27009,26694,26301,25796,25218,24643,24006,23360,22693,22018,21379,20762,20177,19624,19138,18633,18240,17865,17527,17239,16965,16736,16518,16314,16144,15933,15750,15581,15446,15321,15228,15146,15079,15036,15021,15019,15023,15058,15089,15102,15158,15175,15221,15282,15279,15308,15319,15323,15347,15357,15358,15348,15301,15245,15182,15107,15027,14918,14781,14637,14466,14260,14067,13852,13604,13338,13072,12782,12482,12193,11895,11617,11338,11089,10846,10609,10333,10044,9716,9409,9124,8869,8650,8477,8328,8189,8097,8013,7948,7906,7830,7734,7601,7431,7262,7125,7032,6934,6854,6789,6736,6700,6670,6653,6638,6634,6643,6646,6501,6192,5769,5140,21.2,21.2,21.7,1568311,0.1,12.9,11.9,5.0,467,-1.00,-1.00,56.3614,-18.561872,0.000519,,,,,118 +SATSLF0720,2024246,12.760130,3.97,0.0557,0.1001,0.0158,0.00,16228,640,1,683,697,689,692,710,689,707,713,715,722,729,741,768,882,1235,1993,3174,4561,5812,6733,7366,7847,8273,8708,9248,9866,10614,11493,12491,13629,14817,15991,17126,18088,18822,19261,19394,19194,18811,18277,17676,17094,16629,16267,16041,15968,16053,16298,16704,17288,18033,18952,20059,21268,22620,24046,25531,27047,28461,29733,30738,31489,31893,31897,31573,30904,29984,28909,27670,26475,25303,24214,23209,22337,21592,20994,20497,20109,19804,19659,19563,19570,19677,19846,20107,20468,20893,21417,21990,22617,23270,23920,24525,25111,25597,25960,26228,26275,26155,25877,25389,24750,24018,23224,22348,21461,20620,19840,19130,18465,17927,17450,17045,16720,16457,16285,16177,16128,16154,16234,16410,16633,16935,17322,17746,18225,18797,19407,20039,20741,21465,22224,22981,23690,24398,25070,25643,26232,26645,26971,27211,27305,27325,27234,27028,26693,26312,25809,25239,24645,24001,23371,22709,22021,21389,20768,20177,19611,19122,18648,18248,17874,17530,17251,16973,16738,16534,16328,16141,15945,15762,15596,15444,15317,15221,15154,15077,15046,15022,15025,15023,15048,15063,15112,15145,15187,15237,15293,15301,15321,15316,15321,15335,15355,15368,15339,15300,15245,15189,15113,15031,14920,14775,14628,14451,14263,14040,13828,13603,13336,13073,12780,12491,12192,11899,11605,11325,11089,10850,10615,10344,10037,9718,9397,9115,8858,8649,8483,8324,8192,8103,8016,7944,7895,7826,7744,7604,7424,7272,7136,7024,6925,6842,6774,6725,6690,6665,6654,6635,6647,6657,6650,6494,6185,5755,5143,21.2,21.2,21.7,1568312,0.2,13.0,11.9,5.0,454,-1.00,-1.00,57.2404,-18.963108,0.000597,,,,,117 +SATSLF0720,2024246,12.760382,4.19,0.0587,0.1012,0.0164,0.00,16204,640,1,679,679,678,687,693,705,705,695,720,717,709,715,756,876,1222,1971,3153,4563,5781,6717,7351,7825,8242,8695,9221,9850,10590,11465,12458,13591,14774,15949,17066,18027,18745,19193,19300,19147,18762,18227,17609,17052,16595,16226,15998,15939,16004,16247,16667,17256,18000,18914,20011,21223,22555,24001,25501,26989,28417,29703,30698,31444,31832,31828,31493,30843,29909,28839,27615,26426,25252,24161,23149,22299,21548,20939,20458,20056,19769,19610,19514,19549,19630,19813,20085,20436,20878,21395,21963,22589,23249,23894,24501,25079,25563,25921,26193,26208,26099,25817,25341,24705,23973,23189,22319,21433,20578,19805,19101,18443,17882,17397,17009,16696,16429,16255,16142,16121,16126,16228,16385,16621,16926,17283,17720,18205,18775,19393,20031,20737,21456,22206,22945,23672,24378,25032,25632,26206,26640,26946,27197,27313,27307,27232,27013,26685,26279,25781,25216,24621,23986,23338,22669,22004,21357,20745,20162,19606,19106,18632,18217,17833,17521,17233,16968,16729,16515,16320,16125,15926,15746,15585,15443,15312,15207,15137,15056,15011,15006,15008,15019,15045,15073,15093,15134,15165,15222,15278,15293,15290,15294,15305,15320,15350,15355,15349,15301,15233,15169,15103,15009,14910,14761,14608,14455,14261,14042,13830,13597,13328,13060,12785,12474,12192,11885,11589,11317,11078,10826,10601,10333,10021,9700,9392,9113,8848,8647,8480,8321,8182,8094,8005,7937,7897,7824,7735,7589,7403,7243,7119,7004,6915,6837,6778,6718,6688,6650,6652,6637,6625,6647,6635,6480,6181,5745,5116,21.2,21.2,21.8,1568313,0.2,12.9,11.9,5.0,452,-1.00,-1.00,57.0458,-18.846565,0.000643,,,,,144 +SATSLF0720,2024246,12.760639,3.95,0.0553,0.1013,0.0167,0.00,16194,640,1,688,701,710,701,715,705,709,710,705,711,720,713,747,867,1199,1973,3157,4546,5789,6713,7361,7829,8249,8713,9238,9860,10601,11481,12475,13595,14778,15947,17072,18029,18746,19197,19336,19146,18762,18209,17621,17064,16592,16221,15993,15929,15989,16259,16661,17246,17990,18894,19979,21198,22544,23997,25501,26980,28407,29664,30667,31417,31825,31808,31487,30829,29908,28850,27616,26413,25238,24165,23156,22293,21541,20923,20421,20027,19755,19592,19510,19526,19626,19809,20068,20416,20850,21362,21941,22549,23205,23867,24486,25062,25538,25898,26163,26210,26094,25814,25336,24707,23962,23171,22304,21419,20573,19785,19067,18420,17858,17389,16985,16663,16408,16241,16144,16098,16121,16213,16393,16602,16896,17275,17693,18195,18761,19379,20010,20710,21440,22178,22936,23650,24363,25017,25616,26170,26602,26917,27161,27273,27280,27201,26984,26660,26261,25767,25181,24588,23964,23309,22652,21982,21355,20739,20135,19584,19091,18615,18215,17837,17513,17229,16970,16714,16505,16299,16100,15915,15733,15554,15412,15304,15205,15125,15061,15016,14993,14997,15005,15021,15040,15079,15124,15157,15197,15265,15270,15283,15291,15294,15305,15336,15339,15340,15277,15210,15157,15087,15008,14897,14764,14613,14441,14249,14037,13815,13573,13310,13047,12763,12468,12185,11881,11582,11328,11061,10827,10583,10311,10022,9684,9373,9089,8861,8642,8481,8324,8173,8087,8002,7927,7877,7807,7707,7579,7413,7249,7147,7025,6932,6845,6777,6728,6677,6650,6634,6609,6615,6637,6629,6493,6184,5750,5139,21.2,21.2,21.8,1568314,0.2,12.9,11.9,5.0,455,-1.00,-1.00,57.7723,-19.141050,0.000613,,,,,70 +SATSLF0720,2024246,12.760895,4.08,0.0571,0.1017,0.0165,0.00,16193,640,1,701,697,705,706,707,712,727,709,727,731,731,725,767,883,1229,1982,3177,4555,5811,6729,7358,7837,8267,8698,9227,9857,10594,11470,12479,13590,14785,15949,17072,18026,18747,19184,19327,19132,18760,18201,17624,17050,16592,16229,16002,15926,15996,16245,16659,17237,17989,18901,19974,21221,22546,23993,25481,26964,28377,29632,30637,31400,31797,31808,31478,30824,29882,28843,27593,26396,25232,24145,23108,22274,21525,20919,20425,20049,19754,19578,19491,19511,19601,19806,20072,20421,20848,21377,21931,22549,23211,23856,24475,25053,25519,25888,26149,26209,26080,25805,25332,24699,23976,23168,22285,21410,20560,19790,19098,18448,17861,17390,16994,16658,16407,16244,16146,16104,16116,16219,16376,16593,16911,17280,17700,18187,18765,19375,20017,20709,21425,22160,22903,23617,24332,24989,25593,26163,26597,26931,27181,27272,27293,27197,26973,26648,26249,25767,25185,24601,23953,23303,22637,21971,21351,20739,20135,19588,19085,18607,18199,17829,17501,17210,16932,16705,16506,16301,16117,15922,15732,15565,15432,15310,15208,15138,15062,15029,15005,14993,14992,15041,15066,15098,15131,15166,15214,15277,15273,15290,15298,15296,15321,15345,15342,15325,15281,15221,15166,15085,14994,14893,14767,14600,14434,14247,14029,13822,13588,13321,13057,12773,12480,12182,11874,11588,11318,11069,10821,10588,10313,10023,9703,9394,9112,8855,8648,8467,8322,8185,8089,8000,7929,7885,7808,7728,7577,7423,7257,7138,7029,6933,6845,6780,6720,6673,6646,6641,6630,6621,6654,6645,6492,6177,5746,5123,21.2,21.2,21.8,1568315,0.4,12.9,11.9,5.0,454,-1.00,-1.00,57.1159,-18.858272,0.000562,,,,,254 +SATSLF0720,2024246,12.761147,4.13,0.0578,0.1032,0.0174,0.00,16141,640,1,697,703,699,711,705,709,712,708,726,712,717,734,765,900,1233,1985,3162,4533,5765,6675,7317,7786,8212,8650,9158,9797,10539,11408,12395,13513,14674,15855,16963,17915,18638,19082,19220,19017,18659,18129,17524,16971,16500,16141,15909,15835,15914,16160,16562,17159,17899,18809,19877,21097,22421,23873,25354,26837,28265,29526,30505,31255,31653,31646,31309,30675,29745,28682,27436,26263,25111,24016,23031,22182,21446,20840,20370,19972,19684,19517,19425,19425,19544,19717,19975,20325,20759,21294,21852,22472,23138,23781,24388,24962,25434,25809,26065,26113,25997,25714,25240,24598,23884,23083,22208,21336,20500,19713,19010,18365,17798,17343,16940,16625,16365,16199,16114,16045,16076,16166,16332,16568,16859,17221,17655,18146,18723,19330,19958,20653,21381,22124,22853,23575,24273,24935,25533,26100,26544,26861,27113,27197,27229,27128,26904,26573,26178,25690,25118,24525,23901,23269,22601,21933,21293,20685,20100,19536,19048,18560,18165,17781,17473,17189,16914,16678,16469,16260,16069,15874,15693,15531,15396,15277,15181,15109,15024,14987,14968,14983,14981,15002,15017,15061,15109,15126,15176,15235,15240,15248,15265,15258,15299,15313,15324,15316,15258,15194,15135,15057,14966,14870,14731,14583,14427,14228,14011,13807,13565,13300,13038,12738,12453,12153,11861,11581,11299,11067,10811,10583,10313,10014,9696,9381,9097,8837,8632,8458,8309,8183,8082,8005,7930,7894,7806,7720,7576,7409,7254,7128,7014,6916,6833,6752,6692,6676,6652,6649,6629,6625,6633,6635,6473,6165,5733,5128,21.2,21.2,21.9,1568316,0.1,12.9,12.0,5.0,451,-1.00,-1.00,57.4032,-18.886891,0.000660,,,,,70 +SATSLF0720,2024246,12.761404,4.26,0.0597,0.1028,0.0174,0.00,16153,640,1,685,693,686,691,682,690,706,706,708,721,724,726,763,878,1217,1980,3161,4533,5763,6685,7301,7779,8197,8639,9183,9804,10535,11426,12425,13511,14707,15871,16995,17949,18650,19106,19242,19056,18672,18123,17541,16979,16509,16162,15932,15865,15945,16194,16601,17192,17943,18834,19899,21137,22464,23910,25395,26866,28299,29552,30553,31300,31702,31701,31354,30699,29793,28716,27483,26321,25146,24080,23061,22208,21469,20848,20361,19981,19693,19532,19443,19456,19548,19747,20005,20356,20789,21322,21868,22497,23154,23812,24413,24996,25470,25832,26097,26129,26029,25744,25250,24642,23902,23113,22241,21353,20520,19756,19058,18395,17847,17372,16955,16640,16403,16226,16107,16074,16093,16183,16334,16570,16871,17245,17676,18158,18737,19355,19985,20665,21395,22145,22885,23589,24299,24956,25544,26114,26545,26869,27124,27229,27242,27152,26930,26589,26194,25692,25139,24552,23915,23259,22603,21935,21305,20686,20087,19542,19044,18582,18176,17813,17488,17190,16913,16685,16483,16282,16081,15873,15689,15522,15386,15275,15171,15111,15017,14994,14967,14965,14985,15022,15034,15066,15102,15143,15174,15238,15248,15271,15269,15280,15293,15311,15303,15302,15266,15195,15136,15060,14973,14887,14754,14594,14418,14241,14028,13800,13562,13298,13036,12754,12460,12160,11870,11595,11322,11069,10829,10593,10317,10014,9689,9392,9092,8841,8629,8465,8285,8163,8068,7985,7928,7881,7809,7725,7565,7415,7252,7130,7005,6919,6826,6775,6711,6677,6645,6642,6616,6615,6632,6621,6477,6173,5733,5113,21.2,21.2,21.9,1568317,0.1,13.0,11.9,5.0,448,-1.00,-1.00,57.0087,-18.751219,0.000600,,,,,14 +SATSLF0720,2024246,12.761658,4.25,0.0595,0.1042,0.0183,0.00,16112,640,1,690,682,695,701,709,711,717,709,723,704,703,723,753,871,1225,1958,3148,4523,5741,6669,7300,7763,8185,8631,9145,9777,10516,11374,12375,13481,14660,15831,16925,17889,18621,19058,19193,19016,18637,18101,17509,16947,16485,16123,15885,15820,15898,16153,16564,17149,17900,18809,19874,21085,22424,23861,25338,26806,28228,29492,30473,31225,31635,31620,31296,30644,29717,28669,27417,26251,25076,24007,23002,22148,21414,20801,20325,19925,19651,19488,19382,19402,19498,19682,19965,20309,20737,21239,21805,22436,23090,23741,24357,24945,25413,25772,26043,26091,25976,25706,25211,24577,23842,23048,22188,21305,20459,19698,18996,18345,17792,17324,16912,16587,16363,16174,16078,16039,16047,16144,16307,16524,16828,17193,17623,18101,18674,19287,19909,20606,21333,22085,22814,23543,24245,24913,25497,26070,26487,26809,27044,27135,27149,27070,26846,26529,26134,25633,25074,24490,23849,23202,22552,21882,21243,20646,20045,19485,19003,18529,18135,17771,17446,17149,16890,16647,16432,16230,16052,15849,15649,15494,15345,15235,15138,15063,14987,14965,14937,14946,14930,14965,14981,15019,15041,15083,15149,15181,15211,15218,15226,15245,15256,15282,15283,15269,15218,15161,15105,15033,14930,14831,14697,14545,14377,14171,13972,13762,13527,13261,12997,12717,12421,12123,11840,11542,11271,11018,10790,10560,10284,9974,9656,9354,9065,8824,8612,8439,8290,8162,8055,7984,7914,7851,7787,7686,7555,7381,7222,7117,6993,6897,6819,6757,6686,6651,6621,6619,6609,6589,6627,6613,6480,6149,5723,5101,21.2,21.3,21.9,1568318,0.3,13.0,12.0,5.0,453,-1.00,-1.00,57.1247,-18.758374,0.000619,,,,,100 +SATSLF0720,2024246,12.761910,4.11,0.0576,0.1029,0.0180,0.00,16143,640,1,692,690,705,709,708,715,714,711,721,721,727,733,775,883,1222,1972,3159,4547,5787,6693,7339,7810,8221,8679,9205,9816,10577,11434,12451,13558,14733,15899,17003,17953,18684,19121,19257,19076,18690,18147,17568,17001,16546,16168,15939,15885,15959,16197,16603,17180,17936,18835,19918,21130,22451,23909,25376,26887,28293,29557,30565,31300,31707,31696,31355,30719,29786,28725,27506,26301,25147,24059,23052,22184,21449,20836,20343,19973,19684,19530,19438,19453,19550,19732,19995,20324,20767,21293,21841,22476,23145,23801,24397,24985,25464,25815,26080,26122,26003,25717,25245,24615,23895,23093,22229,21362,20491,19742,19017,18375,17824,17341,16925,16611,16371,16212,16121,16073,16092,16185,16336,16561,16853,17209,17641,18117,18696,19322,19957,20637,21376,22104,22857,23580,24274,24932,25509,26096,26505,26835,27079,27185,27207,27117,26900,26581,26189,25669,25117,24538,23877,23223,22573,21910,21282,20661,20075,19534,19026,18551,18151,17787,17455,17154,16901,16657,16455,16259,16065,15869,15675,15523,15377,15265,15170,15093,15003,14980,14952,14941,14952,14984,15004,15046,15081,15109,15155,15201,15223,15239,15253,15252,15268,15291,15292,15277,15226,15170,15114,15021,14951,14860,14730,14580,14404,14217,14007,13791,13548,13286,13022,12738,12427,12133,11842,11565,11296,11050,10816,10577,10285,9995,9673,9365,9078,8824,8621,8437,8286,8155,8064,7977,7921,7865,7806,7710,7571,7396,7228,7117,6998,6901,6826,6750,6705,6677,6652,6644,6626,6608,6631,6610,6455,6147,5745,5121,21.2,21.3,21.9,1568319,0.2,13.0,12.0,5.0,452,-1.00,-1.00,57.0674,-18.775815,0.000573,,,,,126 +SATSLF0720,2024246,12.762171,4.16,0.0583,0.1028,0.0167,0.00,16158,640,1,705,694,707,705,709,720,730,722,730,717,717,737,773,893,1236,1990,3157,4555,5786,6699,7338,7814,8233,8686,9201,9824,10566,11433,12434,13531,14711,15891,16989,17948,18686,19121,19264,19049,18695,18152,17557,16983,16519,16164,15945,15873,15970,16202,16609,17180,17928,18845,19918,21141,22466,23914,25402,26882,28307,29548,30554,31302,31698,31705,31365,30714,29796,28729,27501,26331,25149,24060,23053,22203,21478,20858,20363,19985,19689,19538,19445,19460,19557,19753,20005,20359,20795,21314,21872,22490,23156,23802,24413,24983,25469,25814,26092,26145,26026,25765,25266,24629,23921,23121,22245,21370,20513,19753,19048,18384,17837,17367,16961,16635,16377,16219,16113,16079,16102,16188,16337,16583,16880,17229,17675,18163,18729,19339,19969,20667,21384,22133,22876,23586,24296,24970,25541,26112,26539,26862,27116,27210,27239,27140,26925,26599,26203,25701,25146,24550,23906,23258,22608,21940,21303,20704,20112,19556,19049,18590,18176,17812,17484,17176,16910,16666,16483,16290,16101,15894,15715,15541,15412,15268,15179,15106,15029,14996,14981,14966,14977,15005,15027,15049,15107,15128,15181,15236,15253,15264,15276,15273,15287,15317,15317,15309,15263,15199,15157,15080,14996,14883,14737,14585,14418,14224,14019,13811,13564,13311,13043,12768,12469,12177,11879,11575,11310,11064,10813,10589,10314,10013,9686,9368,9080,8849,8636,8466,8307,8173,8079,8011,7940,7890,7806,7725,7581,7406,7250,7119,7011,6919,6837,6788,6722,6678,6651,6643,6627,6624,6637,6633,6489,6170,5745,5123,21.2,21.3,21.9,1568320,0.2,13.0,11.9,5.0,451,-1.00,-1.00,57.1466,-18.813046,0.000575,,,,,22 +SATSLF0720,2024246,12.762425,4.15,0.0582,0.1040,0.0182,0.00,16121,640,1,689,693,711,697,705,710,713,714,720,721,730,738,773,888,1244,1974,3168,4538,5767,6695,7322,7789,8195,8651,9162,9796,10539,11420,12398,13521,14694,15863,16965,17931,18635,19069,19209,19017,18653,18098,17511,16955,16491,16128,15904,15834,15911,16172,16565,17143,17893,18786,19861,21076,22409,23853,25347,26837,28256,29498,30493,31242,31621,31621,31304,30650,29721,28667,27443,26248,25089,24021,23008,22144,21415,20814,20332,19944,19641,19485,19394,19409,19497,19690,19948,20289,20733,21257,21809,22445,23110,23754,24369,24933,25418,25785,26046,26093,25965,25677,25194,24571,23867,23056,22194,21305,20473,19713,18993,18363,17790,17317,16910,16590,16354,16181,16090,16038,16061,16157,16309,16539,16845,17210,17628,18123,18689,19287,19931,20616,21349,22085,22809,23553,24237,24903,25493,26064,26485,26813,27058,27169,27168,27079,26869,26541,26145,25665,25102,24504,23863,23211,22551,21893,21252,20650,20058,19488,19005,18533,18125,17765,17434,17153,16892,16645,16440,16248,16048,15867,15680,15520,15362,15261,15153,15069,14985,14953,14938,14939,14940,14974,14999,15042,15079,15090,15131,15207,15218,15236,15242,15244,15252,15276,15267,15251,15231,15156,15107,15043,14952,14848,14720,14581,14376,14208,13986,13775,13526,13263,13001,12723,12433,12155,11850,11563,11288,11036,10794,10553,10290,9991,9667,9358,9077,8823,8621,8444,8294,8163,8059,8000,7910,7862,7799,7714,7561,7399,7245,7107,6990,6912,6822,6763,6717,6674,6646,6634,6612,6612,6617,6613,6462,6151,5729,5117,21.2,21.4,21.9,1568321,0.2,13.0,12.0,5.0,451,-1.00,-1.00,57.3636,-18.860903,0.000624,,,,,99 +SATSLF0720,2024246,12.762676,4.17,0.0583,0.1043,0.0191,0.00,16102,640,1,706,705,699,713,709,698,705,703,715,713,713,737,765,883,1217,1969,3159,4535,5772,6678,7316,7782,8192,8625,9159,9777,10517,11392,12373,13498,14658,15845,16950,17906,18619,19058,19197,18994,18647,18098,17514,16938,16491,16135,15905,15814,15904,16146,16544,17115,17874,18780,19857,21065,22389,23833,25309,26789,28218,29483,30458,31209,31584,31589,31248,30616,29693,28634,27403,26202,25048,23997,22984,22114,21381,20774,20294,19899,19635,19474,19378,19397,19493,19665,19943,20285,20717,21220,21788,22416,23094,23725,24343,24928,25396,25756,26000,26055,25947,25669,25182,24561,23845,23037,22171,21309,20475,19696,18977,18326,17773,17301,16898,16589,16325,16165,16065,16017,16030,16130,16298,16519,16814,17178,17608,18101,18661,19286,19909,20590,21312,22054,22818,23513,24228,24873,25466,26033,26441,26773,27005,27115,27123,27043,26836,26507,26103,25614,25053,24464,23833,23193,22536,21852,21234,20624,20026,19484,18996,18523,18121,17753,17416,17123,16865,16616,16420,16217,16026,15836,15660,15482,15330,15225,15133,15057,14973,14942,14922,14913,14923,14952,14986,15021,15053,15071,15129,15177,15191,15208,15232,15225,15234,15274,15269,15264,15214,15141,15077,15013,14918,14819,14679,14548,14365,14172,13969,13765,13524,13258,13002,12704,12409,12119,11821,11537,11268,11016,10771,10547,10270,9963,9655,9347,9045,8811,8608,8443,8280,8148,8055,7979,7901,7851,7784,7693,7557,7377,7237,7111,6990,6897,6801,6749,6680,6645,6629,6615,6588,6595,6606,6606,6450,6155,5723,5113,21.2,21.4,22.0,1568321,0.2,13.0,11.9,5.0,447,-1.00,-1.00,56.9596,-18.669631,0.000641,,,,,37 +SATSLF0720,2024246,12.762932,4.11,0.0575,0.1039,0.0182,0.00,16125,640,1,701,695,705,705,713,706,716,723,725,723,716,726,758,865,1219,1972,3162,4558,5777,6697,7322,7785,8201,8643,9168,9789,10533,11401,12396,13518,14693,15850,16960,17917,18642,19076,19220,19033,18658,18112,17525,16949,16500,16125,15918,15831,15914,16163,16573,17150,17897,18808,19875,21092,22421,23866,25355,26837,28261,29509,30502,31261,31650,31634,31323,30654,29739,28678,27461,26263,25093,24011,23026,22157,21424,20820,20330,19928,19653,19493,19398,19422,19531,19714,19974,20320,20739,21261,21836,22445,23109,23753,24369,24950,25417,25782,26050,26101,25982,25707,25224,24581,23869,23074,22208,21328,20490,19716,19013,18358,17805,17326,16925,16606,16356,16171,16077,16040,16051,16137,16303,16550,16836,17221,17645,18147,18694,19311,19954,20629,21359,22093,22838,23541,24258,24917,25501,26061,26476,26800,27079,27188,27176,27095,26873,26538,26157,25632,25096,24509,23861,23232,22556,21909,21277,20661,20064,19506,19030,18536,18137,17783,17444,17150,16884,16640,16449,16242,16066,15861,15666,15508,15370,15253,15154,15085,14993,14955,14942,14941,14957,14985,15001,15037,15079,15125,15162,15217,15226,15234,15226,15249,15261,15277,15271,15272,15223,15165,15109,15030,14940,14825,14701,14548,14375,14181,13979,13756,13527,13271,13014,12731,12451,12141,11851,11573,11288,11043,10803,10556,10296,9976,9659,9345,9068,8819,8615,8452,8295,8165,8073,7994,7921,7869,7798,7712,7579,7401,7249,7101,6984,6893,6817,6749,6699,6665,6661,6641,6629,6602,6616,6607,6456,6161,5733,5097,21.2,21.4,22.0,1568322,0.1,12.9,12.0,5.0,448,-1.00,-1.00,57.5730,-18.957035,0.000636,,,,,156 +SATSLF0720,2024246,12.763185,4.25,0.0595,0.1035,0.0178,0.00,16124,640,1,703,726,715,708,705,702,693,707,703,721,732,728,767,898,1242,1997,3172,4543,5775,6692,7319,7798,8213,8641,9160,9799,10538,11418,12397,13520,14696,15873,16969,17917,18634,19072,19205,19018,18648,18112,17525,16963,16498,16133,15904,15840,15923,16160,16579,17158,17890,18804,19874,21099,22413,23864,25337,26829,28249,29482,30477,31226,31628,31633,31297,30640,29714,28658,27437,26261,25084,24004,22996,22155,21409,20796,20326,19923,19652,19496,19412,19414,19508,19685,19947,20294,20725,21250,21813,22427,23101,23757,24353,24935,25413,25783,26037,26083,25970,25681,25222,24586,23857,23058,22185,21326,20473,19721,19013,18363,17789,17319,16909,16597,16345,16173,16085,16033,16056,16161,16329,16537,16843,17210,17638,18125,18684,19307,19948,20622,21347,22085,22827,23537,24251,24905,25493,26073,26492,26823,27060,27157,27168,27072,26861,26517,26132,25636,25091,24504,23877,23233,22558,21899,21273,20656,20061,19511,19024,18550,18138,17770,17437,17154,16880,16656,16456,16246,16055,15870,15675,15527,15370,15258,15151,15074,14992,14947,14935,14943,14944,14995,15001,15034,15082,15111,15170,15213,15227,15223,15243,15257,15277,15293,15298,15289,15244,15168,15123,15052,14953,14861,14721,14573,14390,14197,13988,13768,13547,13273,13016,12743,12453,12155,11848,11576,11276,11047,10793,10563,10311,10004,9687,9370,9081,8822,8628,8449,8293,8160,8065,7989,7927,7862,7812,7714,7579,7397,7237,7109,7005,6901,6813,6759,6704,6669,6651,6645,6632,6621,6632,6610,6474,6158,5723,5099,21.2,21.4,22.1,1568323,0.2,12.9,12.0,5.0,451,-1.00,-1.00,56.7786,-18.616096,0.000542,,,,,17 +SATSLF0720,2024246,12.763436,4.26,0.0597,0.1047,0.0187,0.00,16097,640,1,690,691,701,721,725,705,709,729,729,722,733,748,777,888,1225,1954,3153,4533,5759,6675,7317,7790,8210,8641,9160,9769,10517,11381,12372,13479,14650,15817,16917,17863,18592,19021,19157,18981,18601,18076,17472,16923,16465,16093,15869,15811,15885,16122,16521,17101,17849,18760,19844,21046,22373,23809,25288,26770,28173,29413,30423,31174,31556,31563,31217,30600,29657,28603,27360,26179,25035,23943,22950,22110,21369,20776,20293,19893,19607,19447,19362,19366,19467,19649,19906,20238,20690,21213,21776,22393,23058,23706,24325,24878,25366,25725,25977,26042,25921,25642,25152,24522,23821,23020,22152,21285,20451,19668,18971,18329,17775,17303,16907,16586,16334,16157,16062,16017,16024,16121,16279,16508,16812,17174,17605,18105,18668,19277,19905,20593,21313,22045,22789,23514,24202,24880,25461,26021,26439,26770,27005,27119,27127,27041,26813,26493,26088,25600,25045,24469,23829,23175,22523,21860,21237,20613,20023,19482,18997,18514,18101,17742,17424,17142,16882,16637,16429,16226,16027,15833,15642,15490,15351,15227,15129,15060,14997,14948,14935,14933,14937,14960,14986,15018,15051,15095,15131,15197,15209,15228,15244,15233,15255,15275,15271,15257,15216,15144,15090,15012,14926,14853,14693,14560,14377,14213,14000,13776,13539,13266,12999,12711,12421,12131,11829,11547,11266,11025,10782,10551,10288,9991,9664,9354,9066,8821,8613,8445,8285,8163,8061,7992,7901,7863,7782,7707,7569,7375,7233,7103,6986,6913,6829,6754,6704,6663,6640,6631,6603,6603,6628,6609,6471,6157,5743,5120,21.2,21.4,22.1,1568324,0.1,12.9,11.9,5.0,453,-1.00,-1.00,56.9486,-18.645661,0.000632,,,,,179 +SATSLF0720,2024246,12.763691,4.15,0.0581,0.1050,0.0197,0.00,16079,640,1,695,703,700,695,695,711,713,709,714,736,725,731,769,900,1232,1970,3147,4530,5749,6660,7313,7765,8189,8627,9130,9767,10501,11377,12366,13475,14657,15806,16909,17874,18590,19033,19155,18970,18600,18062,17469,16917,16451,16083,15869,15778,15872,16128,16532,17120,17849,18761,19823,21031,22339,23789,25252,26745,28160,29415,30425,31157,31545,31547,31221,30571,29645,28589,27373,26186,25020,23926,22921,22077,21355,20746,20265,19879,19595,19441,19349,19349,19455,19645,19904,20235,20667,21186,21762,22368,23024,23669,24295,24875,25357,25718,25981,26021,25904,25623,25150,24514,23789,22993,22137,21257,20418,19637,18939,18299,17745,17278,16880,16580,16317,16146,16045,15985,16002,16103,16258,16481,16786,17138,17571,18067,18629,19244,19872,20565,21286,22023,22767,23477,24177,24837,25409,25992,26416,26739,26976,27077,27101,27013,26789,26473,26061,25570,25024,24425,23794,23150,22498,21830,21207,20589,19998,19453,18948,18500,18093,17731,17397,17120,16849,16611,16418,16198,16008,15819,15623,15461,15325,15201,15119,15033,14967,14928,14901,14909,14914,14933,14946,14983,15056,15053,15128,15178,15197,15204,15215,15201,15229,15243,15239,15241,15185,15129,15059,14988,14914,14825,14695,14541,14370,14173,13952,13734,13496,13224,12964,12682,12404,12117,11810,11531,11263,11022,10770,10519,10267,9972,9639,9338,9053,8819,8603,8439,8290,8146,8046,7972,7889,7850,7786,7690,7560,7377,7218,7106,6989,6893,6810,6736,6691,6648,6640,6609,6611,6592,6613,6601,6447,6144,5726,5097,21.2,21.4,22.1,1568325,0.2,13.0,12.0,5.0,448,-1.00,-1.00,57.4092,-18.831312,0.000565,,,,,30 +SATSLF0720,2024246,12.763944,4.24,0.0593,0.1046,0.0186,0.00,16105,640,1,708,690,691,691,701,700,703,711,714,716,729,733,757,883,1216,1975,3167,4553,5777,6693,7318,7794,8200,8651,9173,9793,10532,11399,12384,13495,14672,15858,16941,17911,18640,19058,19191,19000,18624,18094,17502,16932,16488,16129,15889,15826,15898,16139,16547,17133,17885,18791,19854,21070,22392,23833,25317,26792,28218,29462,30469,31210,31589,31591,31273,30605,29683,28629,27405,26221,25053,23973,22987,22133,21397,20782,20299,19914,19622,19453,19366,19380,19468,19668,19931,20282,20720,21227,21799,22419,23080,23733,24331,24925,25383,25748,26009,26071,25933,25660,25185,24553,23837,23045,22189,21317,20468,19694,18994,18338,17774,17319,16893,16592,16334,16163,16065,16021,16033,16137,16285,16521,16817,17191,17616,18107,18658,19270,19915,20589,21328,22062,22805,23515,24214,24883,25472,26026,26428,26777,27017,27133,27138,27048,26839,26509,26121,25618,25076,24482,23830,23191,22522,21859,21223,20625,20028,19480,18988,18525,18119,17744,17424,17125,16864,16617,16421,16229,16032,15832,15650,15482,15336,15226,15121,15051,14986,14945,14945,14942,14942,14983,14981,15022,15060,15077,15127,15188,15205,15234,15250,15232,15255,15260,15277,15260,15213,15149,15096,15018,14919,14833,14702,14549,14390,14188,13975,13756,13531,13261,12999,12713,12425,12126,11827,11545,11268,11040,10798,10560,10285,9981,9664,9350,9052,8822,8593,8437,8282,8149,8059,7993,7914,7846,7803,7697,7561,7386,7235,7113,7003,6889,6808,6757,6682,6663,6641,6620,6615,6613,6620,6627,6462,6164,5740,5099,21.3,21.5,22.1,1568326,0.2,13.0,11.9,5.0,449,-1.00,-1.00,56.8734,-18.636206,0.000604,,,,,89 +SATSLF0720,2024246,12.764195,4.14,0.0580,0.1053,0.0190,0.00,16081,640,1,693,699,707,715,722,723,725,716,717,712,721,722,759,883,1212,1968,3153,4517,5766,6676,7302,7774,8201,8632,9147,9770,10513,11352,12345,13463,14628,15787,16900,17868,18577,19018,19142,18961,18576,18048,17474,16905,16432,16074,15856,15781,15845,16104,16505,17091,17834,18750,19806,21027,22341,23773,25252,26714,28139,29385,30378,31122,31522,31522,31205,30536,29623,28566,27338,26157,25008,23934,22937,22076,21351,20742,20266,19870,19574,19439,19338,19333,19453,19650,19891,20232,20680,21184,21752,22360,23019,23655,24285,24853,25349,25706,25973,26029,25897,25620,25144,24520,23798,22990,22144,21261,20424,19664,18970,18296,17755,17284,16869,16567,16311,16132,16034,15995,16017,16108,16285,16510,16793,17154,17590,18070,18635,19251,19882,20555,21291,22033,22770,23495,24197,24834,25436,26007,26421,26760,26989,27104,27120,27018,26796,26475,26088,25593,25034,24433,23804,23159,22505,21844,21202,20615,20010,19457,18970,18491,18087,17729,17403,17118,16854,16627,16425,16210,16019,15835,15632,15473,15335,15224,15126,15042,14976,14941,14918,14909,14923,14957,14970,14986,15049,15069,15114,15188,15190,15204,15220,15213,15253,15273,15271,15258,15216,15149,15083,15001,14915,14827,14687,14542,14377,14170,13966,13751,13505,13266,12989,12707,12423,12123,11835,11543,11269,11027,10797,10549,10281,9975,9653,9353,9057,8828,8621,8441,8291,8153,8055,7989,7909,7861,7783,7703,7572,7388,7229,7101,6995,6898,6804,6743,6690,6643,6622,6611,6597,6588,6615,6608,6470,6155,5747,5109,21.3,21.5,22.1,1568327,0.2,13.0,11.9,5.0,448,-1.00,-1.00,57.3946,-18.808543,0.000607,,,,,143 +SATSLF0720,2024246,12.764450,4.26,0.0597,0.1055,0.0187,0.00,16086,640,1,721,709,708,710,723,709,714,731,714,713,718,733,770,888,1223,1977,3165,4536,5769,6659,7299,7751,8178,8621,9142,9761,10510,11382,12377,13488,14665,15798,16919,17867,18561,19001,19133,18951,18579,18053,17450,16893,16433,16081,15856,15789,15869,16109,16520,17120,17842,18741,19806,21012,22318,23767,25250,26740,28145,29395,30396,31134,31525,31537,31189,30544,29640,28573,27347,26176,25000,23934,22944,22081,21344,20744,20256,19869,19584,19429,19328,19335,19447,19635,19894,20240,20685,21197,21757,22371,23048,23682,24288,24859,25351,25714,25975,26025,25892,25621,25137,24515,23799,22993,22141,21260,20434,19660,18950,18315,17751,17280,16876,16568,16314,16155,16055,16005,16045,16121,16290,16516,16810,17149,17595,18073,18647,19250,19873,20577,21297,22026,22784,23501,24197,24837,25435,26008,26422,26743,27005,27104,27121,27016,26800,26491,26081,25608,25033,24441,23819,23159,22510,21860,21214,20601,20018,19468,18978,18507,18115,17741,17418,17121,16841,16614,16418,16221,16025,15856,15664,15501,15360,15227,15121,15042,14969,14945,14926,14912,14925,14952,14973,15028,15063,15094,15140,15184,15215,15221,15225,15229,15251,15275,15275,15266,15209,15147,15090,15023,14925,14831,14705,14539,14375,14186,13984,13762,13513,13252,13001,12717,12410,12123,11819,11555,11276,11032,10793,10552,10277,9980,9670,9357,9082,8839,8611,8451,8286,8153,8055,7983,7897,7865,7808,7713,7585,7408,7249,7108,6998,6890,6804,6737,6693,6658,6639,6617,6618,6599,6619,6606,6469,6162,5730,5122,21.3,21.5,22.1,1568328,0.2,13.0,11.9,5.0,445,-1.00,-1.00,57.1497,-18.712076,0.000532,,,,,172 +SATSDF0720,2024246,13.009139,0.00,0.0000,0.0000,0.0000,0.00,640,0,1,629,618,616,609,619,625,629,621,642,638,626,617,627,634,633,626,626,625,626,630,625,635,650,643,643,639,647,637,635,647,638,634,628,621,631,643,646,648,651,641,653,644,656,643,638,641,652,642,643,634,643,638,637,636,647,644,659,658,650,644,647,652,649,651,643,658,645,647,645,647,654,642,641,638,639,637,650,644,651,650,650,661,645,647,651,635,647,634,643,634,647,624,638,637,623,639,647,641,643,651,651,649,645,633,635,641,637,645,641,629,642,640,633,645,637,641,648,642,645,641,643,646,646,643,633,640,632,645,633,633,640,631,639,642,645,649,641,637,642,627,629,634,624,633,639,651,648,648,645,637,637,643,645,644,645,625,639,645,629,637,634,629,631,636,638,643,640,635,634,634,635,651,644,648,643,648,633,634,638,646,653,637,644,644,644,638,633,646,641,624,655,644,653,649,624,635,636,628,639,636,646,621,629,634,636,650,644,650,653,651,653,659,636,632,637,626,635,637,649,638,646,637,627,632,640,638,637,647,647,661,644,654,653,641,646,645,641,643,651,632,643,627,631,638,635,643,651,645,654,656,649,645,642,651,654,478,0.0,0.0,0.0,1568327,0.6,13.5,0.1,5.0,56,0.00,0.00,0.0000,0.000000,0.000000,,,,,162 +SATSLF0720,2024246,13.009693,4.06,0.0569,0.1002,0.0157,0.00,16239,640,1,697,692,694,694,694,709,724,708,701,703,704,716,747,877,1213,1977,3165,4565,5818,6744,7385,7857,8285,8728,9245,9866,10627,11489,12519,13632,14845,16009,17125,18091,18824,19264,19399,19205,18832,18277,17688,17105,16650,16273,16044,15975,16069,16313,16714,17305,18051,18981,20045,21289,22613,24073,25562,27076,28497,29765,30769,31529,31901,31905,31574,30919,29989,28927,27687,26503,25329,24249,23213,22345,21613,20993,20504,20133,19826,19656,19559,19591,19693,19860,20119,20475,20915,21430,22013,22618,23288,23945,24541,25131,25613,25985,26261,26301,26162,25878,25402,24753,24042,23229,22359,21477,20631,19856,19137,18467,17907,17428,17021,16699,16451,16291,16197,16139,16167,16271,16421,16642,16952,17310,17746,18252,18824,19445,20073,20762,21492,22237,22984,23699,24427,25089,25680,26269,26701,27017,27246,27360,27365,27261,27057,26733,26345,25850,25257,24675,24040,23381,22717,22032,21406,20797,20194,19641,19133,18665,18267,17902,17543,17278,16994,16752,16551,16347,16163,15956,15762,15589,15456,15328,15229,15172,15092,15062,15046,15047,15044,15063,15083,15122,15148,15189,15233,15280,15321,15321,15329,15330,15335,15359,15372,15364,15325,15257,15191,15124,15042,14938,14797,14667,14482,14281,14062,13851,13610,13345,13083,12789,12499,12197,11903,11621,11347,11083,10848,10612,10333,10037,9713,9405,9122,8877,8660,8478,8320,8183,8091,8016,7935,7899,7824,7735,7591,7417,7265,7138,7019,6931,6846,6782,6721,6685,6661,6650,6624,6627,6637,6635,6506,6196,5758,5137,21.2,21.2,21.6,1568328,0.9,13.1,11.9,5.0,564,-1.00,-1.00,56.9090,-18.837585,0.000591,,,,,15 +SATSLF0720,2024246,13.009875,4.17,0.0584,0.1000,0.0157,0.00,16242,640,1,698,694,681,690,685,713,712,725,720,723,734,737,773,893,1240,1982,3183,4549,5799,6711,7371,7841,8274,8734,9253,9891,10634,11515,12520,13633,14825,15996,17113,18071,18793,19235,19377,19193,18813,18286,17689,17111,16661,16274,16043,15968,16048,16298,16714,17301,18059,18970,20051,21281,22619,24071,25559,27056,28493,29746,30749,31517,31913,31913,31584,30916,29992,28909,27677,26493,25317,24230,23228,22365,21624,20993,20491,20098,19814,19658,19565,19587,19690,19867,20138,20493,20913,21445,22002,22630,23291,23949,24569,25137,25618,25992,26233,26309,26149,25881,25405,24762,24029,23236,22357,21481,20626,19853,19144,18489,17922,17449,17033,16712,16475,16301,16193,16159,16177,16262,16430,16665,16961,17333,17751,18254,18833,19440,20079,20760,21494,22250,22989,23704,24413,25079,25666,26248,26676,27002,27251,27353,27360,27271,27067,26728,26331,25846,25261,24668,24035,23385,22705,22043,21405,20790,20197,19645,19146,18664,18276,17901,17574,17273,17005,16765,16566,16340,16160,15945,15763,15596,15460,15355,15260,15176,15099,15051,15044,15046,15046,15081,15090,15130,15169,15187,15245,15294,15305,15312,15332,15341,15363,15387,15386,15372,15319,15261,15193,15113,15024,14939,14809,14645,14471,14293,14077,13861,13622,13356,13087,12808,12505,12211,11910,11628,11354,11099,10842,10627,10345,10041,9735,9421,9128,8876,8658,8495,8341,8201,8097,8026,7946,7889,7835,7754,7593,7426,7271,7160,7034,6935,6859,6790,6734,6701,6669,6655,6634,6631,6656,6654,6510,6197,5765,5143,21.2,21.2,21.8,1568329,0.2,13.0,11.9,5.0,465,-1.00,-1.00,56.6357,-18.720600,0.000576,,,,,72 +SATSLF0720,2024246,13.010130,3.98,0.0557,0.1006,0.0158,0.00,16223,640,1,698,695,704,690,702,703,706,702,708,707,718,716,763,873,1223,1977,3169,4553,5795,6725,7356,7822,8252,8704,9218,9854,10609,11472,12489,13605,14793,15968,17073,18061,18773,19234,19349,19169,18790,18240,17653,17077,16605,16232,16023,15954,16032,16274,16692,17272,18001,18930,20000,21245,22572,24026,25524,27005,28442,29702,30703,31450,31857,31851,31541,30896,29953,28864,27647,26444,25270,24182,23173,22313,21581,20947,20467,20073,19785,19611,19538,19540,19639,19843,20105,20463,20898,21399,21963,22605,23270,23929,24536,25105,25593,25957,26217,26266,26161,25866,25370,24733,24012,23200,22329,21450,20604,19823,19135,18461,17913,17427,17019,16714,16448,16277,16170,16115,16149,16237,16402,16641,16945,17312,17746,18240,18816,19417,20060,20753,21469,22216,22961,23671,24401,25058,25667,26237,26667,26986,27239,27326,27347,27236,27031,26706,26320,25819,25240,24644,24001,23368,22696,22039,21393,20789,20182,19630,19146,18650,18256,17881,17533,17245,16986,16744,16542,16332,16153,15957,15762,15597,15453,15338,15237,15173,15089,15060,15021,15033,15053,15073,15085,15117,15171,15189,15240,15285,15299,15322,15320,15332,15347,15360,15369,15362,15307,15238,15190,15113,15018,14927,14800,14662,14459,14267,14065,13843,13615,13344,13078,12794,12497,12204,11907,11619,11344,11094,10853,10616,10341,10041,9723,9417,9128,8875,8663,8482,8336,8193,8098,8035,7965,7913,7848,7752,7611,7426,7259,7120,7003,6910,6840,6774,6740,6701,6677,6653,6647,6640,6656,6648,6494,6188,5755,5138,21.2,21.2,21.8,1568330,0.1,13.0,12.0,5.0,455,-1.00,-1.00,57.5079,-19.054364,0.000604,,,,,234 +SATSLF0720,2024246,13.010384,4.15,0.0581,0.1023,0.0173,0.00,16174,640,1,700,681,677,686,695,696,698,700,707,725,724,728,758,885,1217,1965,3143,4535,5773,6684,7317,7801,8209,8665,9196,9813,10558,11429,12436,13546,14715,15895,17007,17989,18698,19139,19265,19076,18711,18170,17565,17011,16541,16179,15968,15882,15973,16217,16621,17213,17937,18842,19939,21160,22493,23954,25434,26915,28333,29602,30599,31351,31737,31738,31410,30764,29832,28770,27541,26350,25169,24102,23097,22258,21510,20914,20412,20038,19737,19574,19468,19479,19587,19780,20037,20389,20814,21332,21914,22517,23200,23848,24461,25049,25517,25873,26142,26182,26075,25786,25290,24648,23931,23125,22269,21381,20551,19780,19069,18411,17865,17390,16983,16660,16410,16232,16137,16096,16102,16192,16363,16600,16896,17267,17699,18188,18763,19373,20017,20707,21426,22177,22926,23636,24343,24996,25578,26150,26583,26922,27150,27257,27271,27182,26967,26629,26241,25749,25161,24576,23939,23272,22626,21977,21335,20726,20139,19589,19080,18609,18205,17831,17512,17197,16940,16699,16487,16301,16090,15910,15723,15554,15417,15307,15192,15127,15052,15006,14984,14987,14983,15005,15033,15067,15109,15147,15196,15252,15272,15278,15287,15301,15320,15341,15337,15313,15270,15206,15139,15079,14981,14892,14761,14618,14450,14249,14042,13810,13565,13308,13033,12757,12465,12177,11882,11589,11324,11073,10829,10585,10308,10011,9686,9378,9101,8850,8645,8477,8322,8183,8077,7986,7935,7872,7803,7725,7584,7412,7257,7127,7014,6917,6833,6762,6704,6673,6658,6649,6628,6615,6647,6645,6485,6167,5745,5122,21.2,21.2,21.8,1568331,0.2,13.0,11.9,5.0,454,-1.00,-1.00,57.3564,-18.924118,0.000617,,,,,38 +SATSLF0720,2024246,13.010640,4.03,0.0565,0.1027,0.0181,0.00,16151,640,1,679,699,688,709,705,707,713,724,733,716,719,729,764,878,1216,1958,3153,4524,5783,6711,7361,7820,8227,8672,9177,9811,10569,11438,12429,13549,14731,15904,17024,17994,18710,19152,19264,19091,18706,18177,17573,17001,16546,16187,15965,15893,15972,16221,16626,17210,17929,18839,19918,21127,22457,23924,25404,26892,28317,29569,30581,31322,31719,31718,31392,30732,29819,28749,27516,26329,25168,24085,23072,22217,21464,20868,20373,19982,19698,19541,19450,19463,19565,19746,20012,20365,20789,21293,21860,22487,23163,23797,24422,24989,25474,25822,26075,26135,26017,25741,25262,24624,23889,23099,22221,21339,20494,19738,19041,18385,17825,17353,16940,16636,16373,16206,16097,16047,16077,16161,16338,16561,16855,17218,17645,18150,18728,19334,19977,20650,21387,22109,22864,23571,24279,24934,25525,26095,26528,26845,27093,27206,27213,27141,26912,26588,26188,25702,25121,24541,23898,23243,22599,21934,21297,20691,20100,19545,19053,18578,18162,17799,17445,17170,16901,16665,16449,16245,16053,15865,15684,15521,15389,15269,15177,15114,15018,14997,14969,14953,14962,14987,14996,15040,15076,15114,15177,15229,15242,15255,15267,15262,15289,15295,15294,15297,15243,15169,15111,15051,14953,14871,14729,14581,14406,14221,13993,13795,13548,13300,13024,12759,12453,12157,11850,11565,11289,11037,10802,10564,10302,10006,9675,9368,9078,8834,8613,8458,8293,8162,8066,7991,7925,7869,7809,7706,7580,7389,7241,7101,6996,6908,6821,6758,6679,6655,6643,6631,6610,6604,6628,6626,6469,6152,5739,5116,21.2,21.2,21.8,1568332,0.0,13.0,11.9,5.0,451,-1.00,-1.00,57.2584,-18.867623,0.000554,,,,,188 +SATSLF0720,2024246,13.010896,4.12,0.0577,0.1016,0.0164,0.00,16202,640,1,698,695,707,695,711,708,714,717,718,712,717,721,756,873,1219,1974,3185,4569,5804,6717,7356,7834,8237,8683,9217,9852,10607,11467,12470,13570,14771,15942,17069,18045,18752,19186,19323,19137,18765,18227,17629,17067,16599,16227,15991,15930,16001,16259,16676,17253,18009,18905,19985,21213,22547,24002,25474,26990,28406,29646,30653,31393,31812,31815,31492,30826,29913,28838,27606,26410,25230,24151,23147,22277,21543,20926,20440,20050,19765,19605,19496,19515,19618,19808,20057,20421,20852,21387,21941,22551,23239,23886,24493,25057,25537,25910,26194,26226,26116,25835,25357,24693,23984,23182,22301,21421,20569,19803,19093,18436,17881,17415,17011,16682,16442,16260,16162,16115,16127,16221,16389,16605,16905,17286,17705,18222,18793,19398,20036,20704,21450,22178,22941,23657,24373,25049,25617,26199,26613,26945,27188,27278,27307,27203,26999,26664,26272,25774,25195,24612,23973,23318,22653,21992,21389,20757,20183,19614,19114,18640,18225,17845,17507,17221,16952,16723,16525,16313,16120,15937,15741,15584,15428,15322,15213,15132,15073,15025,15014,15017,15025,15038,15081,15090,15135,15156,15195,15243,15257,15289,15305,15318,15338,15363,15359,15367,15302,15245,15170,15100,15006,14919,14777,14635,14469,14265,14052,13827,13591,13322,13064,12772,12489,12200,11885,11605,11326,11073,10835,10598,10324,10035,9723,9405,9124,8857,8661,8469,8311,8185,8075,8002,7954,7892,7831,7741,7601,7427,7270,7138,7032,6932,6845,6768,6721,6685,6664,6645,6641,6619,6653,6649,6493,6176,5751,5125,21.2,21.2,21.8,1568333,0.1,13.0,12.0,5.0,450,-1.00,-1.00,56.9438,-18.793774,0.000524,,,,,171 +SATSLF0720,2024246,13.011148,4.15,0.0582,0.1030,0.0175,0.00,16158,640,1,709,700,701,709,722,714,709,712,721,730,733,725,775,885,1213,1965,3161,4522,5769,6681,7320,7801,8212,8663,9166,9795,10537,11403,12413,13530,14699,15871,17001,17954,18677,19115,19237,19058,18684,18133,17538,16982,16535,16154,15936,15870,15937,16206,16608,17178,17924,18845,19920,21140,22465,23922,25384,26874,28288,29541,30542,31293,31703,31698,31366,30724,29800,28733,27513,26333,25152,24073,23060,22208,21477,20865,20378,19989,19712,19551,19437,19442,19551,19729,20001,20365,20793,21319,21888,22502,23168,23819,24426,25000,25477,25834,26096,26157,26027,25755,25281,24629,23906,23112,22237,21373,20518,19764,19050,18397,17832,17360,16959,16636,16394,16211,16119,16081,16101,16183,16354,16569,16886,17238,17662,18152,18721,19344,19986,20676,21410,22150,22897,23584,24311,24961,25551,26125,26548,26872,27121,27234,27236,27152,26942,26604,26211,25710,25150,24557,23921,23272,22620,21954,21313,20715,20117,19569,19072,18577,18183,17816,17474,17195,16918,16685,16477,16278,16099,15897,15705,15544,15405,15293,15193,15108,15035,14997,14977,14981,14986,15012,15038,15076,15107,15141,15184,15244,15252,15262,15277,15281,15310,15325,15319,15313,15259,15191,15133,15066,14982,14878,14745,14592,14430,14233,14028,13808,13575,13307,13027,12752,12453,12153,11853,11572,11300,11057,10810,10573,10311,10003,9697,9381,9102,8857,8630,8469,8330,8176,8082,7997,7929,7886,7811,7731,7597,7421,7265,7130,7008,6905,6808,6756,6704,6659,6649,6651,6631,6622,6632,6627,6475,6166,5751,5123,21.2,21.3,21.9,1568334,0.2,12.9,12.0,5.0,452,-1.00,-1.00,57.4409,-18.935691,0.000535,,,,,181 +SATSLF0720,2024246,13.011404,4.01,0.0562,0.1020,0.0169,0.00,16181,640,1,678,692,705,699,716,705,712,713,728,717,713,715,755,873,1225,1980,3168,4574,5805,6710,7360,7829,8236,8681,9198,9827,10564,11462,12466,13582,14760,15931,17046,18001,18721,19168,19297,19098,18743,18208,17597,17039,16576,16211,15969,15883,15974,16221,16644,17210,17968,18886,19957,21171,22507,23957,25455,26947,28362,29613,30627,31390,31769,31761,31440,30789,29860,28795,27553,26375,25204,24123,23109,22239,21495,20905,20413,20021,19739,19593,19478,19499,19597,19792,20040,20389,20821,21352,21917,22530,23204,23833,24451,25049,25521,25879,26142,26199,26083,25792,25312,24673,23954,23150,22273,21393,20560,19780,19063,18416,17861,17387,16987,16661,16405,16234,16122,16092,16112,16205,16365,16609,16898,17264,17687,18189,18764,19365,20009,20698,21423,22171,22916,23610,24329,24987,25589,26141,26566,26893,27143,27250,27270,27189,26962,26628,26245,25746,25179,24587,23942,23286,22636,21965,21333,20723,20122,19575,19085,18600,18199,17818,17495,17189,16919,16687,16502,16301,16102,15917,15726,15554,15405,15310,15203,15126,15050,15021,14989,14997,14993,15029,15045,15081,15125,15170,15202,15267,15277,15275,15283,15280,15303,15332,15333,15321,15278,15195,15153,15077,14995,14898,14764,14625,14437,14243,14023,13810,13570,13302,13052,12765,12470,12180,11874,11586,11318,11077,10833,10597,10308,10013,9685,9385,9097,8844,8647,8468,8317,8173,8096,7996,7937,7898,7812,7735,7583,7405,7258,7125,7011,6915,6827,6758,6708,6676,6653,6647,6629,6630,6654,6640,6493,6186,5745,5108,21.2,21.3,21.9,1568335,0.1,13.0,11.9,5.0,450,-1.00,-1.00,57.5295,-19.011036,0.000641,,,,,26 +SATSLF0720,2024246,13.011658,4.17,0.0584,0.1024,0.0174,0.00,16167,640,1,695,697,698,695,699,701,696,703,716,712,709,720,749,875,1211,1965,3151,4542,5785,6701,7351,7825,8245,8685,9189,9831,10567,11441,12439,13562,14746,15924,17033,17985,18723,19152,19265,19099,18730,18180,17578,17019,16560,16193,15965,15899,15976,16210,16627,17217,17958,18881,19949,21157,22487,23946,25425,26919,28346,29596,30597,31341,31746,31744,31397,30741,29827,28772,27537,26351,25177,24100,23106,22219,21482,20873,20389,19996,19723,19550,19463,19477,19571,19750,20025,20357,20807,21321,21890,22504,23169,23820,24443,25012,25491,25864,26133,26183,26060,25762,25290,24650,23925,23127,22248,21381,20536,19782,19070,18410,17849,17377,16968,16650,16392,16226,16117,16075,16108,16205,16348,16583,16890,17261,17674,18172,18737,19333,19985,20664,21397,22137,22886,23597,24317,24966,25572,26138,26561,26882,27137,27229,27259,27158,26935,26606,26221,25729,25158,24571,23920,23285,22629,21943,21330,20698,20120,19549,19072,18594,18193,17827,17482,17201,16928,16672,16481,16286,16086,15886,15706,15547,15400,15289,15180,15110,15041,14985,14968,14977,14970,15012,15029,15068,15100,15127,15183,15249,15248,15271,15273,15282,15306,15310,15323,15309,15273,15199,15134,15079,14964,14887,14756,14594,14430,14232,14021,13815,13558,13299,13025,12749,12448,12159,11863,11581,11310,11066,10825,10572,10304,10007,9693,9365,9095,8844,8626,8459,8316,8173,8081,7985,7931,7874,7792,7724,7575,7394,7243,7131,7013,6921,6825,6775,6710,6674,6656,6638,6626,6631,6643,6634,6483,6171,5734,5112,21.2,21.3,21.9,1568336,0.2,13.0,12.0,5.0,451,-1.00,-1.00,56.8593,-18.715495,0.000562,,,,,228 +SATSLF0720,2024246,13.011910,4.06,0.0569,0.1027,0.0173,0.00,16163,640,1,685,687,697,693,701,705,709,709,717,717,718,732,756,885,1217,1971,3164,4547,5772,6701,7349,7817,8229,8665,9181,9817,10563,11439,12437,13568,14741,15906,17019,17968,18708,19137,19265,19084,18715,18174,17584,17016,16554,16186,15957,15890,15977,16205,16592,17191,17946,18849,19914,21143,22486,23917,25416,26893,28327,29580,30576,31328,31722,31723,31381,30732,29797,28758,27504,26337,25163,24083,23085,22234,21485,20887,20385,19997,19698,19542,19447,19446,19579,19749,20014,20364,20800,21319,21861,22493,23175,23813,24421,25016,25485,25844,26112,26163,26039,25760,25265,24643,23927,23121,22257,21392,20539,19766,19056,18391,17831,17357,16949,16629,16375,16221,16101,16069,16098,16197,16360,16585,16885,17250,17677,18162,18742,19338,19975,20672,21397,22137,22884,23593,24309,24978,25568,26133,26562,26891,27117,27217,27240,27161,26933,26613,26229,25719,25158,24553,23925,23266,22595,21947,21317,20690,20096,19540,19059,18581,18177,17813,17485,17197,16929,16689,16480,16270,16086,15897,15722,15549,15409,15296,15193,15101,15043,15004,14961,14983,14988,15015,15034,15065,15104,15142,15188,15244,15253,15261,15267,15269,15298,15318,15323,15309,15262,15179,15139,15069,14974,14870,14741,14603,14408,14243,14022,13809,13569,13301,13038,12756,12453,12164,11866,11578,11307,11057,10813,10570,10305,10010,9686,9379,9092,8848,8636,8481,8337,8187,8085,8007,7935,7877,7814,7727,7589,7413,7254,7131,7013,6910,6825,6753,6709,6667,6645,6639,6625,6619,6635,6635,6470,6185,5756,5130,21.3,21.4,21.9,1568337,0.1,13.0,12.0,5.0,444,-1.00,-1.00,57.1803,-18.835626,0.000604,,,,,185 +SATSLF0720,2024246,13.012167,4.18,0.0585,0.1038,0.0176,0.00,16131,640,1,706,701,710,718,726,706,716,722,714,712,715,738,777,889,1225,1961,3157,4523,5767,6678,7318,7784,8195,8642,9150,9771,10517,11395,12386,13498,14666,15833,16949,17905,18630,19048,19195,19013,18640,18112,17506,16956,16490,16129,15896,15837,15913,16160,16567,17142,17879,18803,19876,21085,22406,23854,25328,26822,28230,29463,30464,31216,31600,31611,31297,30657,29729,28686,27453,26257,25086,24018,23013,22151,21424,20813,20329,19946,19653,19502,19399,19433,19512,19717,19978,20320,20754,21277,21838,22449,23120,23762,24375,24958,25431,25798,26064,26090,25984,25706,25217,24584,23866,23073,22205,21340,20489,19719,19015,18362,17791,17330,16933,16601,16343,16189,16094,16057,16075,16168,16311,16544,16845,17221,17650,18125,18706,19325,19950,20649,21362,22107,22858,23563,24279,24919,25515,26078,26508,26841,27075,27174,27193,27113,26885,26562,26167,25668,25107,24535,23894,23254,22586,21921,21284,20684,20088,19506,19031,18548,18139,17785,17450,17164,16910,16661,16466,16249,16058,15874,15682,15514,15373,15276,15166,15090,15027,15001,14966,14962,14970,14990,15032,15057,15101,15121,15179,15237,15235,15239,15248,15257,15269,15296,15306,15293,15251,15184,15127,15057,14956,14861,14733,14573,14407,14210,14007,13805,13553,13293,13026,12745,12439,12153,11864,11574,11313,11060,10816,10572,10301,10007,9669,9365,9091,8834,8645,8465,8311,8176,8077,7991,7916,7869,7808,7701,7571,7400,7247,7122,7006,6901,6823,6769,6710,6678,6656,6657,6633,6626,6648,6625,6485,6149,5735,5129,21.3,21.4,21.9,1568338,0.3,12.9,11.9,5.0,449,-1.00,-1.00,57.3639,-18.858911,0.000483,,,,,57 +SATSLF0720,2024246,13.012424,4.11,0.0575,0.1028,0.0172,0.00,16162,640,1,693,707,704,697,701,698,705,722,717,725,727,727,765,885,1234,1981,3166,4541,5776,6692,7333,7806,8232,8670,9202,9811,10563,11447,12429,13547,14743,15898,17019,17978,18699,19125,19253,19078,18698,18164,17568,17004,16542,16186,15952,15888,15945,16203,16616,17193,17946,18845,19922,21149,22469,23913,25389,26884,28302,29557,30570,31321,31713,31725,31393,30736,29821,28749,27505,26327,25141,24085,23062,22214,21473,20861,20381,19994,19717,19558,19446,19455,19560,19744,20000,20353,20793,21312,21888,22501,23168,23818,24428,24985,25475,25837,26120,26164,26037,25754,25284,24651,23926,23113,22252,21377,20535,19746,19047,18403,17832,17367,16957,16635,16394,16229,16137,16084,16119,16192,16365,16589,16881,17244,17674,18162,18730,19325,19972,20656,21405,22149,22877,23595,24301,24971,25546,26123,26545,26877,27133,27236,27242,27148,26924,26613,26208,25716,25141,24557,23927,23277,22614,21942,21323,20709,20115,19559,19058,18574,18177,17810,17483,17210,16932,16686,16484,16273,16087,15882,15707,15533,15403,15286,15188,15113,15038,14995,14982,14981,14996,15018,15044,15069,15109,15142,15193,15259,15255,15263,15282,15285,15297,15314,15317,15305,15266,15205,15142,15069,14977,14877,14749,14598,14437,14249,14037,13813,13581,13312,13030,12749,12448,12157,11864,11569,11303,11065,10817,10578,10309,10005,9678,9367,9081,8826,8631,8465,8323,8181,8086,8011,7942,7893,7821,7730,7586,7415,7252,7106,7003,6909,6818,6761,6717,6666,6655,6651,6629,6628,6637,6621,6491,6174,5738,5111,21.3,21.4,21.9,1568339,0.2,13.0,12.0,5.0,452,-1.00,-1.00,57.2547,-18.864859,0.000536,,,,,6 +SATSLF0720,2024246,13.012676,4.18,0.0585,0.1034,0.0178,0.00,16134,640,1,703,698,702,704,717,712,703,707,702,712,714,706,759,887,1225,1973,3156,4529,5760,6677,7329,7804,8212,8650,9160,9780,10521,11399,12394,13527,14681,15863,16974,17930,18651,19077,19212,19044,18651,18123,17527,16980,16505,16144,15921,15847,15933,16158,16572,17156,17905,18829,19890,21115,22430,23865,25345,26819,28241,29504,30498,31262,31650,31654,31330,30678,29752,28688,27463,26261,25108,24021,23019,22150,21434,20820,20327,19957,19663,19498,19420,19422,19522,19722,19981,20333,20752,21283,21845,22450,23124,23765,24373,24960,25428,25810,26074,26120,25985,25728,25242,24586,23878,23076,22210,21329,20479,19717,19021,18360,17806,17344,16913,16611,16367,16193,16089,16035,16068,16162,16323,16544,16848,17214,17654,18123,18707,19305,19949,20632,21364,22100,22841,23560,24262,24933,25523,26086,26509,26842,27084,27188,27210,27098,26896,26565,26179,25675,25104,24539,23878,23251,22586,21917,21282,20675,20087,19517,19021,18557,18154,17796,17458,17176,16901,16673,16465,16250,16055,15867,15689,15515,15373,15260,15160,15101,15016,14980,14966,14958,14962,14989,15014,15051,15088,15111,15169,15217,15244,15246,15266,15258,15278,15309,15287,15291,15237,15185,15122,15050,14974,14873,14733,14581,14407,14222,14007,13799,13545,13271,13018,12723,12450,12148,11861,11573,11312,11050,10810,10564,10295,10011,9680,9362,9083,8843,8637,8466,8309,8180,8080,7985,7926,7863,7808,7721,7580,7405,7265,7121,7009,6912,6820,6757,6700,6644,6643,6630,6614,6609,6641,6624,6474,6173,5737,5118,21.2,21.4,22.0,1568339,0.1,13.0,11.9,5.0,449,-1.00,-1.00,57.1543,-18.785609,0.000559,,,,,180 +SATSLF0720,2024246,13.012931,4.23,0.0593,0.1043,0.0183,0.00,16111,640,1,697,695,702,708,705,724,725,717,717,723,717,729,765,872,1225,1970,3149,4526,5744,6660,7304,7769,8195,8633,9150,9769,10519,11369,12363,13483,14666,15837,16934,17879,18616,19053,19178,18997,18629,18088,17481,16943,16469,16119,15889,15797,15895,16153,16549,17126,17873,18772,19858,21078,22378,23840,25306,26801,28217,29464,30453,31199,31597,31581,31268,30601,29695,28629,27401,26209,25067,23992,22986,22128,21388,20787,20301,19910,19613,19468,19378,19385,19483,19681,19945,20297,20714,21247,21810,22429,23090,23723,24345,24913,25412,25760,26023,26073,25953,25682,25206,24565,23854,23061,22185,21309,20446,19683,18997,18343,17794,17329,16922,16597,16358,16165,16059,16013,16048,16132,16316,16531,16828,17202,17633,18104,18674,19280,19922,20596,21341,22076,22824,23537,24235,24896,25472,26039,26459,26784,27032,27138,27158,27078,26872,26545,26140,25650,25087,24494,23853,23195,22551,21897,21247,20637,20050,19488,19003,18528,18134,17753,17445,17146,16869,16640,16421,16231,16032,15851,15657,15515,15369,15261,15145,15093,15000,14970,14946,14931,14944,14970,14997,15042,15090,15104,15151,15202,15208,15213,15234,15236,15254,15273,15267,15259,15217,15165,15104,15045,14952,14853,14723,14579,14393,14214,14001,13777,13534,13273,13005,12723,12425,12143,11843,11561,11289,11040,10794,10567,10285,9991,9667,9354,9067,8832,8615,8435,8304,8171,8075,7989,7917,7854,7788,7703,7559,7389,7241,7104,6988,6886,6809,6744,6696,6647,6643,6632,6615,6608,6617,6618,6466,6154,5718,5108,21.3,21.4,22.0,1568340,0.1,13.0,12.0,5.0,440,-1.00,-1.00,57.0322,-18.700467,0.000639,,,,,54 +SATSLF0720,2024246,13.013187,4.20,0.0588,0.1043,0.0181,0.00,16113,640,1,723,717,721,696,709,703,705,711,715,717,731,727,780,890,1230,1969,3158,4521,5749,6664,7306,7789,8185,8647,9158,9766,10519,11382,12377,13492,14682,15841,16929,17880,18611,19038,19157,19003,18634,18094,17500,16925,16489,16116,15893,15808,15891,16141,16546,17138,17873,18788,19854,21065,22386,23837,25310,26791,28203,29457,30434,31200,31588,31597,31275,30629,29704,28653,27422,26226,25088,24001,22982,22128,21402,20801,20300,19915,19630,19463,19380,19403,19489,19675,19934,20269,20715,21225,21815,22414,23085,23737,24336,24917,25397,25764,26034,26076,25958,25687,25197,24560,23854,23045,22198,21326,20469,19713,19001,18344,17787,17317,16901,16585,16328,16168,16074,16025,16054,16147,16311,16532,16824,17190,17607,18082,18670,19272,19917,20612,21335,22078,22817,23529,24245,24884,25489,26057,26483,26821,27046,27153,27153,27069,26827,26523,26138,25620,25056,24472,23847,23218,22545,21893,21255,20650,20066,19494,19013,18533,18125,17751,17429,17152,16878,16635,16437,16234,16052,15835,15670,15506,15358,15252,15142,15091,14999,14972,14937,14929,14946,14981,14993,15031,15073,15106,15157,15201,15221,15235,15234,15249,15264,15286,15288,15269,15216,15162,15112,15037,14946,14848,14727,14581,14404,14217,13997,13787,13538,13280,13008,12741,12433,12142,11837,11569,11285,11029,10792,10557,10295,10009,9670,9358,9083,8828,8623,8464,8302,8161,8064,7982,7911,7872,7797,7707,7568,7397,7242,7118,6999,6897,6829,6750,6712,6668,6649,6647,6621,6615,6630,6605,6459,6151,5727,5113,21.3,21.4,22.1,1568341,0.0,13.0,11.9,5.0,449,-1.00,-1.00,57.3491,-18.837225,0.000540,,,,,64 +SATSLF0720,2024246,13.013438,4.32,0.0605,0.1051,0.0184,0.00,16097,640,1,690,699,699,686,695,712,722,718,725,736,737,736,766,890,1202,1964,3146,4512,5754,6660,7301,7757,8173,8618,9145,9741,10481,11368,12361,13461,14635,15771,16894,17842,18565,18997,19129,18953,18593,18041,17464,16898,16451,16086,15860,15785,15872,16122,16525,17089,17845,18750,19816,21036,22340,23788,25273,26742,28166,29408,30423,31157,31546,31538,31210,30553,29646,28601,27366,26172,25017,23958,22950,22093,21359,20763,20291,19893,19609,19451,19346,19371,19466,19648,19917,20271,20698,21234,21778,22400,23061,23707,24315,24908,25371,25732,26005,26053,25936,25653,25166,24542,23840,23033,22173,21287,20455,19673,18978,18318,17767,17293,16898,16589,16340,16179,16060,16021,16051,16140,16298,16521,16818,17180,17627,18100,18683,19272,19927,20596,21306,22057,22798,23521,24213,24868,25459,26048,26454,26781,27034,27136,27141,27045,26834,26493,26100,25621,25058,24485,23834,23179,22539,21878,21245,20635,20037,19481,18989,18509,18121,17765,17433,17133,16879,16626,16439,16230,16039,15844,15665,15497,15341,15239,15136,15073,15003,14961,14944,14961,14949,14983,15005,15035,15074,15098,15141,15213,15220,15225,15230,15233,15264,15274,15265,15271,15211,15158,15102,15029,14946,14848,14710,14564,14385,14192,13989,13765,13523,13269,12994,12700,12401,12135,11833,11545,11289,11042,10787,10554,10296,9978,9666,9365,9076,8825,8603,8434,8287,8166,8073,7999,7933,7878,7819,7721,7572,7390,7243,7109,6992,6894,6813,6751,6705,6666,6646,6649,6623,6617,6632,6624,6465,6152,5731,5118,21.3,21.4,22.1,1568342,0.2,13.0,11.9,5.0,447,-1.00,-1.00,57.1001,-18.700958,0.000576,,,,,80 +SATSLF0720,2024246,13.013694,4.11,0.0576,0.1053,0.0192,0.00,16077,640,1,707,705,692,689,699,698,710,712,713,717,712,717,745,875,1220,1966,3146,4528,5753,6664,7288,7754,8161,8597,9111,9730,10483,11341,12336,13434,14625,15780,16873,17834,18549,18985,19111,18930,18551,18039,17433,16867,16427,16053,15832,15758,15835,16104,16492,17084,17824,18722,19781,20987,22311,23747,25226,26705,28135,29378,30376,31110,31501,31522,31194,30541,29623,28564,27339,26160,24993,23922,22920,22061,21330,20715,20240,19858,19581,19422,19335,19349,19458,19641,19901,20238,20674,21192,21760,22373,23041,23685,24289,24877,25346,25689,25965,26020,25892,25630,25145,24503,23800,22997,22137,21258,20428,19645,18951,18305,17759,17298,16893,16572,16301,16151,16040,16001,16024,16120,16274,16507,16808,17157,17591,18082,18646,19238,19884,20554,21285,22027,22768,23496,24211,24858,25447,26007,26429,26748,26980,27104,27112,27013,26798,26471,26098,25599,25043,24452,23819,23168,22516,21856,21226,20610,20014,19460,18980,18506,18102,17718,17403,17117,16861,16601,16403,16215,16016,15825,15635,15465,15335,15223,15125,15041,14968,14928,14921,14919,14913,14948,14966,15014,15061,15097,15145,15197,15198,15199,15214,15224,15245,15270,15261,15245,15205,15147,15076,15006,14919,14821,14699,14549,14384,14180,13966,13755,13533,13261,12985,12702,12404,12131,11825,11552,11276,11017,10779,10542,10272,9969,9655,9341,9062,8813,8610,8451,8278,8151,8054,7969,7910,7860,7789,7701,7562,7377,7222,7094,6982,6875,6806,6740,6693,6650,6633,6643,6621,6601,6614,6617,6454,6152,5730,5105,21.3,21.5,22.1,1568343,0.1,13.0,11.9,5.0,439,-1.00,-1.00,58.1916,-19.135997,0.000586,,,,,210 +SATSLF0720,2024246,13.013949,4.14,0.0581,0.1056,0.0188,0.00,16076,640,1,704,696,702,693,685,693,699,711,718,723,731,722,759,883,1221,1963,3133,4505,5731,6640,7291,7750,8171,8600,9135,9756,10500,11370,12344,13461,14625,15774,16870,17819,18550,18973,19121,18955,18577,18048,17446,16891,16442,16080,15845,15767,15847,16090,16499,17086,17810,18722,19802,21008,22323,23762,25237,26724,28141,29380,30380,31128,31520,31516,31192,30534,29623,28562,27342,26162,24977,23917,22910,22059,21332,20733,20249,19873,19581,19416,19323,19334,19434,19621,19888,20240,20660,21187,21760,22359,23034,23692,24285,24872,25340,25702,25961,26018,25885,25611,25154,24513,23801,23011,22135,21273,20429,19661,18949,18311,17740,17265,16865,16554,16293,16134,16032,15999,16022,16100,16278,16491,16791,17168,17597,18088,18658,19258,19908,20580,21300,22037,22768,23477,24174,24836,25413,26004,26422,26759,26997,27096,27121,27017,26804,26484,26088,25591,25025,24433,23784,23147,22507,21853,21222,20602,20022,19474,18997,18513,18105,17735,17412,17113,16845,16593,16403,16202,16017,15815,15629,15466,15323,15207,15123,15057,14969,14923,14905,14903,14913,14933,14957,14992,15038,15084,15120,15187,15202,15205,15208,15208,15228,15258,15264,15250,15200,15149,15088,15013,14924,14828,14688,14533,14354,14183,13966,13753,13513,13257,12980,12695,12429,12135,11819,11543,11269,11027,10777,10545,10276,9975,9655,9335,9038,8821,8586,8420,8274,8152,8055,7968,7902,7841,7777,7687,7553,7373,7221,7085,6977,6878,6816,6745,6689,6649,6639,6641,6609,6596,6588,6602,6438,6131,5710,5095,21.3,21.5,22.1,1568344,0.2,13.0,11.9,5.0,437,-1.00,-1.00,57.7336,-18.947810,0.000601,,,,,191 +SATSLF0720,2024246,13.014203,4.33,0.0606,0.1059,0.0195,0.00,16050,640,1,710,712,701,711,720,710,724,717,723,720,737,734,766,896,1237,1961,3136,4494,5727,6614,7255,7718,8133,8578,9077,9700,10447,11309,12293,13393,14554,15712,16815,17747,18465,18906,19021,18861,18488,17959,17381,16832,16378,16003,15785,15710,15788,16036,16441,17029,17777,18681,19733,20945,22269,23701,25172,26641,28054,29301,30297,31037,31429,31420,31097,30449,29545,28497,27274,26098,24932,23863,22873,22026,21280,20678,20189,19809,19552,19397,19310,19321,19421,19596,19861,20200,20631,21144,21716,22325,23005,23636,24258,24830,25297,25650,25931,25984,25845,25587,25098,24464,23739,22965,22101,21233,20390,19629,18932,18269,17729,17269,16853,16541,16281,16129,16030,15984,16001,16109,16257,16493,16761,17135,17569,18066,18613,19227,19850,20533,21272,21995,22755,23469,24158,24821,25397,25960,26394,26709,26957,27062,27073,26985,26761,26438,26042,25546,24996,24414,23777,23122,22485,21819,21199,20586,20000,19447,18945,18473,18067,17703,17387,17101,16826,16600,16401,16185,16007,15813,15616,15451,15303,15199,15103,15029,14954,14920,14897,14887,14909,14901,14943,14989,15032,15073,15115,15187,15189,15202,15200,15205,15216,15242,15230,15230,15186,15125,15066,15002,14909,14809,14683,14529,14360,14165,13965,13754,13511,13255,12992,12696,12402,12109,11799,11527,11255,11015,10773,10541,10270,9975,9650,9339,9053,8815,8610,8438,8265,8150,8045,7959,7899,7836,7777,7687,7557,7380,7219,7088,6981,6893,6801,6753,6689,6651,6633,6617,6604,6597,6605,6608,6474,6149,5726,5109,21.3,21.6,22.1,1568345,0.2,13.0,11.9,5.0,446,-1.00,-1.00,58.0030,-19.011090,0.000588,,,,,147 +SATSLF0720,2024246,13.014458,4.25,0.0595,0.1066,0.0197,0.00,16040,640,1,716,710,714,708,723,725,721,725,733,729,741,741,777,891,1222,1971,3134,4507,5719,6629,7258,7728,8132,8572,9086,9709,10442,11323,12306,13425,14587,15726,16825,17775,18488,18921,19054,18878,18501,17958,17379,16821,16374,16006,15784,15732,15785,16063,16460,17033,17778,18676,19736,20948,22258,23688,25164,26621,28051,29291,30305,31018,31435,31432,31093,30453,29544,28490,27270,26090,24925,23858,22868,22021,21297,20678,20201,19808,19533,19390,19282,19302,19386,19575,19847,20194,20631,21138,21712,22309,22980,23605,24233,24811,25278,25629,25895,25947,25831,25555,25083,24450,23740,22946,22089,21214,20377,19613,18901,18269,17709,17241,16842,16534,16278,16096,16000,15973,16000,16093,16247,16461,16753,17117,17538,18034,18608,19210,19845,20523,21252,21965,22715,23432,24144,24777,25383,25946,26373,26693,26924,27032,27037,26941,26734,26410,26024,25531,24982,24389,23737,23106,22471,21808,21176,20560,19977,19405,18919,18459,18045,17675,17371,17082,16819,16586,16394,16170,15978,15794,15597,15430,15291,15175,15084,14996,14935,14896,14885,14878,14891,14918,14954,14989,15027,15045,15106,15161,15161,15173,15188,15185,15205,15223,15225,15234,15190,15132,15057,14999,14902,14801,14657,14508,14347,14149,13942,13733,13489,13238,12972,12678,12382,12095,11803,11501,11251,11001,10756,10528,10258,9960,9641,9345,9045,8796,8595,8417,8259,8126,8050,7973,7901,7848,7777,7692,7547,7387,7221,7087,6981,6874,6783,6712,6654,6635,6612,6608,6593,6587,6611,6610,6446,6141,5719,5104,21.3,21.6,22.2,1568346,0.1,13.0,11.9,5.0,447,-1.00,-1.00,57.9739,-18.996305,0.000567,,,,,48 +SATSDF0720,2024246,13.259138,0.00,0.0000,0.0000,0.0000,0.00,641,0,1,640,624,634,637,626,636,617,617,609,614,601,631,618,615,626,619,622,623,624,624,619,611,633,630,634,637,648,654,653,650,639,631,631,634,641,645,645,645,645,642,651,634,649,641,640,645,634,643,655,653,656,644,649,647,649,654,652,665,658,654,659,637,643,643,645,633,631,639,647,644,653,647,645,655,634,642,642,649,632,635,638,637,638,636,645,635,631,643,639,643,647,637,651,652,653,649,653,645,636,649,645,641,634,649,653,628,651,644,653,651,644,640,637,630,651,646,645,635,646,651,642,649,637,628,639,626,626,626,635,635,640,634,640,651,644,641,636,651,654,651,640,659,648,642,645,643,633,633,630,629,634,635,640,647,641,643,649,648,634,655,641,645,651,669,649,653,650,650,650,637,635,634,641,631,643,634,632,635,643,653,648,638,651,653,651,656,636,641,639,650,640,645,662,650,643,637,634,637,634,633,626,629,622,640,635,635,636,642,621,635,626,632,635,644,636,649,654,645,643,643,642,638,643,649,645,645,633,640,651,645,649,636,647,656,642,645,645,643,646,649,652,658,650,647,641,633,633,647,642,627,635,631,638,639,637,474,0.0,0.0,0.0,1568345,0.6,13.7,0.1,5.0,56,0.00,0.00,0.0000,0.000000,0.000000,,,,,212 +SATSLF0720,2024246,13.259689,4.05,0.0567,0.1006,0.0160,0.00,16222,641,1,683,699,705,710,709,708,717,717,720,726,722,730,757,895,1237,1981,3161,4557,5798,6727,7368,7837,8257,8704,9232,9838,10611,11495,12488,13613,14803,15987,17098,18061,18785,19213,19373,19177,18797,18251,17665,17100,16621,16256,16026,15957,16012,16267,16691,17277,18033,18941,20017,21251,22556,24036,25521,27018,28444,29709,30712,31456,31846,31867,31533,30869,29926,28874,27640,26449,25274,24188,23181,22314,21571,20970,20477,20099,19808,19637,19541,19547,19648,19840,20101,20433,20875,21392,21966,22592,23274,23917,24535,25113,25582,25935,26213,26249,26124,25840,25360,24724,24004,23202,22324,21449,20593,19829,19131,18473,17909,17431,17024,16698,16439,16273,16168,16128,16149,16246,16409,16662,16953,17298,17731,18219,18790,19409,20051,20736,21473,22231,22970,23686,24395,25061,25654,26221,26661,26978,27239,27328,27330,27242,27045,26708,26309,25821,25253,24662,24016,23358,22698,22022,21386,20768,20180,19624,19130,18674,18254,17881,17549,17256,16981,16725,16521,16321,16135,15941,15755,15592,15442,15341,15225,15145,15060,15042,15012,15015,15025,15057,15077,15113,15148,15177,15236,15287,15298,15320,15317,15323,15349,15350,15351,15353,15293,15229,15182,15120,15025,14934,14794,14647,14461,14268,14055,13835,13591,13326,13060,12779,12500,12201,11906,11604,11344,11069,10842,10614,10341,10037,9717,9407,9127,8871,8670,8488,8322,8195,8097,8020,7946,7896,7827,7745,7589,7432,7269,7129,7019,6926,6859,6769,6719,6691,6669,6656,6641,6635,6649,6658,6509,6196,5771,5133,21.2,21.2,21.6,1568346,0.5,13.2,12.0,5.0,559,-1.00,-1.00,56.9742,-18.830621,0.000595,,,,,103 +SATSLF0720,2024246,13.259871,3.92,0.0549,0.1009,0.0163,0.00,16212,641,1,691,695,702,700,706,706,704,711,717,714,715,729,757,887,1230,1985,3177,4552,5796,6709,7349,7831,8233,8691,9215,9851,10593,11456,12468,13598,14788,15958,17082,18033,18775,19220,19357,19179,18794,18249,17659,17069,16616,16229,16007,15927,16007,16253,16677,17269,18017,18942,20020,21241,22562,24032,25509,27001,28429,29677,30689,31437,31846,31848,31533,30859,29932,28873,27636,26437,25266,24192,23170,22305,21580,20956,20467,20082,19781,19629,19527,19543,19645,19825,20082,20429,20868,21400,21971,22572,23244,23892,24519,25107,25588,25949,26206,26256,26120,25856,25376,24731,24013,23197,22325,21437,20587,19810,19112,18453,17881,17414,17018,16695,16438,16272,16167,16121,16137,16226,16401,16619,16915,17301,17732,18229,18786,19399,20039,20721,21470,22213,22949,23673,24390,25055,25637,26228,26649,26970,27195,27321,27312,27227,27016,26696,26286,25798,25217,24640,23994,23331,22675,22011,21374,20770,20154,19607,19109,18637,18229,17874,17537,17250,16978,16723,16515,16311,16122,15936,15742,15576,15438,15317,15228,15156,15069,15039,15021,14999,15011,15044,15060,15101,15124,15163,15217,15261,15282,15305,15314,15313,15337,15357,15361,15350,15297,15232,15173,15093,14992,14913,14769,14618,14438,14258,14063,13832,13600,13335,13057,12787,12470,12185,11886,11617,11324,11075,10829,10592,10333,10045,9713,9373,9094,8855,8649,8465,8317,8183,8089,8000,7935,7883,7834,7731,7602,7433,7277,7145,7027,6920,6829,6779,6716,6679,6656,6656,6634,6618,6650,6636,6483,6179,5751,5127,21.2,21.2,21.8,1568347,0.2,13.2,11.9,5.0,464,-1.00,-1.00,57.6494,-19.106099,0.000646,,,,,65 +SATSLF0720,2024246,13.260127,3.93,0.0550,0.1008,0.0163,0.00,16205,641,1,694,699,687,673,695,693,699,713,713,712,708,733,749,868,1211,1960,3175,4557,5816,6721,7360,7839,8261,8693,9214,9838,10590,11453,12470,13595,14774,15959,17097,18041,18779,19204,19350,19165,18780,18226,17627,17065,16605,16237,16013,15941,16016,16264,16668,17255,18002,18911,19998,21221,22567,24017,25499,26996,28427,29682,30683,31437,31849,31853,31527,30870,29941,28880,27624,26440,25257,24181,23159,22310,21557,20939,20450,20055,19787,19629,19533,19553,19659,19830,20090,20442,20866,21387,21953,22568,23255,23897,24509,25089,25549,25915,26186,26241,26121,25838,25364,24720,24003,23185,22313,21428,20588,19812,19106,18453,17896,17410,17009,16677,16432,16262,16157,16119,16145,16233,16401,16628,16917,17291,17714,18198,18776,19381,20017,20725,21444,22205,22948,23680,24375,25034,25636,26190,26625,26954,27205,27300,27307,27219,27008,26689,26277,25773,25210,24622,23977,23329,22668,21993,21358,20759,20158,19602,19092,18643,18229,17845,17520,17225,16953,16697,16508,16301,16127,15926,15744,15570,15444,15304,15198,15121,15050,15011,15003,15010,15015,15046,15065,15093,15138,15157,15204,15250,15272,15270,15291,15313,15321,15347,15357,15349,15290,15239,15173,15097,14993,14898,14768,14604,14430,14243,14043,13821,13591,13328,13053,12776,12478,12177,11862,11596,11321,11073,10838,10597,10322,10013,9703,9397,9099,8847,8654,8469,8304,8183,8083,8008,7937,7890,7820,7720,7572,7413,7245,7123,7011,6906,6839,6777,6729,6680,6651,6637,6635,6621,6637,6633,6472,6184,5736,5124,21.2,21.2,21.8,1568348,0.2,13.1,12.0,5.0,448,-1.00,-1.00,57.8929,-19.206716,0.000594,,,,,99 +SATSLF0720,2024246,13.260380,3.99,0.0560,0.1019,0.0172,0.00,16188,641,1,701,685,697,696,689,708,697,702,695,723,702,731,772,885,1215,1962,3162,4539,5799,6707,7351,7822,8258,8702,9221,9841,10594,11474,12464,13582,14765,15925,17057,18011,18738,19177,19313,19128,18747,18214,17610,17054,16592,16208,16000,15914,15998,16242,16657,17229,17973,18885,19951,21185,22509,23974,25475,26950,28381,29653,30659,31399,31795,31801,31467,30810,29885,28822,27573,26389,25224,24136,23131,22278,21538,20912,20424,20045,19756,19593,19484,19509,19588,19799,20054,20398,20833,21355,21936,22537,23213,23864,24485,25064,25543,25905,26163,26209,26084,25794,25325,24681,23957,23153,22293,21412,20572,19794,19079,18426,17861,17398,16972,16647,16403,16235,16141,16092,16113,16213,16378,16601,16903,17283,17701,18198,18765,19369,19995,20696,21414,22171,22914,23640,24339,25005,25600,26182,26593,26928,27181,27266,27275,27191,26993,26650,26259,25761,25178,24602,23941,23306,22642,21985,21342,20730,20144,19582,19085,18609,18205,17835,17497,17213,16937,16695,16509,16293,16108,15938,15741,15564,15426,15301,15204,15121,15063,15000,14987,14987,14999,15014,15051,15088,15122,15162,15211,15261,15270,15286,15284,15296,15306,15347,15325,15315,15277,15208,15142,15082,14989,14914,14757,14615,14440,14249,14046,13820,13580,13302,13033,12763,12461,12176,11877,11594,11319,11079,10838,10597,10317,10023,9697,9394,9104,8859,8634,8466,8314,8176,8082,7995,7930,7883,7805,7731,7591,7410,7253,7129,7010,6915,6842,6765,6715,6664,6655,6635,6619,6625,6642,6643,6478,6167,5745,5121,21.2,21.2,21.8,1568349,0.3,13.1,12.0,5.0,440,-1.00,-1.00,57.5164,-19.018406,0.000612,,,,,34 +SATSLF0720,2024246,13.260639,4.02,0.0562,0.1018,0.0171,0.00,16182,641,1,692,692,702,689,696,691,717,705,711,729,717,734,757,885,1225,1975,3171,4548,5807,6710,7356,7830,8236,8685,9210,9838,10586,11458,12461,13584,14763,15915,17022,17994,18714,19176,19322,19121,18743,18205,17600,17043,16560,16205,15973,15917,15993,16245,16645,17222,17962,18890,19953,21172,22515,23955,25455,26940,28374,29627,30630,31369,31777,31767,31445,30790,29873,28790,27560,26357,25188,24115,23100,22257,21508,20908,20425,20021,19751,19581,19488,19497,19595,19786,20059,20404,20825,21353,21910,22530,23197,23847,24448,25027,25523,25885,26149,26185,26093,25793,25314,24677,23954,23149,22278,21392,20552,19787,19082,18421,17847,17387,16972,16649,16405,16231,16139,16084,16122,16200,16384,16614,16901,17282,17687,18179,18761,19365,20008,20696,21432,22172,22908,23626,24326,24984,25589,26158,26585,26903,27150,27250,27268,27169,26960,26627,26233,25753,25173,24601,23960,23314,22651,21986,21352,20730,20133,19581,19073,18604,18206,17839,17505,17219,16944,16693,16493,16290,16098,15904,15721,15553,15416,15284,15200,15126,15053,15015,14999,14990,15003,15010,15051,15067,15119,15161,15208,15265,15271,15281,15296,15299,15318,15327,15341,15332,15274,15204,15145,15073,14993,14884,14749,14604,14429,14242,14029,13814,13576,13316,13059,12753,12461,12173,11880,11593,11312,11067,10840,10581,10297,10009,9704,9381,9096,8855,8648,8467,8315,8181,8077,8010,7929,7877,7815,7723,7591,7411,7267,7125,7013,6919,6841,6770,6731,6686,6677,6649,6648,6617,6619,6615,6480,6183,5758,5126,21.2,21.2,21.8,1568350,0.1,13.1,12.0,5.0,448,-1.00,-1.00,57.2710,-18.903148,0.000625,,,,,98 +SATSLF0720,2024246,13.260894,4.00,0.0560,0.1023,0.0176,0.00,16168,641,1,695,704,692,697,700,695,698,702,717,718,716,723,761,885,1227,1976,3160,4549,5776,6697,7339,7811,8221,8663,9179,9803,10565,11433,12419,13562,14725,15910,17005,17979,18701,19147,19274,19087,18715,18181,17579,17017,16544,16187,15954,15875,15943,16199,16615,17206,17969,18877,19936,21154,22482,23944,25431,26903,28333,29570,30592,31337,31725,31738,31414,30756,29842,28789,27545,26341,25175,24092,23089,22239,21502,20891,20385,20007,19732,19573,19465,19490,19594,19768,20033,20375,20818,21338,21898,22517,23191,23837,24456,25028,25508,25865,26130,26178,26051,25775,25306,24642,23931,23127,22261,21391,20542,19764,19046,18415,17849,17377,16963,16658,16396,16235,16133,16077,16115,16189,16358,16580,16885,17253,17686,18178,18745,19367,20001,20683,21423,22157,22898,23610,24304,24973,25570,26128,26562,26888,27127,27233,27258,27157,26937,26626,26230,25722,25156,24586,23938,23296,22624,21970,21326,20712,20109,19552,19072,18585,18185,17805,17495,17193,16930,16680,16473,16276,16081,15895,15728,15561,15421,15289,15184,15114,15037,15004,14977,14976,14976,15011,15031,15086,15113,15141,15194,15236,15248,15265,15269,15281,15289,15317,15319,15309,15264,15188,15129,15063,14982,14883,14734,14601,14430,14235,14000,13793,13556,13297,13042,12754,12451,12171,11873,11594,11316,11077,10824,10583,10307,10011,9673,9371,9088,8834,8633,8465,8320,8172,8077,8009,7921,7867,7799,7717,7570,7399,7248,7118,7013,6903,6835,6770,6705,6682,6656,6632,6636,6615,6638,6621,6473,6167,5747,5126,21.3,21.3,21.9,1568351,0.4,13.1,11.9,5.0,449,-1.00,-1.00,57.7968,-19.104923,0.000613,,,,,243 +SATSLF0720,2024246,13.261147,4.08,0.0572,0.1027,0.0173,0.00,16151,641,1,689,681,695,697,686,689,711,710,717,723,716,720,762,877,1209,1963,3144,4532,5768,6681,7310,7784,8206,8659,9174,9803,10557,11433,12426,13539,14728,15885,17010,17957,18675,19118,19251,19064,18707,18153,17564,17005,16533,16170,15942,15864,15947,16179,16581,17181,17917,18838,19918,21144,22481,23925,25413,26885,28308,29549,30570,31306,31707,31698,31363,30710,29786,28733,27501,26309,25142,24062,23065,22208,21476,20858,20365,19978,19689,19545,19449,19475,19568,19750,20017,20354,20795,21315,21876,22493,23168,23797,24422,24992,25469,25829,26089,26148,26026,25748,25264,24625,23913,23120,22257,21381,20538,19761,19038,18381,17818,17342,16935,16631,16372,16203,16112,16065,16094,16179,16331,16579,16865,17210,17640,18136,18726,19348,19986,20660,21388,22133,22885,23601,24308,24949,25555,26113,26538,26854,27110,27205,27224,27123,26906,26587,26192,25697,25126,24557,23917,23276,22628,21957,21302,20690,20103,19525,19049,18580,18176,17808,17468,17177,16913,16672,16469,16263,16080,15889,15701,15543,15398,15280,15181,15106,15029,14991,14975,14971,14978,15003,15019,15060,15101,15116,15159,15226,15231,15250,15269,15256,15279,15315,15304,15299,15255,15188,15138,15060,14962,14871,14718,14573,14405,14219,13994,13781,13553,13294,13028,12743,12446,12162,11851,11565,11291,11056,10804,10570,10306,10007,9678,9374,9083,8850,8617,8457,8293,8167,8063,7985,7927,7876,7802,7714,7574,7406,7241,7111,6995,6909,6823,6756,6709,6669,6651,6645,6612,6605,6621,6608,6464,6158,5733,5117,21.2,21.3,21.9,1568352,0.1,13.1,11.9,5.1,445,-1.00,-1.00,57.3910,-18.912892,0.000691,,,,,2 +SATSLF0720,2024246,13.261403,4.06,0.0569,0.1029,0.0177,0.00,16146,641,1,699,697,705,700,706,697,699,718,714,724,727,738,773,883,1223,1977,3152,4537,5763,6681,7312,7797,8203,8658,9182,9798,10552,11413,12414,13547,14713,15880,16992,17937,18675,19101,19239,19057,18690,18152,17564,16984,16517,16164,15929,15851,15928,16172,16574,17175,17920,18848,19909,21133,22449,23899,25380,26871,28282,29561,30537,31291,31692,31685,31351,30702,29776,28721,27481,26308,25141,24065,23061,22195,21451,20840,20346,19964,19685,19531,19441,19463,19553,19733,19995,20330,20773,21280,21860,22477,23141,23796,24407,24984,25466,25826,26080,26119,26019,25746,25271,24637,23917,23102,22245,21361,20531,19734,19047,18390,17832,17353,16939,16621,16375,16206,16105,16058,16077,16163,16333,16552,16844,17219,17653,18149,18728,19336,19974,20660,21381,22123,22861,23572,24288,24928,25520,26112,26525,26859,27107,27212,27225,27131,26907,26583,26177,25685,25120,24535,23899,23253,22595,21947,21309,20685,20088,19531,19045,18554,18159,17793,17467,17176,16914,16672,16474,16263,16064,15875,15688,15512,15385,15281,15173,15106,15036,14989,14970,14976,14978,15006,15020,15056,15099,15113,15165,15216,15229,15246,15255,15271,15297,15290,15297,15298,15252,15173,15125,15053,14972,14870,14733,14581,14413,14217,14010,13803,13560,13299,13034,12736,12452,12157,11845,11575,11282,11031,10803,10571,10311,9995,9680,9384,9085,8844,8623,8448,8287,8175,8070,7993,7915,7867,7803,7709,7568,7401,7240,7122,7001,6922,6827,6757,6706,6652,6651,6619,6619,6608,6625,6611,6466,6161,5738,5114,21.3,21.3,21.9,1568353,0.2,13.1,12.0,5.0,440,-1.00,-1.00,57.5802,-18.983048,0.000652,,,,,85 +SATSLF0720,2024246,13.261657,4.12,0.0577,0.1032,0.0181,0.00,16143,641,1,705,709,714,715,715,702,715,717,709,702,706,725,758,878,1232,1989,3172,4539,5784,6698,7321,7787,8199,8640,9169,9793,10546,11421,12428,13529,14725,15874,16986,17940,18676,19104,19242,19058,18694,18149,17571,16982,16523,16149,15920,15846,15934,16188,16584,17181,17934,18844,19908,21122,22453,23888,25381,26854,28275,29518,30531,31272,31665,31669,31338,30669,29768,28700,27467,26309,25128,24062,23057,22194,21467,20857,20373,19965,19697,19529,19429,19447,19530,19730,19978,20333,20769,21272,21849,22465,23134,23797,24402,24976,25446,25806,26077,26121,26006,25717,25252,24610,23877,23087,22213,21359,20496,19725,19037,18379,17821,17357,16930,16619,16357,16195,16097,16040,16084,16165,16325,16558,16861,17242,17660,18163,18720,19314,19948,20624,21363,22114,22849,23557,24275,24930,25522,26105,26533,26867,27101,27194,27216,27104,26884,26562,26161,25675,25112,24513,23885,23242,22601,21933,21292,20685,20082,19525,19035,18566,18141,17783,17469,17175,16907,16673,16485,16279,16073,15876,15705,15525,15386,15274,15181,15100,15029,14980,14985,14957,14968,14990,15019,15057,15093,15132,15181,15219,15238,15246,15274,15266,15291,15301,15303,15297,15232,15167,15114,15049,14957,14873,14722,14585,14409,14225,14019,13793,13547,13285,13033,12749,12445,12143,11838,11555,11293,11053,10814,10569,10297,10017,9674,9373,9082,8834,8643,8462,8318,8181,8087,7997,7937,7882,7806,7726,7584,7400,7259,7120,7012,6913,6830,6758,6701,6680,6653,6647,6624,6614,6642,6618,6477,6165,5732,5113,21.3,21.4,21.9,1568354,0.3,13.1,11.9,5.0,445,-1.00,-1.00,57.0620,-18.758479,0.000585,,,,,223 +SATSLF0720,2024246,13.261911,4.10,0.0575,0.1037,0.0181,0.00,16138,641,1,698,702,701,710,725,716,718,716,712,711,724,731,761,893,1226,1975,3155,4538,5797,6710,7329,7803,8237,8669,9191,9805,10557,11434,12414,13527,14709,15877,16987,17955,18681,19101,19242,19058,18683,18149,17552,16970,16504,16144,15911,15859,15933,16187,16586,17183,17924,18849,19893,21106,22437,23877,25345,26843,28264,29525,30524,31272,31665,31685,31338,30682,29751,28707,27457,26277,25104,24026,23021,22178,21449,20836,20354,19964,19675,19510,19405,19420,19513,19707,19981,20325,20768,21283,21847,22477,23138,23768,24386,24949,25431,25797,26062,26117,25994,25735,25237,24609,23893,23091,22226,21357,20485,19723,19019,18357,17804,17341,16942,16616,16370,16189,16109,16044,16070,16165,16328,16548,16841,17207,17633,18136,18704,19329,19942,20635,21367,22115,22849,23559,24270,24913,25524,26081,26509,26836,27061,27184,27191,27107,26890,26563,26159,25666,25093,24521,23884,23229,22576,21901,21287,20677,20093,19534,19033,18548,18137,17788,17445,17153,16881,16647,16449,16248,16073,15861,15687,15512,15372,15256,15162,15088,15017,14982,14944,14949,14971,14998,15021,15041,15097,15117,15171,15220,15227,15245,15257,15269,15269,15298,15293,15282,15251,15168,15114,15045,14951,14866,14717,14582,14406,14220,13993,13783,13547,13277,13010,12737,12437,12147,11863,11565,11293,11054,10798,10562,10295,9985,9675,9372,9077,8827,8633,8458,8311,8173,8077,8002,7934,7878,7813,7726,7585,7414,7259,7124,7005,6897,6812,6753,6713,6665,6652,6633,6622,6616,6631,6635,6476,6168,5749,5123,21.3,21.4,21.9,1568355,0.2,13.1,11.9,5.0,445,-1.00,-1.00,57.1807,-18.803489,0.000606,,,,,12 +SATSLF0720,2024246,13.262167,4.13,0.0579,0.1035,0.0183,0.00,16125,641,1,683,691,694,690,706,705,705,709,716,712,703,711,759,879,1221,1990,3170,4554,5798,6713,7338,7803,8226,8667,9180,9795,10552,11406,12416,13529,14722,15882,16995,17948,18681,19114,19243,19066,18689,18135,17552,16997,16501,16155,15928,15856,15926,16172,16592,17193,17917,18843,19899,21125,22434,23885,25348,26853,28265,29529,30528,31266,31666,31654,31341,30685,29742,28682,27459,26269,25107,24022,23019,22164,21427,20823,20327,19942,19662,19504,19416,19411,19527,19702,19973,20310,20752,21274,21833,22468,23113,23761,24370,24942,25405,25787,26050,26102,25991,25701,25222,24585,23867,23072,22197,21334,20480,19725,19018,18349,17799,17322,16909,16587,16349,16183,16089,16040,16057,16141,16310,16532,16826,17202,17633,18128,18698,19276,19916,20608,21322,22062,22807,23542,24238,24890,25475,26057,26482,26797,27056,27161,27188,27086,26864,26530,26136,25636,25080,24487,23850,23229,22549,21893,21264,20646,20067,19509,19013,18545,18141,17758,17435,17145,16883,16637,16429,16222,16042,15860,15669,15505,15364,15237,15141,15066,14986,14941,14909,14920,14934,14961,14987,15021,15056,15095,15141,15210,15210,15217,15233,15238,15262,15284,15278,15278,15233,15163,15106,15024,14937,14850,14708,14567,14397,14193,13984,13771,13530,13255,13011,12735,12428,12137,11843,11545,11283,11037,10803,10562,10282,9983,9667,9357,9079,8828,8610,8448,8288,8147,8050,7974,7911,7869,7802,7696,7563,7401,7248,7113,6997,6901,6821,6752,6686,6661,6635,6628,6613,6602,6625,6613,6456,6149,5726,5098,21.3,21.4,21.9,1568356,0.3,13.2,12.0,5.0,437,-1.00,-1.00,56.8491,-18.662901,0.000630,,,,,97 +SATSLF0720,2024246,13.262423,4.12,0.0577,0.1034,0.0183,0.00,16126,641,1,688,692,692,695,707,699,708,717,717,717,727,729,763,887,1215,1969,3167,4535,5778,6690,7334,7802,8228,8674,9201,9808,10563,11429,12421,13533,14706,15866,16992,17953,18656,19102,19225,19049,18681,18149,17545,17002,16529,16157,15931,15850,15938,16178,16585,17165,17908,18816,19901,21117,22443,23885,25362,26859,28286,29528,30525,31275,31671,31671,31333,30678,29771,28694,27465,26283,25116,24027,23024,22161,21428,20805,20339,19948,19669,19511,19418,19426,19512,19699,19969,20314,20756,21268,21830,22455,23114,23750,24379,24949,25438,25788,26054,26104,25977,25703,25226,24576,23883,23068,22208,21325,20485,19725,19013,18354,17793,17318,16912,16611,16356,16186,16081,16042,16064,16147,16306,16516,16823,17205,17637,18124,18705,19293,19934,20616,21362,22098,22822,23550,24251,24909,25482,26057,26488,26812,27047,27150,27164,27077,26868,26544,26156,25643,25077,24491,23850,23210,22553,21891,21257,20645,20056,19489,19010,18530,18145,17780,17429,17143,16893,16625,16423,16242,16038,15846,15665,15488,15356,15249,15162,15071,14997,14957,14940,14941,14928,14958,14989,15018,15041,15091,15141,15202,15210,15239,15228,15249,15261,15271,15279,15250,15207,15170,15105,15040,14950,14855,14722,14568,14386,14199,13985,13766,13531,13269,12996,12722,12424,12123,11843,11546,11282,11044,10801,10554,10297,9993,9678,9347,9073,8825,8604,8429,8278,8157,8061,7980,7927,7861,7794,7701,7569,7381,7225,7106,6985,6901,6817,6741,6691,6644,6639,6616,6613,6605,6627,6606,6459,6156,5730,5110,21.3,21.4,22.0,1568357,0.2,13.1,12.0,5.0,445,-1.00,-1.00,57.1187,-18.779414,0.000605,,,,,56 +SATSLF0720,2024246,13.262678,3.94,0.0552,0.1042,0.0182,0.00,16124,641,1,688,699,700,696,705,710,725,716,717,725,729,732,773,877,1221,1978,3158,4545,5776,6699,7346,7801,8210,8657,9185,9805,10549,11412,12417,13532,14709,15866,16979,17937,18673,19097,19248,19050,18679,18154,17554,16990,16524,16153,15905,15847,15917,16171,16581,17163,17899,18804,19890,21104,22435,23882,25350,26825,28250,29512,30496,31271,31653,31648,31322,30676,29751,28694,27462,26264,25099,24034,23017,22165,21426,20821,20347,19933,19646,19488,19386,19405,19521,19688,19959,20320,20757,21274,21829,22459,23101,23764,24364,24944,25413,25788,26033,26099,25971,25704,25211,24573,23864,23092,22201,21335,20492,19705,19012,18343,17799,17319,16910,16596,16351,16182,16082,16028,16071,16145,16311,16535,16815,17188,17614,18111,18668,19282,19909,20603,21351,22097,22821,23539,24242,24889,25486,26053,26469,26802,27050,27148,27176,27081,26869,26545,26129,25636,25079,24488,23844,23206,22541,21885,21237,20629,20049,19520,19017,18554,18124,17769,17443,17160,16890,16633,16424,16231,16036,15852,15669,15508,15355,15253,15142,15081,14997,14953,14937,14929,14941,14963,14999,15034,15074,15104,15157,15208,15213,15237,15237,15241,15260,15275,15275,15262,15216,15165,15109,15021,14941,14841,14717,14568,14397,14203,13985,13793,13541,13262,13005,12725,12424,12141,11842,11552,11279,11028,10789,10560,10291,9992,9668,9367,9069,8828,8614,8459,8298,8158,8058,7991,7914,7867,7795,7703,7569,7391,7242,7101,6999,6900,6827,6749,6691,6656,6637,6619,6615,6609,6617,6611,6472,6166,5723,5111,21.3,21.4,22.0,1568357,0.3,13.2,11.9,5.0,443,-1.00,-1.00,57.6351,-18.984863,0.000616,,,,,28 +SATSLF0720,2024246,13.262934,4.18,0.0585,0.1042,0.0189,0.00,16107,641,1,698,704,711,716,717,712,723,722,714,719,720,736,777,887,1223,1975,3163,4541,5774,6679,7318,7779,8211,8650,9174,9785,10506,11398,12405,13514,14705,15856,16969,17910,18647,19060,19203,19017,18625,18100,17502,16951,16498,16133,15911,15825,15907,16154,16554,17152,17890,18784,19857,21079,22390,23840,25302,26792,28216,29450,30457,31203,31605,31581,31265,30620,29712,28652,27426,26229,25054,23986,22981,22128,21382,20777,20295,19905,19638,19477,19386,19397,19499,19664,19937,20282,20712,21227,21792,22408,23085,23725,24331,24915,25394,25752,26028,26066,25949,25669,25193,24549,23847,23045,22186,21297,20446,19698,18989,18341,17777,17314,16901,16591,16342,16176,16076,16029,16041,16141,16297,16524,16825,17177,17611,18106,18666,19267,19907,20582,21313,22049,22798,23517,24214,24874,25469,26034,26445,26763,27022,27106,27128,27036,26827,26509,26122,25610,25043,24464,23823,23179,22528,21858,21239,20625,20036,19473,18978,18506,18112,17737,17418,17122,16871,16626,16437,16218,16032,15837,15642,15474,15343,15235,15124,15054,14989,14944,14934,14925,14935,14961,14974,15011,15065,15083,15140,15197,15219,15221,15232,15217,15257,15265,15276,15248,15213,15147,15087,15024,14926,14826,14690,14549,14376,14196,13974,13761,13532,13271,13012,12716,12413,12138,11826,11539,11270,11033,10798,10549,10286,9984,9661,9361,9067,8828,8613,8450,8292,8157,8058,7983,7908,7865,7800,7696,7568,7388,7243,7106,6983,6881,6819,6740,6683,6652,6643,6641,6619,6612,6632,6624,6467,6156,5728,5109,21.3,21.4,22.1,1568358,0.2,13.1,12.0,5.0,444,-1.00,-1.00,56.9779,-18.682926,0.000498,,,,,46 +SATSLF0720,2024246,13.263187,4.17,0.0585,0.1055,0.0193,0.00,16076,641,1,691,691,708,698,721,709,715,717,719,725,729,729,771,895,1229,1970,3142,4520,5738,6643,7273,7755,8169,8614,9128,9741,10483,11356,12340,13451,14625,15774,16887,17837,18570,18984,19122,18947,18578,18045,17451,16891,16437,16082,15853,15774,15857,16101,16520,17096,17833,18730,19789,21018,22318,23757,25235,26718,28138,29378,30368,31118,31509,31525,31208,30551,29625,28570,27351,26181,25012,23928,22928,22082,21338,20736,20256,19873,19579,19429,19329,19344,19446,19636,19897,20239,20682,21209,21758,22371,23037,23661,24289,24861,25350,25701,25975,26018,25895,25632,25157,24514,23794,22988,22135,21266,20412,19644,18941,18295,17755,17289,16889,16569,16301,16131,16030,15998,16011,16122,16279,16504,16785,17158,17584,18080,18635,19240,19883,20565,21292,22050,22789,23498,24209,24849,25446,25995,26429,26741,26969,27093,27097,27010,26802,26469,26095,25591,25043,24451,23811,23154,22512,21831,21201,20592,20005,19446,18963,18503,18100,17724,17402,17108,16834,16603,16393,16195,16011,15821,15625,15472,15335,15212,15117,15042,14970,14933,14906,14918,14914,14947,14968,14997,15023,15059,15115,15163,15187,15197,15217,15218,15232,15272,15261,15250,15185,15128,15073,14992,14913,14823,14691,14537,14356,14169,13960,13748,13496,13254,12978,12701,12401,12115,11815,11531,11262,11015,10782,10549,10286,9969,9646,9335,9049,8817,8589,8440,8273,8135,8051,7987,7906,7843,7770,7684,7544,7383,7222,7099,6976,6881,6817,6726,6678,6639,6635,6620,6604,6608,6622,6618,6442,6134,5715,5109,21.3,21.4,22.1,1568359,0.2,13.1,11.9,5.0,434,-1.00,-1.00,57.6175,-18.902009,0.000481,,,,,52 +SATSLF0720,2024246,13.263441,4.04,0.0566,0.1048,0.0189,0.00,16085,641,1,694,692,706,693,707,701,714,713,702,710,722,718,756,877,1207,1971,3154,4513,5745,6664,7298,7756,8183,8617,9134,9764,10505,11373,12352,13453,14627,15781,16910,17859,18597,19018,19155,18973,18589,18062,17462,16900,16442,16084,15840,15773,15869,16124,16519,17095,17839,18749,19807,21013,22332,23789,25265,26745,28166,29421,30413,31153,31547,31553,31234,30573,29644,28586,27357,26192,25028,23950,22949,22093,21348,20762,20261,19888,19590,19438,19357,19368,19473,19658,19925,20261,20707,21212,21769,22393,23069,23701,24304,24887,25363,25722,25990,26038,25925,25643,25186,24534,23814,23028,22148,21293,20442,19669,18970,18329,17764,17286,16887,16571,16324,16154,16053,16005,16024,16121,16274,16506,16793,17156,17591,18081,18642,19250,19887,20567,21285,22041,22779,23495,24197,24842,25440,26007,26428,26761,27004,27101,27117,27026,26813,26480,26077,25595,25047,24458,23821,23162,22510,21850,21198,20605,20013,19462,18967,18500,18092,17717,17407,17125,16853,16602,16414,16210,16019,15827,15643,15473,15342,15213,15111,15059,14969,14934,14923,14918,14921,14955,14972,15015,15047,15061,15127,15178,15193,15193,15207,15224,15235,15263,15259,15269,15216,15129,15085,14993,14917,14810,14685,14544,14368,14178,13978,13758,13515,13253,12986,12703,12415,12125,11835,11545,11272,11016,10761,10535,10253,9971,9640,9346,9062,8806,8600,8439,8280,8159,8054,7982,7901,7848,7783,7700,7544,7376,7221,7105,6993,6882,6811,6740,6685,6651,6637,6618,6598,6585,6599,6595,6456,6153,5726,5109,21.3,21.5,22.1,1568360,0.3,13.1,12.0,5.0,443,-1.00,-1.00,58.1012,-19.117960,0.000644,,,,,144 +SATSLF0720,2024246,13.263697,4.17,0.0585,0.1061,0.0197,0.00,16054,641,1,686,691,700,701,716,702,695,711,721,728,740,734,772,883,1222,1968,3132,4505,5736,6634,7276,7741,8173,8604,9130,9748,10483,11342,12331,13428,14608,15771,16881,17832,18538,18981,19097,18931,18551,18011,17413,16843,16403,16039,15809,15749,15828,16096,16477,17063,17827,18708,19769,20981,22292,23721,25184,26680,28070,29328,30319,31064,31450,31461,31136,30470,29559,28523,27287,26128,24957,23881,22877,22030,21296,20691,20209,19822,19529,19399,19305,19314,19409,19611,19861,20206,20640,21161,21709,22339,22997,23628,24252,24816,25285,25664,25917,25977,25856,25588,25110,24480,23750,22967,22107,21236,20402,19636,18921,18272,17723,17248,16855,16532,16290,16119,16016,15972,15994,16090,16243,16487,16778,17147,17570,18044,18620,19210,19837,20520,21246,22002,22730,23458,24165,24806,25395,25963,26381,26702,26935,27031,27058,26973,26745,26424,26040,25554,25005,24407,23792,23132,22477,21815,21184,20582,19977,19435,18948,18471,18074,17697,17376,17085,16823,16584,16384,16186,15997,15789,15623,15450,15318,15208,15107,15037,14966,14914,14893,14887,14907,14926,14937,14978,15015,15054,15120,15162,15172,15181,15200,15202,15225,15237,15238,15242,15162,15111,15059,14987,14906,14809,14674,14521,14368,14170,13952,13732,13498,13247,12975,12692,12389,12093,11813,11518,11259,11017,10769,10534,10277,9952,9639,9322,9043,8789,8590,8436,8282,8149,8064,7969,7906,7845,7785,7687,7551,7372,7219,7081,6980,6873,6807,6733,6685,6646,6633,6620,6618,6597,6603,6595,6459,6148,5717,5113,21.3,21.5,22.1,1568361,0.3,13.1,12.0,5.0,435,-1.00,-1.00,57.4900,-18.812743,0.000571,,,,,71 +SATSLF0720,2024246,13.263953,4.14,0.0580,0.1050,0.0189,0.00,16098,641,1,712,710,707,705,704,716,725,721,720,730,733,745,785,898,1232,1981,3165,4549,5781,6691,7315,7792,8204,8638,9159,9793,10514,11395,12400,13508,14684,15837,16945,17897,18614,19045,19169,18994,18613,18076,17489,16944,16481,16112,15881,15799,15879,16141,16526,17115,17862,18775,19830,21051,22379,23833,25297,26781,28181,29441,30421,31179,31569,31574,31248,30594,29682,28624,27382,26206,25044,23965,22967,22110,21383,20762,20272,19892,19609,19453,19349,19374,19462,19659,19939,20281,20708,21217,21779,22381,23045,23705,24315,24896,25378,25741,26005,26048,25943,25645,25185,24549,23824,23034,22160,21299,20450,19677,18991,18332,17767,17299,16882,16563,16310,16142,16053,16009,16040,16122,16288,16503,16807,17170,17611,18098,18668,19264,19895,20597,21333,22052,22787,23517,24216,24873,25443,26016,26435,26756,26999,27113,27112,27021,26821,26475,26091,25597,25024,24449,23816,23173,22528,21864,21229,20615,20019,19469,18980,18504,18103,17728,17410,17117,16849,16612,16405,16208,16026,15839,15648,15489,15337,15233,15124,15057,14979,14938,14919,14930,14929,14949,14983,15001,15056,15075,15125,15182,15191,15217,15229,15227,15255,15262,15266,15267,15209,15150,15085,15013,14941,14852,14701,14555,14368,14191,13976,13762,13528,13250,13000,12715,12413,12125,11818,11534,11271,11028,10781,10560,10288,9989,9668,9353,9069,8837,8612,8436,8280,8151,8049,7955,7896,7855,7787,7693,7559,7386,7242,7114,6997,6889,6816,6757,6682,6657,6633,6624,6615,6602,6625,6621,6468,6149,5735,5114,21.3,21.5,22.1,1568362,0.5,13.2,11.9,5.0,440,-1.00,-1.00,57.3286,-18.812824,0.000601,,,,,41 +SATSLF0720,2024246,13.264204,4.16,0.0582,0.1052,0.0186,0.00,16088,641,1,713,712,717,717,713,710,713,723,709,713,715,725,777,897,1231,1973,3141,4513,5729,6655,7297,7761,8185,8622,9154,9765,10506,11366,12357,13462,14625,15790,16889,17838,18569,19003,19122,18958,18587,18054,17463,16892,16451,16082,15844,15776,15847,16101,16504,17086,17835,18742,19809,21021,22326,23783,25251,26725,28141,29398,30397,31156,31547,31546,31209,30560,29638,28570,27341,26149,25012,23917,22923,22092,21360,20752,20286,19888,19600,19444,19341,19364,19456,19657,19905,20247,20685,21201,21771,22391,23041,23690,24302,24877,25354,25714,25998,26037,25915,25660,25165,24539,23797,23011,22155,21289,20439,19666,18954,18315,17742,17278,16885,16560,16325,16151,16052,16006,16027,16119,16280,16502,16805,17172,17592,18078,18664,19265,19918,20589,21301,22067,22805,23509,24219,24858,25453,26011,26434,26758,26999,27101,27124,27024,26817,26493,26090,25611,25024,24434,23811,23163,22513,21844,21221,20611,20032,19482,18994,18522,18117,17754,17425,17134,16860,16617,16418,16212,16022,15833,15652,15498,15348,15227,15140,15058,14995,14954,14928,14917,14935,14950,14966,15009,15048,15077,15135,15189,15198,15211,15232,15230,15239,15271,15278,15259,15217,15159,15095,15028,14930,14837,14690,14546,14378,14189,13979,13761,13509,13251,13000,12717,12430,12137,11844,11558,11286,11036,10797,10561,10288,9981,9659,9341,9061,8813,8613,8445,8293,8164,8053,7984,7915,7867,7803,7703,7575,7402,7241,7117,6996,6893,6819,6763,6698,6653,6635,6612,6599,6589,6624,6613,6458,6143,5731,5117,21.3,21.5,22.1,1568363,0.2,13.1,11.9,5.0,443,-1.00,-1.00,57.6369,-18.914825,0.000673,,,,,132 +SATSLF0720,2024246,13.264459,4.14,0.0580,0.1053,0.0199,0.00,16072,641,1,708,701,701,696,699,703,703,709,709,708,719,728,754,875,1218,1958,3143,4523,5752,6649,7301,7768,8180,8625,9139,9757,10490,11357,12349,13451,14634,15784,16893,17850,18558,18995,19139,18949,18580,18043,17449,16882,16422,16069,15857,15782,15863,16101,16504,17095,17821,18713,19783,21002,22327,23763,25239,26720,28121,29371,30370,31113,31517,31514,31173,30540,29613,28560,27328,26149,24996,23914,22923,22061,21320,20726,20243,19865,19589,19413,19338,19347,19447,19633,19893,20237,20659,21187,21752,22354,23034,23673,24294,24882,25353,25709,25973,26019,25906,25617,25134,24512,23797,23003,22122,21264,20423,19659,18955,18305,17759,17278,16875,16569,16311,16137,16040,15983,16023,16117,16273,16487,16791,17152,17569,18058,18635,19240,19876,20564,21287,22022,22770,23479,24173,24842,25416,25984,26421,26732,26982,27092,27092,27013,26793,26453,26060,25582,25013,24431,23797,23137,22505,21830,21201,20592,19995,19451,18971,18493,18076,17719,17389,17110,16835,16605,16409,16198,16000,15815,15619,15455,15323,15198,15113,15040,14956,14918,14908,14901,14917,14936,14961,14989,15040,15065,15106,15191,15184,15211,15217,15205,15232,15257,15250,15233,15181,15125,15053,14995,14909,14821,14670,14522,14347,14180,13961,13740,13501,13238,12977,12686,12413,12114,11832,11530,11255,11012,10771,10537,10258,9959,9629,9325,9033,8804,8605,8433,8285,8149,8045,7975,7901,7845,7782,7689,7545,7382,7208,7095,6993,6889,6818,6751,6699,6656,6627,6611,6600,6581,6601,6595,6446,6138,5716,5106,21.3,21.6,22.2,1568364,0.2,13.1,12.0,5.0,436,-1.00,-1.00,57.4915,-18.841346,0.000586,,,,,133 +SATSDF0720,2024246,13.509138,0.00,0.0000,0.0000,0.0000,0.00,641,0,1,630,631,633,640,621,631,625,617,612,602,604,615,629,626,627,621,637,628,633,610,615,615,620,643,663,663,651,655,659,644,643,649,644,641,648,641,646,643,647,645,639,650,640,643,644,635,646,644,643,639,647,638,654,640,647,638,635,640,641,652,641,638,641,643,654,646,646,637,647,656,652,637,645,651,654,646,648,637,633,628,656,642,655,665,658,663,655,642,635,641,641,628,635,641,636,648,643,640,647,644,647,642,643,637,634,637,645,650,647,647,656,646,645,634,635,648,631,637,641,642,640,629,635,632,655,645,643,641,640,640,642,641,648,649,649,635,636,639,634,624,635,620,631,636,640,643,668,657,659,649,635,633,643,637,622,635,649,648,642,645,640,647,653,638,648,629,627,638,640,635,657,649,648,650,642,655,644,641,635,643,633,643,630,639,641,639,642,642,635,643,641,641,629,639,642,645,641,630,639,631,631,633,635,645,653,661,648,642,657,650,647,654,637,639,639,635,641,650,645,644,643,628,631,654,646,638,651,636,635,631,640,625,625,624,634,637,635,646,646,641,640,642,654,644,649,641,651,660,650,637,657,637,645,629,633,461,0.0,0.0,0.0,1568363,0.8,13.7,0.1,5.0,56,0.00,0.00,0.0000,0.000000,0.000000,,,,,221 +SATSLF0720,2024246,13.509695,4.08,0.0572,0.1000,0.0152,0.00,16246,641,1,692,693,697,692,711,709,711,717,712,712,701,731,769,880,1226,1978,3173,4557,5805,6733,7385,7865,8279,8725,9243,9877,10628,11505,12517,13637,14834,15991,17104,18087,18814,19232,19383,19193,18829,18276,17693,17102,16647,16273,16033,15966,16045,16309,16702,17306,18060,18971,20051,21275,22598,24053,25545,27045,28475,29746,30764,31520,31906,31898,31591,30921,29984,28922,27689,26475,25305,24219,23221,22360,21625,21002,20512,20117,19829,19657,19566,19584,19677,19875,20134,20497,20924,21441,22013,22644,23305,23961,24557,25149,25638,25991,26256,26307,26184,25899,25403,24765,24045,23237,22353,21487,20634,19857,19152,18484,17928,17449,17051,16717,16472,16299,16211,16153,16179,16273,16429,16650,16967,17333,17771,18258,18845,19444,20089,20788,21509,22258,23011,23739,24441,25111,25684,26263,26691,27027,27264,27381,27389,27294,27082,26756,26346,25853,25274,24690,24032,23405,22736,22067,21434,20821,20213,19662,19158,18669,18269,17906,17572,17275,17002,16774,16570,16345,16147,15949,15766,15610,15475,15362,15250,15193,15115,15069,15060,15057,15033,15043,15079,15125,15161,15207,15249,15299,15315,15334,15325,15339,15350,15389,15380,15377,15317,15264,15210,15132,15035,14928,14803,14646,14471,14293,14068,13860,13623,13354,13083,12798,12499,12210,11927,11625,11354,11103,10861,10618,10350,10056,9721,9416,9131,8882,8671,8499,8340,8203,8105,8035,7964,7929,7841,7753,7606,7431,7281,7143,7037,6945,6855,6789,6755,6702,6693,6673,6657,6645,6658,6659,6501,6195,5766,5132,21.2,21.2,21.6,1568364,0.3,13.2,12.0,5.0,557,-1.00,-1.00,56.9918,-18.866245,0.000577,,,,,55 +SATSLF0720,2024246,13.509877,4.07,0.0570,0.1004,0.0166,0.00,16225,641,1,685,695,698,694,687,695,706,709,714,722,720,721,759,885,1221,1972,3163,4556,5786,6701,7359,7847,8278,8733,9253,9869,10615,11490,12490,13624,14797,15986,17101,18067,18804,19241,19364,19176,18809,18272,17667,17107,16646,16274,16049,15962,16041,16289,16693,17283,18045,18950,20036,21257,22583,24050,25552,27041,28458,29720,30722,31466,31881,31885,31547,30885,29978,28906,27666,26471,25314,24209,23211,22337,21587,20983,20503,20096,19800,19646,19550,19565,19661,19866,20126,20456,20899,21418,21979,22583,23269,23925,24554,25130,25613,25965,26233,26298,26169,25880,25387,24762,24025,23201,22348,21450,20599,19825,19124,18453,17904,17434,17031,16699,16456,16283,16178,16132,16156,16247,16414,16634,16935,17305,17735,18228,18794,19416,20060,20742,21483,22227,22977,23691,24392,25053,25656,26227,26659,26989,27232,27331,27347,27266,27036,26698,26310,25803,25241,24641,23996,23365,22690,22032,21393,20775,20165,19618,19137,18636,18251,17870,17533,17264,16969,16727,16534,16325,16126,15933,15751,15574,15433,15317,15227,15147,15079,15042,15028,15028,15046,15053,15078,15112,15143,15193,15221,15278,15293,15304,15317,15324,15351,15361,15379,15365,15303,15251,15162,15107,15010,14914,14766,14626,14453,14267,14044,13835,13601,13338,13066,12785,12491,12190,11889,11607,11345,11088,10855,10597,10333,10032,9702,9388,9111,8866,8653,8475,8309,8179,8094,8013,7965,7898,7826,7719,7586,7421,7257,7139,7029,6924,6845,6790,6736,6693,6669,6650,6620,6623,6637,6630,6483,6178,5762,5129,21.2,21.2,21.8,1568365,0.2,13.2,12.0,5.0,459,-1.00,-1.00,56.9097,-18.818519,0.000531,,,,,5 +SATSLF0720,2024246,13.510133,4.02,0.0564,0.1015,0.0173,0.00,16189,641,1,700,705,705,699,703,697,698,705,712,717,729,749,778,894,1230,1970,3147,4539,5781,6689,7337,7828,8243,8685,9219,9821,10587,11462,12466,13587,14777,15940,17064,18013,18738,19188,19316,19131,18753,18207,17612,17056,16584,16221,15981,15918,16005,16245,16640,17249,17989,18899,19979,21207,22527,23993,25457,26938,28380,29648,30637,31406,31801,31801,31476,30804,29895,28837,27593,26394,25229,24138,23136,22286,21541,20935,20437,20058,19780,19597,19502,19516,19609,19808,20065,20419,20829,21371,21933,22553,23218,23863,24477,25048,25539,25896,26169,26219,26093,25815,25339,24705,23969,23161,22288,21424,20565,19790,19083,18431,17881,17389,16983,16669,16405,16233,16147,16106,16130,16217,16379,16613,16902,17278,17706,18201,18774,19369,20015,20714,21426,22167,22924,23645,24343,25000,25593,26150,26582,26909,27144,27256,27274,27197,26977,26653,26245,25760,25193,24597,23954,23298,22650,21981,21336,20730,20130,19569,19076,18607,18193,17837,17502,17219,16941,16699,16488,16288,16097,15909,15710,15559,15409,15306,15198,15125,15054,15019,15000,14989,15009,15022,15049,15082,15110,15139,15189,15245,15255,15278,15286,15289,15319,15331,15332,15314,15256,15203,15139,15072,14981,14889,14757,14612,14434,14243,14026,13815,13575,13323,13045,12773,12461,12167,11877,11596,11306,11063,10824,10588,10330,10009,9691,9371,9089,8853,8620,8451,8313,8181,8097,8013,7955,7902,7822,7732,7590,7421,7252,7141,7025,6919,6846,6776,6723,6679,6669,6637,6626,6610,6632,6633,6484,6177,5757,5125,21.3,21.2,21.8,1568366,0.3,13.2,12.0,5.1,447,-1.00,-1.00,57.4208,-18.982651,0.000560,,,,,244 +SATSLF0720,2024246,13.510386,4.19,0.0587,0.1000,0.0158,0.00,16234,641,1,689,705,697,699,715,714,709,717,708,706,715,745,775,905,1233,1992,3181,4553,5812,6729,7364,7848,8276,8722,9241,9863,10607,11493,12496,13624,14808,15997,17115,18086,18802,19224,19347,19175,18793,18248,17664,17094,16631,16252,16027,15954,16049,16293,16704,17280,18039,18955,20028,21269,22577,24042,25528,27027,28455,29712,30730,31488,31885,31872,31546,30891,29963,28907,27655,26459,25285,24222,23201,22348,21601,20977,20499,20108,19825,19641,19565,19560,19661,19849,20114,20474,20914,21423,22008,22605,23282,23936,24557,25124,25604,25969,26221,26273,26150,25861,25384,24760,24045,23237,22363,21483,20627,19850,19158,18477,17917,17435,17040,16713,16470,16288,16178,16144,16173,16245,16406,16665,16961,17326,17761,18248,18823,19426,20075,20775,21498,22233,22982,23701,24416,25072,25666,26240,26670,26989,27221,27348,27354,27269,27056,26726,26323,25822,25255,24661,24027,23371,22715,22045,21413,20788,20203,19630,19127,18653,18251,17875,17547,17258,16990,16738,16551,16346,16142,15939,15758,15589,15459,15350,15246,15181,15093,15067,15030,15031,15035,15067,15091,15120,15157,15193,15238,15285,15299,15304,15321,15330,15353,15369,15376,15360,15315,15241,15188,15117,15029,14938,14794,14641,14468,14276,14069,13857,13609,13346,13079,12787,12505,12213,11904,11623,11342,11111,10857,10609,10347,10033,9717,9409,9112,8882,8668,8504,8337,8209,8121,8041,7961,7909,7860,7749,7611,7431,7273,7146,7033,6939,6857,6800,6725,6694,6676,6672,6650,6643,6684,6666,6506,6186,5768,5144,21.3,21.2,21.8,1568367,0.3,13.2,12.0,5.0,445,-1.00,-1.00,56.7457,-18.748303,0.000532,,,,,76 +SATSLF0720,2024246,13.510636,4.03,0.0564,0.1026,0.0171,0.00,16175,641,1,685,687,710,697,708,720,710,709,712,711,711,727,754,875,1229,1978,3157,4531,5779,6697,7346,7817,8229,8679,9206,9826,10577,11445,12448,13563,14745,15913,17026,17984,18706,19149,19289,19105,18737,18181,17596,17029,16557,16194,15957,15900,15964,16235,16630,17204,17953,18868,19947,21153,22496,23937,25424,26921,28344,29588,30610,31349,31743,31741,31412,30757,29837,28778,27546,26344,25187,24122,23097,22247,21509,20894,20405,20021,19728,19555,19456,19480,19573,19767,20051,20385,20833,21342,21899,22528,23193,23837,24450,25032,25501,25856,26140,26187,26066,25789,25312,24667,23938,23130,22278,21410,20551,19774,19054,18407,17845,17377,16970,16653,16405,16231,16141,16099,16118,16217,16382,16592,16887,17262,17690,18163,18741,19344,19992,20683,21422,22148,22924,23624,24327,24987,25577,26141,26566,26891,27152,27258,27276,27175,26953,26628,26219,25720,25179,24582,23950,23286,22638,21952,21328,20713,20116,19573,19082,18593,18203,17826,17497,17200,16921,16695,16488,16284,16109,15897,15713,15564,15401,15297,15201,15129,15051,15013,14989,14983,15000,15017,15027,15092,15122,15148,15205,15248,15262,15271,15280,15289,15313,15331,15325,15306,15264,15194,15147,15065,14983,14883,14747,14612,14428,14231,14025,13802,13563,13296,13041,12762,12463,12171,11871,11574,11315,11064,10835,10603,10316,10017,9698,9378,9089,8853,8641,8458,8311,8189,8080,8016,7941,7885,7828,7737,7590,7412,7256,7137,7023,6922,6825,6755,6717,6672,6677,6645,6643,6626,6651,6627,6480,6179,5745,5128,21.3,21.3,21.8,1568368,0.2,13.1,12.0,5.0,445,-1.00,-1.00,57.3261,-18.910836,0.000579,,,,,36 +SATSLF0720,2024246,13.510892,3.98,0.0557,0.1023,0.0171,0.00,16183,641,1,701,702,699,695,711,706,709,698,698,705,713,741,770,885,1224,1965,3154,4546,5779,6705,7349,7816,8248,8705,9212,9841,10582,11445,12461,13576,14748,15918,17047,18016,18745,19185,19319,19133,18743,18203,17617,17045,16578,16212,15982,15915,15997,16228,16641,17240,17980,18884,19970,21173,22491,23979,25444,26938,28368,29633,30637,31369,31778,31789,31445,30807,29864,28796,27557,26375,25213,24132,23125,22255,21514,20899,20419,20013,19729,19569,19469,19479,19597,19778,20037,20407,20842,21354,21939,22539,23207,23849,24459,25041,25519,25886,26165,26205,26087,25805,25319,24665,23954,23158,22266,21395,20544,19780,19089,18440,17877,17389,16990,16656,16409,16231,16129,16103,16120,16208,16375,16603,16907,17268,17680,18182,18750,19360,20008,20678,21422,22178,22930,23637,24336,24996,25597,26161,26583,26907,27152,27250,27278,27169,26976,26650,26250,25750,25175,24593,23949,23296,22641,21961,21351,20742,20130,19579,19080,18612,18199,17837,17509,17224,16959,16704,16507,16294,16092,15911,15711,15550,15405,15297,15193,15130,15070,15021,15000,14989,14993,15025,15046,15081,15117,15157,15192,15254,15266,15284,15285,15297,15294,15311,15301,15296,15264,15201,15147,15086,14985,14892,14749,14599,14430,14234,14022,13811,13572,13313,13044,12776,12473,12182,11875,11585,11308,11053,10809,10584,10312,10021,9695,9382,9095,8847,8648,8472,8308,8183,8085,8009,7930,7890,7821,7736,7602,7406,7266,7123,7026,6916,6843,6771,6715,6678,6654,6648,6637,6618,6640,6617,6466,6153,5742,5122,21.3,21.3,21.9,1568369,0.3,13.2,11.9,5.0,451,-1.00,-1.00,57.3309,-18.930760,0.000600,,,,,241 +SATSLF0720,2024246,13.511144,3.99,0.0559,0.1021,0.0170,0.00,16166,641,1,683,705,694,688,691,691,711,707,727,724,723,741,778,900,1221,1975,3170,4537,5773,6701,7333,7805,8225,8675,9186,9809,10554,11429,12447,13548,14732,15907,17017,17969,18702,19137,19269,19105,18728,18178,17578,17015,16557,16177,15954,15877,15953,16205,16613,17203,17963,18849,19941,21160,22484,23939,25424,26914,28330,29591,30612,31338,31739,31746,31402,30759,29825,28779,27537,26349,25186,24099,23085,22222,21501,20869,20407,20014,19729,19578,19477,19476,19584,19767,20018,20362,20811,21338,21901,22514,23177,23830,24453,25029,25516,25874,26130,26185,26059,25770,25281,24651,23922,23125,22253,21386,20533,19774,19057,18407,17832,17371,16969,16637,16388,16247,16130,16087,16102,16199,16361,16582,16887,17244,17669,18167,18742,19349,19994,20680,21405,22137,22891,23613,24327,24977,25568,26138,26554,26881,27118,27237,27254,27152,26933,26613,26221,25722,25150,24573,23929,23281,22620,21962,21320,20737,20106,19568,19085,18605,18192,17805,17478,17177,16924,16679,16477,16271,16075,15900,15713,15550,15410,15273,15179,15109,15026,14989,14976,14973,14977,15003,15033,15058,15099,15133,15173,15227,15239,15239,15267,15283,15301,15321,15319,15310,15274,15208,15149,15072,14992,14886,14741,14586,14407,14223,14023,13792,13564,13300,13045,12762,12469,12181,11865,11571,11303,11042,10798,10571,10292,10006,9683,9379,9093,8836,8631,8459,8296,8165,8069,7997,7918,7883,7813,7721,7582,7420,7253,7129,7001,6919,6821,6775,6720,6661,6641,6628,6614,6602,6611,6612,6466,6167,5718,5115,21.3,21.3,21.9,1568370,0.2,13.2,12.0,5.0,443,-1.00,-1.00,57.7697,-19.093585,0.000638,,,,,42 +SATSLF0720,2024246,13.511401,4.17,0.0585,0.1028,0.0170,0.00,16153,641,1,713,715,706,700,709,701,712,709,706,717,729,729,763,887,1225,1973,3159,4530,5760,6663,7308,7772,8187,8648,9172,9782,10528,11403,12405,13510,14702,15859,16961,17922,18644,19084,19223,19033,18665,18115,17538,16970,16500,16145,15912,15855,15926,16180,16584,17169,17927,18824,19891,21122,22438,23883,25370,26856,28279,29526,30516,31283,31701,31675,31367,30708,29777,28708,27461,26308,25126,24049,23058,22194,21461,20843,20361,19963,19701,19525,19446,19445,19555,19742,20011,20351,20778,21301,21873,22486,23158,23819,24412,24997,25461,25836,26111,26155,26037,25762,25267,24646,23920,23122,22249,21383,20521,19753,19045,18390,17826,17363,16946,16635,16385,16215,16116,16083,16102,16186,16369,16577,16881,17253,17677,18170,18735,19345,19978,20673,21394,22146,22884,23603,24320,24973,25565,26113,26551,26865,27118,27226,27235,27133,26933,26605,26202,25708,25143,24550,23921,23277,22613,21939,21313,20706,20112,19546,19068,18605,18170,17819,17489,17206,16928,16689,16501,16285,16085,15900,15700,15552,15400,15291,15186,15112,15037,15001,14966,14958,14983,15018,15030,15068,15113,15129,15174,15255,15253,15275,15275,15285,15299,15323,15324,15313,15272,15213,15149,15058,14987,14885,14755,14605,14414,14219,14011,13795,13565,13297,13023,12738,12441,12155,11861,11578,11305,11069,10817,10589,10307,10023,9686,9376,9092,8852,8629,8471,8311,8178,8095,8008,7938,7886,7815,7714,7587,7418,7249,7127,7017,6917,6831,6774,6719,6685,6659,6646,6632,6617,6628,6629,6473,6155,5739,5120,21.3,21.4,21.9,1568371,0.2,13.2,11.9,5.0,438,-1.00,-1.00,57.5742,-18.976666,0.000598,,,,,99 +SATSLF0720,2024246,13.511655,4.21,0.0590,0.1032,0.0179,0.00,16135,641,1,704,709,706,710,709,709,705,718,718,715,719,729,765,898,1233,1971,3155,4534,5765,6686,7314,7754,8194,8644,9172,9789,10548,11405,12410,13498,14691,15856,16974,17933,18650,19083,19217,19027,18653,18116,17528,16972,16507,16146,15927,15849,15929,16174,16573,17173,17912,18817,19886,21109,22434,23860,25344,26829,28237,29499,30507,31261,31644,31653,31318,30663,29758,28697,27451,26278,25104,24024,23037,22165,21443,20832,20351,19947,19683,19521,19427,19434,19526,19717,19981,20318,20761,21282,21847,22468,23126,23764,24384,24957,25443,25794,26068,26126,26001,25717,25232,24597,23877,23074,22212,21323,20482,19728,19001,18367,17820,17340,16925,16628,16357,16188,16090,16041,16067,16154,16321,16549,16849,17218,17650,18133,18708,19306,19939,20631,21353,22103,22838,23574,24279,24932,25515,26082,26507,26821,27073,27187,27192,27115,26882,26568,26167,25680,25106,24523,23891,23225,22583,21920,21284,20675,20085,19528,19033,18565,18164,17792,17458,17169,16906,16664,16450,16254,16069,15873,15690,15523,15370,15268,15166,15095,15018,14977,14952,14971,14969,15008,15010,15050,15089,15114,15170,15224,15243,15253,15277,15266,15289,15306,15287,15291,15234,15176,15118,15056,14970,14868,14733,14587,14404,14225,14007,13785,13552,13305,13024,12737,12438,12143,11845,11549,11283,11042,10807,10573,10314,10005,9690,9369,9082,8841,8626,8451,8295,8162,8070,7985,7918,7874,7801,7722,7572,7393,7244,7113,7007,6895,6829,6772,6713,6669,6647,6628,6631,6617,6636,6637,6475,6177,5760,5126,21.3,21.4,21.9,1568372,0.1,13.2,11.9,5.0,446,-1.00,-1.00,57.0250,-18.731175,0.000503,,,,,57 +SATSLF0720,2024246,13.511908,4.32,0.0605,0.1051,0.0182,0.00,16093,641,1,689,700,688,695,693,701,705,704,711,710,735,732,778,886,1227,1955,3135,4502,5717,6629,7248,7731,8146,8586,9085,9724,10465,11323,12313,13431,14598,15771,16865,17821,18529,18967,19100,18912,18552,18007,17429,16888,16422,16065,15826,15753,15835,16085,16489,17081,17832,18733,19798,21019,22326,23767,25253,26730,28133,29394,30389,31136,31525,31515,31186,30555,29626,28568,27348,26169,25024,23933,22941,22093,21365,20758,20267,19891,19606,19450,19347,19367,19460,19660,19934,20268,20705,21216,21778,22391,23075,23705,24314,24882,25363,25734,25988,26041,25920,25647,25157,24545,23825,23027,22164,21290,20437,19675,18977,18332,17768,17312,16896,16569,16329,16163,16061,16019,16039,16132,16293,16521,16819,17197,17618,18099,18675,19281,19900,20589,21322,22067,22820,23534,24223,24893,25476,26041,26462,26803,27024,27141,27144,27056,26845,26514,26123,25618,25063,24485,23849,23205,22529,21883,21258,20651,20050,19506,19013,18530,18138,17767,17428,17145,16873,16629,16439,16227,16049,15847,15665,15496,15357,15240,15125,15083,15000,14951,14939,14958,14949,14963,14995,15026,15083,15090,15150,15205,15220,15227,15228,15239,15261,15275,15287,15280,15229,15168,15110,15042,14945,14852,14707,14575,14390,14200,13986,13785,13530,13277,13009,12733,12448,12150,11846,11558,11287,11035,10797,10550,10283,9987,9675,9369,9078,8829,8613,8443,8279,8153,8053,7978,7913,7857,7795,7723,7571,7392,7240,7108,6986,6889,6812,6740,6704,6660,6648,6626,6627,6620,6629,6621,6471,6156,5733,5108,21.3,21.4,21.9,1568373,0.2,13.1,12.0,5.0,444,-1.00,-1.00,57.7928,-18.977185,0.000635,,,,,65 +SATSLF0720,2024246,13.512164,4.08,0.0572,0.1035,0.0177,0.00,16148,641,1,692,702,693,701,706,712,715,713,712,717,721,728,756,876,1220,1966,3152,4535,5772,6681,7315,7781,8202,8642,9154,9797,10537,11422,12417,13531,14697,15879,17002,17952,18661,19088,19221,19049,18667,18139,17540,16979,16510,16151,15925,15844,15943,16187,16578,17167,17911,18833,19880,21115,22437,23880,25363,26875,28280,29522,30531,31289,31689,31666,31360,30695,29786,28724,27485,26301,25136,24064,23045,22190,21451,20845,20356,19966,19677,19526,19416,19450,19540,19729,20001,20346,20774,21293,21858,22479,23146,23798,24408,25013,25465,25841,26093,26148,26021,25735,25251,24611,23889,23098,22241,21378,20525,19758,19053,18388,17829,17355,16951,16640,16371,16205,16102,16059,16087,16168,16331,16569,16860,17232,17661,18159,18733,19322,19963,20653,21384,22139,22873,23589,24286,24953,25544,26111,26551,26853,27104,27211,27237,27141,26920,26612,26206,25688,25141,24550,23908,23268,22608,21942,21297,20680,20103,19517,19041,18568,18173,17789,17473,17189,16923,16685,16473,16261,16072,15885,15677,15521,15387,15261,15179,15107,15040,14993,14971,14980,14980,15014,15017,15032,15093,15128,15171,15243,15249,15250,15260,15268,15285,15313,15308,15308,15241,15187,15127,15047,14965,14872,14726,14589,14413,14222,14006,13805,13559,13296,13032,12748,12458,12157,11858,11574,11299,11046,10814,10586,10313,10009,9681,9373,9075,8833,8623,8460,8305,8171,8075,8009,7933,7875,7810,7721,7586,7401,7244,7117,7010,6915,6833,6767,6711,6663,6634,6628,6612,6607,6635,6641,6492,6178,5742,5115,21.3,21.4,22.0,1568374,0.3,13.1,11.9,5.0,446,-1.00,-1.00,57.7638,-19.056225,0.000570,,,,,140 +SATSLF0720,2024246,13.512418,4.24,0.0594,0.1044,0.0178,0.00,16109,641,1,705,703,709,696,703,697,708,697,715,723,721,734,756,883,1221,1973,3146,4525,5725,6641,7291,7765,8178,8622,9141,9751,10502,11367,12359,13462,14645,15805,16903,17863,18588,19016,19148,18955,18600,18054,17467,16904,16448,16081,15863,15793,15880,16140,16524,17118,17861,18760,19832,21043,22354,23814,25291,26789,28197,29445,30445,31186,31574,31576,31250,30600,29684,28626,27397,26221,25054,23979,22977,22126,21409,20780,20306,19913,19621,19468,19374,19386,19490,19690,19948,20291,20741,21250,21815,22433,23094,23725,24350,24930,25408,25778,26042,26084,25949,25683,25198,24555,23851,23053,22193,21318,20468,19697,19001,18343,17779,17306,16903,16579,16317,16161,16070,16018,16062,16148,16306,16537,16827,17197,17618,18101,18677,19287,19921,20602,21345,22091,22829,23542,24249,24898,25495,26072,26476,26807,27053,27154,27170,27082,26851,26529,26141,25648,25067,24475,23864,23209,22530,21884,21269,20651,20058,19494,19013,18543,18138,17765,17421,17151,16888,16629,16438,16237,16029,15855,15661,15499,15361,15256,15149,15078,14998,14972,14941,14946,14954,14981,14996,15031,15073,15093,15155,15212,15219,15233,15233,15250,15265,15287,15289,15286,15238,15179,15122,15041,14938,14840,14710,14557,14393,14205,13998,13769,13539,13280,13015,12726,12450,12146,11843,11546,11270,11025,10785,10559,10289,9985,9674,9360,9080,8829,8613,8439,8289,8154,8069,7982,7912,7872,7797,7704,7561,7381,7239,7109,6989,6903,6816,6767,6717,6669,6647,6647,6619,6609,6631,6624,6482,6155,5731,5115,21.3,21.4,22.0,1568375,0.2,13.2,11.9,5.0,442,-1.00,-1.00,57.7724,-19.002176,0.000602,,,,,21 +SATSLF0720,2024246,13.512669,4.04,0.0566,0.1034,0.0175,0.00,16146,641,1,704,710,695,707,704,702,709,709,708,727,722,745,772,893,1240,1977,3159,4526,5755,6681,7309,7778,8195,8647,9161,9795,10533,11412,12408,13526,14698,15859,16978,17927,18661,19101,19221,19034,18653,18106,17525,16961,16513,16150,15909,15853,15933,16167,16576,17150,17899,18817,19884,21089,22411,23862,25349,26838,28249,29518,30504,31266,31667,31637,31315,30681,29757,28698,27461,26284,25123,24045,23040,22173,21450,20841,20349,19963,19672,19522,19419,19438,19546,19729,19986,20343,20763,21285,21847,22467,23138,23793,24400,24977,25456,25829,26065,26123,25995,25728,25265,24622,23913,23114,22241,21348,20516,19752,19045,18408,17833,17367,16949,16617,16388,16203,16093,16060,16071,16175,16345,16563,16878,17234,17656,18154,18712,19326,19969,20655,21381,22113,22858,23575,24285,24949,25544,26118,26554,26861,27107,27209,27231,27154,26920,26590,26187,25704,25130,24533,23889,23245,22596,21928,21295,20679,20085,19541,19044,18571,18173,17802,17467,17176,16902,16672,16471,16271,16075,15886,15710,15536,15397,15278,15183,15097,15029,14989,14951,14967,14970,14997,15020,15047,15111,15149,15203,15236,15255,15261,15266,15273,15289,15320,15317,15296,15240,15191,15134,15061,14981,14887,14746,14593,14423,14233,14025,13795,13567,13314,13035,12748,12456,12163,11860,11583,11313,11053,10837,10597,10326,10025,9690,9379,9091,8856,8646,8461,8310,8177,8075,7995,7927,7885,7805,7724,7589,7413,7264,7139,7011,6911,6838,6769,6715,6688,6663,6647,6644,6622,6637,6637,6475,6161,5739,5121,21.3,21.4,22.1,1568375,0.2,13.1,11.9,5.0,438,-1.00,-1.00,57.7724,-19.044207,0.000572,,,,,211 +SATSLF0720,2024246,13.512925,4.09,0.0573,0.1052,0.0190,0.00,16077,641,1,709,710,707,703,702,695,708,705,711,706,715,723,765,891,1218,1987,3158,4531,5741,6655,7278,7732,8167,8618,9129,9733,10481,11357,12352,13462,14625,15793,16894,17856,18560,18993,19131,18953,18569,18037,17434,16878,16410,16050,15843,15772,15837,16104,16517,17081,17824,18724,19788,21006,22325,23752,25243,26705,28131,29377,30372,31112,31502,31507,31191,30548,29632,28573,27340,26149,24986,23917,22917,22067,21335,20743,20254,19870,19605,19434,19340,19354,19448,19646,19908,20244,20685,21180,21752,22363,23038,23685,24299,24871,25349,25709,25962,26029,25910,25628,25152,24505,23794,22987,22129,21266,20426,19668,18950,18311,17754,17297,16878,16573,16309,16145,16040,15993,16009,16105,16262,16487,16795,17153,17582,18075,18640,19256,19876,20556,21278,22043,22769,23490,24185,24851,25435,26000,26416,26753,26981,27095,27120,27020,26793,26483,26088,25582,25028,24432,23809,23162,22496,21853,21213,20597,20003,19458,18970,18501,18105,17741,17404,17124,16853,16610,16409,16197,16011,15822,15639,15482,15345,15217,15109,15034,14961,14912,14898,14907,14915,14933,14967,15002,15045,15077,15127,15174,15186,15203,15202,15203,15234,15262,15254,15244,15185,15134,15082,14992,14923,14818,14689,14545,14374,14189,13986,13754,13524,13259,12974,12712,12413,12131,11817,11533,11274,11012,10774,10548,10261,9963,9653,9349,9060,8827,8613,8439,8295,8145,8050,7980,7893,7829,7765,7678,7554,7381,7242,7113,6988,6887,6800,6747,6686,6654,6635,6622,6595,6600,6599,6611,6457,6149,5729,5111,21.3,21.4,22.1,1568376,0.1,13.1,12.0,5.0,443,-1.00,-1.00,58.0240,-19.066401,0.000606,,,,,161 +SATSLF0720,2024246,13.513182,4.27,0.0598,0.1067,0.0202,0.00,16031,641,1,686,695,709,694,698,697,690,701,709,707,721,712,755,882,1214,1947,3114,4480,5704,6616,7250,7714,8121,8565,9083,9684,10439,11306,12294,13401,14569,15721,16813,17776,18478,18906,19034,18850,18484,17960,17372,16822,16367,16013,15772,15709,15795,16029,16442,17029,17764,18657,19716,20935,22257,23685,25158,26617,28032,29271,30265,31018,31417,31409,31080,30448,29533,28473,27245,26075,24917,23858,22865,21998,21297,20673,20194,19809,19518,19367,19277,19283,19383,19581,19845,20189,20613,21128,21675,22309,22973,23614,24234,24813,25275,25622,25890,25943,25830,25545,25080,24430,23722,22933,22065,21203,20363,19621,18913,18265,17705,17233,16822,16510,16253,16091,15997,15953,15978,16064,16229,16455,16752,17099,17536,18025,18581,19203,19846,20522,21229,21980,22717,23425,24123,24781,25370,25936,26357,26682,26922,27021,27045,26955,26744,26413,26027,25525,24962,24389,23757,23105,22461,21798,21175,20565,19982,19407,18925,18455,18035,17675,17357,17064,16800,16559,16363,16169,15977,15776,15590,15437,15306,15194,15085,15013,14918,14889,14869,14881,14884,14909,14940,14974,15016,15044,15090,15145,15164,15177,15177,15182,15190,15229,15204,15207,15161,15099,15042,14957,14883,14778,14648,14487,14325,14136,13937,13719,13477,13234,12962,12670,12377,12079,11796,11507,11239,10977,10741,10522,10257,9953,9628,9327,9033,8799,8590,8421,8264,8145,8030,7963,7895,7842,7777,7687,7541,7357,7213,7071,6959,6862,6784,6727,6682,6644,6623,6613,6594,6589,6596,6599,6443,6151,5713,5093,21.4,21.5,22.1,1568377,0.4,13.1,12.0,5.0,441,-1.00,-1.00,57.9895,-18.992105,0.000576,,,,,223 +SATSLF0720,2024246,13.513433,4.22,0.0591,0.1045,0.0184,0.00,16099,641,1,701,695,695,699,702,695,697,718,734,729,731,734,773,885,1216,1977,3142,4517,5745,6665,7303,7771,8192,8625,9157,9768,10497,11387,12378,13474,14651,15809,16928,17881,18592,19033,19161,18982,18590,18054,17466,16914,16457,16119,15862,15799,15885,16133,16532,17110,17861,18773,19834,21042,22365,23808,25281,26746,28174,29419,30407,31166,31556,31559,31240,30585,29677,28613,27383,26195,25041,23955,22965,22109,21361,20768,20282,19901,19616,19464,19371,19373,19472,19665,19920,20265,20699,21228,21785,22413,23082,23717,24322,24896,25379,25744,26011,26073,25943,25664,25182,24535,23806,23031,22138,21295,20439,19682,18990,18334,17778,17309,16900,16579,16334,16157,16070,16020,16039,16136,16294,16520,16816,17188,17616,18097,18682,19282,19929,20606,21323,22059,22798,23519,24214,24860,25446,26025,26450,26791,27034,27129,27145,27045,26833,26516,26126,25629,25066,24475,23842,23197,22540,21863,21231,20633,20025,19461,18978,18519,18122,17749,17430,17137,16869,16629,16411,16215,16023,15839,15644,15481,15346,15241,15133,15054,14974,14947,14941,14937,14943,14952,14982,15017,15053,15087,15145,15193,15204,15225,15230,15242,15255,15289,15272,15264,15210,15146,15104,15034,14933,14836,14699,14562,14381,14183,13977,13763,13526,13273,13005,12728,12422,12141,11839,11548,11269,11029,10782,10541,10288,9981,9665,9357,9072,8833,8613,8451,8288,8143,8059,7981,7905,7853,7778,7701,7544,7367,7223,7105,6982,6888,6807,6759,6701,6661,6639,6635,6613,6605,6625,6626,6469,6155,5722,5101,21.4,21.5,22.1,1568378,0.4,13.1,11.9,5.0,445,-1.00,-1.00,57.2679,-18.781015,0.000548,,,,,53 +SATSLF0720,2024246,13.513688,4.13,0.0579,0.1039,0.0185,0.00,16117,641,1,709,705,706,693,703,710,717,720,718,730,725,739,772,893,1232,1968,3151,4530,5757,6665,7295,7768,8195,8629,9145,9781,10532,11407,12405,13510,14669,15845,16945,17885,18621,19062,19191,19013,18624,18095,17497,16941,16477,16115,15890,15816,15901,16154,16553,17138,17882,18798,19873,21065,22393,23841,25315,26789,28209,29454,30460,31205,31606,31606,31288,30637,29716,28663,27426,26223,25069,23984,22980,22136,21395,20803,20321,19935,19643,19490,19398,19403,19506,19678,19948,20293,20725,21243,21811,22439,23109,23748,24361,24945,25409,25773,26029,26077,25968,25686,25213,24578,23862,23053,22197,21325,20487,19709,19014,18365,17788,17320,16915,16592,16353,16189,16085,16037,16053,16139,16313,16546,16840,17208,17623,18120,18691,19293,19928,20604,21339,22080,22822,23541,24246,24901,25493,26053,26474,26809,27029,27140,27148,27065,26856,26537,26146,25634,25088,24493,23859,23205,22532,21883,21237,20640,20051,19501,19010,18552,18140,17765,17449,17137,16887,16640,16432,16232,16026,15842,15655,15491,15363,15239,15147,15064,15016,14968,14946,14943,14956,14969,14989,15029,15069,15103,15145,15187,15220,15234,15243,15234,15255,15277,15271,15287,15232,15163,15098,15033,14942,14842,14718,14562,14391,14205,13985,13767,13547,13273,13019,12739,12450,12149,11855,11566,11292,11026,10787,10560,10301,9992,9665,9351,9083,8827,8612,8448,8287,8157,8073,7992,7926,7895,7825,7729,7591,7398,7240,7108,6983,6886,6823,6758,6710,6678,6656,6647,6617,6613,6613,6611,6469,6180,5741,5131,21.4,21.5,22.1,1568379,0.2,13.2,11.9,5.0,442,-1.00,-1.00,57.5011,-18.904703,0.000567,,,,,57 +SATSLF0720,2024246,13.513942,4.14,0.0579,0.1038,0.0181,0.00,16120,641,1,723,721,718,723,720,707,719,712,717,721,708,731,770,907,1250,1986,3172,4541,5768,6676,7304,7773,8186,8640,9167,9782,10531,11392,12392,13509,14685,15841,16955,17900,18641,19053,19191,19020,18653,18100,17521,16966,16497,16120,15900,15825,15886,16142,16556,17127,17893,18793,19860,21090,22390,23851,25318,26792,28198,29453,30471,31218,31616,31605,31270,30619,29707,28651,27404,26231,25077,23989,22997,22135,21401,20812,20312,19935,19629,19493,19401,19390,19483,19683,19944,20296,20736,21236,21811,22432,23077,23744,24345,24928,25424,25766,26027,26106,25973,25690,25212,24568,23861,23057,22202,21320,20480,19717,19001,18347,17799,17322,16906,16604,16340,16183,16093,16054,16072,16171,16321,16537,16832,17188,17625,18116,18674,19302,19937,20641,21365,22098,22832,23541,24240,24896,25490,26051,26475,26813,27053,27148,27164,27082,26850,26535,26138,25656,25081,24473,23851,23209,22557,21889,21266,20642,20057,19514,19001,18535,18135,17767,17421,17147,16887,16648,16441,16247,16041,15857,15666,15502,15372,15261,15146,15085,14989,14963,14950,14949,14945,14973,14995,15043,15065,15106,15157,15221,15229,15222,15245,15258,15260,15292,15302,15281,15242,15177,15112,15040,14949,14853,14721,14563,14395,14205,14001,13772,13555,13289,13014,12725,12430,12149,11854,11560,11283,11040,10813,10570,10297,10009,9681,9361,9071,8826,8630,8463,8293,8167,8059,7981,7929,7873,7808,7728,7577,7398,7243,7117,7009,6903,6826,6753,6712,6657,6643,6641,6632,6621,6638,6625,6483,6167,5740,5120,21.4,21.6,22.1,1568380,0.2,13.1,11.9,5.0,441,-1.00,-1.00,57.1563,-18.758271,0.000607,,,,,217 +SATSLF0720,2024246,13.514193,4.18,0.0585,0.1044,0.0181,0.00,16110,641,1,701,705,709,704,703,707,723,722,708,703,727,726,777,885,1221,1970,3150,4539,5757,6686,7324,7786,8193,8631,9143,9768,10516,11389,12377,13498,14661,15835,16937,17902,18601,19051,19169,18992,18602,18084,17485,16931,16470,16116,15885,15805,15883,16149,16548,17128,17880,18770,19850,21056,22379,23825,25313,26778,28205,29453,30453,31202,31596,31590,31261,30628,29697,28647,27405,26224,25067,23974,22965,22126,21397,20774,20300,19923,19637,19483,19376,19394,19489,19671,19933,20271,20709,21228,21802,22419,23084,23738,24341,24935,25394,25767,26030,26073,25959,25676,25197,24581,23859,23056,22177,21312,20465,19705,19000,18341,17778,17328,16908,16587,16343,16173,16068,16021,16062,16137,16304,16539,16833,17201,17627,18109,18679,19280,19921,20611,21325,22074,22797,23517,24224,24880,25463,26053,26469,26782,27031,27127,27153,27060,26839,26517,26128,25633,25065,24483,23846,23194,22545,21889,21257,20645,20063,19489,19016,18538,18131,17761,17434,17138,16861,16635,16418,16227,16042,15833,15654,15483,15351,15235,15145,15066,14999,14963,14941,14941,14941,14969,14985,15029,15067,15108,15157,15207,15219,15233,15248,15241,15264,15294,15278,15274,15225,15169,15114,15039,14945,14846,14710,14574,14390,14198,13985,13757,13523,13265,12997,12717,12434,12146,11847,11553,11281,11037,10800,10552,10287,9991,9676,9362,9087,8829,8619,8457,8286,8161,8064,7993,7917,7857,7807,7710,7569,7389,7238,7099,6987,6899,6800,6751,6707,6664,6648,6635,6617,6622,6627,6618,6473,6170,5738,5121,21.4,21.6,22.2,1568381,0.2,13.2,11.9,5.0,445,-1.00,-1.00,57.5243,-18.906770,0.000577,,,,,250 +SATSLF0720,2024246,13.514447,4.16,0.0583,0.1053,0.0188,0.00,16090,641,1,684,687,689,701,692,693,695,703,715,731,726,737,765,881,1225,1974,3163,4516,5753,6660,7283,7757,8170,8613,9121,9745,10496,11359,12359,13453,14631,15804,16914,17872,18584,19008,19149,18952,18581,18040,17457,16893,16451,16088,15860,15785,15872,16112,16501,17095,17834,18730,19818,21018,22341,23796,25256,26731,28155,29396,30393,31141,31529,31532,31213,30554,29650,28582,27357,26177,25022,23942,22947,22092,21361,20752,20260,19865,19598,19433,19337,19357,19455,19648,19906,20257,20701,21206,21779,22387,23063,23716,24309,24897,25369,25733,25989,26049,25923,25653,25174,24551,23825,23033,22171,21296,20459,19692,18970,18321,17758,17284,16889,16578,16337,16154,16064,16025,16048,16137,16289,16512,16803,17173,17601,18089,18651,19270,19889,20571,21307,22037,22786,23507,24208,24873,25458,26023,26436,26765,26999,27107,27128,27051,26827,26496,26119,25613,25041,24447,23811,23181,22506,21858,21224,20641,20043,19481,19001,18518,18117,17742,17425,17140,16859,16623,16411,16203,16016,15815,15643,15493,15345,15241,15137,15070,15009,14954,14926,14926,14922,14957,14973,15015,15057,15085,15129,15191,15197,15220,15221,15224,15245,15270,15265,15270,15213,15152,15090,15006,14930,14848,14701,14550,14382,14196,13973,13755,13528,13265,12993,12715,12416,12129,11834,11546,11282,11024,10783,10539,10283,9969,9653,9351,9065,8821,8616,8441,8285,8150,8056,7970,7893,7854,7786,7707,7565,7387,7237,7109,6988,6903,6829,6749,6695,6639,6631,6613,6611,6590,6618,6602,6470,6157,5714,5116,21.4,21.6,22.2,1568382,0.3,13.1,11.9,5.0,442,-1.00,-1.00,57.5956,-18.901142,0.000585,,,,,120 +SATSDF0720,2024246,13.759139,0.00,0.0000,0.0000,0.0000,0.00,641,0,1,618,611,621,617,611,615,613,619,610,600,606,599,611,617,622,631,635,639,637,635,619,622,646,633,639,649,641,639,653,653,647,647,663,648,653,654,658,653,657,645,649,654,649,651,656,641,647,649,654,657,659,643,655,653,656,642,649,645,649,657,651,637,637,642,627,627,651,645,640,643,654,649,649,637,631,651,649,643,637,647,653,642,645,634,642,643,641,640,646,646,637,629,655,641,647,647,653,653,644,643,641,619,631,639,642,634,639,640,639,649,641,637,635,633,627,633,625,637,642,646,640,641,629,643,645,637,635,653,641,651,656,630,633,631,640,629,636,631,640,642,645,637,646,635,642,649,657,649,655,652,646,651,649,656,649,633,641,665,649,655,637,635,631,633,633,639,631,640,641,633,654,640,655,649,648,637,639,635,638,641,637,641,642,642,637,649,654,644,631,637,651,641,647,642,633,651,644,652,638,640,626,631,639,636,648,639,647,636,637,641,637,639,631,644,638,643,648,649,635,651,649,634,633,633,631,639,633,634,634,636,638,641,649,658,644,642,653,658,652,650,653,654,631,642,622,639,630,629,632,637,632,633,632,644,642,494,0.0,0.0,0.0,1568381,0.9,13.8,0.1,5.0,55,0.00,0.00,0.0000,0.000000,0.000000,,,,,138 +SATSLF0720,2024246,13.759693,3.94,0.0551,0.1000,0.0163,0.00,16233,641,1,698,703,697,709,698,689,701,700,702,715,713,723,757,887,1229,1981,3173,4561,5791,6723,7364,7837,8265,8721,9239,9873,10617,11496,12499,13623,14833,16006,17122,18080,18816,19257,19389,19190,18810,18262,17662,17096,16644,16267,16056,15973,16043,16299,16694,17296,18048,18955,20021,21260,22581,24037,25522,27018,28468,29725,30740,31498,31912,31908,31570,30910,29978,28909,27672,26469,25291,24199,23193,22333,21592,20978,20492,20108,19809,19666,19565,19585,19685,19863,20131,20477,20913,21424,22007,22624,23294,23936,24552,25128,25602,25968,26238,26284,26165,25885,25399,24757,24042,23234,22345,21471,20621,19848,19159,18477,17919,17449,17045,16720,16475,16285,16190,16135,16173,16259,16427,16656,16960,17330,17765,18257,18816,19434,20067,20760,21491,22242,22986,23704,24411,25078,25675,26226,26680,27000,27243,27358,27370,27269,27060,26724,26329,25829,25252,24658,24022,23362,22701,22036,21398,20791,20184,19639,19137,18647,18247,17877,17536,17271,17002,16756,16525,16331,16129,15934,15742,15584,15461,15338,15251,15172,15089,15049,15032,15024,15031,15056,15069,15123,15149,15185,15221,15291,15308,15309,15332,15318,15353,15368,15368,15358,15297,15255,15172,15101,15013,14919,14781,14645,14468,14279,14058,13853,13607,13341,13065,12795,12497,12202,11909,11607,11335,11088,10852,10608,10343,10032,9715,9401,9128,8877,8661,8485,8322,8191,8091,8020,7940,7895,7825,7748,7594,7407,7280,7143,7024,6938,6848,6781,6737,6689,6655,6651,6630,6639,6656,6650,6505,6194,5752,5127,21.3,21.2,21.6,1568382,0.2,13.4,11.9,5.0,549,-1.00,-1.00,57.4526,-19.049267,0.000568,,,,,21 +SATSLF0720,2024246,13.759875,3.88,0.0543,0.1005,0.0161,0.00,16226,641,1,695,705,693,698,701,702,694,711,701,711,711,712,747,879,1221,1974,3163,4550,5803,6732,7368,7838,8270,8702,9230,9876,10613,11494,12504,13627,14805,15991,17121,18086,18810,19254,19381,19189,18810,18253,17650,17091,16622,16258,16042,15956,16033,16269,16693,17266,18020,18940,20025,21266,22594,24051,25541,27017,28441,29692,30705,31448,31856,31865,31546,30866,29957,28892,27664,26477,25302,24209,23194,22309,21581,20979,20481,20102,19804,19646,19544,19549,19659,19848,20109,20461,20907,21421,22002,22613,23286,23929,24544,25128,25605,25952,26216,26266,26152,25877,25392,24749,24026,23218,22336,21459,20599,19843,19127,18474,17899,17448,17037,16696,16456,16271,16183,16131,16151,16245,16405,16629,16921,17312,17726,18231,18819,19421,20066,20740,21470,22233,22999,23698,24407,25078,25664,26243,26661,26981,27232,27326,27357,27253,27048,26709,26314,25827,25250,24662,24022,23380,22697,22039,21388,20780,20177,19629,19131,18648,18240,17873,17532,17248,16989,16749,16536,16330,16150,15941,15753,15585,15433,15309,15232,15157,15085,15050,15037,15039,15044,15042,15078,15114,15138,15166,15223,15286,15301,15312,15322,15319,15354,15357,15359,15343,15294,15251,15180,15114,15032,14928,14773,14642,14472,14261,14065,13827,13593,13325,13068,12801,12505,12213,11917,11626,11341,11083,10845,10616,10329,10023,9696,9403,9121,8883,8676,8492,8331,8206,8117,8029,7953,7901,7827,7741,7588,7421,7265,7133,7021,6938,6853,6788,6727,6676,6669,6669,6637,6625,6650,6637,6493,6173,5761,5137,21.3,21.3,21.8,1568383,0.3,13.3,11.9,5.0,455,-1.00,-1.00,57.6136,-19.103756,0.000590,,,,,158 +SATSLF0720,2024246,13.760131,4.08,0.0572,0.1009,0.0163,0.00,16217,641,1,682,686,690,682,687,687,698,701,713,722,721,724,768,881,1219,1958,3136,4546,5781,6698,7359,7815,8247,8689,9222,9858,10587,11485,12469,13590,14777,15963,17070,18026,18768,19205,19345,19175,18770,18232,17621,17051,16598,16235,16005,15937,16020,16273,16697,17257,18029,18926,20017,21228,22562,24017,25506,26999,28428,29674,30699,31444,31842,31825,31503,30868,29938,28882,27633,26443,25275,24183,23164,22307,21573,20966,20470,20083,19788,19630,19529,19554,19652,19829,20096,20446,20891,21419,21984,22603,23264,23918,24532,25108,25580,25947,26202,26256,26136,25865,25373,24739,24009,23204,22336,21457,20578,19831,19123,18457,17909,17435,17025,16704,16444,16276,16179,16126,16145,16217,16416,16616,16935,17300,17753,18241,18822,19419,20053,20752,21469,22236,22970,23688,24407,25079,25661,26218,26652,26983,27213,27323,27347,27246,27037,26712,26313,25804,25232,24653,24013,23360,22721,22030,21393,20770,20177,19598,19112,18640,18243,17873,17533,17245,16965,16734,16524,16318,16126,15943,15760,15593,15447,15335,15236,15164,15081,15045,15028,15025,15021,15034,15057,15101,15145,15173,15224,15285,15298,15303,15322,15321,15333,15359,15341,15337,15301,15257,15173,15104,15013,14925,14774,14630,14472,14260,14038,13831,13594,13342,13078,12789,12491,12202,11894,11597,11332,11083,10835,10610,10331,10035,9722,9405,9120,8865,8663,8480,8330,8190,8094,8019,7957,7897,7826,7749,7609,7413,7262,7130,7014,6930,6838,6774,6720,6683,6667,6656,6652,6638,6657,6644,6491,6190,5753,5123,21.3,21.3,21.8,1568384,0.1,13.3,11.9,5.0,443,-1.00,-1.00,57.2938,-18.957825,0.000572,,,,,148 +SATSLF0720,2024246,13.760384,4.01,0.0562,0.1008,0.0166,0.00,16216,641,1,698,697,696,706,696,695,701,705,711,721,734,725,762,885,1218,1967,3159,4549,5795,6721,7365,7844,8269,8729,9241,9872,10618,11490,12485,13614,14805,15973,17081,18042,18770,19222,19369,19168,18789,18237,17644,17089,16621,16245,16010,15939,16009,16271,16688,17277,18013,18939,20009,21248,22571,24017,25517,27008,28434,29696,30708,31456,31846,31858,31522,30848,29942,28866,27626,26449,25260,24190,23188,22322,21597,20968,20483,20093,19792,19627,19532,19548,19661,19840,20090,20451,20875,21402,21965,22585,23262,23908,24523,25107,25569,25947,26217,26246,26141,25850,25367,24725,24008,23205,22330,21462,20594,19841,19109,18452,17896,17424,17019,16683,16448,16278,16171,16139,16149,16227,16400,16616,16925,17304,17730,18215,18788,19405,20037,20724,21452,22208,22957,23684,24388,25045,25637,26215,26633,26966,27194,27318,27326,27241,27017,26690,26291,25792,25233,24633,24004,23341,22679,22021,21390,20777,20176,19625,19124,18633,18235,17854,17530,17221,16941,16715,16519,16323,16126,15949,15751,15581,15446,15328,15232,15156,15084,15043,15022,15013,14999,15031,15047,15081,15130,15163,15215,15270,15305,15306,15322,15307,15339,15363,15356,15345,15297,15221,15163,15097,15015,14912,14787,14633,14466,14266,14055,13850,13606,13336,13072,12788,12489,12209,11897,11604,11326,11074,10835,10594,10324,10038,9713,9404,9118,8861,8654,8483,8336,8201,8101,8021,7943,7895,7832,7749,7594,7419,7261,7135,7013,6916,6829,6779,6721,6695,6670,6662,6653,6637,6645,6651,6492,6181,5761,5149,21.3,21.3,21.8,1568385,0.3,13.3,11.9,5.0,443,-1.00,-1.00,57.2561,-18.944369,0.000613,,,,,121 +SATSLF0720,2024246,13.760640,3.92,0.0549,0.1015,0.0163,0.00,16201,641,1,711,696,711,697,717,709,701,723,726,730,740,732,761,887,1228,1977,3168,4545,5789,6718,7344,7821,8232,8691,9202,9832,10578,11442,12457,13577,14769,15937,17051,18026,18740,19187,19310,19129,18757,18197,17600,17053,16589,16221,16002,15908,15978,16222,16633,17232,17976,18884,19968,21189,22512,23966,25463,26946,28389,29642,30641,31389,31787,31796,31466,30794,29885,28818,27570,26395,25207,24130,23135,22266,21522,20928,20440,20053,19753,19572,19500,19496,19611,19801,20065,20417,20849,21381,21937,22576,23237,23872,24493,25074,25549,25923,26173,26240,26106,25809,25345,24701,23973,23171,22305,21419,20567,19803,19084,18423,17879,17429,17009,16677,16439,16276,16157,16116,16145,16230,16410,16640,16904,17294,17713,18201,18773,19390,20025,20717,21464,22209,22945,23660,24365,25040,25626,26193,26623,26945,27181,27296,27318,27210,27013,26666,26282,25770,25207,24614,23981,23336,22664,22016,21382,20749,20150,19601,19097,18625,18216,17856,17517,17233,16960,16727,16528,16321,16127,15920,15730,15565,15431,15322,15225,15145,15079,15033,15021,15012,15016,15035,15078,15095,15143,15176,15217,15277,15280,15299,15304,15326,15332,15357,15354,15339,15301,15241,15173,15122,15018,14925,14781,14633,14468,14274,14056,13841,13600,13330,13062,12776,12484,12189,11888,11600,11323,11079,10838,10600,10329,10033,9713,9409,9121,8877,8673,8491,8343,8213,8105,8029,7958,7901,7843,7757,7602,7425,7276,7146,7020,6932,6857,6780,6732,6691,6674,6653,6632,6635,6647,6647,6510,6193,5761,5145,21.3,21.3,21.9,1568386,0.1,13.3,12.0,5.0,445,-1.00,-1.00,57.7964,-19.132331,0.000633,,,,,218 +SATSLF0720,2024246,13.760895,3.88,0.0544,0.1023,0.0170,0.00,16173,641,1,709,704,709,711,699,707,709,703,724,718,727,742,773,903,1234,1981,3158,4535,5784,6693,7326,7805,8232,8669,9202,9822,10577,11440,12438,13546,14729,15892,17009,17973,18720,19149,19287,19096,18716,18176,17578,17012,16557,16173,15947,15871,15962,16213,16621,17205,17944,18845,19925,21147,22472,23923,25424,26912,28333,29585,30602,31360,31752,31749,31417,30754,29831,28766,27545,26346,25173,24109,23084,22228,21501,20889,20410,20013,19724,19571,19468,19486,19573,19773,20028,20374,20815,21338,21911,22525,23185,23840,24443,25031,25505,25886,26139,26177,26064,25778,25285,24647,23928,23132,22270,21403,20537,19771,19072,18426,17872,17397,16983,16651,16405,16241,16122,16091,16125,16210,16365,16587,16889,17257,17688,18178,18747,19371,20007,20688,21416,22173,22906,23608,24327,24985,25574,26139,26572,26894,27146,27239,27274,27169,26957,26624,26234,25725,25157,24576,23921,23290,22628,21963,21328,20715,20125,19575,19085,18605,18201,17821,17494,17211,16942,16693,16485,16283,16090,15898,15705,15556,15409,15285,15204,15125,15047,15021,15001,15000,14997,15015,15036,15070,15106,15147,15197,15246,15261,15273,15278,15285,15301,15323,15331,15324,15271,15211,15149,15073,14982,14886,14763,14605,14445,14251,14042,13816,13572,13311,13039,12755,12461,12169,11854,11587,11321,11066,10826,10589,10319,10016,9689,9384,9097,8849,8641,8467,8312,8180,8088,8012,7939,7882,7818,7725,7573,7392,7243,7125,7000,6907,6842,6779,6730,6692,6673,6658,6636,6629,6637,6625,6485,6173,5742,5113,21.3,21.3,21.9,1568387,0.4,13.3,11.9,5.0,446,-1.00,-1.00,58.2141,-19.278331,0.000647,,,,,84 +SATSLF0720,2024246,13.761147,4.09,0.0574,0.1029,0.0181,0.00,16147,641,1,691,701,688,703,709,712,693,699,711,699,711,708,760,880,1217,1967,3154,4525,5767,6693,7322,7792,8214,8653,9180,9808,10553,11433,12426,13529,14721,15893,16996,17959,18681,19124,19242,19054,18683,18129,17541,16979,16519,16146,15921,15860,15926,16191,16589,17177,17936,18834,19906,21118,22451,23907,25384,26874,28304,29554,30545,31292,31684,31685,31355,30701,29783,28721,27476,26309,25129,24069,23057,22197,21470,20843,20372,19977,19700,19540,19441,19460,19553,19740,20012,20353,20775,21290,21853,22477,23145,23799,24412,24994,25480,25842,26113,26152,26026,25749,25268,24618,23892,23107,22224,21359,20505,19738,19026,18373,17817,17351,16941,16628,16376,16203,16103,16064,16077,16181,16325,16559,16853,17226,17654,18153,18726,19345,19986,20672,21384,22135,22870,23585,24286,24949,25526,26097,26541,26840,27108,27202,27212,27125,26899,26583,26185,25680,25125,24533,23900,23257,22593,21924,21284,20683,20101,19529,19053,18561,18168,17799,17458,17177,16903,16680,16464,16273,16061,15859,15679,15527,15382,15269,15172,15108,15033,14994,14958,14972,14965,14996,15020,15057,15085,15113,15175,15237,15241,15250,15259,15261,15283,15309,15287,15296,15255,15187,15114,15045,14974,14874,14742,14589,14425,14234,14022,13806,13560,13311,13037,12749,12453,12158,11850,11565,11293,11044,10805,10573,10315,10006,9678,9369,9081,8829,8613,8441,8277,8155,8058,7993,7923,7884,7831,7728,7589,7398,7235,7115,6992,6897,6819,6765,6688,6659,6645,6638,6612,6611,6627,6621,6475,6169,5740,5118,21.4,21.4,21.9,1568388,0.3,13.3,11.9,5.0,442,-1.00,-1.00,57.5553,-18.973930,0.000659,,,,,199 +SATSLF0720,2024246,13.761404,4.14,0.0579,0.1021,0.0174,0.00,16162,641,1,699,684,693,692,711,702,718,726,712,701,706,720,758,872,1215,1973,3141,4529,5758,6665,7305,7791,8210,8656,9174,9788,10551,11417,12423,13531,14711,15893,16989,17955,18679,19105,19225,19051,18678,18142,17556,16980,16535,16160,15930,15833,15943,16181,16585,17187,17941,18840,19912,21137,22453,23918,25401,26885,28301,29552,30553,31301,31698,31692,31374,30728,29808,28733,27503,26330,25156,24077,23077,22217,21477,20864,20385,19989,19715,19542,19474,19480,19590,19769,20027,20384,20810,21325,21893,22495,23175,23828,24449,25019,25494,25868,26138,26180,26062,25800,25302,24660,23942,23131,22266,21389,20533,19769,19062,18412,17857,17379,16979,16649,16391,16224,16128,16091,16096,16207,16365,16610,16901,17261,17690,18186,18741,19352,19991,20679,21416,22160,22918,23608,24330,24981,25574,26144,26553,26875,27134,27253,27257,27161,26961,26612,26235,25722,25144,24571,23937,23293,22615,21953,21325,20706,20125,19555,19066,18592,18185,17816,17502,17205,16941,16690,16484,16267,16094,15902,15700,15547,15397,15283,15177,15105,15028,15000,14972,14981,14984,15019,15039,15083,15113,15146,15202,15254,15267,15268,15273,15278,15300,15317,15323,15322,15269,15209,15136,15060,14993,14890,14744,14600,14424,14235,14029,13804,13577,13289,13031,12752,12451,12162,11862,11593,11314,11057,10804,10583,10309,10009,9678,9383,9078,8839,8652,8469,8321,8187,8077,7990,7921,7875,7805,7723,7585,7409,7261,7127,7010,6897,6823,6749,6693,6656,6643,6642,6616,6616,6633,6628,6483,6164,5729,5124,21.3,21.4,21.9,1568389,0.3,13.2,11.9,5.0,439,-1.00,-1.00,57.6846,-19.037663,0.000622,,,,,75 +SATSLF0720,2024246,13.761659,4.14,0.0580,0.1023,0.0172,0.00,16167,641,1,702,702,708,704,707,696,705,700,707,728,722,737,753,875,1222,1973,3139,4530,5771,6702,7332,7809,8226,8667,9189,9817,10569,11438,12442,13541,14723,15897,16996,17977,18689,19134,19264,19082,18689,18166,17574,17005,16533,16185,15949,15876,15962,16209,16613,17203,17942,18861,19929,21145,22487,23930,25409,26899,28325,29586,30570,31318,31724,31719,31397,30742,29814,28746,27520,26338,25162,24077,23097,22224,21488,20875,20403,19994,19711,19549,19467,19472,19577,19757,20025,20373,20805,21332,21896,22502,23174,23821,24440,25019,25498,25878,26145,26184,26071,25781,25302,24658,23933,23142,22270,21392,20548,19774,19062,18395,17847,17373,16961,16646,16394,16229,16133,16097,16109,16203,16357,16593,16877,17245,17687,18189,18759,19362,20024,20673,21408,22151,22885,23616,24316,24970,25559,26116,26563,26881,27127,27247,27261,27165,26944,26605,26217,25705,25152,24568,23925,23287,22617,21957,21317,20705,20130,19578,19069,18584,18187,17821,17482,17184,16919,16689,16489,16289,16088,15885,15719,15541,15394,15291,15181,15124,15030,14995,14986,14973,14976,15009,15047,15069,15109,15147,15194,15242,15255,15268,15287,15291,15302,15314,15322,15301,15258,15191,15144,15070,14997,14892,14754,14596,14433,14222,14025,13806,13565,13306,13040,12757,12452,12171,11868,11585,11319,11081,10829,10583,10318,10011,9693,9384,9098,8848,8637,8469,8314,8182,8098,7995,7947,7886,7827,7742,7589,7426,7266,7127,7023,6913,6821,6763,6707,6677,6658,6651,6645,6620,6637,6637,6472,6178,5753,5122,21.3,21.4,21.9,1568390,0.3,13.3,12.0,5.0,441,-1.00,-1.00,57.1915,-18.843079,0.000578,,,,,147 +SATSLF0720,2024246,13.761911,4.04,0.0566,0.1032,0.0175,0.00,16148,641,1,705,712,698,706,699,704,701,708,715,705,719,727,770,894,1221,1979,3161,4543,5776,6675,7321,7796,8218,8653,9178,9793,10551,11413,12404,13518,14695,15863,16984,17934,18647,19105,19242,19061,18693,18134,17559,16978,16516,16136,15906,15854,15933,16177,16599,17171,17922,18837,19911,21130,22437,23897,25371,26869,28280,29525,30529,31280,31689,31681,31354,30703,29781,28717,27481,26296,25129,24049,23038,22187,21456,20850,20361,19963,19681,19515,19429,19449,19553,19737,20002,20341,20786,21302,21885,22487,23150,23804,24409,24986,25450,25829,26073,26135,26021,25739,25257,24622,23897,23106,22243,21365,20523,19747,19031,18384,17814,17348,16955,16624,16407,16234,16117,16069,16099,16169,16341,16577,16864,17234,17663,18151,18729,19338,19967,20661,21396,22137,22868,23589,24288,24950,25537,26108,26521,26845,27089,27218,27214,27139,26921,26570,26183,25689,25140,24549,23897,23259,22605,21946,21298,20684,20086,19533,19047,18573,18174,17798,17469,17187,16903,16673,16467,16245,16072,15874,15688,15520,15383,15264,15176,15093,15024,15000,14983,14983,14985,15014,15034,15058,15099,15141,15170,15235,15229,15251,15270,15277,15299,15323,15316,15313,15251,15197,15133,15058,14960,14872,14730,14584,14407,14233,14005,13777,13541,13298,13028,12753,12449,12168,11874,11576,11302,11052,10809,10573,10308,10012,9689,9377,9096,8849,8630,8455,8301,8163,8077,8004,7925,7863,7805,7717,7578,7413,7254,7126,7017,6908,6829,6755,6706,6671,6661,6645,6628,6618,6637,6640,6487,6175,5744,5117,21.4,21.4,22.0,1568391,0.3,13.2,12.0,5.0,443,-1.00,-1.00,57.6846,-19.023571,0.000637,,,,,226 +SATSLF0720,2024246,13.762167,4.08,0.0571,0.1036,0.0181,0.00,16132,641,1,709,701,704,713,712,695,707,701,715,738,738,745,794,905,1238,1977,3143,4524,5756,6678,7309,7785,8211,8658,9180,9793,10547,11410,12406,13522,14692,15869,16971,17932,18661,19084,19227,19037,18676,18128,17529,16978,16504,16150,15912,15844,15926,16168,16583,17153,17906,18811,19885,21113,22416,23865,25349,26836,28241,29504,30489,31244,31648,31661,31329,30669,29746,28695,27446,26270,25088,24011,23016,22162,21423,20813,20332,19954,19665,19493,19411,19430,19529,19702,19976,20305,20747,21265,21833,22445,23115,23770,24381,24965,25447,25809,26066,26109,25973,25714,25233,24596,23884,23101,22225,21338,20497,19716,19031,18385,17805,17354,16925,16611,16362,16185,16081,16047,16057,16161,16329,16547,16859,17229,17654,18144,18708,19317,19956,20641,21377,22101,22842,23545,24259,24913,25522,26080,26512,26832,27069,27174,27194,27112,26874,26551,26164,25665,25088,24504,23864,23223,22561,21918,21277,20667,20081,19522,19031,18554,18152,17788,17444,17154,16907,16653,16453,16258,16073,15885,15690,15507,15373,15245,15159,15082,15008,14973,14951,14945,14957,14974,14997,15028,15069,15096,15156,15196,15233,15252,15245,15251,15282,15305,15297,15292,15243,15188,15114,15046,14968,14865,14738,14563,14403,14199,13990,13770,13541,13289,13024,12732,12454,12162,11862,11561,11286,11048,10800,10563,10298,10011,9676,9365,9078,8835,8615,8448,8301,8165,8073,8005,7925,7862,7796,7710,7582,7401,7245,7117,7001,6909,6823,6751,6699,6680,6641,6635,6596,6595,6618,6621,6468,6176,5736,5124,21.4,21.4,22.1,1568392,0.2,13.3,12.0,5.0,440,-1.00,-1.00,57.3817,-18.877768,0.000561,,,,,56 +SATSLF0720,2024246,13.762420,4.14,0.0580,0.1040,0.0184,0.00,16114,641,1,705,692,686,674,695,704,702,711,721,720,724,725,767,891,1233,1965,3160,4526,5749,6662,7300,7761,8183,8628,9158,9773,10512,11386,12384,13491,14660,15840,16942,17895,18614,19054,19169,18993,18617,18084,17491,16954,16468,16120,15873,15809,15877,16127,16533,17126,17877,18784,19862,21073,22386,23842,25316,26797,28207,29445,30459,31196,31593,31593,31259,30622,29693,28646,27413,26233,25080,23986,23003,22146,21405,20795,20312,19927,19645,19494,19394,19414,19505,19697,19953,20301,20723,21238,21821,22426,23094,23751,24361,24938,25415,25765,26024,26073,25973,25681,25194,24570,23845,23043,22178,21321,20464,19703,19002,18345,17778,17315,16897,16591,16342,16190,16084,16037,16056,16163,16304,16540,16835,17218,17632,18124,18689,19297,19943,20605,21346,22083,22821,23538,24243,24909,25497,26056,26482,26819,27058,27156,27161,27083,26873,26541,26137,25642,25077,24483,23854,23196,22549,21881,21253,20640,20069,19504,19008,18541,18130,17777,17440,17153,16880,16630,16423,16235,16051,15850,15661,15500,15367,15245,15147,15077,15009,14968,14950,14949,14942,14977,14984,15027,15066,15098,15155,15210,15216,15237,15253,15245,15263,15287,15282,15273,15218,15175,15101,15049,14949,14849,14723,14573,14385,14209,13993,13785,13538,13282,13027,12730,12441,12136,11849,11556,11289,11033,10787,10560,10283,9995,9673,9372,9086,8842,8617,8443,8271,8142,8057,7957,7909,7854,7801,7718,7577,7401,7256,7108,6994,6891,6817,6752,6697,6648,6629,6613,6606,6607,6618,6616,6457,6155,5727,5114,21.4,21.4,22.1,1568393,0.2,13.2,12.0,5.0,443,-1.00,-1.00,57.6358,-18.954839,0.000631,,,,,78 +SATSLF0720,2024246,13.762671,4.24,0.0594,0.1040,0.0178,0.00,16107,641,1,706,718,702,707,699,699,705,709,714,724,726,727,763,881,1217,1967,3145,4514,5750,6661,7298,7771,8173,8615,9129,9752,10484,11357,12349,13467,14653,15796,16917,17874,18603,19012,19159,18965,18588,18066,17445,16891,16450,16088,15869,15797,15874,16137,16538,17122,17864,18754,19841,21029,22356,23798,25270,26749,28166,29415,30416,31164,31557,31575,31255,30587,29669,28608,27378,26213,25042,23963,22977,22105,21373,20758,20292,19902,19634,19488,19392,19399,19495,19681,19926,20282,20698,21235,21803,22422,23082,23734,24347,24919,25399,25766,26037,26068,25947,25682,25197,24569,23845,23049,22169,21315,20468,19692,19005,18346,17792,17320,16909,16603,16357,16181,16081,16045,16055,16143,16316,16537,16842,17205,17626,18122,18681,19289,19914,20599,21339,22077,22820,23549,24229,24899,25480,26056,26488,26788,27041,27147,27169,27069,26849,26516,26128,25640,25069,24481,23849,23219,22557,21874,21247,20640,20055,19505,19006,18539,18132,17760,17429,17137,16874,16629,16437,16233,16039,15859,15670,15504,15358,15255,15145,15063,14992,14962,14953,14949,14950,14983,15004,15031,15073,15097,15163,15190,15223,15228,15234,15235,15267,15294,15301,15280,15221,15159,15124,15048,14949,14866,14714,14566,14382,14205,13993,13781,13530,13279,13002,12729,12432,12141,11844,11557,11283,11047,10810,10574,10310,9992,9678,9354,9089,8837,8609,8443,8296,8174,8077,7997,7906,7863,7798,7708,7573,7397,7246,7121,6993,6903,6807,6751,6698,6661,6647,6634,6621,6617,6609,6607,6461,6152,5739,5118,21.4,21.4,22.1,1568393,0.2,13.2,12.0,5.0,437,-1.00,-1.00,57.4809,-18.870932,0.000547,,,,,161 +SATSLF0720,2024246,13.762927,4.12,0.0578,0.1046,0.0182,0.00,16109,641,1,699,706,707,715,724,722,718,717,712,723,711,727,773,902,1234,1979,3144,4519,5751,6657,7293,7741,8189,8618,9146,9779,10520,11386,12385,13499,14672,15819,16939,17896,18613,19055,19188,18986,18627,18093,17506,16925,16471,16093,15874,15806,15889,16133,16550,17132,17873,18781,19851,21076,22372,23814,25292,26772,28186,29434,30449,31200,31602,31578,31264,30602,29690,28625,27392,26203,25042,23981,22987,22141,21413,20800,20310,19913,19627,19464,19369,19389,19490,19668,19932,20290,20725,21237,21809,22421,23095,23737,24341,24916,25383,25755,26010,26073,25955,25672,25209,24572,23851,23047,22183,21318,20473,19703,19005,18339,17791,17316,16910,16608,16333,16167,16074,16027,16042,16149,16299,16528,16818,17202,17619,18116,18694,19298,19928,20613,21322,22069,22805,23527,24228,24887,25470,26045,26469,26780,27041,27149,27165,27062,26855,26528,26132,25650,25065,24491,23851,23202,22552,21881,21241,20645,20055,19501,19009,18532,18121,17747,17422,17133,16878,16634,16429,16225,16038,15850,15658,15490,15358,15233,15147,15073,15011,14962,14930,14924,14934,14952,14989,15023,15076,15098,15144,15207,15213,15218,15232,15231,15254,15270,15282,15265,15227,15158,15109,15029,14922,14843,14705,14557,14386,14197,13984,13762,13535,13269,12999,12729,12446,12137,11843,11572,11276,11031,10790,10560,10287,9991,9665,9367,9073,8832,8613,8449,8289,8161,8061,7980,7916,7869,7810,7718,7573,7396,7235,7106,7003,6900,6826,6761,6706,6670,6645,6635,6621,6618,6632,6621,6452,6155,5723,5111,21.4,21.5,22.1,1568394,0.3,13.2,11.9,5.0,439,-1.00,-1.00,57.3998,-18.847530,0.000627,,,,,127 +SATSLF0720,2024246,13.763181,4.01,0.0562,0.1037,0.0188,0.00,16110,641,1,698,711,705,695,715,716,710,718,728,721,727,733,785,898,1224,1959,3143,4517,5757,6667,7296,7779,8199,8640,9157,9771,10516,11396,12381,13498,14662,15828,16920,17883,18604,19057,19176,19001,18635,18095,17501,16933,16469,16105,15885,15799,15882,16128,16535,17113,17863,18775,19849,21070,22381,23834,25321,26788,28211,29461,30454,31208,31592,31575,31251,30613,29710,28632,27419,26223,25059,23977,22990,22128,21396,20797,20305,19921,19626,19477,19405,19401,19504,19685,19963,20288,20723,21233,21808,22413,23063,23731,24341,24929,25410,25783,26024,26084,25977,25681,25193,24576,23848,23052,22190,21317,20470,19695,18999,18341,17797,17341,16937,16598,16354,16171,16081,16040,16052,16146,16301,16521,16824,17188,17613,18098,18671,19294,19917,20604,21332,22075,22819,23540,24246,24891,25475,26050,26465,26788,27029,27145,27149,27049,26838,26505,26124,25627,25063,24491,23857,23205,22544,21869,21257,20621,20045,19501,19017,18524,18139,17755,17443,17141,16877,16630,16439,16221,16027,15849,15656,15489,15353,15239,15141,15063,14989,14957,14934,14937,14921,14966,14994,15018,15076,15101,15159,15189,15223,15218,15227,15239,15252,15276,15285,15257,15213,15136,15088,15021,14936,14847,14702,14558,14396,14195,13984,13773,13530,13254,13005,12710,12423,12122,11831,11548,11281,11037,10784,10547,10283,9993,9674,9356,9079,8821,8614,8441,8293,8161,8069,7983,7921,7861,7793,7707,7572,7380,7239,7108,7002,6905,6813,6757,6704,6666,6644,6629,6605,6602,6624,6625,6477,6146,5731,5117,21.4,21.5,22.1,1568395,0.3,13.2,12.0,5.0,436,-1.00,-1.00,58.0255,-19.114798,0.000667,,,,,84 +SATSLF0720,2024246,13.763435,4.07,0.0570,0.1048,0.0186,0.00,16093,641,1,698,713,697,693,691,688,686,701,701,709,717,734,773,895,1228,1964,3137,4496,5730,6633,7263,7741,8154,8594,9123,9745,10493,11362,12357,13466,14620,15787,16897,17837,18578,19002,19143,18955,18571,18046,17450,16896,16426,16058,15848,15767,15861,16096,16509,17098,17834,18743,19808,21035,22336,23762,25258,26730,28153,29409,30409,31129,31547,31547,31211,30563,29651,28598,27368,26187,25025,23953,22947,22085,21367,20752,20269,19895,19601,19460,19357,19379,19474,19651,19913,20259,20689,21223,21786,22373,23049,23705,24296,24904,25380,25754,26005,26059,25953,25668,25177,24542,23830,23028,22165,21297,20442,19688,18981,18326,17769,17290,16894,16583,16331,16169,16053,16023,16039,16121,16289,16523,16809,17178,17618,18116,18686,19289,19920,20606,21346,22069,22805,23525,24210,24872,25475,26035,26470,26786,27022,27131,27131,27047,26840,26500,26120,25628,25061,24472,23846,23191,22554,21881,21258,20645,20029,19481,18988,18509,18093,17736,17414,17125,16866,16627,16429,16225,16038,15841,15653,15480,15335,15229,15114,15046,14977,14933,14931,14922,14944,14954,14996,15034,15073,15104,15137,15187,15215,15227,15225,15237,15262,15282,15277,15273,15213,15160,15095,15022,14937,14836,14701,14548,14388,14182,13965,13766,13545,13275,13005,12723,12424,12133,11841,11541,11268,11031,10781,10554,10289,9986,9666,9366,9061,8821,8621,8445,8295,8170,8065,7995,7917,7868,7793,7694,7560,7377,7236,7110,6985,6906,6813,6749,6701,6645,6633,6619,6606,6592,6625,6610,6448,6143,5723,5096,21.4,21.5,22.1,1568396,0.4,13.2,12.0,5.0,443,-1.00,-1.00,58.3194,-19.206592,0.000616,,,,,30 +SATSLF0720,2024246,13.763691,4.03,0.0565,0.1047,0.0187,0.00,16092,641,1,698,701,711,722,725,725,730,725,722,721,722,729,779,887,1220,1961,3143,4501,5736,6657,7297,7752,8179,8628,9140,9765,10508,11373,12368,13479,14650,15812,16913,17869,18589,19021,19161,18977,18603,18071,17479,16913,16451,16093,15853,15783,15863,16126,16529,17101,17843,18742,19795,21026,22336,23787,25271,26741,28164,29406,30402,31149,31525,31520,31211,30555,29651,28603,27365,26178,25028,23953,22949,22089,21357,20741,20263,19895,19599,19454,19363,19367,19475,19659,19925,20269,20699,21216,21780,22405,23067,23694,24320,24881,25363,25710,25984,26045,25924,25652,25173,24533,23810,23033,22170,21293,20439,19681,18973,18326,17758,17290,16891,16566,16320,16155,16061,16012,16033,16130,16297,16497,16811,17175,17607,18091,18663,19267,19905,20585,21309,22052,22802,23509,24206,24869,25448,26008,26434,26761,27008,27121,27128,27035,26810,26494,26096,25606,25045,24461,23825,23176,22527,21869,21221,20605,20025,19469,18973,18521,18116,17745,17419,17134,16862,16627,16435,16225,16043,15830,15653,15472,15337,15223,15136,15057,14990,14946,14939,14944,14934,14976,14980,15020,15047,15100,15142,15202,15213,15218,15221,15238,15254,15271,15286,15252,15211,15148,15093,15009,14923,14828,14696,14541,14360,14187,13984,13762,13515,13267,13001,12709,12430,12120,11831,11542,11288,11025,10795,10549,10286,9990,9658,9340,9072,8810,8628,8449,8290,8150,8052,7991,7914,7861,7793,7688,7551,7376,7237,7117,6998,6913,6821,6754,6691,6648,6618,6625,6597,6603,6608,6597,6437,6149,5719,5101,21.4,21.6,22.1,1568397,0.2,13.2,12.0,5.0,441,-1.00,-1.00,57.7402,-18.963296,0.000571,,,,,171 +SATSLF0720,2024246,13.763943,4.12,0.0577,0.1049,0.0189,0.00,16091,641,1,712,709,719,715,725,721,725,725,721,720,725,743,785,904,1228,1985,3142,4513,5743,6656,7297,7773,8161,8609,9123,9742,10503,11368,12371,13475,14650,15817,16917,17869,18596,19020,19152,18980,18600,18056,17483,16932,16453,16085,15863,15787,15859,16128,16514,17111,17849,18760,19821,21031,22356,23780,25268,26744,28154,29401,30407,31137,31545,31537,31222,30571,29653,28596,27362,26185,25028,23950,22947,22101,21367,20757,20281,19881,19597,19449,19354,19369,19455,19653,19921,20269,20716,21226,21785,22398,23052,23700,24314,24885,25365,25714,25981,26033,25917,25638,25157,24537,23817,23037,22164,21300,20441,19686,18981,18322,17765,17304,16876,16577,16323,16146,16053,16003,16034,16130,16292,16525,16809,17171,17603,18089,18646,19259,19899,20566,21290,22045,22781,23490,24198,24854,25440,26017,26452,26776,27014,27112,27124,27021,26807,26498,26101,25602,25058,24453,23816,23158,22510,21853,21234,20626,20027,19477,18986,18517,18099,17745,17418,17120,16867,16616,16404,16199,16019,15833,15648,15484,15348,15222,15115,15051,14981,14941,14933,14926,14940,14969,14978,15021,15061,15101,15148,15187,15192,15186,15200,15215,15241,15258,15267,15258,15197,15157,15086,15018,14930,14833,14690,14539,14373,14181,13977,13762,13524,13250,12999,12723,12435,12140,11836,11534,11267,11023,10780,10544,10277,9977,9659,9349,9053,8807,8600,8438,8274,8148,8062,7989,7905,7854,7789,7698,7555,7376,7238,7106,6989,6890,6821,6754,6701,6661,6637,6625,6605,6582,6615,6608,6451,6161,5737,5125,21.4,21.6,22.2,1568398,0.1,13.2,12.0,5.0,431,-1.00,-1.00,57.4629,-18.850997,0.000555,,,,,103 +SATSLF0720,2024246,13.764197,4.34,0.0608,0.1066,0.0200,0.00,16037,641,1,698,685,697,691,691,707,711,711,727,710,731,745,772,895,1224,1955,3139,4497,5712,6617,7250,7707,8123,8577,9085,9693,10455,11309,12305,13390,14545,15719,16798,17761,18473,18907,19049,18865,18487,17965,17396,16824,16372,16005,15776,15723,15797,16049,16464,17032,17778,18674,19722,20928,22254,23681,25153,26630,28032,29278,30262,31008,31406,31406,31077,30442,29525,28481,27226,26075,24928,23853,22858,22023,21281,20678,20196,19810,19536,19360,19280,19291,19389,19588,19840,20181,20641,21152,21690,22314,22959,23618,24238,24798,25287,25641,25914,25949,25830,25568,25084,24429,23722,22944,22085,21210,20375,19617,18915,18263,17705,17240,16840,16530,16274,16102,16007,15969,16000,16074,16243,16481,16784,17136,17555,18048,18600,19223,19842,20523,21259,21973,22724,23433,24139,24789,25362,25939,26373,26682,26922,27025,27033,26947,26732,26416,26020,25528,24973,24385,23755,23113,22453,21795,21170,20557,19968,19419,18932,18464,18055,17687,17355,17074,16804,16572,16366,16167,15986,15789,15610,15447,15306,15182,15092,15015,14946,14901,14890,14878,14898,14917,14945,14978,15004,15047,15098,15146,15157,15169,15182,15185,15208,15250,15236,15225,15185,15107,15049,14983,14888,14795,14647,14502,14329,14164,13930,13731,13501,13225,12957,12680,12394,12103,11801,11528,11253,10977,10750,10530,10261,9955,9637,9328,9051,8809,8598,8432,8262,8127,8043,7973,7897,7840,7773,7685,7563,7389,7221,7092,6985,6873,6813,6736,6680,6652,6625,6614,6596,6595,6589,6583,6433,6135,5718,5097,21.4,21.6,22.2,1568399,0.1,13.2,12.0,5.0,431,-1.00,-1.00,57.3762,-18.734856,0.000535,,,,,7 +SATSLF0720,2024246,13.764455,4.35,0.0610,0.1064,0.0198,0.00,16050,641,1,711,698,698,707,720,713,717,717,722,722,728,729,767,883,1219,1955,3122,4499,5717,6621,7259,7730,8133,8592,9093,9717,10453,11309,12322,13414,14589,15757,16838,17777,18503,18932,19060,18885,18512,17978,17397,16850,16374,16025,15810,15749,15813,16067,16473,17054,17793,18688,19754,20961,22266,23713,25180,26668,28076,29330,30313,31042,31453,31446,31118,30477,29561,28524,27277,26103,24956,23880,22871,22022,21285,20704,20198,19831,19533,19383,19288,19304,19413,19616,19873,20221,20649,21170,21721,22354,23017,23650,24261,24823,25307,25664,25931,25989,25865,25584,25106,24466,23753,22961,22100,21241,20391,19622,18935,18285,17729,17266,16852,16549,16288,16114,16033,15978,16000,16093,16251,16481,16753,17127,17555,18057,18629,19234,19861,20551,21277,22004,22753,23443,24163,24810,25397,25973,26381,26706,26964,27049,27068,26976,26770,26437,26024,25543,24985,24405,23776,23121,22477,21816,21184,20566,19987,19418,18927,18471,18057,17707,17379,17079,16821,16586,16400,16185,15981,15801,15605,15451,15305,15185,15095,15021,14951,14901,14880,14891,14900,14916,14935,14974,15022,15041,15101,15150,15164,15174,15191,15194,15227,15240,15244,15229,15175,15105,15057,14995,14901,14805,14679,14513,14345,14149,13960,13731,13501,13230,12971,12679,12384,12091,11792,11507,11248,11005,10773,10532,10253,9965,9645,9337,9048,8811,8613,8413,8256,8131,8039,7965,7893,7835,7773,7689,7540,7370,7222,7086,6977,6888,6805,6733,6679,6649,6615,6615,6598,6596,6621,6592,6449,6138,5691,5103,21.4,21.6,22.2,1568400,0.2,13.2,12.0,5.0,441,-1.00,-1.00,57.4699,-18.799290,0.000543,,,,,117 +SATSDF0720,2024246,14.009138,0.00,0.0000,0.0000,0.0000,0.00,643,0,1,640,633,624,621,623,621,612,615,624,602,624,613,629,621,629,628,643,645,638,638,641,627,633,650,656,653,650,648,648,656,641,637,630,636,647,653,655,665,653,658,649,634,631,643,637,649,649,663,661,660,648,650,652,645,635,651,649,662,645,658,653,641,636,642,657,654,663,655,663,651,658,649,659,662,650,654,656,640,647,649,638,639,642,637,651,650,654,645,667,650,656,652,644,651,649,654,642,641,645,663,648,658,649,650,649,659,656,641,638,645,631,640,642,641,643,642,642,633,637,652,645,648,646,653,650,642,646,642,652,640,636,636,641,644,649,651,644,656,647,648,647,634,647,641,639,633,639,639,646,641,642,638,647,630,639,636,630,622,627,639,634,637,642,646,644,646,641,647,655,650,641,635,643,635,641,635,625,641,633,653,650,642,649,649,646,633,641,638,643,642,649,629,635,643,638,634,637,635,644,659,649,660,642,646,638,643,629,635,643,629,619,639,641,637,645,638,637,647,643,647,657,643,642,629,647,621,647,645,633,634,625,637,632,629,641,640,657,661,649,647,654,642,628,644,640,647,659,646,645,656,648,640,633,633,650,457,0.0,0.0,0.0,1568399,0.7,13.8,0.1,5.0,55,0.00,0.00,0.0000,0.000000,0.000000,,,,,103 +SATSLF0720,2024246,14.009693,3.93,0.0550,0.0998,0.0158,0.00,16245,643,1,698,699,685,699,708,711,709,717,711,717,727,736,759,887,1224,1976,3163,4556,5803,6727,7367,7837,8263,8718,9242,9870,10613,11509,12508,13630,14807,15987,17104,18074,18806,19246,19398,19205,18817,18277,17673,17101,16632,16268,16046,15980,16064,16305,16704,17298,18041,18964,20021,21269,22596,24050,25548,27037,28461,29723,30742,31501,31893,31912,31578,30918,29998,28933,27676,26485,25300,24219,23210,22344,21614,21000,20509,20116,19846,19657,19579,19589,19684,19878,20141,20496,20938,21443,22023,22630,23308,23957,24562,25149,25621,25987,26261,26317,26192,25897,25416,24771,24064,23252,22372,21486,20647,19872,19157,18502,17941,17462,17061,16722,16465,16299,16193,16149,16181,16268,16434,16672,16970,17337,17763,18262,18828,19451,20086,20768,21499,22245,22999,23725,24437,25109,25697,26264,26697,27017,27261,27369,27387,27294,27083,26753,26336,25863,25269,24683,24045,23387,22731,22061,21428,20818,20232,19653,19174,18694,18282,17908,17560,17282,17004,16759,16557,16361,16160,15958,15773,15616,15470,15351,15251,15179,15093,15062,15038,15039,15049,15072,15091,15139,15161,15205,15237,15299,15314,15321,15326,15334,15361,15370,15385,15380,15332,15265,15190,15132,15031,14929,14778,14651,14454,14279,14065,13862,13624,13369,13081,12806,12493,12219,11912,11630,11353,11109,10857,10626,10361,10052,9722,9408,9121,8873,8659,8487,8343,8217,8113,8038,7958,7912,7842,7759,7625,7434,7282,7153,7034,6948,6868,6798,6746,6698,6679,6667,6644,6633,6657,6657,6489,6195,5762,5138,21.3,21.3,21.7,1568400,0.2,13.4,12.0,5.0,549,-1.00,-1.00,57.5215,-19.082326,0.000533,,,,,213 +SATSLF0720,2024246,14.009874,3.96,0.0555,0.1008,0.0165,0.00,16209,643,1,689,693,693,683,699,702,697,704,715,714,714,721,758,872,1219,1969,3163,4543,5779,6696,7319,7808,8245,8692,9225,9853,10603,11480,12489,13609,14790,15966,17089,18045,18762,19218,19338,19160,18761,18230,17623,17056,16601,16231,16023,15934,16009,16270,16673,17253,17992,18913,19990,21221,22535,23995,25489,26985,28409,29689,30678,31447,31821,31821,31505,30822,29918,28846,27619,26436,25269,24178,23155,22307,21553,20962,20458,20078,19778,19628,19534,19545,19639,19828,20084,20445,20876,21408,21961,22603,23245,23893,24507,25083,25581,25940,26198,26251,26129,25858,25366,24731,23990,23195,22322,21448,20594,19813,19111,18465,17902,17409,16995,16688,16430,16263,16169,16125,16145,16237,16402,16627,16934,17293,17715,18231,18794,19406,20045,20738,21465,22218,22966,23668,24397,25041,25641,26214,26641,26960,27208,27323,27336,27218,27018,26678,26292,25797,25223,24640,23993,23344,22688,22010,21372,20771,20154,19611,19110,18641,18230,17867,17530,17241,16967,16723,16535,16327,16144,15945,15750,15577,15430,15312,15212,15140,15054,15023,15017,15002,15002,15033,15053,15109,15145,15172,15227,15289,15299,15297,15306,15303,15327,15341,15356,15352,15299,15236,15169,15107,15002,14922,14773,14625,14452,14261,14037,13830,13581,13324,13053,12770,12485,12196,11892,11588,11321,11069,10825,10602,10330,10034,9703,9379,9096,8868,8658,8471,8322,8181,8081,8018,7937,7889,7826,7750,7600,7426,7270,7137,7020,6923,6843,6780,6728,6679,6653,6653,6616,6615,6637,6628,6490,6189,5758,5140,21.4,21.3,21.8,1568401,0.1,13.3,12.0,5.0,456,-1.00,-1.00,57.5743,-19.061941,0.000584,,,,,97 +SATSLF0720,2024246,14.010130,3.91,0.0547,0.0999,0.0161,0.00,16237,643,1,691,696,711,698,702,705,704,707,718,722,720,727,766,897,1237,1978,3181,4557,5795,6721,7369,7838,8279,8721,9246,9860,10623,11493,12519,13621,14823,16006,17126,18107,18824,19257,19392,19203,18817,18277,17669,17096,16630,16257,16040,15961,16042,16295,16711,17299,18043,18967,20037,21258,22590,24029,25537,27037,28469,29734,30745,31507,31901,31902,31576,30910,29991,28909,27667,26473,25306,24213,23200,22339,21602,20981,20496,20109,19816,19660,19575,19569,19687,19860,20114,20480,20915,21422,22010,22634,23285,23938,24559,25137,25620,25975,26240,26304,26177,25901,25397,24765,24034,23243,22361,21480,20635,19849,19152,18496,17922,17447,17043,16734,16473,16313,16192,16138,16163,16255,16416,16653,16948,17317,17765,18261,18824,19437,20073,20758,21503,22248,22992,23701,24397,25085,25672,26247,26676,27005,27252,27354,27364,27267,27050,26721,26325,25821,25260,24656,24021,23362,22700,22042,21401,20792,20189,19635,19151,18664,18257,17882,17555,17269,17002,16750,16551,16349,16156,15962,15773,15606,15468,15350,15238,15157,15073,15054,15017,15042,15026,15053,15090,15130,15161,15192,15257,15290,15307,15320,15334,15318,15355,15369,15371,15367,15306,15255,15181,15121,15033,14932,14795,14632,14459,14277,14073,13854,13605,13350,13091,12806,12501,12203,11909,11618,11355,11106,10858,10621,10356,10045,9719,9399,9120,8855,8667,8490,8331,8199,8111,8029,7966,7906,7842,7748,7621,7433,7286,7150,7028,6925,6847,6787,6716,6675,6658,6653,6639,6634,6663,6651,6507,6207,5757,5146,21.4,21.3,21.8,1568402,0.2,13.3,11.9,5.0,441,-1.00,-1.00,57.6030,-19.112799,0.000606,,,,,186 +SATSLF0720,2024246,14.010383,4.10,0.0574,0.1006,0.0166,0.00,16221,643,1,705,690,698,708,707,711,708,711,715,721,727,741,768,896,1235,1982,3175,4549,5799,6714,7367,7825,8260,8705,9230,9861,10617,11490,12485,13627,14821,15989,17110,18061,18793,19217,19353,19173,18788,18252,17664,17097,16624,16263,16027,15970,16044,16297,16698,17275,18015,18943,20009,21239,22573,24032,25531,27020,28440,29695,30711,31450,31860,31857,31541,30893,29960,28886,27650,26457,25293,24194,23184,22325,21575,20969,20469,20088,19806,19633,19543,19546,19649,19850,20114,20453,20887,21421,21986,22596,23257,23915,24533,25109,25588,25956,26209,26262,26138,25862,25385,24740,24027,23221,22352,21469,20610,19849,19141,18471,17908,17428,17032,16698,16444,16288,16170,16134,16161,16253,16425,16653,16942,17309,17732,18227,18802,19403,20048,20738,21473,22209,22980,23690,24407,25073,25649,26209,26624,26954,27207,27310,27321,27237,27032,26688,26303,25806,25237,24650,24004,23349,22692,22020,21381,20772,20164,19608,19106,18631,18244,17861,17524,17224,16965,16739,16517,16323,16125,15933,15755,15588,15435,15326,15224,15150,15083,15039,15027,15024,15028,15056,15058,15096,15138,15154,15202,15268,15288,15302,15323,15314,15347,15364,15365,15356,15296,15235,15165,15093,15008,14922,14774,14627,14449,14258,14058,13834,13598,13320,13072,12769,12483,12186,11883,11613,11334,11089,10851,10612,10343,10034,9709,9401,9118,8872,8657,8484,8333,8197,8088,8009,7943,7895,7821,7747,7597,7410,7253,7136,7026,6939,6836,6788,6728,6685,6653,6643,6637,6640,6655,6656,6509,6195,5763,5143,21.4,21.4,21.9,1568403,0.2,13.3,11.9,5.0,443,-1.00,-1.00,56.9231,-18.812744,0.000487,,,,,124 +SATSLF0720,2024246,14.010639,4.01,0.0561,0.1010,0.0160,0.00,16205,643,1,693,689,697,696,693,695,695,687,711,700,705,733,770,881,1223,1971,3156,4537,5765,6707,7342,7835,8240,8704,9229,9859,10605,11481,12464,13594,14779,15953,17065,18020,18758,19207,19321,19147,18762,18227,17629,17066,16597,16230,15986,15919,16023,16266,16666,17262,18000,18902,19971,21207,22545,23989,25492,26981,28392,29670,30677,31426,31840,31818,31483,30842,29920,28845,27600,26417,25244,24152,23146,22295,21545,20944,20446,20059,19769,19617,19527,19531,19644,19820,20087,20429,20864,21387,21950,22574,23250,23897,24503,25069,25550,25932,26185,26245,26120,25824,25344,24716,23994,23197,22321,21451,20588,19820,19106,18457,17905,17409,17017,16685,16437,16247,16155,16125,16148,16233,16405,16625,16933,17292,17724,18218,18784,19405,20034,20722,21460,22210,22953,23684,24384,25043,25617,26177,26610,26940,27189,27306,27315,27243,27021,26693,26292,25795,25214,24619,23966,23335,22665,22005,21362,20755,20165,19596,19117,18631,18235,17857,17517,17227,16979,16749,16520,16314,16125,15917,15737,15564,15425,15310,15217,15130,15063,15025,15010,15003,15025,15038,15059,15089,15142,15157,15211,15270,15285,15301,15304,15319,15332,15356,15354,15335,15302,15235,15185,15093,15000,14907,14766,14627,14458,14260,14052,13834,13580,13317,13042,12759,12481,12193,11881,11607,11336,11090,10868,10613,10334,10025,9705,9378,9111,8861,8651,8481,8313,8189,8091,8018,7956,7890,7831,7741,7585,7415,7252,7118,7008,6911,6827,6775,6721,6682,6663,6651,6644,6623,6651,6646,6487,6188,5756,5133,21.4,21.4,21.9,1568404,0.2,13.3,12.0,5.0,443,-1.00,-1.00,57.4832,-19.020111,0.000595,,,,,231 +SATSLF0720,2024246,14.010894,4.00,0.0561,0.1024,0.0173,0.00,16170,643,1,692,685,692,678,695,697,701,706,711,718,714,727,766,885,1205,1963,3149,4522,5761,6685,7332,7800,8221,8666,9184,9817,10564,11441,12429,13541,14725,15893,17001,17965,18695,19130,19270,19082,18696,18177,17577,17001,16535,16179,15946,15879,15954,16209,16606,17203,17940,18865,19930,21153,22477,23921,25402,26912,28321,29581,30580,31333,31740,31722,31415,30754,29846,28772,27528,26348,25186,24101,23092,22235,21505,20878,20408,20021,19733,19577,19465,19473,19584,19766,20041,20377,20811,21345,21904,22528,23198,23846,24464,25016,25515,25874,26141,26193,26066,25800,25321,24677,23950,23146,22258,21408,20549,19762,19064,18407,17863,17377,16983,16661,16398,16235,16128,16089,16105,16197,16366,16598,16901,17261,17703,18189,18771,19352,20005,20693,21429,22178,22908,23627,24322,24983,25582,26141,26573,26905,27152,27250,27272,27175,26949,26605,26228,25723,25168,24605,23933,23301,22637,21974,21331,20721,20124,19575,19078,18596,18205,17818,17485,17205,16922,16682,16487,16285,16097,15908,15709,15541,15400,15298,15196,15120,15035,15005,14977,14994,14992,15021,15046,15069,15113,15142,15185,15250,15249,15270,15288,15277,15301,15312,15323,15319,15270,15220,15141,15074,14977,14897,14750,14613,14437,14245,14028,13813,13559,13291,13037,12744,12453,12179,11873,11582,11307,11057,10822,10583,10307,10013,9690,9372,9097,8840,8636,8474,8311,8180,8089,7997,7933,7878,7821,7728,7578,7409,7242,7120,6999,6906,6831,6761,6711,6661,6653,6647,6617,6611,6631,6617,6481,6169,5732,5115,21.4,21.4,21.9,1568405,0.3,13.2,12.0,5.0,434,-1.00,-1.00,57.9509,-19.164428,0.000584,,,,,126 +SATSLF0720,2024246,14.011149,4.07,0.0570,0.1039,0.0183,0.00,16115,643,1,693,701,698,712,697,695,713,709,689,702,716,717,779,885,1227,1967,3156,4498,5718,6636,7250,7739,8148,8592,9135,9741,10491,11345,12341,13461,14633,15804,16904,17864,18576,19005,19154,18974,18601,18078,17485,16919,16455,16087,15865,15786,15868,16122,16514,17111,17861,18769,19834,21052,22371,23819,25292,26778,28204,29449,30443,31186,31592,31590,31264,30619,29709,28646,27404,26236,25069,24001,22984,22127,21406,20801,20327,19941,19645,19506,19401,19421,19492,19712,19950,20304,20733,21242,21803,22430,23101,23747,24365,24933,25418,25778,26048,26090,25979,25703,25217,24592,23872,23083,22199,21319,20480,19703,19010,18354,17793,17330,16920,16602,16345,16173,16073,16032,16069,16141,16331,16549,16853,17222,17648,18143,18701,19309,19944,20628,21352,22084,22832,23554,24258,24924,25504,26071,26507,26829,27073,27177,27203,27095,26880,26551,26153,25655,25079,24496,23856,23218,22568,21911,21273,20661,20068,19513,19021,18537,18147,17781,17441,17151,16891,16653,16449,16245,16060,15860,15671,15501,15361,15247,15145,15088,15010,14979,14973,14955,14972,14970,14999,15047,15084,15108,15149,15212,15209,15227,15242,15251,15268,15286,15298,15282,15223,15166,15108,15050,14952,14853,14717,14566,14371,14204,13991,13785,13541,13271,13007,12730,12429,12133,11831,11555,11275,11031,10785,10555,10290,9989,9678,9365,9079,8843,8625,8451,8305,8174,8082,7993,7908,7863,7795,7713,7572,7400,7260,7125,6998,6887,6816,6759,6701,6669,6641,6630,6613,6604,6625,6608,6469,6161,5722,5113,21.4,21.4,21.9,1568406,0.1,13.3,11.9,5.0,441,-1.00,-1.00,58.5138,-19.316025,0.000625,,,,,172 +SATSLF0720,2024246,14.011405,4.17,0.0584,0.1013,0.0168,0.00,16202,643,1,698,698,701,691,715,721,709,719,719,731,735,731,770,885,1238,1985,3181,4554,5793,6701,7350,7819,8241,8691,9206,9847,10594,11468,12472,13588,14785,15949,17074,18024,18748,19190,19318,19128,18743,18208,17619,17049,16596,16241,15986,15927,16002,16254,16666,17237,17987,18898,19978,21201,22525,23997,25477,26966,28401,29655,30654,31417,31797,31799,31462,30809,29878,28814,27581,26389,25237,24144,23133,22286,21545,20925,20438,20061,19760,19599,19511,19528,19617,19800,20069,20413,20855,21373,21954,22576,23244,23886,24507,25093,25565,25931,26189,26234,26128,25825,25341,24701,23980,23177,22315,21449,20596,19818,19115,18449,17902,17428,17013,16686,16422,16253,16157,16110,16146,16212,16385,16613,16915,17278,17725,18208,18784,19382,20043,20728,21454,22211,22949,23648,24363,25018,25603,26186,26622,26944,27180,27285,27300,27206,27008,26666,26266,25773,25191,24605,23963,23330,22650,21977,21360,20740,20154,19600,19097,18614,18215,17847,17513,17208,16963,16718,16505,16302,16116,15920,15737,15580,15437,15321,15218,15133,15065,15029,15013,15006,15009,15043,15053,15091,15132,15171,15221,15277,15289,15297,15314,15305,15321,15349,15350,15339,15298,15236,15157,15103,14998,14906,14787,14626,14464,14262,14053,13837,13594,13335,13052,12779,12473,12183,11884,11593,11336,11077,10839,10595,10337,10028,9709,9408,9124,8873,8653,8482,8311,8193,8092,8023,7946,7915,7842,7748,7601,7422,7271,7144,7025,6915,6849,6775,6722,6681,6666,6662,6638,6637,6656,6653,6504,6194,5763,5147,21.4,21.4,21.9,1568407,0.2,13.3,12.0,5.0,442,-1.00,-1.00,56.7457,-18.699390,0.000606,,,,,62 +SATSLF0720,2024246,14.011660,4.34,0.0608,0.1038,0.0181,0.00,16128,643,1,694,697,702,715,722,721,724,722,721,730,724,735,768,870,1215,1959,3154,4510,5755,6679,7305,7779,8211,8644,9157,9776,10514,11403,12389,13505,14681,15847,16942,17923,18656,19074,19193,19005,18637,18106,17494,16945,16485,16133,15910,15851,15923,16185,16573,17150,17907,18803,19877,21090,22412,23853,25333,26821,28227,29488,30476,31226,31617,31634,31286,30652,29712,28683,27417,26267,25085,24019,23013,22156,21427,20829,20333,19947,19657,19509,19405,19419,19516,19699,19965,20314,20749,21269,21844,22470,23125,23787,24397,24964,25430,25794,26055,26087,25993,25713,25227,24589,23882,23081,22204,21336,20490,19719,19017,18372,17795,17333,16922,16613,16359,16185,16091,16049,16070,16163,16321,16552,16854,17211,17643,18125,18701,19329,19947,20630,21363,22094,22819,23551,24247,24905,25491,26061,26506,26833,27070,27176,27182,27101,26894,26565,26169,25664,25096,24525,23884,23222,22576,21917,21283,20679,20077,19530,19037,18562,18141,17767,17452,17149,16883,16656,16452,16259,16060,15870,15680,15520,15366,15267,15159,15078,15003,14973,14932,14936,14948,14970,14997,15035,15070,15099,15164,15220,15225,15243,15241,15251,15278,15304,15293,15287,15237,15169,15113,15027,14949,14855,14729,14573,14397,14213,14000,13787,13549,13286,13004,12745,12453,12148,11844,11558,11291,11042,10797,10564,10301,9985,9694,9373,9081,8837,8636,8449,8310,8155,8073,7989,7920,7864,7807,7728,7574,7418,7253,7113,7011,6909,6819,6767,6718,6674,6650,6638,6618,6603,6630,6612,6469,6170,5740,5121,21.4,21.4,22.0,1568408,0.1,13.2,12.0,5.0,442,-1.00,-1.00,56.6719,-18.569531,0.000523,,,,,118 +SATSLF0720,2024246,14.011913,4.09,0.0573,0.1034,0.0177,0.00,16141,643,1,705,704,698,707,699,703,699,705,721,721,722,721,763,878,1219,1962,3141,4507,5751,6676,7311,7781,8192,8644,9169,9804,10552,11413,12403,13524,14695,15869,16980,17931,18660,19080,19210,19043,18666,18125,17544,16980,16510,16134,15915,15858,15936,16184,16574,17166,17904,18809,19885,21102,22429,23865,25348,26832,28261,29509,30502,31257,31645,31659,31322,30685,29761,28704,27478,26285,25120,24048,23047,22186,21442,20837,20349,19952,19682,19528,19422,19431,19543,19733,19990,20338,20776,21298,21867,22482,23137,23780,24398,24962,25461,25828,26084,26128,26016,25741,25266,24618,23888,23104,22226,21338,20512,19733,19030,18387,17824,17363,16942,16616,16373,16197,16101,16057,16078,16179,16347,16564,16858,17237,17653,18136,18704,19321,19969,20652,21376,22121,22876,23579,24291,24955,25544,26115,26532,26865,27100,27206,27213,27112,26901,26574,26178,25689,25120,24555,23901,23259,22612,21926,21282,20674,20072,19521,19024,18561,18158,17786,17467,17189,16907,16670,16461,16263,16077,15875,15691,15515,15368,15259,15157,15096,15026,14980,14961,14948,14963,14983,15019,15053,15101,15117,15159,15223,15235,15267,15278,15266,15297,15305,15297,15294,15255,15197,15129,15061,14963,14875,14725,14581,14401,14224,14009,13790,13544,13303,13026,12749,12450,12157,11856,11577,11301,11051,10807,10577,10314,10005,9682,9367,9084,8838,8635,8458,8296,8168,8070,7991,7931,7881,7804,7709,7576,7398,7245,7109,7003,6897,6823,6773,6706,6656,6652,6641,6608,6604,6639,6625,6470,6168,5735,5125,21.4,21.4,22.0,1568409,0.3,13.2,11.9,5.0,436,-1.00,-1.00,57.5426,-18.949652,0.000499,,,,,33 +SATSLF0720,2024246,14.012169,4.09,0.0573,0.1035,0.0176,0.00,16137,643,1,694,696,709,688,710,702,710,705,725,713,723,725,772,885,1214,1959,3141,4518,5757,6672,7313,7776,8215,8654,9176,9788,10544,11409,12406,13514,14697,15867,16982,17930,18647,19089,19208,19037,18666,18120,17528,16969,16507,16139,15920,15838,15927,16192,16573,17152,17901,18802,19879,21102,22417,23867,25352,26824,28246,29513,30512,31251,31661,31659,31329,30670,29750,28689,27451,26277,25104,24039,23040,22173,21440,20833,20349,19957,19674,19514,19415,19439,19536,19714,19989,20327,20771,21293,21849,22472,23121,23782,24389,24961,25445,25819,26075,26130,26006,25728,25255,24608,23891,23097,22228,21338,20502,19732,19024,18380,17817,17349,16930,16621,16374,16210,16089,16067,16082,16167,16318,16546,16857,17225,17664,18155,18726,19317,19963,20650,21370,22120,22869,23573,24279,24934,25526,26082,26523,26849,27077,27192,27189,27105,26886,26570,26158,25685,25112,24553,23894,23250,22598,21925,21286,20664,20075,19514,19021,18545,18157,17782,17461,17163,16904,16661,16461,16258,16055,15866,15681,15501,15371,15262,15153,15097,15017,14992,14957,14955,14969,14995,15010,15051,15081,15127,15162,15211,15227,15241,15245,15267,15285,15301,15298,15302,15261,15200,15131,15060,14954,14868,14726,14589,14413,14213,14007,13801,13565,13303,13029,12733,12446,12158,11842,11562,11294,11042,10810,10573,10305,10000,9690,9364,9084,8843,8616,8435,8288,8158,8078,7989,7913,7866,7806,7723,7578,7403,7245,7108,7000,6900,6819,6755,6704,6661,6649,6633,6617,6621,6647,6633,6484,6166,5749,5125,21.4,21.4,22.1,1568410,0.3,13.3,11.9,5.0,440,-1.00,-1.00,57.5440,-18.946090,0.000575,,,,,117 +SATSLF0720,2024246,14.012422,4.25,0.0595,0.1033,0.0175,0.00,16137,643,1,705,699,701,713,708,698,714,705,727,721,725,737,779,902,1231,1975,3161,4529,5762,6683,7317,7800,8213,8645,9174,9773,10535,11414,12403,13515,14687,15859,16977,17940,18649,19091,19216,19028,18653,18115,17527,16969,16505,16150,15923,15865,15929,16176,16576,17162,17900,18827,19877,21100,22423,23866,25352,26829,28261,29520,30497,31244,31653,31653,31305,30666,29741,28677,27448,26256,25115,24034,23027,22176,21436,20817,20324,19971,19677,19514,19426,19447,19545,19737,20001,20329,20763,21282,21849,22464,23122,23781,24374,24967,25449,25816,26069,26120,26012,25721,25249,24610,23885,23084,22212,21341,20497,19737,19033,18393,17829,17346,16940,16631,16357,16199,16081,16042,16069,16167,16331,16572,16853,17232,17649,18130,18717,19327,19955,20644,21376,22122,22853,23569,24272,24928,25531,26093,26514,26848,27084,27197,27205,27098,26896,26566,26170,25674,25122,24533,23889,23233,22592,21921,21280,20677,20073,19521,19037,18561,18149,17783,17453,17172,16902,16657,16453,16236,16060,15867,15682,15523,15376,15262,15160,15091,15015,14983,14957,14954,14966,14993,15008,15058,15094,15130,15174,15226,15240,15239,15251,15249,15279,15303,15292,15294,15245,15193,15133,15050,14969,14866,14725,14578,14411,14222,13986,13787,13545,13301,13033,12730,12446,12157,11853,11557,11292,11036,10797,10573,10322,10011,9683,9365,9093,8840,8637,8454,8307,8158,8071,7994,7932,7881,7809,7714,7579,7400,7242,7137,7001,6901,6831,6757,6706,6667,6647,6631,6612,6599,6622,6631,6472,6163,5735,5120,21.4,21.5,22.1,1568411,0.3,13.3,12.0,5.0,440,-1.00,-1.00,56.7665,-18.618582,0.000572,,,,,128 +SATSLF0720,2024246,14.012674,3.90,0.0547,0.1051,0.0189,0.00,16090,643,1,702,699,708,698,706,701,707,711,723,724,729,735,776,885,1240,1973,3153,4520,5759,6672,7312,7778,8182,8637,9150,9768,10519,11386,12373,13490,14665,15827,16936,17872,18621,19034,19183,18989,18610,18073,17477,16910,16444,16075,15857,15790,15869,16117,16517,17116,17824,18758,19813,21027,22345,23795,25268,26756,28170,29389,30411,31160,31547,31558,31222,30563,29668,28610,27364,26186,25015,23956,22960,22096,21374,20758,20292,19880,19593,19446,19349,19357,19472,19657,19924,20264,20693,21225,21783,22395,23064,23705,24320,24890,25354,25720,25979,26034,25920,25628,25153,24528,23807,23019,22148,21287,20451,19677,18985,18328,17777,17302,16887,16571,16317,16147,16045,16013,16025,16124,16285,16501,16801,17153,17596,18084,18647,19250,19906,20574,21301,22037,22784,23501,24194,24845,25443,26000,26423,26752,26992,27106,27136,27028,26819,26493,26096,25593,25050,24433,23809,23166,22523,21858,21218,20618,20002,19463,18971,18505,18109,17745,17411,17118,16848,16616,16406,16209,16022,15834,15637,15482,15351,15221,15135,15057,14970,14949,14922,14931,14929,14944,14976,14996,15039,15073,15121,15198,15195,15215,15214,15223,15244,15265,15253,15257,15190,15126,15087,15016,14929,14832,14696,14537,14382,14198,13982,13770,13525,13245,12985,12694,12406,12117,11813,11543,11266,11026,10773,10555,10280,9977,9652,9332,9067,8826,8613,8443,8293,8153,8061,7977,7905,7865,7781,7691,7555,7386,7236,7095,6983,6896,6813,6761,6706,6654,6627,6627,6604,6597,6621,6604,6459,6152,5732,5109,21.4,21.5,22.1,1568411,0.1,13.3,11.9,5.0,439,-1.00,-1.00,58.3226,-19.210459,0.000651,,,,,87 +SATSLF0720,2024246,14.012929,4.07,0.0570,0.1044,0.0185,0.00,16105,643,1,715,690,704,698,697,706,714,717,728,715,727,741,780,898,1228,1966,3145,4513,5747,6659,7299,7765,8181,8617,9145,9769,10516,11381,12370,13481,14645,15818,16924,17880,18609,19041,19170,18988,18615,18089,17492,16946,16464,16099,15875,15798,15880,16136,16531,17106,17853,18756,19826,21037,22375,23821,25302,26777,28194,29436,30421,31178,31572,31573,31245,30590,29661,28615,27377,26210,25049,23981,22983,22123,21409,20786,20297,19910,19626,19469,19377,19376,19479,19671,19943,20282,20725,21242,21801,22413,23083,23736,24341,24916,25395,25752,26018,26065,25940,25659,25195,24565,23838,23051,22180,21309,20466,19701,18990,18338,17777,17305,16913,16605,16349,16180,16082,16030,16048,16133,16299,16525,16813,17197,17628,18108,18681,19282,19911,20605,21326,22061,22807,23530,24232,24900,25481,26037,26444,26791,27025,27133,27149,27078,26849,26529,26139,25639,25076,24475,23838,23179,22523,21861,21244,20635,20033,19504,19010,18535,18121,17763,17428,17129,16860,16613,16408,16211,16009,15827,15640,15485,15365,15233,15139,15065,14997,14953,14937,14945,14957,14984,14985,15022,15065,15079,15143,15193,15198,15222,15225,15248,15266,15271,15270,15269,15237,15168,15101,15041,14926,14836,14710,14552,14375,14199,13988,13750,13527,13271,12993,12713,12422,12141,11844,11561,11288,11045,10802,10565,10297,9978,9652,9339,9059,8830,8601,8443,8289,8159,8065,7982,7913,7864,7802,7709,7560,7388,7241,7109,6998,6905,6829,6749,6706,6666,6644,6631,6609,6601,6621,6605,6458,6154,5721,5116,21.4,21.5,22.1,1568412,0.3,13.2,12.0,5.0,441,-1.00,-1.00,57.6512,-18.943023,0.000638,,,,,83 +SATSLF0720,2024246,14.013183,4.08,0.0572,0.1058,0.0197,0.00,16058,643,1,685,697,693,709,709,712,714,709,727,721,718,727,758,884,1212,1954,3127,4498,5717,6625,7258,7732,8149,8594,9116,9717,10475,11348,12317,13437,14595,15747,16867,17813,18535,18970,19092,18917,18543,18011,17406,16851,16400,16048,15825,15754,15822,16073,16474,17058,17789,18693,19752,20969,22278,23732,25211,26667,28084,29324,30327,31077,31474,31466,31140,30480,29594,28525,27301,26114,24969,23895,22893,22049,21317,20706,20230,19850,19569,19409,19316,19344,19421,19614,19867,20222,20642,21167,21729,22336,23010,23648,24273,24836,25312,25690,25942,26007,25881,25607,25122,24485,23764,22979,22110,21259,20404,19634,18944,18290,17728,17265,16864,16562,16306,16120,16035,15981,16007,16097,16249,16504,16770,17143,17569,18073,18632,19234,19863,20547,21257,22009,22759,23462,24161,24821,25398,25979,26394,26728,26965,27076,27085,26989,26781,26461,26058,25571,25013,24413,23787,23133,22475,21812,21203,20583,19982,19455,18957,18489,18065,17716,17379,17089,16828,16576,16388,16178,15998,15791,15613,15456,15311,15198,15104,15041,14948,14918,14903,14905,14906,14920,14959,14987,15017,15050,15106,15158,15166,15176,15196,15208,15220,15233,15226,15233,15179,15133,15063,15000,14894,14823,14669,14523,14356,14149,13946,13726,13499,13253,12970,12680,12394,12110,11809,11520,11263,10996,10758,10519,10269,9961,9632,9332,9046,8794,8595,8424,8268,8145,8054,7978,7901,7851,7785,7697,7546,7366,7217,7094,6988,6886,6803,6746,6686,6651,6621,6608,6585,6585,6609,6602,6449,6134,5711,5103,21.4,21.6,22.1,1568413,0.2,13.2,11.9,5.0,440,-1.00,-1.00,58.1473,-19.088501,0.000600,,,,,3 +SATSLF0720,2024246,14.013434,4.25,0.0595,0.1048,0.0187,0.00,16101,643,1,705,708,705,694,695,700,709,713,720,719,735,730,773,903,1213,1966,3138,4501,5739,6664,7296,7777,8193,8625,9131,9756,10509,11372,12363,13487,14669,15828,16946,17886,18603,19040,19166,18989,18607,18073,17484,16921,16457,16095,15863,15802,15893,16130,16557,17133,17872,18785,19837,21060,22368,23805,25272,26760,28168,29433,30421,31174,31579,31570,31227,30586,29672,28612,27381,26203,25033,23975,22970,22114,21387,20773,20304,19900,19618,19460,19360,19388,19474,19661,19927,20282,20714,21237,21794,22410,23067,23721,24328,24917,25389,25754,26027,26085,25941,25664,25193,24558,23837,23042,22177,21297,20460,19691,18982,18325,17775,17320,16915,16597,16345,16165,16057,16031,16049,16144,16312,16535,16820,17187,17609,18093,18671,19272,19914,20597,21329,22077,22811,23517,24229,24885,25474,26041,26461,26792,27020,27138,27154,27042,26832,26488,26109,25614,25058,24473,23844,23194,22538,21882,21243,20608,20023,19472,18977,18514,18113,17744,17424,17138,16869,16642,16429,16231,16033,15834,15650,15469,15345,15237,15138,15063,14985,14954,14930,14926,14938,14963,14986,15019,15063,15084,15137,15194,15205,15218,15222,15233,15254,15269,15282,15265,15208,15153,15093,15008,14931,14829,14693,14557,14370,14183,13980,13754,13520,13259,13015,12718,12420,12137,11835,11546,11283,11028,10787,10554,10278,9974,9660,9358,9072,8811,8611,8448,8297,8156,8064,7981,7901,7863,7785,7693,7557,7371,7232,7098,6981,6890,6809,6742,6682,6644,6628,6616,6599,6589,6627,6617,6470,6157,5737,5126,21.4,21.6,22.2,1568414,0.4,13.2,12.0,5.0,441,-1.00,-1.00,57.0131,-18.676328,0.000552,,,,,85 +SATSLF0720,2024246,14.013689,4.04,0.0566,0.1050,0.0187,0.00,16096,643,1,697,702,706,709,715,725,739,720,732,725,726,739,770,885,1218,1965,3141,4521,5751,6665,7303,7767,8184,8642,9142,9754,10501,11363,12357,13467,14645,15808,16917,17868,18597,19017,19162,18977,18597,18062,17466,16905,16449,16089,15866,15781,15868,16122,16517,17095,17827,18754,19805,21029,22357,23789,25271,26749,28161,29409,30408,31159,31554,31552,31229,30577,29659,28594,27363,26186,25008,23947,22950,22101,21376,20780,20288,19889,19618,19453,19352,19357,19463,19666,19911,20267,20695,21216,21781,22409,23070,23717,24322,24907,25380,25737,25994,26045,25925,25646,25170,24541,23821,23031,22171,21305,20442,19680,18980,18327,17769,17305,16908,16586,16335,16162,16071,16027,16038,16128,16288,16514,16813,17186,17605,18100,18658,19287,19905,20596,21320,22064,22797,23502,24215,24866,25467,26033,26461,26761,27011,27127,27136,27034,26830,26488,26103,25600,25047,24452,23826,23165,22529,21853,21237,20605,20032,19479,18987,18528,18126,17754,17434,17141,16864,16632,16426,16214,16039,15841,15651,15493,15345,15229,15139,15054,14998,14933,14931,14933,14935,14969,14984,15008,15060,15090,15142,15201,15207,15228,15237,15233,15259,15265,15272,15272,15207,15142,15095,15020,14929,14836,14698,14555,14385,14184,13984,13779,13529,13279,13003,12712,12425,12135,11850,11545,11259,11012,10794,10549,10283,9994,9666,9363,9072,8826,8611,8442,8295,8158,8053,7978,7914,7861,7792,7717,7572,7403,7250,7101,6987,6891,6808,6745,6702,6649,6631,6631,6615,6603,6622,6608,6469,6162,5729,5111,21.4,21.6,22.2,1568415,0.2,13.2,12.0,5.0,432,-1.00,-1.00,58.0155,-19.082567,0.000629,,,,,101 +SATSLF0720,2024246,14.013949,4.12,0.0577,0.1051,0.0188,0.00,16087,643,1,695,690,703,697,703,693,734,730,729,739,742,743,776,893,1219,1957,3133,4509,5747,6644,7282,7758,8179,8622,9141,9765,10501,11362,12349,13450,14621,15771,16891,17847,18570,19005,19138,18937,18574,18026,17446,16888,16437,16074,15861,15773,15852,16104,16509,17090,17821,18733,19794,21012,22321,23780,25234,26718,28146,29381,30374,31110,31516,31526,31193,30546,29632,28578,27358,26165,24997,23947,22925,22082,21352,20741,20263,19877,19606,19450,19349,19369,19449,19651,19918,20251,20692,21220,21760,22377,23048,23697,24296,24884,25361,25719,26000,26035,25930,25653,25164,24529,23812,23013,22139,21281,20446,19662,18966,18325,17771,17305,16882,16576,16339,16159,16058,16008,16034,16126,16283,16516,16806,17172,17596,18084,18659,19277,19909,20581,21322,22045,22786,23505,24205,24864,25466,26016,26429,26749,27008,27112,27122,27037,26811,26488,26095,25600,25034,24446,23826,23180,22518,21868,21234,20622,20024,19477,18978,18494,18093,17735,17417,17118,16857,16621,16423,16228,16029,15841,15652,15473,15351,15241,15129,15042,14972,14952,14934,14923,14922,14960,14989,15018,15061,15095,15150,15185,15210,15212,15219,15222,15241,15271,15273,15252,15207,15153,15090,15017,14925,14835,14697,14547,14378,14190,13981,13770,13528,13264,13003,12723,12420,12123,11827,11544,11273,11021,10781,10567,10289,9999,9670,9341,9055,8814,8618,8441,8290,8163,8061,7988,7912,7875,7786,7715,7550,7378,7219,7095,6990,6881,6808,6742,6689,6652,6643,6627,6618,6587,6610,6603,6449,6170,5726,5107,21.4,21.6,22.2,1568416,0.2,13.2,12.0,5.0,441,-1.00,-1.00,57.8804,-19.010276,0.000556,,,,,155 +SATSLF0720,2024246,14.014199,4.02,0.0563,0.1051,0.0191,0.00,16088,643,1,700,707,709,706,711,706,712,711,707,718,729,729,773,902,1219,1983,3146,4527,5733,6647,7274,7747,8166,8596,9123,9735,10496,11362,12355,13484,14645,15809,16915,17856,18569,19013,19144,18967,18578,18048,17445,16893,16441,16069,15839,15765,15837,16103,16493,17093,17838,18741,19806,21042,22342,23785,25252,26739,28146,29386,30381,31126,31525,31516,31201,30548,29655,28585,27365,26180,25018,23939,22944,22096,21364,20761,20267,19895,19602,19449,19347,19352,19457,19653,19906,20260,20683,21201,21776,22378,23041,23689,24319,24893,25379,25732,25997,26021,25924,25640,25170,24528,23815,23031,22158,21299,20453,19684,18983,18328,17769,17287,16877,16571,16309,16152,16077,16009,16029,16129,16278,16506,16805,17168,17591,18082,18642,19275,19906,20596,21320,22065,22797,23506,24208,24852,25452,26006,26432,26768,26996,27112,27117,27041,26829,26507,26109,25603,25063,24461,23813,23173,22519,21862,21232,20624,20025,19469,18989,18513,18105,17744,17398,17111,16846,16617,16400,16219,16023,15822,15645,15483,15337,15220,15122,15048,14981,14936,14924,14923,14941,14957,14991,15014,15047,15091,15118,15198,15200,15213,15235,15223,15263,15259,15257,15245,15215,15156,15082,15008,14939,14837,14690,14537,14373,14177,13976,13757,13532,13261,12993,12707,12422,12129,11829,11537,11273,11029,10769,10555,10273,9975,9651,9339,9059,8811,8619,8448,8297,8146,8070,7975,7909,7853,7792,7693,7553,7381,7225,7099,6993,6885,6810,6749,6681,6640,6631,6619,6602,6603,6622,6613,6465,6164,5721,5115,21.4,21.6,22.2,1568417,0.1,13.2,11.9,5.0,440,-1.00,-1.00,58.3063,-19.194051,0.000645,,,,,81 +SATSLF0720,2024246,14.014454,4.25,0.0595,0.1058,0.0196,0.00,16056,643,1,693,683,695,692,709,701,702,713,724,721,713,724,765,875,1209,1949,3131,4512,5737,6649,7275,7740,8174,8610,9139,9737,10491,11357,12341,13457,14612,15778,16873,17816,18536,18972,19101,18930,18548,18009,17429,16874,16406,16052,15829,15764,15844,16077,16487,17072,17824,18720,19772,20987,22309,23728,25209,26688,28085,29335,30331,31081,31486,31482,31147,30490,29588,28523,27301,26133,24970,23888,22903,22043,21307,20700,20222,19840,19552,19403,19319,19329,19421,19611,19880,20217,20650,21168,21717,22336,22998,23644,24246,24833,25304,25673,25960,26005,25872,25597,25115,24495,23768,22977,22105,21251,20417,19643,18944,18289,17741,17269,16869,16549,16290,16121,16025,15971,16001,16093,16251,16477,16769,17133,17588,18058,18624,19237,19853,20548,21257,22000,22745,23450,24149,24817,25372,25960,26384,26705,26950,27069,27080,26977,26763,26441,26032,25555,25002,24402,23781,23125,22481,21809,21187,20576,19984,19443,18934,18464,18050,17691,17379,17095,16821,16588,16384,16177,15989,15797,15614,15456,15297,15178,15083,15015,14955,14923,14901,14903,14912,14920,14939,14965,15013,15042,15105,15148,15161,15178,15176,15199,15205,15225,15236,15223,15177,15125,15065,14992,14900,14807,14679,14519,14354,14153,13952,13729,13491,13246,12970,12685,12392,12101,11789,11519,11253,10990,10751,10507,10252,9945,9629,9332,9027,8800,8593,8430,8270,8139,8047,7960,7896,7844,7766,7688,7542,7373,7230,7082,6975,6875,6800,6725,6673,6656,6625,6621,6601,6589,6605,6609,6446,6137,5716,5104,21.4,21.6,22.2,1568418,0.3,13.2,12.0,5.0,441,-1.00,-1.00,57.2985,-18.741001,0.000538,,,,,98 +SATSDF0720,2024246,14.259138,0.00,0.0000,0.0000,0.0000,0.00,643,0,1,643,627,625,634,629,623,621,625,621,619,624,623,627,617,619,607,620,625,627,645,637,625,637,651,651,649,643,628,643,635,641,659,644,654,648,642,640,651,661,646,657,654,651,654,657,656,644,657,653,648,652,649,651,637,639,642,650,652,638,655,641,659,645,653,648,653,648,639,647,649,657,645,664,656,661,659,644,632,651,650,640,645,647,660,657,649,653,650,654,657,654,646,651,650,642,649,635,645,643,638,638,637,639,646,632,640,637,642,633,647,634,641,640,639,647,635,639,637,627,638,628,639,639,648,648,650,658,651,641,641,641,640,646,641,645,648,645,649,640,638,637,638,627,631,643,636,635,631,635,652,657,651,641,650,637,629,637,637,643,647,642,647,638,650,653,665,633,647,638,635,639,636,633,647,640,647,658,657,649,651,642,642,636,637,652,642,635,647,644,656,657,656,653,655,642,643,631,635,638,635,626,643,642,647,653,653,662,662,641,633,642,636,628,632,639,644,641,651,649,653,650,655,642,637,647,650,635,621,635,633,641,636,635,641,644,636,643,653,660,653,644,654,645,647,643,643,645,635,631,631,630,641,633,631,643,477,0.0,0.0,0.0,1568417,0.8,14.0,0.1,5.0,54,0.00,0.00,0.0000,0.000000,0.000000,,,,,132 +SATSLF0720,2024246,14.259693,4.08,0.0572,0.0997,0.0155,0.00,16247,643,1,695,706,709,712,703,711,710,712,718,723,721,717,773,887,1213,1959,3140,4517,5760,6690,7330,7799,8215,8667,9195,9835,10590,11467,12465,13582,14787,15968,17077,18051,18788,19224,19363,19187,18807,18261,17671,17084,16645,16277,16049,15962,16042,16291,16695,17291,18058,18977,20052,21288,22613,24065,25559,27061,28488,29777,30762,31531,31925,31939,31610,30946,30011,28941,27715,26516,25332,24249,23237,22376,21624,21031,20533,20137,19866,19690,19584,19596,19709,19889,20152,20502,20932,21454,22019,22667,23323,23965,24583,25162,25636,26004,26276,26315,26198,25921,25433,24799,24077,23265,22378,21511,20647,19879,19161,18513,17941,17469,17073,16724,16476,16289,16196,16149,16181,16272,16449,16681,16972,17344,17780,18281,18837,19451,20105,20789,21517,22269,23011,23721,24445,25109,25692,26273,26704,27031,27274,27382,27396,27300,27080,26741,26353,25848,25274,24691,24061,23398,22725,22067,21429,20825,20212,19650,19165,18688,18267,17902,17565,17270,17003,16771,16565,16353,16141,15959,15769,15595,15459,15335,15236,15187,15101,15079,15057,15045,15051,15071,15088,15123,15181,15193,15251,15310,15314,15318,15335,15344,15372,15392,15385,15369,15310,15260,15202,15135,15034,14944,14796,14653,14477,14290,14089,13869,13632,13356,13077,12801,12505,12210,11902,11621,11354,11106,10859,10620,10346,10053,9710,9419,9121,8892,8681,8506,8346,8203,8119,8037,7961,7914,7853,7749,7613,7433,7289,7159,7027,6930,6854,6786,6731,6707,6673,6654,6650,6627,6659,6644,6503,6181,5763,5131,21.4,21.3,21.7,1568418,0.3,13.5,12.0,5.0,540,-1.00,-1.00,57.7638,-19.200966,0.000596,,,,,84 +SATSLF0720,2024246,14.259874,4.06,0.0569,0.1004,0.0157,0.00,16224,643,1,708,695,717,693,703,701,705,705,714,721,730,722,755,884,1214,1950,3119,4505,5744,6669,7309,7783,8217,8669,9185,9808,10555,11430,12429,13562,14764,15916,17059,18020,18749,19175,19317,19134,18749,18210,17612,17063,16581,16239,15993,15927,16003,16247,16668,17260,18000,18941,19997,21243,22562,24027,25517,26993,28430,29695,30695,31457,31852,31860,31538,30884,29968,28903,27655,26475,25300,24217,23191,22331,21590,20985,20490,20093,19811,19655,19552,19577,19661,19843,20108,20469,20898,21424,21987,22611,23303,23931,24546,25136,25600,25961,26237,26286,26165,25885,25403,24758,24034,23216,22346,21467,20613,19841,19133,18477,17920,17428,17033,16720,16458,16296,16206,16149,16167,16250,16423,16647,16939,17302,17726,18225,18813,19421,20077,20749,21497,22258,22997,23709,24423,25066,25675,26240,26664,26996,27238,27349,27361,27274,27064,26732,26320,25816,25258,24665,24035,23377,22704,22046,21417,20798,20206,19651,19174,18690,18261,17879,17555,17246,16971,16727,16535,16333,16141,15949,15766,15598,15468,15349,15237,15159,15093,15047,15034,15040,15041,15077,15102,15129,15173,15195,15242,15289,15289,15300,15334,15321,15351,15357,15368,15356,15305,15254,15194,15113,15033,14923,14781,14630,14449,14267,14064,13834,13610,13341,13080,12794,12503,12204,11891,11615,11345,11099,10853,10611,10352,10041,9703,9412,9118,8874,8666,8487,8334,8198,8103,8023,7958,7904,7829,7735,7594,7415,7283,7147,7037,6937,6856,6795,6745,6685,6682,6664,6636,6644,6651,6645,6486,6193,5758,5159,21.4,21.4,21.8,1568419,0.2,13.5,11.9,5.0,450,-1.00,-1.00,58.3182,-19.394859,0.000571,,,,,48 +SATSLF0720,2024246,14.260130,4.05,0.0568,0.1007,0.0168,0.00,16207,643,1,692,695,698,696,713,722,721,719,739,733,720,727,773,877,1221,1963,3136,4506,5740,6645,7294,7762,8185,8637,9152,9797,10540,11412,12427,13533,14727,15905,17013,17969,18699,19149,19284,19105,18714,18185,17591,17031,16558,16197,15974,15910,15985,16241,16646,17229,17973,18887,19959,21201,22527,23996,25478,26970,28404,29653,30673,31435,31824,31829,31485,30860,29928,28853,27624,26428,25257,24182,23177,22313,21572,20944,20465,20087,19797,19622,19540,19541,19635,19819,20083,20443,20887,21405,21970,22597,23252,23893,24517,25100,25570,25943,26192,26245,26122,25835,25371,24727,24002,23202,22317,21457,20586,19821,19113,18450,17878,17421,17024,16692,16445,16269,16173,16119,16145,16238,16410,16628,16924,17292,17720,18224,18797,19402,20060,20738,21475,22224,22963,23680,24388,25065,25637,26219,26649,26969,27217,27310,27333,27218,27016,26682,26296,25793,25235,24640,24005,23371,22705,22026,21397,20776,20195,19622,19121,18646,18240,17853,17541,17236,16964,16722,16535,16327,16138,15941,15760,15604,15449,15332,15227,15157,15080,15038,15016,15019,15021,15043,15077,15100,15144,15173,15225,15280,15296,15297,15315,15329,15329,15355,15345,15331,15274,15217,15159,15107,15026,14918,14791,14641,14469,14278,14053,13842,13603,13338,13070,12779,12488,12182,11885,11614,11337,11097,10860,10617,10352,10049,9718,9396,9113,8870,8653,8491,8334,8210,8102,8025,7952,7903,7835,7741,7597,7417,7273,7145,7027,6925,6860,6776,6727,6680,6657,6655,6649,6621,6647,6650,6506,6185,5755,5138,21.4,21.4,21.9,1568420,0.2,13.4,12.0,5.0,439,-1.00,-1.00,58.5860,-19.482851,0.000612,,,,,118 +SATSLF0720,2024246,14.260382,4.36,0.0610,0.1011,0.0163,0.00,16190,643,1,699,702,695,711,712,719,715,711,715,717,717,731,773,890,1230,1965,3131,4478,5703,6631,7273,7741,8172,8616,9146,9774,10527,11393,12403,13513,14695,15869,16989,17941,18675,19109,19237,19051,18695,18137,17533,16990,16529,16163,15954,15881,15977,16221,16637,17221,17968,18888,19952,21181,22498,23952,25445,26934,28349,29613,30621,31377,31778,31777,31446,30814,29885,28814,27581,26396,25222,24145,23131,22261,21543,20930,20450,20071,19781,19627,19522,19530,19625,19814,20066,20414,20845,21378,21946,22577,23225,23879,24496,25086,25556,25912,26181,26233,26105,25822,25344,24710,23986,23184,22314,21435,20578,19797,19092,18450,17869,17413,17009,16697,16429,16247,16157,16109,16128,16229,16386,16614,16921,17271,17713,18208,18784,19398,20014,20722,21452,22196,22937,23653,24371,25032,25621,26179,26624,26965,27193,27316,27325,27224,26996,26667,26274,25782,25201,24629,23977,23333,22650,21988,21369,20741,20147,19598,19094,18620,18209,17851,17520,17218,16948,16710,16506,16301,16116,15910,15746,15572,15438,15312,15223,15153,15070,15019,14997,15000,15016,15031,15070,15095,15145,15172,15221,15282,15281,15309,15305,15312,15321,15338,15341,15332,15293,15217,15175,15093,15022,14910,14775,14633,14455,14261,14045,13825,13589,13305,13052,12774,12468,12179,11877,11591,11330,11073,10842,10600,10343,10037,9710,9405,9108,8871,8661,8481,8317,8195,8081,8008,7941,7890,7833,7732,7590,7413,7271,7150,7019,6925,6851,6784,6727,6682,6663,6644,6631,6631,6651,6647,6488,6180,5760,5135,21.4,21.4,21.9,1568421,0.2,13.5,12.0,5.0,437,-1.00,-1.00,57.7785,-19.121905,0.000558,,,,,183 +SATSLF0720,2024246,14.260639,4.16,0.0582,0.1018,0.0172,0.00,16168,643,1,670,689,678,699,709,715,719,718,725,718,727,722,754,875,1217,1953,3125,4478,5709,6609,7249,7721,8133,8603,9124,9736,10490,11362,12352,13463,14645,15823,16921,17899,18617,19053,19193,19016,18649,18107,17511,16957,16507,16138,15908,15848,15941,16201,16585,17166,17911,18814,19898,21125,22461,23913,25408,26885,28311,29576,30589,31344,31738,31740,31422,30766,29842,28793,27545,26361,25191,24113,23111,22266,21514,20903,20425,20034,19751,19584,19490,19506,19589,19779,20056,20401,20838,21365,21915,22536,23204,23857,24466,25037,25522,25886,26144,26193,26075,25799,25317,24682,23953,23148,22267,21405,20541,19777,19073,18432,17853,17386,16971,16667,16405,16233,16132,16089,16119,16200,16371,16589,16898,17266,17689,18177,18763,19364,20010,20700,21421,22166,22914,23637,24346,25010,25594,26160,26600,26917,27158,27277,27296,27202,26993,26657,26262,25761,25173,24599,23949,23315,22654,21969,21346,20726,20140,19581,19076,18601,18203,17830,17501,17217,16938,16696,16508,16297,16103,15909,15721,15552,15417,15291,15207,15124,15061,15015,15003,15001,15002,15026,15042,15057,15107,15148,15201,15253,15269,15279,15278,15292,15298,15331,15321,15319,15267,15219,15144,15079,14994,14903,14765,14610,14429,14242,14030,13817,13584,13321,13048,12768,12465,12178,11866,11592,11309,11061,10825,10577,10312,10010,9682,9375,9106,8856,8663,8489,8322,8189,8085,7994,7936,7880,7803,7723,7584,7403,7249,7108,7012,6921,6834,6768,6726,6688,6673,6644,6631,6610,6631,6629,6473,6177,5751,5126,21.4,21.4,21.9,1568422,0.3,13.5,11.9,5.0,439,-1.00,-1.00,59.1172,-19.653869,0.000617,,,,,102 +SATSLF0720,2024246,14.260895,4.25,0.0595,0.1020,0.0172,0.00,16168,643,1,695,697,692,689,695,695,707,701,701,694,710,733,761,882,1214,1941,3113,4476,5698,6592,7237,7706,8130,8579,9111,9748,10485,11370,12362,13477,14659,15824,16921,17893,18610,19051,19200,19025,18641,18100,17506,16951,16505,16138,15909,15857,15933,16181,16586,17163,17928,18838,19916,21133,22469,23914,25410,26898,28316,29575,30586,31330,31738,31736,31419,30766,29836,28775,27544,26365,25187,24112,23093,22239,21495,20905,20401,20025,19741,19587,19481,19502,19594,19781,20050,20388,20814,21350,21922,22529,23197,23844,24461,25038,25526,25896,26149,26209,26088,25796,25309,24663,23965,23150,22297,21390,20558,19789,19067,18423,17870,17387,16985,16656,16400,16231,16151,16105,16131,16213,16384,16602,16897,17250,17693,18188,18743,19365,20015,20706,21437,22170,22913,23629,24339,24990,25603,26163,26596,26925,27172,27270,27286,27197,26972,26637,26253,25755,25173,24584,23942,23301,22659,21981,21351,20728,20131,19578,19085,18619,18197,17824,17500,17223,16954,16690,16500,16289,16109,15898,15711,15547,15405,15312,15197,15124,15047,15021,14986,14996,15005,15026,15056,15075,15115,15142,15181,15255,15265,15270,15287,15298,15321,15334,15326,15326,15278,15213,15145,15074,14997,14876,14750,14601,14430,14237,14025,13817,13573,13321,13053,12778,12465,12160,11863,11580,11314,11053,10821,10581,10323,10021,9699,9394,9105,8861,8649,8474,8313,8193,8088,8008,7934,7880,7809,7729,7581,7406,7259,7131,7025,6923,6841,6764,6719,6683,6669,6641,6643,6621,6647,6633,6477,6179,5747,5117,21.4,21.4,21.9,1568423,0.3,13.4,11.9,5.0,442,-1.00,-1.00,58.7545,-19.502673,0.000624,,,,,70 +SATSLF0720,2024246,14.261147,4.23,0.0592,0.1020,0.0167,0.00,16170,643,1,687,695,701,691,707,707,716,714,721,717,721,730,768,891,1222,1949,3113,4464,5689,6595,7221,7711,8132,8599,9111,9747,10485,11358,12349,13462,14644,15822,16920,17889,18613,19062,19191,19008,18634,18089,17501,16945,16492,16134,15905,15833,15935,16179,16584,17168,17930,18834,19918,21139,22459,23909,25417,26873,28315,29577,30583,31336,31730,31741,31426,30764,29850,28776,27538,26375,25185,24101,23105,22243,21505,20888,20399,20021,19734,19573,19482,19509,19594,19773,20043,20392,20841,21346,21908,22536,23205,23845,24480,25049,25529,25888,26163,26201,26081,25790,25320,24677,23950,23150,22272,21408,20562,19804,19085,18432,17874,17408,16989,16664,16424,16245,16129,16109,16122,16206,16381,16606,16896,17274,17694,18173,18760,19360,20007,20710,21424,22167,22920,23640,24353,25003,25591,26159,26593,26909,27157,27271,27266,27192,26970,26647,26246,25751,25191,24599,23948,23305,22646,21978,21343,20723,20134,19577,19072,18609,18196,17840,17499,17214,16955,16723,16510,16293,16104,15915,15722,15564,15428,15299,15207,15142,15057,15026,15009,15012,15005,15029,15038,15087,15126,15147,15207,15256,15267,15285,15299,15296,15316,15355,15337,15329,15276,15213,15161,15088,14998,14903,14778,14612,14455,14253,14037,13819,13568,13321,13050,12774,12480,12184,11877,11571,11317,11062,10832,10586,10310,10018,9699,9397,9105,8851,8649,8481,8343,8205,8101,8023,7956,7893,7817,7732,7581,7405,7251,7134,7017,6919,6854,6772,6730,6679,6652,6646,6628,6619,6651,6649,6497,6181,5771,5147,21.4,21.4,22.0,1568424,0.3,13.4,12.0,5.0,436,-1.00,-1.00,59.0719,-19.635832,0.000635,,,,,110 +SATSLF0720,2024246,14.261404,4.27,0.0598,0.1025,0.0172,0.00,16151,643,1,689,705,701,707,720,705,716,708,721,724,743,744,773,890,1220,1945,3105,4474,5674,6575,7224,7699,8129,8571,9099,9722,10471,11341,12333,13441,14613,15767,16887,17841,18563,19005,19148,18983,18605,18075,17490,16934,16461,16121,15880,15826,15886,16157,16549,17142,17889,18793,19879,21094,22409,23856,25356,26849,28267,29538,30529,31281,31674,31701,31348,30709,29786,28730,27491,26297,25137,24066,23069,22212,21459,20863,20384,19989,19702,19546,19460,19477,19565,19756,20024,20372,20807,21317,21891,22501,23163,23816,24436,25018,25481,25849,26115,26152,26048,25764,25303,24653,23932,23127,22267,21384,20525,19757,19062,18396,17841,17355,16963,16653,16385,16223,16113,16077,16103,16197,16365,16596,16888,17269,17684,18193,18749,19369,19994,20665,21402,22153,22900,23617,24323,24981,25581,26156,26567,26882,27121,27249,27260,27157,26930,26611,26184,25728,25148,24567,23932,23280,22632,21966,21330,20718,20113,19553,19078,18586,18201,17829,17498,17205,16917,16675,16476,16277,16089,15906,15714,15550,15396,15291,15191,15125,15065,15004,14989,14994,14981,15001,15026,15061,15113,15133,15210,15245,15272,15286,15296,15293,15301,15333,15325,15330,15265,15222,15146,15075,14979,14886,14744,14603,14429,14242,14029,13819,13568,13313,13042,12759,12458,12162,11879,11587,11312,11069,10831,10591,10324,10037,9714,9386,9099,8851,8642,8474,8313,8187,8076,7997,7935,7878,7825,7739,7585,7419,7260,7138,7026,6930,6837,6780,6731,6677,6660,6646,6635,6629,6647,6629,6478,6181,5745,5130,21.4,21.4,22.0,1568425,0.3,13.4,11.9,5.0,434,-1.00,-1.00,58.8148,-19.492825,0.000640,,,,,237 +SATSLF0720,2024246,14.261659,4.37,0.0612,0.1027,0.0174,0.00,16143,643,1,695,701,697,692,701,715,724,723,717,723,710,726,763,882,1212,1933,3099,4453,5675,6591,7223,7682,8115,8571,9088,9706,10448,11319,12312,13435,14605,15763,16899,17837,18573,19005,19140,18960,18597,18065,17476,16920,16466,16094,15875,15813,15890,16139,16555,17141,17890,18810,19879,21098,22429,23882,25363,26837,28274,29526,30531,31276,31681,31678,31379,30713,29787,28718,27491,26306,25133,24039,23064,22196,21465,20846,20354,19988,19705,19538,19451,19458,19569,19768,20025,20357,20797,21317,21872,22499,23174,23817,24429,25012,25490,25850,26112,26170,26026,25751,25275,24634,23914,23102,22236,21368,20518,19760,19050,18386,17840,17364,16947,16641,16385,16210,16101,16073,16090,16193,16358,16584,16874,17245,17664,18155,18756,19357,19994,20673,21401,22151,22877,23593,24297,24955,25552,26121,26558,26883,27122,27220,27235,27144,26931,26603,26210,25712,25141,24555,23917,23271,22605,21947,21314,20704,20123,19561,19059,18582,18181,17809,17482,17181,16912,16677,16462,16267,16073,15891,15699,15530,15389,15278,15187,15106,15029,14995,14977,14984,14966,15011,15016,15047,15088,15131,15181,15229,15246,15264,15287,15274,15307,15333,15314,15321,15257,15198,15137,15060,14973,14880,14732,14590,14424,14229,14024,13798,13565,13289,13034,12744,12444,12158,11853,11576,11297,11053,10805,10587,10313,10009,9680,9371,9089,8859,8665,8489,8320,8179,8080,7995,7915,7879,7808,7714,7580,7402,7247,7118,7011,6912,6835,6779,6721,6684,6647,6643,6621,6616,6633,6625,6475,6156,5735,5132,21.4,21.5,22.0,1568426,0.3,13.3,12.0,5.0,438,-1.00,-1.00,58.7561,-19.470826,0.000661,,,,,29 +SATSLF0720,2024246,14.261911,4.16,0.0583,0.1029,0.0178,0.00,16131,643,1,689,694,695,705,699,710,711,718,725,707,707,727,757,877,1211,1950,3099,4457,5669,6580,7193,7679,8107,8557,9078,9685,10442,11313,12304,13410,14593,15754,16856,17813,18534,18984,19126,18950,18586,18049,17465,16898,16445,16081,15853,15789,15868,16120,16538,17113,17866,18775,19842,21081,22373,23835,25309,26805,28222,29474,30487,31248,31643,31641,31319,30666,29751,28692,27463,26288,25116,24044,23038,22181,21446,20823,20363,19960,19679,19524,19442,19453,19545,19730,19986,20325,20768,21308,21859,22486,23147,23809,24402,24993,25453,25818,26072,26138,26021,25738,25256,24626,23897,23099,22236,21355,20505,19741,19027,18390,17829,17361,16962,16630,16389,16213,16106,16060,16081,16171,16339,16577,16862,17226,17657,18131,18714,19328,19972,20666,21384,22129,22877,23577,24290,24950,25541,26111,26537,26881,27106,27202,27222,27125,26916,26589,26198,25700,25124,24539,23909,23253,22622,21940,21314,20701,20087,19539,19039,18582,18168,17801,17474,17177,16901,16675,16467,16269,16077,15892,15692,15532,15385,15263,15162,15095,15015,14989,14972,14981,14973,15008,15031,15062,15103,15143,15181,15238,15236,15268,15267,15280,15294,15317,15314,15300,15261,15192,15125,15047,14968,14864,14725,14591,14425,14224,14019,13803,13576,13317,13034,12750,12452,12152,11854,11569,11300,11049,10814,10570,10311,10007,9675,9381,9112,8857,8647,8461,8303,8173,8061,7995,7917,7877,7812,7718,7578,7386,7240,7116,7003,6903,6813,6767,6720,6683,6659,6638,6613,6615,6632,6628,6469,6165,5729,5125,21.4,21.5,22.1,1568427,0.3,13.4,12.0,5.0,434,-1.00,-1.00,59.4592,-19.738323,0.000611,,,,,55 +SATSLF0720,2024246,14.262167,4.26,0.0597,0.1031,0.0176,0.00,16140,643,1,694,692,695,699,711,707,718,720,714,702,723,721,757,880,1193,1934,3093,4458,5675,6583,7229,7701,8125,8566,9091,9702,10450,11317,12322,13425,14596,15769,16893,17842,18574,18994,19146,18968,18600,18061,17469,16915,16459,16101,15878,15804,15888,16132,16541,17115,17880,18802,19869,21092,22426,23857,25355,26830,28263,29511,30530,31258,31671,31686,31346,30693,29779,28714,27485,26298,25129,24051,23053,22199,21475,20869,20366,19979,19681,19539,19435,19445,19546,19729,20010,20361,20789,21321,21870,22499,23148,23801,24415,25012,25472,25842,26085,26148,26018,25749,25277,24640,23918,23126,22241,21385,20517,19750,19048,18388,17830,17352,16952,16632,16379,16206,16109,16077,16096,16181,16349,16574,16878,17248,17681,18164,18725,19354,19982,20650,21393,22139,22877,23597,24308,24980,25549,26114,26541,26857,27111,27213,27256,27136,26929,26613,26212,25706,25138,24547,23917,23266,22619,21942,21298,20701,20106,19554,19059,18580,18179,17798,17483,17193,16910,16683,16468,16272,16084,15890,15702,15537,15406,15281,15190,15108,15046,15002,14967,14968,14973,14999,15019,15063,15115,15130,15193,15241,15259,15261,15273,15285,15305,15318,15321,15310,15260,15212,15132,15048,14967,14869,14749,14589,14408,14235,14016,13811,13559,13295,13039,12740,12458,12165,11876,11569,11307,11053,10820,10574,10296,10003,9682,9384,9094,8847,8642,8448,8308,8170,8072,7993,7923,7880,7801,7704,7581,7415,7253,7119,6997,6903,6821,6753,6689,6672,6649,6635,6619,6610,6644,6627,6480,6186,5733,5123,21.4,21.5,22.1,1568428,0.2,13.4,11.9,5.0,438,-1.00,-1.00,59.0777,-19.597431,0.000679,,,,,235 +SATSLF0720,2024246,14.262420,4.40,0.0616,0.1034,0.0177,0.00,16130,643,1,702,701,702,701,713,720,723,724,726,727,740,749,766,883,1211,1936,3107,4453,5680,6581,7210,7675,8087,8547,9089,9685,10417,11303,12315,13426,14592,15762,16861,17819,18548,18989,19121,18942,18569,18043,17444,16891,16443,16092,15869,15788,15878,16133,16530,17136,17878,18781,19857,21079,22409,23846,25337,26814,28235,29492,30497,31248,31648,31655,31322,30674,29742,28696,27464,26290,25129,24042,23040,22181,21457,20837,20362,19957,19666,19525,19422,19438,19550,19730,20005,20331,20775,21287,21843,22477,23141,23793,24413,24973,25452,25824,26073,26135,26017,25738,25270,24618,23898,23114,22225,21373,20516,19744,19037,18381,17813,17352,16937,16618,16381,16206,16104,16060,16091,16177,16347,16576,16869,17221,17648,18141,18706,19312,19959,20653,21390,22125,22868,23590,24282,24947,25558,26100,26524,26856,27092,27194,27200,27110,26893,26573,26166,25680,25124,24529,23893,23261,22585,21928,21302,20696,20079,19531,19037,18558,18163,17794,17465,17169,16900,16653,16453,16259,16071,15881,15705,15525,15393,15273,15189,15105,15026,14979,14957,14970,14969,14987,15005,15043,15081,15114,15165,15224,15252,15261,15272,15273,15284,15307,15306,15298,15247,15173,15129,15060,14959,14872,14730,14577,14411,14225,13997,13797,13557,13290,13022,12733,12448,12153,11850,11566,11296,11049,10818,10565,10302,10007,9681,9374,9090,8843,8636,8464,8310,8170,8069,7993,7925,7880,7797,7709,7580,7400,7255,7138,7008,6923,6830,6762,6706,6664,6657,6637,6629,6612,6635,6625,6475,6164,5745,5122,21.4,21.5,22.1,1568429,0.1,13.4,12.0,5.0,436,-1.00,-1.00,58.7087,-19.431391,0.000631,,,,,98 +SATSLF0720,2024246,14.262671,4.37,0.0612,0.1051,0.0188,0.00,16080,643,1,717,705,708,705,703,695,711,715,716,721,718,731,768,885,1222,1933,3083,4433,5653,6543,7183,7643,8075,8525,9044,9661,10389,11259,12250,13353,14528,15687,16780,17738,18466,18903,19018,18835,18479,17955,17381,16836,16376,16025,15802,15725,15808,16059,16458,17049,17789,18705,19764,20971,22311,23752,25226,26698,28117,29369,30376,31116,31515,31528,31189,30551,29637,28589,27373,26186,25005,23927,22946,22094,21365,20769,20282,19897,19606,19445,19350,19351,19466,19664,19920,20271,20705,21210,21782,22397,23061,23701,24313,24886,25362,25739,25992,26051,25928,25664,25173,24535,23813,23031,22165,21293,20437,19683,18984,18336,17766,17284,16894,16573,16331,16153,16053,16007,16039,16128,16293,16529,16825,17181,17610,18099,18682,19274,19896,20597,21333,22065,22811,23521,24217,24888,25470,26030,26472,26778,27024,27131,27144,27049,26832,26510,26117,25625,25067,24470,23827,23191,22533,21868,21241,20632,20033,19479,18993,18521,18123,17749,17421,17131,16859,16614,16427,16218,16035,15856,15661,15488,15351,15240,15129,15066,14977,14927,14936,14929,14935,14957,14986,15025,15060,15097,15147,15200,15208,15229,15225,15239,15255,15277,15277,15269,15229,15156,15091,15032,14933,14836,14698,14538,14374,14185,13977,13767,13530,13280,12997,12721,12430,12125,11840,11546,11276,11032,10804,10565,10280,9991,9674,9351,9077,8825,8619,8455,8301,8165,8072,7991,7921,7868,7797,7707,7547,7379,7239,7097,6980,6887,6808,6751,6686,6675,6625,6627,6611,6593,6635,6636,6459,6167,5742,5112,21.4,21.6,22.1,1568429,0.2,13.4,12.0,5.0,435,-1.00,-1.00,59.3753,-19.634690,0.000590,,,,,32 +SATSLF0720,2024246,14.262928,4.49,0.0629,0.1081,0.0210,0.00,15977,643,1,690,697,710,705,723,709,714,723,730,730,724,738,769,883,1211,1929,3064,4392,5580,6469,7105,7559,7962,8416,8917,9528,10290,11144,12136,13225,14384,15527,16619,17570,18265,18700,18844,18672,18316,17787,17213,16676,16204,15864,15640,15581,15662,15904,16325,16905,17645,18545,19612,20818,22114,23547,25021,26493,27889,29133,30122,30868,31266,31261,30925,30283,29394,28355,27152,25972,24832,23768,22786,21934,21192,20613,20138,19738,19468,19321,19218,19241,19332,19525,19776,20117,20557,21067,21639,22260,22909,23553,24150,24725,25205,25571,25834,25866,25760,25481,25006,24373,23668,22874,22008,21156,20308,19545,18850,18204,17655,17185,16788,16479,16225,16072,15953,15923,15941,16033,16197,16418,16727,17072,17499,17985,18560,19158,19793,20473,21185,21933,22676,23388,24085,24745,25317,25884,26305,26625,26861,26967,26997,26890,26683,26365,25982,25495,24937,24349,23707,23057,22406,21745,21117,20505,19929,19376,18909,18431,18030,17667,17321,17055,16781,16545,16336,16138,15945,15765,15588,15409,15270,15164,15057,14978,14907,14869,14845,14852,14856,14887,14917,14947,14986,15031,15080,15134,15156,15154,15180,15173,15193,15204,15195,15178,15143,15078,15019,14949,14871,14773,14649,14493,14329,14133,13927,13707,13479,13208,12928,12667,12366,12082,11770,11503,11239,10972,10751,10509,10240,9937,9621,9310,9035,8788,8587,8400,8254,8109,8021,7953,7881,7822,7759,7667,7543,7354,7202,7074,6956,6856,6791,6697,6653,6633,6613,6603,6579,6568,6599,6594,6445,6137,5716,5102,21.4,21.6,22.1,1568430,0.3,13.4,11.9,5.0,436,-1.00,-1.00,60.0693,-19.772297,0.000675,,,,,223 +SATSLF0720,2024246,14.263181,4.37,0.0612,0.1052,0.0191,0.00,16077,643,1,696,695,703,712,711,709,717,710,707,707,717,727,757,888,1209,1937,3094,4433,5647,6549,7187,7653,8079,8522,9028,9661,10395,11263,12255,13350,14525,15676,16781,17730,18448,18890,19020,18842,18472,17950,17363,16823,16361,16005,15773,15719,15813,16037,16466,17045,17788,18700,19761,20985,22289,23734,25220,26693,28106,29362,30358,31109,31506,31506,31189,30536,29627,28571,27365,26166,24999,23955,22932,22087,21367,20743,20253,19872,19598,19437,19345,19360,19458,19645,19907,20253,20688,21218,21762,22395,23056,23702,24309,24885,25362,25735,26004,26043,25945,25665,25181,24542,23825,23040,22157,21274,20435,19671,18974,18325,17765,17308,16894,16586,16332,16171,16062,16022,16029,16129,16288,16503,16805,17173,17597,18085,18658,19261,19907,20600,21325,22060,22800,23513,24211,24870,25474,26016,26441,26768,27025,27145,27157,27057,26832,26514,26114,25625,25053,24478,23830,23191,22538,21880,21241,20631,20033,19472,19003,18530,18129,17749,17417,17127,16858,16618,16429,16221,16033,15829,15649,15480,15350,15233,15126,15069,14992,14953,14934,14934,14942,14967,14976,15028,15052,15083,15141,15194,15201,15227,15234,15236,15255,15248,15257,15248,15198,15131,15083,15014,14938,14850,14708,14563,14381,14194,13985,13768,13536,13275,12999,12717,12419,12121,11820,11526,11263,11029,10794,10563,10306,10004,9668,9360,9070,8826,8615,8443,8281,8151,8055,7971,7903,7852,7795,7690,7555,7389,7233,7107,6974,6887,6810,6751,6698,6660,6643,6637,6613,6588,6618,6618,6466,6144,5715,5099,21.4,21.6,22.1,1568431,0.2,13.4,11.9,5.0,435,-1.00,-1.00,59.4167,-19.644734,0.000629,,,,,96 +SATSLF0720,2024246,14.263432,4.28,0.0599,0.1048,0.0180,0.00,16090,643,1,693,699,705,714,705,707,728,717,722,717,737,741,760,891,1218,1957,3105,4456,5665,6571,7198,7675,8103,8544,9069,9689,10422,11296,12295,13410,14574,15714,16812,17771,18493,18941,19080,18898,18536,17992,17413,16855,16401,16037,15814,15755,15842,16086,16488,17066,17813,18731,19797,20992,22324,23774,25245,26739,28150,29406,30404,31147,31553,31540,31220,30578,29661,28596,27381,26176,25032,23957,22955,22109,21384,20785,20285,19890,19619,19456,19363,19380,19474,19671,19922,20280,20709,21224,21792,22404,23078,23723,24341,24918,25387,25744,26007,26059,25926,25667,25194,24567,23835,23051,22170,21293,20453,19689,18983,18339,17776,17316,16909,16588,16348,16166,16057,16041,16042,16134,16291,16509,16815,17193,17608,18103,18673,19276,19905,20610,21341,22077,22827,23527,24222,24893,25462,26038,26458,26764,27024,27129,27154,27054,26837,26519,26128,25617,25062,24467,23847,23206,22539,21881,21240,20638,20050,19489,18997,18514,18119,17753,17413,17139,16870,16640,16439,16230,16049,15850,15662,15491,15354,15229,15127,15057,14984,14956,14932,14933,14921,14960,14974,15035,15066,15096,15147,15205,15217,15224,15238,15240,15245,15297,15270,15282,15217,15146,15118,15033,14949,14830,14699,14555,14382,14192,13979,13753,13518,13261,12997,12714,12415,12138,11831,11548,11288,11037,10805,10565,10297,9984,9661,9360,9058,8809,8604,8449,8296,8149,8067,7986,7911,7860,7794,7705,7557,7398,7256,7113,6993,6890,6818,6757,6693,6663,6646,6639,6613,6611,6612,6603,6463,6152,5720,5119,21.4,21.6,22.2,1568432,0.2,13.3,11.9,5.0,439,-1.00,-1.00,58.8835,-19.442255,0.000660,,,,,5 +SATSLF0720,2024246,14.263688,4.38,0.0613,0.1052,0.0192,0.00,16080,643,1,706,700,704,696,701,691,717,711,725,729,738,741,773,882,1229,1940,3109,4452,5670,6579,7229,7688,8093,8551,9057,9687,10429,11280,12288,13386,14565,15729,16841,17805,18504,18929,19052,18893,18505,17987,17381,16841,16388,16029,15817,15761,15834,16070,16491,17064,17801,18715,19773,20997,22301,23762,25232,26712,28132,29360,30359,31116,31501,31511,31191,30548,29633,28582,27358,26167,25003,23939,22935,22087,21361,20747,20284,19896,19589,19444,19345,19360,19466,19661,19920,20269,20709,21231,21781,22406,23061,23697,24305,24896,25376,25732,25988,26045,25909,25639,25174,24541,23833,23015,22151,21273,20448,19669,18968,18308,17770,17300,16901,16594,16325,16158,16049,16018,16036,16130,16294,16519,16821,17181,17594,18095,18662,19266,19910,20597,21304,22055,22784,23490,24203,24868,25437,26011,26444,26764,27010,27117,27122,27027,26807,26483,26101,25614,25056,24470,23834,23177,22512,21853,21221,20622,20041,19474,18999,18513,18119,17750,17418,17137,16850,16621,16420,16219,16013,15824,15646,15494,15332,15221,15121,15061,14989,14953,14931,14926,14931,14961,14986,15019,15049,15083,15129,15199,15205,15207,15219,15221,15246,15262,15267,15249,15210,15144,15079,15002,14915,14831,14691,14563,14374,14211,13988,13780,13534,13264,12995,12705,12421,12109,11819,11534,11276,11026,10799,10548,10283,9977,9662,9351,9076,8825,8619,8437,8288,8147,8057,7970,7907,7861,7790,7693,7557,7388,7230,7115,6994,6895,6824,6757,6693,6649,6643,6630,6619,6617,6640,6625,6468,6154,5739,5105,21.5,21.6,22.2,1568433,0.2,13.3,12.0,5.0,437,-1.00,-1.00,58.4478,-19.244906,0.000575,,,,,130 +SATSLF0720,2024246,14.263940,4.17,0.0584,0.1060,0.0192,0.00,16060,643,1,705,705,709,701,711,705,722,709,724,728,725,729,770,898,1224,1968,3113,4466,5681,6585,7219,7691,8105,8541,9067,9669,10425,11282,12285,13365,14544,15691,16800,17754,18482,18910,19040,18867,18491,17963,17381,16829,16379,16020,15778,15709,15797,16027,16455,17032,17781,18694,19749,20957,22260,23703,25178,26644,28052,29312,30321,31061,31474,31469,31141,30498,29581,28521,27296,26121,24960,23913,22901,22050,21317,20727,20234,19862,19561,19418,19309,19316,19420,19608,19872,20217,20641,21179,21732,22357,23021,23669,24281,24844,25317,25667,25941,25990,25874,25616,25140,24505,23799,22988,22133,21254,20416,19652,18950,18307,17736,17287,16869,16545,16302,16133,16033,15988,16011,16099,16267,16488,16791,17153,17584,18061,18632,19246,19873,20555,21291,22011,22762,23469,24181,24844,25426,25994,26413,26728,26966,27076,27093,26989,26794,26469,26082,25588,25024,24437,23797,23152,22501,21844,21205,20602,20000,19449,18953,18487,18081,17710,17401,17111,16834,16592,16403,16201,15997,15817,15624,15463,15319,15205,15116,15040,14949,14936,14921,14915,14923,14942,14969,15010,15057,15077,15129,15171,15184,15190,15193,15211,15237,15269,15258,15253,15195,15133,15078,15002,14921,14829,14684,14549,14365,14182,13973,13741,13519,13250,12987,12700,12420,12118,11811,11531,11264,11014,10769,10563,10282,9977,9666,9349,9045,8811,8599,8427,8285,8137,8050,7973,7907,7866,7798,7709,7566,7394,7249,7112,6995,6892,6817,6759,6694,6653,6638,6634,6608,6595,6612,6602,6459,6154,5721,5105,21.5,21.6,22.2,1568434,0.3,13.4,11.9,5.0,434,-1.00,-1.00,58.9985,-19.439907,0.000622,,,,,95 +SATSLF0720,2024246,14.264195,4.23,0.0592,0.1054,0.0195,0.00,16067,643,1,693,693,704,695,707,700,711,709,708,711,716,721,763,870,1203,1928,3105,4462,5675,6589,7225,7685,8097,8534,9063,9682,10419,11291,12277,13410,14592,15734,16843,17789,18501,18945,19073,18898,18521,17984,17403,16842,16392,16023,15814,15734,15826,16074,16477,17053,17805,18713,19769,20999,22309,23749,25235,26701,28117,29349,30349,31094,31515,31493,31175,30533,29624,28561,27332,26170,25002,23926,22930,22074,21342,20736,20251,19868,19589,19433,19337,19351,19458,19638,19897,20247,20677,21195,21770,22386,23053,23693,24301,24868,25337,25705,25966,26011,25902,25626,25157,24519,23803,23003,22137,21280,20429,19669,18954,18304,17751,17288,16893,16562,16311,16149,16052,16000,16018,16104,16266,16498,16786,17161,17598,18073,18653,19266,19904,20577,21299,22029,22762,23477,24180,24835,25442,25985,26411,26739,26990,27082,27102,27015,26807,26473,26081,25596,25029,24422,23803,23147,22496,21832,21203,20608,20013,19469,18965,18482,18099,17725,17410,17110,16841,16598,16407,16221,16013,15808,15637,15450,15322,15203,15105,15041,14966,14941,14907,14906,14915,14949,14960,14985,15034,15059,15102,15157,15174,15191,15206,15205,15235,15253,15240,15227,15182,15123,15069,14984,14900,14800,14658,14519,14357,14162,13946,13748,13489,13243,12976,12696,12401,12113,11818,11520,11253,11012,10769,10531,10253,9971,9637,9339,9046,8829,8613,8433,8288,8159,8052,7963,7896,7841,7779,7693,7539,7367,7221,7102,6991,6893,6815,6745,6689,6642,6643,6625,6599,6587,6606,6608,6452,6151,5717,5101,21.5,21.7,22.2,1568435,0.1,13.3,11.9,5.0,436,-1.00,-1.00,58.6870,-19.336951,0.000618,,,,,127 +SATSLF0720,2024246,14.264450,4.39,0.0615,0.1073,0.0206,0.00,15997,643,1,702,692,696,696,711,697,711,716,714,710,717,730,754,891,1216,1949,3092,4421,5621,6513,7132,7607,8023,8461,8983,9602,10333,11209,12173,13282,14439,15589,16685,17624,18341,18772,18902,18731,18361,17849,17269,16723,16265,15918,15702,15625,15704,15970,16354,16938,17683,18586,19638,20845,22164,23592,25059,26546,27948,29184,30187,30931,31316,31312,30992,30354,29458,28398,27191,26013,24857,23799,22819,21946,21223,20625,20143,19763,19467,19324,19253,19250,19378,19557,19803,20167,20587,21102,21665,22276,22938,23589,24185,24754,25218,25599,25863,25905,25797,25512,25060,24421,23699,22898,22037,21184,20352,19569,18896,18226,17677,17210,16813,16509,16244,16077,15981,15914,15971,16058,16224,16441,16740,17105,17533,18010,18574,19193,19812,20489,21221,21955,22683,23389,24096,24754,25345,25905,26322,26644,26897,26987,26994,26904,26708,26365,25979,25490,24951,24366,23729,23088,22432,21777,21138,20518,19942,19389,18883,18435,18037,17664,17357,17074,16797,16563,16368,16136,15951,15763,15569,15408,15259,15155,15069,14985,14908,14881,14868,14868,14871,14885,14913,14950,14992,15031,15057,15133,15141,15159,15155,15174,15197,15206,15216,15217,15157,15098,15033,14965,14870,14781,14643,14498,14326,14130,13925,13706,13483,13210,12945,12666,12375,12071,11783,11490,11231,10985,10755,10517,10250,9953,9633,9321,9043,8806,8595,8425,8261,8129,8017,7943,7880,7818,7747,7683,7530,7351,7195,7075,6974,6866,6792,6734,6682,6620,6613,6601,6578,6568,6583,6571,6423,6127,5698,5079,21.5,21.7,22.3,1568436,0.3,13.3,12.0,5.0,438,-1.00,-1.00,59.5836,-19.602929,0.000617,,,,,175 +SATSDF0720,2024246,14.509138,0.00,0.0000,0.0000,0.0000,0.00,644,0,1,627,615,627,627,631,633,617,622,620,613,615,609,608,618,630,610,623,622,636,640,634,638,654,645,639,645,657,657,662,657,663,654,649,649,647,654,645,636,639,640,642,649,646,655,663,656,650,646,648,646,622,640,640,651,654,662,659,658,649,651,653,634,627,629,631,643,646,647,645,649,654,647,653,656,673,658,665,657,657,648,649,648,646,635,641,642,642,645,654,640,643,643,644,650,644,641,647,643,655,656,650,651,646,645,647,645,647,654,650,663,661,641,651,651,633,631,641,649,642,640,635,651,648,641,657,653,648,640,658,645,633,639,651,642,641,641,647,650,649,649,646,647,634,647,649,628,647,650,640,636,639,643,649,637,641,649,663,645,646,644,642,642,638,646,649,631,636,645,650,653,645,647,651,653,653,646,635,647,647,648,648,643,638,651,645,634,639,641,655,649,657,649,635,639,647,645,649,647,634,632,651,640,639,651,653,639,651,638,643,639,643,647,619,646,649,649,654,653,645,647,650,638,645,650,652,657,653,653,642,636,639,634,631,626,635,626,633,625,623,635,652,644,651,653,650,647,649,652,653,641,651,649,644,647,642,485,0.0,0.0,0.0,1568435,0.8,14.0,0.1,5.0,54,0.00,0.00,0.0000,0.000000,0.000000,,,,,71 +SATSLF0720,2024246,14.509690,4.07,0.0570,0.1006,0.0160,0.00,16223,644,1,704,694,704,709,717,714,710,709,709,717,713,733,769,873,1215,1953,3131,4519,5753,6661,7316,7777,8214,8660,9194,9813,10574,11451,12444,13573,14753,15926,17050,18007,18738,19176,19316,19124,18752,18222,17630,17061,16599,16234,15990,15931,16009,16273,16660,17255,18003,18917,19981,21223,22557,23995,25495,27008,28437,29697,30701,31458,31853,31858,31524,30856,29954,28877,27636,26466,25284,24202,23186,22329,21594,20978,20498,20094,19796,19643,19545,19560,19660,19844,20109,20470,20912,21429,22006,22602,23279,23929,24545,25120,25618,25966,26233,26290,26163,25879,25402,24754,24035,23224,22340,21458,20614,19841,19138,18485,17922,17456,17037,16707,16462,16284,16182,16145,16167,16257,16423,16645,16933,17317,17752,18245,18805,19426,20084,20769,21501,22245,22995,23701,24427,25080,25673,26232,26669,27005,27248,27333,27351,27265,27047,26722,26322,25824,25261,24669,24014,23365,22701,22040,21399,20790,20186,19626,19134,18650,18247,17880,17548,17257,16978,16750,16544,16343,16161,15956,15773,15594,15450,15338,15222,15163,15101,15047,15036,15032,15030,15066,15089,15125,15161,15192,15248,15298,15303,15312,15315,15321,15359,15358,15365,15349,15301,15249,15186,15091,15014,14912,14784,14632,14477,14277,14073,13845,13625,13354,13092,12797,12503,12203,11909,11613,11334,11077,10845,10608,10337,10042,9728,9412,9111,8866,8659,8488,8333,8201,8109,8029,7959,7901,7836,7748,7612,7435,7274,7146,7029,6933,6855,6790,6718,6691,6666,6666,6640,6629,6645,6656,6504,6177,5758,5141,21.4,21.4,21.8,1568436,0.0,13.5,11.9,5.0,541,-1.00,-1.00,58.0269,-19.265397,0.000567,,,,,136 +SATSLF0720,2024246,14.509872,4.05,0.0568,0.1007,0.0169,0.00,16204,644,1,698,696,705,698,714,696,702,691,703,720,717,734,763,889,1204,1953,3140,4509,5750,6656,7287,7779,8184,8651,9177,9813,10554,11443,12442,13560,14747,15926,17045,17997,18711,19159,19301,19101,18729,18193,17607,17047,16569,16211,15979,15906,15975,16239,16651,17232,17981,18894,19974,21221,22539,23991,25474,26987,28394,29653,30659,31421,31830,31821,31494,30860,29921,28865,27609,26419,25248,24175,23146,22294,21541,20944,20455,20079,19793,19651,19541,19549,19644,19837,20088,20450,20881,21394,21972,22584,23250,23906,24509,25093,25594,25949,26209,26254,26129,25847,25373,24725,24005,23194,22328,21449,20581,19815,19112,18462,17898,17433,17018,16702,16445,16274,16173,16121,16137,16218,16391,16626,16933,17296,17713,18224,18790,19405,20041,20730,21463,22216,22953,23674,24380,25034,25638,26213,26626,26971,27211,27322,27341,27249,27019,26673,26272,25794,25220,24621,23991,23349,22692,22017,21377,20775,20168,19633,19118,18646,18237,17857,17529,17245,16970,16727,16528,16329,16109,15938,15758,15587,15440,15325,15233,15153,15077,15033,15013,15009,15020,15048,15062,15099,15141,15170,15218,15272,15291,15293,15307,15309,15337,15342,15350,15341,15291,15232,15155,15099,15006,14898,14779,14625,14459,14256,14043,13834,13595,13326,13066,12785,12480,12187,11892,11600,11325,11054,10829,10592,10329,10029,9704,9376,9101,8868,8652,8469,8320,8188,8093,8012,7946,7890,7830,7748,7592,7409,7268,7129,7025,6933,6836,6788,6724,6683,6662,6661,6637,6620,6629,6640,6481,6173,5737,5133,21.4,21.4,21.9,1568437,0.0,13.5,11.9,5.0,443,-1.00,-1.00,58.2775,-19.352442,0.000627,,,,,31 +SATSLF0720,2024246,14.510130,4.04,0.0566,0.1004,0.0165,0.00,16219,644,1,696,690,689,682,703,703,697,711,727,698,711,720,756,877,1219,1962,3130,4517,5746,6676,7315,7793,8225,8669,9197,9824,10569,11457,12438,13585,14776,15942,17063,18012,18743,19198,19321,19133,18756,18217,17622,17061,16609,16226,16002,15933,16000,16256,16673,17260,18022,18922,20011,21239,22564,24020,25525,27012,28413,29695,30677,31454,31850,31865,31542,30882,29969,28904,27664,26452,25273,24192,23184,22322,21589,20964,20481,20097,19810,19662,19554,19564,19671,19857,20112,20446,20891,21416,21986,22597,23264,23916,24533,25111,25601,25970,26245,26278,26148,25864,25393,24746,24037,23223,22341,21467,20613,19834,19136,18461,17902,17445,17034,16697,16460,16279,16195,16150,16166,16257,16428,16658,16946,17324,17748,18238,18813,19418,20060,20744,21466,22211,22976,23689,24392,25058,25655,26226,26669,26985,27237,27330,27344,27257,27021,26683,26297,25808,25237,24645,24011,23368,22705,22044,21404,20797,20193,19629,19131,18666,18241,17865,17524,17243,16978,16729,16542,16329,16135,15959,15765,15600,15457,15343,15237,15156,15089,15045,15021,15019,15010,15055,15080,15126,15153,15190,15242,15294,15304,15300,15312,15306,15335,15350,15360,15353,15297,15242,15168,15118,15040,14921,14800,14629,14457,14272,14055,13840,13600,13322,13065,12770,12487,12194,11904,11605,11351,11097,10857,10626,10340,10041,9709,9402,9134,8869,8662,8488,8314,8199,8085,8027,7937,7893,7841,7737,7602,7431,7260,7143,7017,6925,6841,6781,6729,6685,6672,6646,6635,6625,6638,6639,6487,6179,5757,5132,21.4,21.4,21.9,1568438,0.3,13.5,12.0,5.0,438,-1.00,-1.00,58.1513,-19.323265,0.000578,,,,,170 +SATSLF0720,2024246,14.510383,3.94,0.0552,0.1014,0.0166,0.00,16194,644,1,702,699,713,692,707,706,711,724,713,722,724,741,781,887,1227,1969,3142,4510,5738,6659,7294,7773,8189,8647,9165,9809,10554,11424,12419,13541,14714,15903,17009,17984,18702,19148,19288,19099,18727,18205,17590,17027,16558,16195,15956,15890,15979,16211,16643,17225,17970,18885,19940,21177,22502,23964,25460,26962,28381,29626,30639,31384,31771,31784,31463,30812,29884,28825,27591,26411,25248,24154,23137,22281,21524,20930,20455,20033,19770,19600,19508,19526,19629,19814,20067,20419,20853,21371,21954,22562,23243,23895,24500,25088,25557,25920,26183,26233,26106,25826,25351,24718,23998,23189,22298,21439,20585,19818,19101,18434,17883,17400,17008,16670,16430,16263,16161,16120,16141,16232,16383,16623,16920,17280,17721,18203,18773,19395,20033,20712,21437,22185,22937,23668,24372,25033,25626,26187,26611,26933,27178,27301,27313,27217,27005,26661,26261,25777,25195,24628,23985,23333,22685,22007,21373,20754,20152,19594,19098,18610,18208,17846,17512,17233,16970,16723,16517,16309,16123,15924,15720,15564,15409,15310,15201,15143,15065,15016,15000,15004,15020,15040,15053,15095,15131,15146,15213,15267,15283,15292,15307,15312,15318,15359,15330,15330,15283,15216,15165,15074,14999,14905,14772,14606,14455,14250,14046,13830,13607,13344,13051,12763,12469,12169,11883,11601,11328,11089,10849,10604,10335,10029,9701,9400,9105,8864,8641,8483,8316,8197,8108,8023,7957,7908,7841,7752,7597,7407,7255,7115,7015,6898,6841,6768,6729,6702,6678,6658,6647,6632,6642,6652,6490,6172,5747,5130,21.4,21.4,21.9,1568439,0.2,13.5,12.0,5.0,438,-1.00,-1.00,58.4911,-19.421562,0.000609,,,,,233 +SATSLF0720,2024246,14.510640,4.15,0.0581,0.1011,0.0164,0.00,16194,644,1,697,701,697,713,721,702,715,728,724,713,728,746,768,897,1225,1972,3136,4516,5737,6662,7293,7773,8194,8649,9165,9799,10547,11437,12427,13556,14726,15899,17008,17952,18696,19141,19264,19081,18711,18189,17581,17031,16576,16192,15961,15888,15973,16219,16645,17202,17955,18885,19948,21184,22509,23961,25463,26960,28381,29658,30645,31385,31792,31805,31449,30809,29885,28823,27565,26376,25204,24132,23117,22283,21552,20939,20441,20062,19768,19604,19520,19527,19632,19809,20064,20423,20841,21359,21953,22557,23229,23886,24493,25067,25563,25917,26173,26226,26102,25821,25333,24708,23986,23177,22325,21432,20587,19820,19115,18445,17879,17408,16989,16672,16420,16260,16157,16120,16154,16234,16392,16621,16923,17291,17717,18208,18775,19404,20018,20717,21454,22189,22939,23661,24376,25040,25634,26193,26612,26935,27191,27286,27296,27201,27013,26664,26273,25771,25197,24599,23970,23314,22653,22002,21358,20746,20137,19581,19085,18619,18201,17847,17522,17226,16967,16712,16520,16317,16134,15925,15747,15591,15436,15315,15195,15142,15041,15011,14989,14998,15000,15047,15057,15113,15156,15174,15213,15281,15293,15284,15302,15296,15324,15357,15341,15336,15289,15226,15171,15099,15010,14926,14781,14628,14456,14257,14041,13825,13585,13311,13059,12769,12473,12186,11885,11608,11338,11087,10850,10602,10330,10026,9711,9397,9108,8852,8647,8486,8322,8193,8093,8016,7945,7885,7826,7729,7595,7424,7250,7136,7030,6919,6841,6775,6721,6685,6674,6667,6636,6642,6658,6653,6504,6181,5759,5143,21.4,21.4,21.9,1568440,0.2,13.5,12.0,5.0,438,-1.00,-1.00,57.8500,-19.153184,0.000698,,,,,49 +SATSLF0720,2024246,14.510895,4.00,0.0561,0.1017,0.0172,0.00,16189,644,1,697,686,701,707,709,714,711,717,727,723,731,719,759,890,1219,1963,3133,4499,5739,6647,7294,7766,8196,8645,9177,9798,10545,11409,12418,13539,14709,15892,16998,17953,18691,19137,19277,19069,18699,18167,17568,17010,16544,16186,15941,15879,15973,16218,16629,17208,17958,18859,19954,21175,22490,23945,25429,26936,28349,29611,30624,31363,31785,31773,31453,30790,29875,28810,27597,26386,25221,24132,23121,22269,21533,20901,20426,20034,19753,19596,19495,19527,19624,19815,20073,20405,20840,21361,21933,22549,23223,23859,24485,25075,25560,25914,26170,26237,26106,25818,25344,24709,23971,23178,22309,21429,20585,19810,19097,18450,17877,17394,16999,16672,16425,16262,16150,16099,16133,16208,16384,16616,16925,17288,17721,18219,18795,19409,20032,20720,21445,22188,22929,23642,24357,25014,25618,26177,26611,26936,27177,27280,27305,27214,27010,26672,26267,25773,25198,24599,23973,23322,22657,21995,21348,20755,20145,19598,19110,18628,18236,17845,17521,17229,16981,16726,16509,16315,16114,15931,15724,15563,15431,15316,15223,15141,15069,15028,15015,14996,15003,15011,15047,15093,15125,15154,15211,15269,15276,15293,15309,15304,15337,15358,15349,15337,15285,15230,15146,15095,14996,14907,14764,14623,14460,14265,14055,13823,13581,13312,13055,12765,12468,12184,11889,11601,11321,11073,10828,10613,10325,10030,9706,9395,9118,8858,8651,8477,8308,8187,8101,8021,7946,7902,7825,7734,7591,7422,7265,7120,7021,6909,6843,6769,6721,6680,6662,6645,6647,6636,6665,6644,6487,6192,5754,5141,21.4,21.4,22.0,1568441,0.2,13.4,12.0,5.1,441,-1.00,-1.00,58.5849,-19.452507,0.000585,,,,,2 +SATSLF0720,2024246,14.511149,4.22,0.0591,0.1016,0.0165,0.00,16188,644,1,690,702,697,702,700,699,698,700,702,702,709,718,759,873,1227,1953,3146,4508,5758,6661,7302,7777,8209,8637,9171,9797,10555,11435,12436,13538,14723,15897,17005,17961,18691,19126,19267,19099,18720,18184,17578,17021,16558,16196,15979,15894,15976,16223,16629,17233,17965,18890,19966,21185,22517,23969,25456,26946,28380,29627,30633,31381,31778,31780,31463,30810,29882,28825,27582,26378,25213,24141,23125,22277,21532,20909,20437,20038,19746,19588,19500,19521,19622,19805,20074,20408,20855,21379,21929,22541,23223,23870,24477,25065,25550,25906,26183,26245,26114,25842,25357,24720,23981,23169,22301,21418,20583,19808,19100,18432,17881,17417,16996,16675,16430,16257,16157,16116,16141,16226,16381,16611,16915,17281,17714,18199,18774,19385,20013,20711,21437,22187,22939,23658,24349,25016,25610,26181,26606,26921,27173,27285,27311,27197,26989,26670,26276,25762,25189,24605,23961,23305,22657,21986,21360,20737,20155,19597,19099,18618,18205,17832,17498,17207,16945,16699,16503,16298,16112,15931,15733,15560,15409,15301,15197,15129,15065,15012,15003,14997,15008,15045,15062,15088,15130,15149,15207,15261,15276,15285,15307,15291,15319,15327,15347,15333,15293,15225,15168,15097,14998,14918,14762,14630,14442,14254,14029,13823,13580,13320,13049,12771,12479,12179,11877,11585,11323,11056,10819,10604,10322,10022,9707,9376,9101,8848,8651,8474,8325,8187,8101,8008,7935,7886,7830,7729,7590,7406,7260,7125,7005,6910,6818,6767,6709,6673,6659,6635,6632,6629,6638,6629,6480,6169,5742,5119,21.4,21.4,22.0,1568442,0.1,13.4,12.0,5.0,439,-1.00,-1.00,57.5275,-19.018400,0.000591,,,,,50 +SATSLF0720,2024246,14.511405,4.01,0.0562,0.1023,0.0170,0.00,16172,644,1,701,699,689,703,693,699,710,708,714,731,728,731,763,891,1218,1962,3126,4502,5736,6645,7289,7766,8173,8643,9170,9803,10546,11414,12435,13530,14707,15883,16983,17938,18670,19106,19239,19075,18698,18162,17568,17002,16544,16175,15944,15858,15947,16197,16603,17186,17939,18841,19931,21165,22473,23919,25410,26897,28313,29595,30586,31341,31743,31749,31420,30756,29843,28776,27552,26346,25191,24104,23092,22229,21497,20882,20395,20010,19734,19584,19470,19486,19579,19777,20029,20376,20811,21347,21915,22532,23207,23854,24468,25046,25515,25888,26144,26206,26065,25800,25316,24677,23946,23149,22273,21393,20541,19787,19072,18424,17860,17393,16992,16660,16418,16235,16134,16101,16115,16208,16361,16590,16887,17243,17683,18189,18740,19362,20005,20689,21420,22153,22901,23623,24349,25002,25594,26142,26594,26910,27150,27258,27266,27165,26965,26634,26234,25752,25170,24595,23945,23302,22644,21970,21324,20737,20134,19577,19073,18615,18194,17835,17504,17213,16946,16698,16497,16298,16100,15904,15723,15558,15403,15283,15182,15120,15048,15016,14998,14996,14993,15014,15033,15063,15100,15141,15194,15261,15254,15276,15279,15285,15297,15321,15317,15325,15264,15197,15153,15077,15010,14890,14763,14611,14436,14262,14033,13817,13579,13312,13034,12756,12465,12167,11865,11577,11312,11060,10823,10578,10310,10015,9691,9396,9104,8850,8629,8471,8305,8195,8092,8007,7947,7874,7819,7728,7592,7405,7246,7130,7017,6917,6845,6774,6717,6678,6642,6639,6615,6613,6645,6637,6495,6187,5752,5139,21.4,21.5,22.1,1568443,0.4,13.4,11.9,5.0,431,-1.00,-1.00,58.3476,-19.332236,0.000617,,,,,112 +SATSLF0720,2024246,14.511659,4.26,0.0597,0.1029,0.0177,0.00,16146,644,1,716,700,706,711,708,715,711,727,726,737,729,728,769,893,1233,1961,3137,4493,5738,6629,7271,7754,8173,8621,9137,9771,10508,11392,12388,13489,14665,15841,16942,17891,18614,19055,19190,19019,18633,18107,17513,16954,16493,16128,15904,15845,15909,16160,16571,17157,17909,18825,19890,21101,22423,23880,25366,26853,28266,29518,30533,31273,31677,31656,31340,30684,29766,28704,27476,26289,25120,24051,23045,22196,21463,20841,20357,19977,19706,19536,19443,19461,19544,19736,20009,20358,20788,21304,21873,22499,23157,23808,24419,24992,25478,25826,26105,26150,26036,25767,25277,24653,23927,23117,22257,21383,20526,19745,19052,18404,17848,17362,16957,16642,16382,16211,16104,16069,16099,16183,16360,16573,16860,17243,17658,18149,18730,19336,19990,20672,21390,22125,22871,23577,24291,24946,25540,26088,26534,26882,27116,27226,27241,27145,26924,26589,26195,25707,25133,24545,23918,23254,22603,21938,21308,20684,20089,19529,19033,18580,18173,17809,17483,17182,16925,16687,16477,16275,16078,15877,15702,15521,15379,15258,15175,15097,15021,14985,14967,14963,14975,15002,15027,15052,15111,15127,15186,15249,15253,15253,15267,15281,15285,15303,15298,15299,15250,15182,15128,15058,14984,14881,14741,14593,14422,14242,14021,13798,13568,13293,13045,12742,12450,12155,11847,11566,11291,11051,10822,10586,10309,10004,9682,9360,9080,8840,8637,8460,8309,8178,8090,7997,7934,7888,7817,7717,7587,7416,7271,7125,7007,6915,6833,6771,6711,6667,6650,6637,6617,6618,6621,6631,6481,6180,5750,5127,21.5,21.5,22.1,1568444,0.0,13.4,11.9,5.0,437,-1.00,-1.00,57.7012,-19.021765,0.000612,,,,,16 +SATSLF0720,2024246,14.511911,4.65,0.0652,0.1186,0.0267,0.00,15658,644,1,711,707,719,709,715,705,707,703,719,717,711,727,759,881,1187,1883,2969,4245,5392,6259,6861,7300,7716,8139,8643,9243,9948,10762,11717,12769,13888,14998,16065,16969,17658,18078,18224,18072,17722,17216,16681,16155,15719,15380,15172,15105,15184,15443,15831,16404,17138,18018,19041,20209,21487,22873,24301,25738,27109,28313,29284,30010,30408,30393,30109,29490,28606,27592,26427,25290,24181,23150,22207,21398,20685,20109,19646,19280,19021,18869,18775,18801,18894,19095,19339,19691,20096,20627,21173,21773,22418,23048,23629,24194,24654,25011,25275,25317,25212,24955,24486,23874,23178,22406,21551,20718,19898,19166,18472,17861,17302,16854,16469,16154,15925,15770,15661,15635,15657,15746,15907,16124,16407,16771,17202,17681,18241,18825,19457,20139,20842,21557,22285,22969,23683,24321,24889,25454,25869,26199,26441,26533,26541,26461,26242,25924,25553,25069,24521,23941,23317,22692,22057,21401,20800,20205,19635,19093,18606,18145,17753,17387,17069,16790,16526,16296,16101,15901,15726,15533,15349,15173,15045,14937,14844,14784,14707,14662,14643,14651,14656,14689,14716,14737,14777,14804,14862,14916,14926,14952,14957,14970,14994,15006,14997,14999,14953,14900,14833,14775,14686,14573,14443,14272,14137,13932,13751,13527,13303,13035,12775,12516,12212,11927,11641,11350,11079,10836,10593,10370,10117,9808,9507,9202,8926,8693,8486,8325,8170,8030,7938,7862,7789,7738,7666,7591,7450,7290,7134,7002,6899,6804,6720,6653,6600,6562,6525,6523,6502,6507,6521,6518,6366,6062,5644,5016,21.5,21.6,22.1,1568445,0.3,13.3,12.0,5.0,434,-1.00,-1.00,63.4258,-20.658926,0.000662,,,,,140 +SATSLF0720,2024246,14.512168,4.16,0.0582,0.1042,0.0183,0.00,16122,644,1,695,694,689,695,707,710,705,719,720,713,710,722,769,873,1215,1959,3130,4488,5721,6621,7258,7726,8144,8585,9112,9739,10485,11358,12352,13452,14637,15790,16903,17842,18581,19024,19152,18970,18587,18055,17465,16916,16461,16106,15877,15808,15881,16128,16533,17122,17857,18763,19835,21053,22382,23826,25312,26796,28212,29446,30451,31204,31612,31623,31279,30651,29714,28654,27426,26238,25079,24001,23011,22164,21426,20828,20321,19934,19650,19483,19387,19418,19515,19720,19976,20336,20759,21280,21826,22437,23105,23752,24380,24957,25436,25801,26064,26112,25994,25707,25223,24601,23881,23078,22206,21329,20489,19713,19015,18369,17794,17349,16922,16616,16357,16199,16081,16047,16062,16160,16318,16549,16843,17205,17637,18143,18709,19319,19965,20638,21369,22113,22858,23572,24269,24925,25517,26084,26505,26824,27057,27182,27201,27102,26891,26565,26176,25654,25101,24529,23893,23229,22577,21913,21276,20677,20081,19510,19019,18553,18138,17781,17462,17170,16906,16677,16456,16253,16061,15876,15676,15515,15377,15259,15149,15088,15026,14985,14977,14965,14965,14989,14998,15042,15080,15104,15169,15220,15232,15261,15274,15274,15287,15303,15307,15298,15236,15171,15109,15034,14951,14867,14734,14572,14408,14210,14011,13797,13556,13281,13026,12737,12449,12154,11853,11563,11289,11054,10793,10566,10285,9993,9681,9377,9093,8837,8614,8450,8299,8169,8085,7988,7911,7867,7801,7722,7573,7399,7253,7128,6997,6899,6827,6754,6708,6663,6645,6623,6624,6605,6631,6605,6471,6154,5728,5113,21.5,21.6,22.1,1568446,0.1,13.3,12.0,5.0,437,-1.00,-1.00,58.4038,-19.278683,0.000610,,,,,71 +SATSLF0720,2024246,14.512422,4.25,0.0595,0.1042,0.0187,0.00,16105,644,1,690,702,693,702,713,714,699,711,710,714,716,731,767,889,1213,1961,3120,4479,5709,6620,7255,7720,8143,8588,9114,9727,10466,11344,12337,13433,14631,15769,16890,17832,18563,18989,19114,18949,18586,18041,17465,16893,16448,16075,15847,15787,15862,16106,16519,17105,17846,18760,19832,21045,22362,23809,25293,26765,28179,29448,30432,31178,31573,31559,31232,30599,29698,28642,27402,26221,25058,23985,22973,22126,21398,20796,20313,19920,19639,19489,19389,19397,19493,19687,19948,20292,20731,21250,21802,22420,23088,23733,24360,24928,25399,25778,26030,26087,25963,25687,25204,24571,23843,23059,22184,21313,20477,19701,18997,18349,17781,17314,16917,16614,16352,16181,16081,16034,16058,16153,16312,16546,16833,17197,17622,18128,18679,19303,19928,20618,21347,22096,22834,23546,24237,24896,25490,26057,26474,26812,27045,27153,27164,27077,26864,26528,26120,25642,25088,24494,23856,23218,22578,21901,21261,20661,20058,19497,19011,18530,18121,17755,17428,17151,16886,16644,16452,16227,16052,15860,15674,15497,15360,15245,15137,15073,14994,14944,14931,14940,14929,14967,14986,15049,15076,15109,15156,15212,15225,15233,15238,15241,15266,15284,15273,15279,15216,15171,15097,15033,14939,14844,14715,14562,14388,14186,13982,13770,13528,13275,13008,12720,12425,12129,11830,11554,11284,11041,10801,10560,10295,9997,9661,9348,9063,8819,8619,8447,8291,8167,8063,7985,7911,7840,7799,7705,7553,7381,7227,7117,6985,6891,6825,6745,6710,6657,6632,6621,6599,6583,6607,6603,6447,6144,5723,5101,21.5,21.6,22.1,1568447,0.3,13.3,11.9,5.0,436,-1.00,-1.00,58.2293,-19.189428,0.000600,,,,,24 +SATSLF0720,2024246,14.512673,4.23,0.0593,0.1123,0.0256,0.00,15843,644,1,698,700,690,688,693,698,705,725,725,717,715,727,769,886,1208,1928,3085,4441,5634,6540,7159,7619,8050,8485,8999,9622,10332,11195,12164,13255,14413,15545,16641,17571,18285,18721,18833,18663,18298,17781,17198,16637,16202,15837,15617,15544,15617,15878,16265,16837,17565,18457,19509,20713,21984,23423,24849,26320,27702,28930,29920,30638,31040,31041,30705,30083,29170,28141,26933,25756,24613,23572,22570,21751,21026,20438,19953,19565,19301,19137,19043,19061,19153,19357,19608,19946,20379,20884,21445,22054,22702,23346,23943,24500,24969,25316,25570,25628,25512,25229,24772,24144,23428,22643,21785,20949,20128,19371,18667,18035,17475,17025,16619,16316,16064,15893,15814,15765,15780,15873,16046,16245,16548,16910,17322,17806,18376,18985,19593,20267,20983,21714,22437,23124,23831,24471,25047,25604,26009,26343,26573,26683,26692,26597,26394,26070,25685,25203,24654,24074,23449,22823,22170,21515,20912,20309,19723,19161,18680,18225,17830,17466,17158,16861,16606,16380,16181,15964,15779,15590,15409,15244,15098,14996,14903,14833,14765,14729,14710,14724,14718,14744,14753,14775,14823,14859,14910,14963,14983,14999,15002,15014,15025,15033,15045,15045,14981,14925,14867,14788,14701,14608,14474,14333,14180,13969,13768,13570,13326,13070,12800,12526,12235,11941,11657,11381,11109,10874,10625,10405,10137,9848,9522,9219,8936,8701,8498,8317,8171,8045,7942,7865,7803,7753,7688,7586,7459,7286,7152,7000,6901,6806,6721,6664,6609,6568,6562,6545,6529,6522,6548,6537,6378,6083,5657,5053,21.5,21.6,22.2,1568447,0.0,13.3,12.0,5.0,428,-1.00,-1.00,57.8883,-18.727501,0.000542,,,,,69 +SATSLF0720,2024246,14.512929,4.19,0.0587,0.1059,0.0195,0.00,16060,644,1,717,713,716,716,721,717,713,713,714,733,730,743,769,891,1221,1967,3117,4469,5679,6599,7236,7685,8107,8572,9085,9700,10436,11293,12285,13389,14570,15709,16817,17776,18493,18932,19072,18892,18520,17966,17388,16829,16362,16006,15791,15714,15808,16049,16461,17045,17784,18690,19757,20976,22282,23705,25188,26666,28077,29317,30313,31057,31465,31449,31131,30481,29579,28512,27293,26093,24971,23889,22885,22041,21312,20721,20238,19843,19566,19409,19313,19332,19431,19613,19879,20220,20665,21173,21733,22356,23010,23666,24277,24857,25325,25686,25957,26011,25879,25611,25141,24501,23780,22982,22120,21254,20426,19646,18933,18282,17744,17267,16873,16550,16311,16140,16036,16007,16027,16104,16261,16487,16788,17142,17584,18077,18648,19241,19877,20553,21276,22021,22752,23477,24187,24835,25429,26006,26421,26727,26976,27072,27088,26993,26772,26455,26064,25568,25014,24426,23781,23142,22493,21842,21209,20602,20007,19447,18963,18484,18076,17719,17392,17109,16833,16597,16394,16187,16007,15812,15635,15470,15328,15220,15117,15035,14974,14921,14910,14908,14921,14944,14985,15005,15053,15080,15127,15181,15185,15189,15201,15201,15217,15236,15247,15241,15193,15138,15070,15013,14914,14835,14696,14538,14359,14169,13975,13753,13509,13239,12979,12693,12397,12113,11812,11521,11257,11003,10773,10539,10265,9974,9646,9346,9052,8810,8597,8417,8276,8141,8055,7965,7905,7851,7784,7704,7569,7381,7223,7095,6977,6883,6810,6742,6689,6657,6625,6623,6615,6598,6621,6612,6464,6146,5722,5112,21.5,21.6,22.2,1568448,0.3,13.3,12.0,5.0,438,-1.00,-1.00,58.4537,-19.209419,0.000695,,,,,90 +SATSLF0720,2024246,14.513182,4.21,0.0589,0.1036,0.0179,0.00,16127,644,1,702,695,700,716,710,711,718,715,716,723,723,725,773,881,1223,1957,3126,4486,5723,6637,7282,7755,8178,8628,9148,9756,10515,11372,12361,13473,14672,15818,16937,17897,18609,19042,19186,19001,18625,18095,17501,16937,16477,16117,15882,15825,15909,16153,16563,17131,17891,18805,19863,21089,22402,23845,25328,26812,28240,29477,30474,31236,31616,31619,31285,30645,29721,28678,27453,26262,25098,24009,23009,22158,21425,20825,20340,19940,19668,19494,19414,19410,19511,19703,19958,20314,20752,21291,21842,22459,23136,23770,24392,24954,25449,25808,26067,26114,26000,25722,25255,24608,23897,23085,22209,21338,20485,19738,19018,18373,17806,17343,16942,16629,16381,16201,16100,16055,16085,16166,16313,16547,16860,17208,17659,18153,18710,19311,19959,20632,21349,22113,22837,23550,24265,24920,25516,26084,26506,26835,27072,27178,27181,27090,26886,26552,26176,25675,25104,24514,23872,23220,22565,21900,21280,20660,20073,19522,19025,18558,18141,17795,17450,17153,16887,16649,16451,16245,16059,15866,15682,15520,15381,15261,15156,15099,15022,14984,14950,14959,14959,14979,15002,15053,15086,15116,15161,15223,15242,15233,15253,15261,15281,15285,15290,15273,15225,15192,15123,15046,14961,14846,14706,14567,14386,14211,14003,13789,13550,13293,13025,12736,12432,12132,11843,11557,11289,11043,10811,10587,10313,10018,9684,9362,9069,8820,8614,8453,8285,8151,8065,7981,7911,7859,7811,7711,7566,7415,7249,7138,6997,6895,6819,6761,6697,6655,6644,6632,6621,6608,6637,6629,6477,6165,5735,5120,21.5,21.6,22.2,1568449,0.1,13.3,12.0,5.0,435,-1.00,-1.00,57.6655,-18.982810,0.000550,,,,,153 +SATSLF0720,2024246,14.513433,4.15,0.0581,0.1048,0.0192,0.00,16090,644,1,695,703,705,701,711,703,715,709,713,707,723,736,757,895,1237,1961,3117,4489,5705,6615,7245,7718,8147,8601,9106,9725,10461,11325,12323,13443,14610,15762,16872,17819,18547,18978,19114,18933,18557,18027,17444,16885,16433,16066,15825,15760,15846,16093,16506,17086,17832,18733,19797,21016,22330,23768,25255,26742,28166,29392,30390,31142,31520,31537,31209,30570,29650,28601,27373,26187,25025,23955,22957,22107,21355,20746,20279,19898,19604,19448,19360,19361,19462,19674,19922,20258,20704,21230,21792,22414,23062,23710,24317,24899,25376,25754,26018,26073,25952,25655,25181,24541,23818,23029,22155,21293,20436,19686,18977,18323,17784,17314,16910,16582,16340,16168,16073,16010,16016,16114,16273,16517,16794,17191,17602,18087,18670,19268,19912,20601,21329,22062,22798,23515,24225,24881,25464,26045,26461,26777,27026,27133,27150,27053,26852,26517,26128,25623,25063,24489,23826,23189,22529,21867,21238,20621,20046,19485,18997,18523,18135,17744,17422,17148,16872,16629,16434,16212,16025,15821,15640,15489,15341,15242,15130,15065,14987,14946,14925,14924,14926,14952,14971,14999,15049,15085,15142,15205,15205,15204,15233,15226,15260,15273,15261,15255,15223,15144,15079,15026,14909,14835,14696,14565,14390,14199,13992,13761,13528,13254,12992,12704,12418,12140,11833,11557,11286,11029,10785,10551,10285,9973,9660,9346,9053,8807,8593,8443,8285,8152,8052,7980,7909,7856,7783,7698,7563,7388,7248,7115,6993,6891,6806,6750,6693,6661,6634,6624,6593,6601,6613,6599,6455,6159,5728,5110,21.5,21.6,22.2,1568450,0.5,13.3,12.0,5.0,429,-1.00,-1.00,58.4752,-19.268598,0.000595,,,,,131 +SATSLF0720,2024246,14.513692,4.21,0.0590,0.1052,0.0190,0.00,16081,644,1,695,708,705,720,709,703,713,718,729,738,736,727,767,883,1226,1942,3115,4472,5696,6605,7249,7701,8115,8575,9085,9715,10460,11319,12327,13435,14602,15753,16860,17806,18517,18951,19089,18910,18532,17997,17431,16869,16407,16045,15822,15750,15834,16085,16482,17070,17805,18715,19773,21015,22313,23755,25227,26711,28134,29366,30359,31114,31504,31510,31186,30538,29632,28577,27351,26161,25001,23936,22937,22088,21346,20739,20267,19880,19608,19440,19343,19367,19454,19635,19905,20249,20688,21205,21761,22389,23056,23707,24317,24886,25357,25722,25989,26028,25915,25648,25163,24547,23815,23035,22153,21284,20443,19674,18962,18323,17766,17287,16893,16576,16330,16166,16053,16016,16049,16141,16288,16515,16802,17181,17605,18080,18658,19268,19908,20596,21341,22056,22797,23499,24215,24872,25466,26025,26441,26757,27000,27100,27114,27040,26800,26489,26100,25604,25042,24443,23808,23170,22525,21848,21222,20619,20034,19481,18987,18507,18107,17746,17418,17138,16857,16619,16427,16219,16026,15829,15642,15482,15330,15222,15115,15056,14976,14951,14931,14921,14935,14964,14984,15012,15054,15091,15127,15181,15185,15197,15202,15214,15241,15262,15269,15255,15209,15140,15087,15026,14930,14844,14706,14554,14382,14180,13953,13761,13509,13242,12989,12698,12416,12132,11845,11557,11269,11031,10782,10550,10273,9981,9654,9350,9052,8822,8614,8437,8296,8163,8067,7995,7917,7853,7777,7692,7553,7361,7218,7094,6977,6891,6814,6764,6706,6667,6633,6617,6600,6588,6614,6608,6467,6165,5722,5105,21.5,21.6,22.2,1568451,0.1,13.3,12.0,5.0,437,-1.00,-1.00,58.4350,-19.236313,0.000582,,,,,199 +SATSLF0720,2024246,14.513945,4.23,0.0592,0.1046,0.0187,0.00,16097,644,1,706,699,698,703,708,708,711,730,728,722,731,747,769,888,1224,1960,3128,4483,5705,6631,7262,7728,8138,8579,9111,9720,10479,11346,12337,13456,14618,15776,16888,17844,18557,18994,19129,18946,18568,18026,17436,16875,16417,16072,15863,15793,15877,16109,16525,17105,17833,18741,19798,21005,22331,23776,25257,26741,28160,29411,30410,31165,31554,31544,31220,30572,29649,28597,27363,26202,25029,23947,22966,22102,21369,20773,20289,19895,19616,19465,19369,19376,19475,19665,19926,20277,20693,21221,21776,22392,23067,23721,24317,24903,25397,25753,26021,26070,25945,25668,25197,24562,23832,23057,22176,21312,20466,19687,18984,18327,17789,17321,16908,16590,16348,16158,16067,16023,16040,16139,16297,16524,16821,17184,17614,18105,18677,19291,19925,20609,21333,22070,22812,23530,24237,24877,25465,26035,26450,26774,27024,27130,27139,27047,26825,26485,26118,25632,25074,24477,23837,23191,22544,21873,21249,20616,20036,19492,19014,18529,18134,17765,17416,17142,16881,16633,16429,16223,16050,15854,15673,15489,15359,15243,15146,15065,14984,14949,14937,14937,14937,14976,14986,15029,15060,15091,15145,15198,15220,15213,15246,15225,15262,15285,15277,15273,15225,15157,15096,15012,14947,14848,14709,14553,14400,14190,13995,13777,13545,13265,13009,12722,12428,12149,11834,11547,11274,11030,10781,10550,10295,9977,9671,9361,9076,8827,8620,8446,8291,8159,8076,7993,7922,7856,7801,7710,7562,7383,7229,7107,6989,6897,6822,6760,6714,6669,6652,6635,6613,6609,6603,6611,6461,6158,5747,5117,21.5,21.7,22.2,1568452,0.1,13.4,12.0,5.0,434,-1.00,-1.00,57.9542,-19.056070,0.000592,,,,,16 +SATSLF0720,2024246,14.514195,4.17,0.0584,0.1049,0.0188,0.00,16088,644,1,710,705,725,717,724,725,726,712,724,718,726,737,773,892,1223,1957,3126,4484,5705,6604,7258,7725,8141,8580,9110,9721,10468,11341,12332,13433,14602,15759,16871,17819,18536,18970,19114,18929,18554,18035,17448,16873,16427,16053,15831,15754,15844,16084,16503,17073,17828,18724,19803,21018,22327,23767,25252,26725,28142,29377,30389,31129,31512,31514,31195,30557,29626,28593,27366,26161,25021,23956,22952,22082,21357,20753,20266,19872,19616,19453,19356,19350,19458,19649,19921,20256,20692,21225,21777,22402,23066,23713,24328,24890,25369,25740,26000,26045,25927,25641,25181,24542,23824,23036,22162,21302,20459,19687,18984,18333,17771,17299,16892,16568,16323,16171,16066,16014,16030,16129,16289,16514,16823,17180,17613,18097,18653,19277,19921,20589,21305,22050,22800,23524,24221,24880,25473,26020,26442,26769,27008,27104,27109,27042,26822,26487,26105,25616,25044,24466,23826,23178,22535,21861,21239,20618,20013,19463,18978,18508,18103,17744,17414,17127,16867,16643,16437,16217,16026,15833,15630,15489,15333,15222,15139,15065,14969,14949,14929,14927,14944,14953,14973,15013,15064,15097,15125,15205,15213,15232,15242,15242,15253,15265,15262,15264,15208,15149,15092,15005,14935,14836,14694,14548,14387,14190,13972,13781,13527,13259,12997,12733,12425,12120,11842,11546,11275,11026,10782,10561,10277,9977,9657,9351,9077,8824,8619,8441,8297,8170,8050,7987,7917,7853,7791,7705,7559,7388,7233,7113,7006,6902,6821,6757,6698,6653,6631,6633,6597,6599,6628,6613,6468,6164,5745,5131,21.6,21.7,22.3,1568453,0.0,13.3,12.0,5.0,435,-1.00,-1.00,58.2372,-19.160943,0.000625,,,,,176 +SATSLF0720,2024246,14.514451,4.30,0.0602,0.1062,0.0196,0.00,16052,644,1,701,708,700,711,708,704,729,729,750,741,744,739,774,882,1213,1935,3108,4452,5680,6578,7233,7698,8113,8567,9076,9699,10429,11302,12290,13381,14560,15717,16819,17765,18476,18919,19045,18855,18491,17953,17381,16826,16372,16018,15800,15730,15806,16050,16454,17024,17776,18681,19738,20944,22264,23698,25173,26641,28061,29312,30310,31053,31445,31451,31121,30466,29549,28498,27273,26109,24962,23896,22906,22033,21313,20709,20221,19837,19543,19399,19301,19310,19413,19603,19874,20228,20665,21165,21733,22354,23006,23651,24266,24829,25313,25675,25936,25987,25880,25609,25132,24494,23783,22993,22117,21245,20407,19648,18944,18293,17721,17279,16869,16536,16291,16122,16021,15979,15994,16104,16251,16480,16775,17136,17568,18049,18611,19218,19858,20558,21273,22022,22764,23461,24162,24817,25416,25977,26402,26724,26964,27058,27075,26990,26762,26442,26049,25554,25009,24418,23781,23128,22477,21821,21194,20592,19997,19442,18946,18471,18066,17701,17375,17089,16827,16589,16384,16174,15986,15795,15623,15462,15324,15201,15115,15029,14958,14909,14903,14897,14914,14918,14951,14978,15036,15065,15118,15159,15187,15185,15207,15211,15221,15227,15239,15233,15181,15113,15065,14994,14912,14805,14665,14536,14357,14157,13941,13735,13493,13245,12981,12694,12408,12105,11824,11529,11257,11003,10755,10523,10252,9951,9634,9337,9058,8822,8604,8448,8277,8151,8037,7965,7895,7841,7780,7677,7544,7378,7221,7086,6981,6900,6804,6741,6672,6638,6628,6613,6583,6591,6601,6605,6453,6143,5731,5119,21.6,21.7,22.3,1568454,0.0,13.3,12.0,5.0,435,-1.00,-1.00,58.1445,-19.073269,0.000588,,,,,106 +SATSDF0720,2024246,14.759138,0.00,0.0000,0.0000,0.0000,0.00,646,0,1,642,629,631,622,635,629,627,621,627,637,630,617,624,626,631,645,628,635,633,634,630,626,637,656,660,654,650,653,645,645,636,647,652,660,657,656,656,651,647,647,657,646,636,633,639,644,657,651,664,650,657,653,651,647,646,631,639,633,645,649,646,659,677,661,653,651,653,649,655,644,647,656,659,660,661,653,651,654,649,638,642,638,651,651,645,651,654,649,654,653,643,651,635,659,642,645,650,647,657,646,647,644,638,659,652,669,664,658,649,658,659,661,657,651,647,641,649,651,642,630,635,648,649,653,649,657,641,648,641,646,635,646,644,644,650,647,643,663,653,652,640,645,637,645,654,650,644,656,645,656,641,652,652,658,648,649,666,650,652,656,659,641,640,648,637,643,632,635,648,640,653,656,650,640,651,637,643,652,655,658,649,635,647,637,642,640,643,648,647,649,642,647,646,641,639,645,635,647,657,645,648,651,655,663,650,655,641,657,649,649,645,653,637,646,645,648,653,648,647,653,645,651,636,641,635,639,641,640,634,643,650,645,651,650,644,639,651,651,642,643,641,641,638,641,633,630,643,642,657,654,647,647,647,645,647,468,0.0,0.0,0.0,1568453,0.8,14.1,0.1,5.0,54,0.00,0.00,0.0000,0.000000,0.000000,,,,,23 +SATSLF0720,2024246,14.759693,4.15,0.0581,0.1006,0.0170,0.00,16218,646,1,695,699,703,693,701,702,701,699,722,717,714,727,762,880,1223,1953,3138,4498,5751,6657,7307,7779,8209,8663,9201,9825,10558,11445,12454,13578,14756,15938,17050,18014,18743,19159,19303,19112,18747,18214,17632,17061,16597,16226,16004,15923,16007,16254,16664,17249,18013,18910,19983,21225,22539,24011,25514,26989,28416,29682,30678,31445,31848,31847,31531,30869,29949,28874,27648,26437,25277,24189,23174,22325,21586,20972,20488,20100,19801,19642,19545,19557,19651,19851,20112,20459,20907,21424,22007,22620,23292,23926,24542,25115,25591,25948,26208,26267,26162,25873,25393,24756,24021,23219,22347,21473,20613,19840,19116,18478,17908,17438,17022,16706,16461,16276,16189,16137,16157,16256,16410,16629,16935,17298,17745,18233,18813,19426,20073,20768,21472,22219,22978,23708,24400,25058,25669,26240,26665,26976,27223,27331,27346,27258,27026,26701,26316,25812,25245,24656,24009,23363,22696,22026,21397,20785,20180,19627,19132,18657,18242,17875,17541,17259,17003,16741,16562,16356,16160,15953,15767,15579,15422,15323,15217,15148,15077,15043,15026,15031,15033,15054,15076,15109,15155,15179,15231,15282,15300,15317,15325,15328,15348,15360,15361,15341,15306,15236,15153,15101,15017,14917,14778,14635,14469,14283,14067,13841,13599,13332,13056,12779,12484,12194,11905,11603,11339,11092,10849,10616,10344,10033,9709,9405,9108,8859,8647,8472,8307,8190,8105,8013,7947,7909,7852,7753,7594,7422,7265,7143,7029,6925,6852,6789,6729,6695,6658,6651,6635,6621,6644,6650,6500,6188,5764,5138,21.4,21.4,21.8,1568454,0.2,13.6,12.0,5.0,537,-1.00,-1.00,57.8193,-19.174397,0.000557,,,,,95 +SATSLF0720,2024246,14.759875,4.10,0.0574,0.1003,0.0159,0.00,16230,646,1,705,699,697,697,707,705,711,709,705,718,728,733,777,905,1234,1970,3152,4534,5759,6679,7319,7806,8213,8679,9206,9829,10593,11469,12473,13591,14792,15962,17079,18030,18773,19209,19339,19150,18766,18234,17630,17074,16610,16240,16023,15958,16021,16269,16680,17277,18014,18929,20013,21250,22582,24041,25525,27019,28449,29697,30718,31462,31876,31862,31537,30883,29965,28904,27658,26470,25296,24215,23209,22346,21587,20968,20479,20099,19810,19666,19558,19585,19690,19876,20136,20468,20903,21433,22007,22618,23285,23933,24558,25142,25613,25989,26234,26293,26180,25888,25402,24759,24023,23235,22362,21478,20632,19862,19146,18498,17922,17456,17040,16713,16477,16281,16187,16153,16168,16258,16416,16647,16949,17341,17765,18259,18822,19421,20069,20753,21472,22219,22981,23709,24413,25077,25681,26259,26685,26998,27249,27357,27374,27265,27064,26722,26327,25821,25253,24672,24043,23377,22711,22053,21409,20785,20194,19622,19147,18666,18253,17885,17549,17284,16985,16759,16546,16348,16147,15949,15779,15605,15461,15348,15248,15166,15088,15057,15033,15031,15040,15059,15079,15120,15171,15197,15232,15307,15305,15315,15326,15337,15356,15373,15366,15360,15309,15243,15191,15126,15028,14939,14790,14642,14470,14279,14073,13842,13611,13333,13061,12782,12501,12197,11900,11621,11341,11085,10856,10614,10347,10043,9713,9405,9109,8859,8659,8496,8326,8201,8100,8035,7962,7911,7833,7749,7596,7412,7260,7131,7015,6929,6858,6796,6733,6696,6673,6665,6652,6632,6665,6657,6499,6198,5769,5137,21.5,21.4,21.9,1568455,0.4,13.6,12.0,5.0,451,-1.00,-1.00,57.6670,-19.125268,0.000569,,,,,219 +SATSLF0720,2024246,14.760130,3.99,0.0559,0.1009,0.0160,0.00,16216,646,1,705,710,694,683,704,701,711,710,716,721,723,737,787,893,1227,1961,3143,4509,5744,6674,7303,7791,8216,8669,9178,9819,10557,11444,12444,13574,14758,15932,17043,18007,18734,19172,19307,19127,18765,18218,17619,17049,16589,16221,15969,15916,15990,16241,16661,17243,18000,18904,19987,21225,22534,23995,25488,26990,28411,29686,30695,31432,31834,31832,31505,30854,29925,28850,27633,26438,25258,24183,23173,22316,21564,20962,20476,20069,19776,19634,19534,19552,19645,19831,20109,20457,20893,21402,21986,22592,23275,23922,24529,25123,25593,25941,26210,26257,26148,25866,25382,24745,24019,23223,22331,21456,20608,19830,19122,18458,17890,17435,17018,16707,16445,16285,16181,16147,16158,16248,16421,16649,16941,17325,17749,18237,18814,19428,20045,20741,21479,22225,22967,23691,24407,25068,25649,26241,26649,26989,27217,27332,27340,27247,27031,26699,26306,25805,25233,24644,24003,23374,22686,22029,21395,20776,20182,19629,19131,18649,18245,17877,17544,17259,16984,16741,16548,16344,16138,15940,15753,15587,15445,15329,15243,15149,15083,15060,15036,15016,15034,15050,15074,15105,15150,15181,15229,15279,15293,15309,15327,15330,15345,15375,15362,15361,15300,15244,15188,15106,15010,14907,14779,14632,14446,14270,14054,13836,13608,13347,13072,12786,12493,12192,11895,11621,11336,11091,10843,10613,10331,10029,9703,9400,9117,8883,8665,8490,8336,8209,8116,8034,7956,7911,7836,7744,7605,7422,7268,7143,7029,6932,6849,6765,6715,6694,6676,6664,6654,6653,6660,6653,6492,6180,5741,5129,21.5,21.4,21.9,1568456,0.2,13.5,12.0,5.0,427,-1.00,-1.00,58.2816,-19.359119,0.000643,,,,,95 +SATSLF0720,2024246,14.760385,4.07,0.0570,0.1021,0.0165,0.00,16177,646,1,696,695,697,693,699,709,706,707,706,713,704,717,775,887,1214,1945,3127,4485,5733,6637,7279,7764,8185,8640,9157,9780,10517,11393,12394,13504,14681,15853,16965,17928,18663,19109,19248,19047,18672,18139,17541,16983,16524,16154,15922,15864,15939,16173,16603,17191,17942,18862,19934,21145,22482,23919,25412,26897,28338,29584,30577,31324,31741,31740,31418,30762,29852,28758,27543,26361,25194,24112,23112,22257,21516,20906,20427,20030,19730,19575,19480,19498,19595,19788,20052,20397,20836,21371,21938,22541,23210,23864,24461,25061,25525,25896,26161,26213,26087,25821,25331,24685,23965,23145,22284,21400,20565,19790,19074,18426,17881,17398,16982,16657,16407,16250,16148,16101,16137,16210,16385,16608,16898,17261,17692,18190,18765,19362,20023,20709,21441,22193,22923,23650,24361,25012,25609,26186,26619,26933,27173,27282,27292,27198,26978,26641,26253,25766,25189,24600,23975,23317,22657,21994,21360,20749,20147,19591,19083,18613,18195,17831,17523,17227,16968,16717,16519,16305,16101,15908,15734,15565,15420,15315,15213,15131,15054,15000,14999,14995,14993,15027,15044,15098,15137,15165,15205,15267,15267,15291,15297,15293,15316,15323,15337,15317,15271,15209,15170,15077,14980,14886,14759,14615,14445,14259,14033,13819,13580,13311,13048,12754,12468,12182,11883,11593,11323,11073,10833,10595,10331,10022,9686,9383,9096,8841,8631,8463,8311,8185,8081,8001,7933,7879,7809,7738,7593,7413,7268,7139,7022,6924,6829,6763,6709,6674,6670,6657,6637,6625,6635,6637,6488,6162,5747,5119,21.5,21.5,22.0,1568457,0.3,13.5,11.9,5.0,435,-1.00,-1.00,58.5762,-19.426437,0.000664,,,,,249 +SATSLF0720,2024246,14.760642,4.04,0.0565,0.1013,0.0173,0.00,16183,646,1,682,695,683,697,690,711,711,714,721,718,716,721,767,873,1203,1946,3129,4493,5738,6662,7304,7773,8190,8645,9172,9793,10526,11402,12418,13530,14712,15881,16997,17958,18676,19134,19249,19085,18694,18147,17569,17001,16535,16187,15950,15889,15957,16195,16625,17198,17945,18860,19931,21163,22497,23940,25438,26939,28354,29604,30617,31361,31764,31765,31441,30777,29858,28797,27575,26378,25232,24140,23125,22257,21536,20902,20423,20036,19768,19606,19514,19520,19611,19803,20049,20418,20841,21365,21934,22553,23224,23881,24485,25059,25543,25899,26166,26221,26099,25826,25337,24713,23977,23189,22312,21430,20580,19802,19093,18429,17860,17402,17001,16661,16426,16257,16155,16106,16136,16210,16378,16602,16889,17260,17707,18193,18770,19381,20022,20710,21448,22188,22937,23653,24352,25011,25610,26171,26611,26925,27178,27268,27293,27221,27002,26662,26253,25765,25193,24605,23968,23323,22660,21988,21354,20731,20132,19580,19083,18618,18211,17847,17509,17210,16958,16704,16509,16281,16115,15914,15731,15553,15425,15306,15210,15134,15058,15013,14995,14981,14987,15034,15051,15077,15134,15160,15202,15275,15273,15278,15297,15307,15317,15339,15327,15333,15269,15198,15144,15082,14988,14897,14757,14613,14429,14247,14034,13803,13565,13307,13045,12754,12471,12174,11873,11588,11328,11066,10825,10595,10311,10027,9697,9389,9097,8849,8637,8471,8315,8184,8089,8013,7943,7889,7815,7723,7582,7410,7258,7130,7008,6917,6844,6784,6706,6683,6660,6653,6633,6618,6647,6645,6489,6170,5749,5125,21.5,21.4,22.0,1568458,0.1,13.5,12.0,5.0,435,-1.00,-1.00,58.4974,-19.408363,0.000638,,,,,75 +SATSLF0720,2024246,14.760897,4.15,0.0582,0.1013,0.0165,0.00,16196,646,1,702,704,699,711,705,695,705,717,722,723,736,733,761,883,1211,1959,3143,4503,5751,6661,7296,7769,8192,8647,9165,9801,10553,11422,12417,13538,14733,15899,17017,17978,18711,19140,19269,19080,18715,18177,17578,17011,16563,16192,15972,15899,15976,16225,16640,17221,17968,18885,19961,21201,22513,23970,25457,26944,28371,29625,30639,31394,31786,31789,31469,30820,29885,28827,27601,26400,25223,24147,23154,22277,21543,20933,20444,20053,19765,19602,19517,19531,19626,19813,20065,20418,20844,21379,21941,22564,23233,23876,24502,25077,25565,25926,26176,26249,26101,25837,25353,24731,23986,23186,22314,21445,20579,19824,19110,18450,17889,17427,17012,16689,16448,16263,16174,16118,16139,16228,16404,16629,16917,17295,17719,18217,18793,19398,20050,20730,21452,22200,22949,23677,24360,25037,25629,26193,26624,26957,27202,27293,27307,27207,27001,26661,26274,25776,25210,24613,23980,23328,22683,22006,21381,20759,20165,19606,19101,18633,18201,17844,17512,17220,16957,16709,16523,16325,16126,15936,15749,15575,15430,15303,15218,15134,15070,15028,15022,15021,15017,15037,15061,15101,15138,15175,15218,15281,15275,15291,15302,15311,15329,15357,15346,15342,15286,15230,15170,15109,15002,14903,14775,14613,14451,14253,14049,13833,13594,13318,13068,12777,12469,12178,11891,11595,11323,11067,10846,10612,10324,10023,9699,9383,9107,8887,8649,8482,8321,8192,8096,8013,7956,7893,7841,7746,7589,7415,7265,7141,7020,6915,6854,6780,6723,6683,6660,6657,6652,6629,6647,6653,6485,6183,5745,5127,21.5,21.5,22.0,1568459,0.3,13.5,12.0,5.0,440,-1.00,-1.00,58.0043,-19.220365,0.000566,,,,,166 +SATSLF0720,2024246,14.761151,4.21,0.0590,0.1036,0.0183,0.00,16127,646,1,709,695,707,690,698,715,711,715,721,722,739,740,780,869,1194,1927,3101,4465,5688,6616,7248,7723,8159,8605,9113,9735,10474,11346,12349,13456,14625,15777,16900,17857,18582,19021,19152,18985,18597,18084,17477,16926,16448,16109,15865,15804,15884,16136,16536,17134,17877,18786,19853,21088,22393,23835,25317,26797,28217,29464,30475,31218,31624,31626,31293,30653,29722,28660,27435,26256,25105,24017,23043,22176,21429,20826,20346,19943,19671,19512,19417,19436,19534,19725,20000,20335,20776,21284,21859,22468,23142,23777,24396,24962,25425,25787,26054,26103,25992,25736,25250,24617,23897,23096,22201,21351,20485,19736,19018,18366,17808,17351,16936,16616,16385,16208,16117,16077,16070,16167,16333,16566,16862,17230,17660,18151,18713,19324,19947,20643,21369,22105,22849,23565,24280,24934,25531,26100,26512,26840,27074,27178,27189,27097,26890,26565,26167,25673,25120,24530,23890,23234,22583,21921,21285,20672,20100,19528,19026,18553,18162,17798,17465,17161,16901,16665,16462,16254,16064,15868,15703,15518,15383,15270,15170,15106,15026,14984,14957,14955,14953,14981,15021,15053,15077,15127,15170,15218,15225,15238,15257,15265,15285,15309,15305,15291,15221,15175,15110,15044,14954,14871,14736,14587,14418,14216,14015,13790,13540,13282,13021,12736,12436,12157,11863,11556,11305,11045,10801,10557,10296,9997,9673,9372,9093,8843,8635,8468,8309,8177,8077,7994,7936,7881,7813,7737,7586,7400,7229,7111,7011,6901,6821,6773,6696,6679,6641,6635,6616,6605,6627,6631,6473,6162,5730,5115,21.6,21.6,22.1,1568460,0.4,13.5,11.9,5.0,436,-1.00,-1.00,58.2398,-19.216836,0.000622,,,,,130 +SATSLF0720,2024246,14.761407,3.98,0.0557,0.1021,0.0167,0.00,16179,646,1,708,694,703,693,707,687,707,701,715,722,736,723,775,897,1222,1971,3133,4499,5729,6647,7290,7762,8187,8633,9163,9792,10547,11417,12419,13541,14729,15882,16990,17953,18670,19106,19246,19078,18698,18167,17556,16994,16535,16165,15937,15877,15944,16198,16613,17194,17942,18849,19929,21141,22465,23925,25417,26894,28331,29589,30592,31351,31760,31760,31428,30771,29842,28777,27543,26372,25205,24113,23099,22237,21512,20889,20437,20036,19746,19569,19480,19479,19595,19781,20049,20394,20841,21353,21924,22541,23208,23856,24446,25037,25509,25882,26144,26201,26103,25808,25325,24683,23971,23168,22288,21419,20573,19809,19089,18435,17875,17396,16982,16653,16413,16242,16141,16094,16130,16214,16375,16605,16896,17274,17704,18210,18766,19386,20011,20707,21433,22169,22919,23629,24356,25022,25613,26181,26617,26924,27161,27284,27281,27189,26980,26653,26245,25754,25180,24592,23954,23292,22640,21982,21348,20745,20135,19591,19090,18605,18202,17847,17512,17201,16949,16712,16502,16309,16115,15917,15729,15571,15422,15297,15209,15129,15057,15016,14985,14987,15001,15031,15045,15089,15125,15158,15201,15261,15268,15285,15271,15279,15314,15333,15335,15330,15275,15217,15163,15093,15005,14889,14774,14621,14437,14267,14037,13825,13585,13325,13044,12772,12471,12176,11883,11593,11325,11073,10837,10589,10325,10025,9704,9399,9107,8857,8640,8472,8313,8178,8083,8005,7933,7890,7834,7745,7590,7415,7261,7121,7009,6913,6834,6779,6729,6695,6675,6657,6631,6631,6635,6639,6485,6167,5751,5140,21.5,21.6,22.1,1568461,0.4,13.4,11.9,5.0,430,-1.00,-1.00,58.6683,-19.468552,0.000612,,,,,4 +SATSLF0720,2024246,14.761661,4.16,0.0583,0.1022,0.0177,0.00,16162,646,1,695,692,702,683,685,679,697,691,706,717,726,731,779,876,1231,1961,3125,4487,5716,6635,7269,7739,8190,8621,9155,9778,10535,11406,12419,13513,14678,15862,16962,17934,18642,19093,19222,19021,18665,18116,17536,16954,16503,16145,15925,15853,15937,16185,16586,17177,17920,18844,19921,21145,22453,23911,25389,26878,28301,29554,30552,31307,31693,31718,31397,30754,29818,28763,27517,26326,25168,24082,23083,22212,21490,20883,20394,20006,19720,19557,19476,19490,19581,19762,20013,20368,20801,21306,21887,22505,23184,23841,24449,25030,25504,25875,26128,26210,26061,25779,25303,24659,23943,23140,22272,21402,20539,19773,19072,18421,17859,17387,16983,16661,16414,16236,16129,16091,16102,16199,16370,16597,16903,17270,17696,18187,18753,19357,19977,20667,21402,22153,22905,23619,24325,24992,25576,26138,26567,26899,27147,27237,27264,27150,26955,26633,26230,25732,25154,24579,23929,23276,22626,21973,21331,20709,20119,19566,19078,18593,18190,17835,17489,17192,16947,16701,16494,16283,16089,15909,15712,15554,15402,15285,15201,15109,15018,14986,14976,14965,14971,15010,15033,15074,15124,15137,15187,15258,15275,15295,15286,15301,15317,15319,15326,15309,15255,15185,15131,15074,14984,14884,14759,14605,14429,14235,14034,13822,13570,13301,13038,12763,12470,12164,11880,11588,11325,11061,10835,10569,10311,10011,9687,9387,9090,8840,8638,8460,8313,8170,8078,7990,7925,7874,7803,7733,7582,7415,7257,7141,7013,6927,6837,6777,6710,6665,6641,6641,6617,6614,6631,6647,6469,6179,5753,5130,21.6,21.6,22.1,1568462,0.3,13.4,12.0,5.0,435,-1.00,-1.00,58.2885,-19.292199,0.000621,,,,,18 +SATSLF0720,2024246,14.761913,4.09,0.0573,0.1032,0.0177,0.00,16149,646,1,695,698,704,709,707,708,717,724,703,715,707,734,758,883,1220,1954,3128,4496,5733,6637,7269,7748,8177,8634,9153,9763,10523,11401,12377,13506,14681,15847,16971,17930,18638,19069,19205,19031,18641,18121,17522,16955,16506,16128,15911,15845,15929,16165,16577,17157,17913,18817,19885,21098,22432,23875,25367,26856,28277,29538,30523,31282,31684,31677,31350,30703,29795,28731,27482,26311,25129,24059,23060,22205,21461,20866,20358,19975,19697,19537,19433,19467,19549,19740,19998,20355,20782,21308,21875,22500,23157,23810,24425,24997,25490,25818,26107,26151,26036,25745,25280,24634,23915,23121,22233,21384,20533,19763,19042,18391,17825,17360,16937,16615,16379,16212,16109,16069,16093,16189,16359,16584,16872,17252,17680,18165,18732,19336,19977,20662,21402,22132,22886,23598,24305,24963,25565,26123,26551,26871,27122,27229,27230,27138,26906,26580,26194,25706,25131,24552,23906,23271,22613,21957,21321,20698,20109,19547,19040,18577,18155,17802,17479,17189,16920,16686,16478,16272,16097,15894,15707,15541,15402,15289,15184,15096,15027,14986,14960,14961,14967,14993,15017,15066,15107,15133,15193,15242,15241,15262,15272,15287,15297,15318,15309,15306,15259,15186,15131,15074,14974,14870,14742,14594,14421,14217,14001,13789,13546,13296,13023,12741,12457,12166,11858,11586,11298,11056,10813,10573,10305,10010,9678,9376,9092,8853,8634,8452,8311,8181,8087,8018,7927,7894,7825,7730,7586,7405,7245,7112,6996,6889,6817,6752,6706,6666,6656,6645,6622,6626,6645,6637,6492,6169,5746,5118,21.6,21.6,22.1,1568463,0.4,13.4,12.0,5.0,433,-1.00,-1.00,58.3729,-19.307642,0.000592,,,,,222 +SATSLF0720,2024246,14.762169,4.11,0.0576,0.1039,0.0185,0.00,16119,646,1,701,692,702,711,717,717,715,717,727,724,729,741,776,890,1215,1955,3118,4493,5698,6615,7261,7729,8151,8606,9114,9735,10482,11365,12349,13464,14633,15808,16913,17873,18592,19020,19163,18967,18600,18053,17461,16910,16445,16075,15863,15811,15877,16133,16524,17111,17861,18768,19845,21047,22374,23825,25297,26785,28205,29461,30453,31213,31625,31608,31286,30648,29706,28651,27413,26228,25078,24006,23005,22161,21422,20813,20322,19934,19657,19489,19403,19431,19518,19693,19968,20321,20745,21284,21833,22454,23121,23770,24386,24946,25421,25777,26042,26110,25992,25707,25239,24589,23877,23072,22210,21341,20505,19720,19019,18361,17821,17333,16930,16624,16357,16186,16105,16058,16066,16161,16344,16553,16850,17209,17629,18132,18694,19321,19952,20634,21369,22110,22845,23553,24277,24922,25505,26071,26506,26838,27050,27175,27184,27095,26884,26551,26155,25661,25098,24503,23863,23237,22565,21899,21265,20651,20066,19506,19012,18530,18141,17782,17440,17159,16898,16650,16459,16250,16044,15847,15671,15501,15360,15246,15150,15081,15002,14969,14944,14953,14953,14986,15005,15042,15090,15100,15151,15209,15226,15232,15249,15242,15275,15301,15285,15287,15234,15168,15105,15019,14943,14856,14715,14570,14395,14223,14006,13778,13541,13271,13010,12718,12439,12148,11853,11561,11283,11036,10791,10561,10286,9995,9676,9370,9088,8832,8615,8461,8293,8159,8050,7984,7927,7866,7805,7726,7581,7397,7243,7105,7001,6899,6832,6771,6730,6675,6655,6652,6640,6621,6635,6615,6468,6161,5725,5115,21.6,21.6,22.1,1568464,0.3,13.4,12.0,5.0,435,-1.00,-1.00,58.6726,-19.387195,0.000688,,,,,234 +SATSLF0720,2024246,14.762423,4.02,0.0563,0.1028,0.0175,0.00,16147,646,1,719,717,709,716,720,722,717,707,719,719,731,729,775,885,1219,1955,3135,4502,5737,6649,7285,7747,8175,8627,9137,9767,10509,11382,12381,13493,14683,15841,16944,17911,18640,19079,19226,19033,18646,18111,17514,16957,16488,16123,15901,15842,15921,16160,16565,17146,17903,18816,19885,21109,22429,23881,25372,26853,28264,29505,30516,31272,31666,31666,31324,30683,29762,28704,27484,26305,25138,24058,23057,22185,21449,20835,20363,19966,19699,19521,19451,19458,19552,19741,19989,20355,20776,21305,21857,22485,23157,23804,24426,24989,25474,25831,26091,26138,26020,25736,25271,24629,23902,23120,22245,21380,20520,19749,19059,18395,17830,17369,16960,16636,16393,16229,16125,16086,16117,16210,16365,16585,16890,17253,17665,18154,18709,19331,19971,20652,21393,22118,22879,23598,24305,24965,25560,26117,26537,26866,27101,27201,27205,27125,26901,26584,26195,25702,25133,24551,23907,23245,22599,21928,21309,20693,20098,19539,19067,18581,18165,17803,17472,17172,16923,16677,16473,16262,16078,15895,15709,15536,15394,15287,15173,15110,15029,15002,14979,14977,14971,15019,15028,15064,15096,15128,15170,15236,15259,15266,15284,15276,15301,15309,15309,15293,15257,15193,15138,15057,14969,14857,14731,14589,14410,14220,14020,13804,13557,13302,13017,12752,12458,12165,11866,11575,11297,11051,10813,10578,10322,10021,9685,9383,9094,8834,8635,8465,8311,8180,8077,8001,7935,7897,7825,7733,7589,7421,7271,7125,7013,6908,6825,6754,6706,6677,6666,6641,6635,6616,6635,6640,6480,6173,5753,5127,21.6,21.6,22.2,1568465,0.3,13.4,11.9,5.0,437,-1.00,-1.00,58.4406,-19.327316,0.000650,,,,,31 +SATSLF0720,2024246,14.762675,4.05,0.0567,0.1036,0.0185,0.00,16122,646,1,704,695,700,707,718,721,725,737,730,723,726,739,773,876,1213,1945,3127,4469,5709,6618,7274,7738,8141,8609,9129,9751,10502,11361,12355,13465,14632,15803,16919,17865,18597,19042,19176,18984,18624,18070,17485,16914,16445,16087,15859,15797,15872,16123,16553,17124,17879,18796,19852,21081,22389,23836,25316,26796,28212,29478,30464,31239,31623,31626,31293,30642,29728,28673,27426,26246,25085,24021,23014,22166,21441,20813,20341,19948,19659,19511,19414,19419,19530,19701,19954,20310,20749,21277,21832,22449,23118,23762,24384,24951,25424,25803,26064,26116,25984,25716,25241,24599,23881,23083,22217,21341,20493,19718,19043,18362,17809,17334,16928,16626,16369,16193,16088,16058,16071,16161,16338,16561,16853,17216,17653,18131,18701,19328,19961,20637,21353,22103,22837,23556,24246,24893,25497,26058,26497,26834,27077,27177,27190,27086,26903,26549,26154,25671,25109,24516,23889,23221,22581,21908,21274,20669,20066,19509,19013,18549,18147,17789,17444,17161,16894,16645,16452,16241,16054,15853,15685,15505,15383,15261,15158,15093,15012,14961,14944,14939,14948,14967,15007,15026,15074,15129,15154,15219,15233,15245,15253,15259,15278,15301,15290,15275,15232,15165,15104,15034,14942,14851,14728,14582,14405,14203,14016,13777,13540,13263,13003,12735,12444,12153,11849,11573,11289,11042,10801,10558,10286,9999,9668,9366,9089,8841,8629,8452,8302,8161,8067,7994,7909,7857,7800,7704,7575,7397,7249,7118,7009,6901,6827,6762,6711,6659,6651,6642,6616,6597,6629,6617,6473,6157,5725,5118,21.6,21.6,22.2,1568465,0.1,13.4,11.9,5.0,433,-1.00,-1.00,58.7842,-19.442922,0.000728,,,,,52 +SATSLF0720,2024246,14.762930,4.16,0.0582,0.1041,0.0184,0.00,16110,646,1,704,688,715,702,701,707,717,720,730,713,728,737,761,875,1219,1949,3110,4466,5703,6614,7256,7728,8144,8583,9118,9734,10472,11332,12335,13457,14630,15791,16888,17840,18563,19001,19157,18961,18586,18066,17461,16909,16445,16094,15862,15787,15879,16112,16523,17110,17859,18756,19829,21054,22376,23813,25303,26777,28201,29443,30439,31184,31586,31586,31251,30605,29693,28658,27404,26225,25067,23984,22987,22129,21393,20790,20311,19930,19653,19496,19394,19419,19486,19691,19964,20293,20731,21253,21810,22435,23084,23747,24357,24946,25421,25792,26036,26085,25975,25698,25213,24573,23867,23061,22198,21330,20485,19719,19018,18367,17815,17325,16932,16597,16355,16185,16084,16041,16042,16144,16311,16538,16843,17197,17632,18112,18689,19300,19946,20617,21339,22081,22825,23533,24237,24891,25480,26064,26496,26828,27065,27179,27179,27084,26857,26544,26141,25649,25082,24500,23860,23202,22546,21894,21257,20647,20057,19507,19015,18552,18134,17781,17437,17152,16882,16642,16450,16224,16047,15847,15659,15497,15358,15255,15150,15070,14984,14967,14935,14937,14941,14977,14989,15026,15083,15093,15148,15194,15211,15221,15245,15244,15269,15289,15297,15287,15230,15165,15108,15038,14949,14866,14705,14575,14396,14215,14005,13783,13544,13265,13003,12720,12426,12146,11842,11557,11291,11036,10797,10563,10295,10000,9672,9355,9092,8833,8633,8450,8293,8170,8052,7981,7913,7862,7789,7719,7584,7411,7253,7129,7009,6891,6823,6750,6693,6657,6632,6629,6628,6613,6633,6619,6465,6161,5728,5112,21.6,21.7,22.2,1568466,0.4,13.4,12.0,5.0,434,-1.00,-1.00,58.3465,-19.242019,0.000630,,,,,52 +SATSLF0720,2024246,14.763184,4.19,0.0587,0.1050,0.0191,0.00,16086,646,1,696,706,693,695,697,709,708,719,716,734,729,732,752,875,1211,1945,3099,4467,5675,6611,7251,7725,8153,8599,9102,9721,10466,11332,12313,13420,14601,15749,16871,17818,18534,18985,19108,18937,18570,18023,17451,16885,16436,16064,15836,15768,15848,16089,16502,17081,17845,18729,19787,21018,22323,23765,25242,26736,28129,29385,30377,31133,31533,31512,31191,30551,29645,28586,27341,26158,25025,23955,22952,22105,21383,20762,20269,19880,19601,19455,19357,19366,19479,19660,19907,20267,20710,21220,21780,22398,23061,23707,24322,24909,25373,25751,25994,26051,25927,25657,25165,24537,23828,23040,22177,21293,20467,19694,18988,18324,17777,17303,16884,16576,16341,16161,16053,16007,16035,16128,16289,16528,16812,17185,17617,18115,18669,19273,19904,20580,21324,22049,22781,23507,24209,24872,25470,26025,26473,26777,27017,27113,27125,27020,26803,26487,26093,25608,25044,24475,23837,23189,22538,21857,21243,20621,20025,19466,18969,18515,18105,17747,17408,17120,16853,16610,16411,16194,16027,15827,15658,15482,15341,15223,15120,15041,14964,14934,14917,14917,14922,14953,14958,15017,15057,15085,15128,15211,15207,15233,15224,15213,15233,15253,15250,15252,15206,15149,15085,15021,14933,14821,14708,14538,14373,14165,13963,13762,13516,13261,12996,12715,12430,12137,11829,11541,11260,11005,10778,10546,10285,9969,9651,9345,9073,8810,8621,8450,8292,8157,8048,7981,7916,7869,7794,7709,7565,7400,7246,7097,6993,6891,6798,6738,6667,6647,6619,6607,6590,6606,6621,6619,6471,6165,5730,5120,21.6,21.7,22.2,1568467,0.2,13.3,11.9,5.0,430,-1.00,-1.00,57.9432,-19.035636,0.000612,,,,,126 +SATSLF0720,2024246,14.763437,4.23,0.0593,0.1044,0.0186,0.00,16101,646,1,715,714,708,713,717,709,712,715,717,739,738,737,775,883,1223,1959,3117,4503,5716,6635,7268,7726,8148,8593,9103,9732,10461,11337,12342,13444,14628,15784,16887,17854,18561,18984,19115,18947,18563,18039,17442,16889,16430,16052,15843,15777,15861,16103,16518,17115,17845,18753,19815,21040,22356,23787,25257,26752,28149,29403,30395,31168,31561,31553,31222,30589,29689,28617,27395,26200,25049,23968,22978,22107,21373,20761,20291,19907,19629,19478,19380,19389,19492,19673,19949,20297,20724,21237,21806,22435,23104,23745,24353,24923,25406,25768,26025,26080,25947,25684,25190,24565,23834,23047,22182,21309,20458,19701,18990,18354,17804,17309,16918,16584,16355,16178,16074,16041,16061,16150,16299,16522,16823,17181,17607,18099,18670,19275,19924,20597,21325,22081,22806,23523,24230,24882,25476,26029,26455,26763,27014,27129,27152,27056,26856,26524,26116,25635,25053,24480,23830,23203,22549,21872,21255,20646,20060,19502,18987,18519,18125,17757,17421,17131,16863,16635,16436,16237,16057,15851,15674,15505,15353,15246,15145,15072,14996,14953,14929,14941,14937,14952,14989,15022,15072,15103,15149,15195,15223,15223,15229,15242,15256,15282,15275,15267,15213,15165,15101,15015,14925,14840,14697,14567,14389,14213,14001,13786,13541,13269,13009,12732,12437,12136,11829,11552,11273,11045,10797,10561,10280,9983,9663,9354,9075,8834,8623,8453,8298,8165,8065,7971,7907,7854,7800,7712,7580,7413,7249,7102,6999,6894,6803,6755,6698,6661,6660,6637,6614,6605,6618,6613,6455,6145,5733,5093,21.6,21.7,22.2,1568468,0.3,13.4,11.9,5.0,438,-1.00,-1.00,58.2748,-19.196258,0.000568,,,,,59 +SATSLF0720,2024246,14.763692,4.08,0.0571,0.1055,0.0190,0.00,16080,646,1,711,706,701,707,712,718,729,721,737,724,725,733,768,877,1219,1959,3119,4478,5701,6612,7243,7725,8117,8573,9101,9714,10467,11318,12314,13435,14593,15758,16860,17817,18533,18973,19101,18908,18537,18023,17426,16872,16413,16043,15817,15739,15833,16073,16474,17066,17809,18720,19772,20992,22320,23762,25220,26715,28121,29362,30352,31102,31481,31508,31177,30521,29623,28554,27348,26161,25004,23917,22946,22085,21345,20721,20264,19858,19587,19430,19333,19357,19454,19649,19909,20256,20696,21205,21768,22384,23050,23698,24311,24894,25361,25734,25981,26037,25917,25638,25168,24532,23818,23028,22156,21282,20453,19680,18965,18327,17754,17277,16893,16583,16333,16157,16057,16004,16038,16128,16295,16529,16813,17173,17611,18081,18659,19271,19881,20579,21305,22050,22789,23508,24202,24853,25454,26022,26450,26769,27004,27109,27130,27029,26813,26475,26091,25597,25038,24442,23817,23157,22527,21851,21217,20618,20017,19467,18978,18512,18097,17739,17417,17124,16857,16602,16425,16208,16016,15845,15649,15478,15363,15221,15111,15051,14969,14936,14916,14925,14930,14962,14984,15021,15064,15085,15136,15197,15197,15219,15226,15223,15242,15257,15257,15254,15204,15143,15087,15010,14925,14834,14689,14533,14361,14176,13968,13760,13517,13253,12998,12719,12423,12124,11834,11552,11267,11025,10773,10533,10273,9974,9657,9346,9062,8824,8615,8454,8292,8149,8057,7968,7908,7850,7788,7709,7559,7395,7232,7111,7006,6901,6824,6749,6690,6653,6635,6615,6614,6603,6632,6609,6470,6173,5744,5119,21.6,21.8,22.2,1568469,0.1,13.3,11.9,5.0,428,-1.00,-1.00,58.6800,-19.331159,0.000633,,,,,170 +SATSLF0720,2024246,14.763948,4.11,0.0576,0.1060,0.0200,0.00,16059,646,1,699,701,709,713,709,710,715,709,714,711,729,725,767,888,1216,1946,3117,4477,5693,6594,7218,7699,8114,8552,9079,9689,10451,11302,12311,13405,14573,15723,16843,17789,18501,18935,19057,18891,18513,17980,17405,16840,16389,16033,15805,15718,15806,16055,16469,17040,17783,18680,19747,20966,22262,23715,25180,26657,28083,29329,30328,31076,31469,31466,31132,30482,29581,28530,27305,26122,24973,23891,22896,22052,21308,20719,20245,19842,19562,19410,19314,19324,19427,19635,19881,20230,20673,21182,21760,22355,23020,23666,24265,24845,25317,25690,25952,26006,25888,25626,25141,24491,23795,22980,22120,21250,20414,19645,18941,18304,17747,17284,16874,16561,16309,16131,16037,15976,16011,16097,16274,16498,16787,17168,17590,18081,18637,19238,19863,20546,21271,22001,22759,23466,24165,24827,25405,25977,26409,26726,26984,27077,27085,26997,26789,26458,26059,25569,25024,24442,23804,23146,22498,21815,21193,20581,20001,19448,18951,18487,18095,17707,17391,17107,16826,16578,16391,16181,15998,15814,15609,15460,15324,15209,15102,15032,14958,14909,14903,14909,14913,14959,14981,15009,15046,15069,15121,15174,15181,15189,15203,15200,15216,15251,15246,15226,15182,15104,15054,14999,14921,14826,14696,14545,14357,14161,13942,13746,13513,13241,12994,12697,12408,12125,11792,11527,11253,11007,10781,10536,10272,9968,9645,9333,9057,8816,8598,8441,8285,8154,8057,7969,7903,7836,7784,7682,7555,7365,7227,7098,6981,6895,6810,6733,6683,6656,6627,6619,6601,6586,6601,6602,6443,6151,5717,5106,21.6,21.8,22.3,1568470,0.1,13.4,12.0,5.0,424,-1.00,-1.00,58.7644,-19.342221,0.000602,,,,,79 +SATSLF0720,2024246,14.764202,4.17,0.0584,0.1061,0.0198,0.00,16057,646,1,705,695,703,711,704,695,722,693,727,725,736,741,773,880,1195,1935,3101,4459,5692,6597,7234,7698,8134,8569,9094,9709,10457,11323,12297,13394,14576,15728,16814,17779,18494,18929,19063,18891,18515,17995,17417,16847,16375,16008,15805,15733,15811,16042,16459,17027,17783,18692,19749,20982,22288,23724,25198,26667,28070,29306,30308,31037,31463,31464,31125,30491,29569,28511,27282,26122,24962,23896,22896,22042,21303,20708,20230,19841,19565,19412,19309,19328,19435,19614,19881,20221,20635,21174,21722,22351,23019,23659,24281,24864,25330,25702,25945,26005,25872,25603,25117,24508,23785,23001,22133,21253,20416,19662,18936,18302,17737,17261,16873,16554,16313,16138,16038,15997,16023,16096,16251,16480,16792,17154,17573,18059,18641,19226,19883,20553,21288,22018,22757,23456,24168,24832,25405,25987,26400,26718,26957,27064,27097,27000,26789,26456,26058,25569,25013,24418,23784,23134,22503,21826,21202,20594,20009,19449,18955,18483,18082,17713,17385,17089,16823,16586,16389,16183,16017,15802,15614,15453,15314,15211,15097,15038,14955,14922,14902,14901,14912,14941,14954,14986,15031,15073,15101,15169,15190,15194,15202,15215,15226,15236,15246,15235,15186,15121,15061,14988,14907,14802,14669,14530,14357,14173,13956,13755,13497,13239,12965,12684,12397,12105,11812,11522,11245,11014,10781,10540,10269,9961,9639,9342,9059,8823,8602,8421,8253,8133,8045,7969,7890,7846,7783,7694,7546,7367,7219,7094,6987,6881,6807,6736,6683,6659,6625,6619,6605,6588,6611,6608,6456,6149,5723,5114,21.6,21.8,22.3,1568471,0.3,13.4,11.9,5.0,435,-1.00,-1.00,58.3764,-19.176165,0.000652,,,,,76 +SATSLF0720,2024246,14.764457,4.10,0.0574,0.1070,0.0204,0.00,16025,646,1,709,702,702,697,714,712,717,711,727,741,730,745,775,887,1219,1946,3113,4470,5668,6593,7222,7684,8094,8535,9036,9671,10419,11289,12258,13376,14541,15688,16789,17729,18440,18890,19005,18832,18449,17927,17351,16789,16341,15978,15767,15686,15752,16011,16421,16982,17728,18655,19701,20913,22232,23658,25120,26585,27993,29248,30229,30981,31381,31389,31060,30422,29504,28456,27243,26077,24909,23842,22858,22002,21257,20651,20183,19788,19514,19360,19271,19294,19394,19570,19842,20189,20612,21125,21691,22306,22969,23612,24210,24800,25277,25646,25898,25961,25830,25552,25082,24437,23737,22941,22076,21213,20366,19609,18917,18254,17699,17235,16825,16525,16274,16096,16006,15958,15978,16065,16240,16459,16750,17121,17554,18037,18598,19201,19825,20504,21237,21982,22708,23418,24113,24773,25358,25921,26342,26661,26903,27005,27018,26921,26723,26400,25997,25522,24958,24375,23732,23085,22458,21780,21173,20562,19966,19413,18929,18449,18042,17683,17342,17061,16791,16549,16348,16153,15986,15776,15607,15444,15300,15191,15093,15020,14941,14897,14893,14880,14884,14906,14927,14960,15001,15031,15077,15147,15164,15173,15173,15173,15192,15219,15221,15205,15147,15090,15042,14976,14883,14793,14665,14509,14335,14146,13936,13714,13476,13213,12950,12660,12375,12083,11780,11509,11236,10991,10761,10529,10263,9957,9625,9313,9022,8778,8585,8409,8279,8146,8042,7973,7897,7846,7783,7681,7534,7365,7209,7086,6971,6871,6787,6737,6664,6638,6616,6599,6594,6580,6603,6607,6454,6149,5723,5111,21.6,21.8,22.3,1568472,0.2,13.3,12.0,5.0,432,-1.00,-1.00,59.1892,-19.473858,0.000589,,,,,32 +SATSDF0720,2024246,15.009138,0.00,0.0000,0.0000,0.0000,0.00,645,0,1,642,642,617,618,629,626,617,626,628,617,625,620,624,611,623,625,633,638,637,640,628,638,653,653,644,643,647,659,646,653,655,652,649,662,645,652,645,645,644,636,646,642,633,648,656,655,644,643,656,661,654,665,658,662,653,647,635,638,647,645,646,650,658,662,662,649,651,649,654,638,647,644,648,650,649,650,650,656,654,653,656,643,645,647,649,649,654,644,657,657,651,655,664,646,661,649,643,639,647,656,644,648,649,640,643,639,656,649,661,661,655,661,661,658,648,649,644,624,647,655,645,663,649,667,644,642,644,641,633,644,638,647,645,661,638,653,658,642,655,657,646,645,642,650,644,658,661,650,659,657,642,660,650,640,651,640,639,629,623,632,635,639,653,637,636,632,638,637,647,651,643,634,646,642,641,645,637,657,628,631,642,648,658,657,651,647,647,640,647,649,647,633,634,634,635,637,636,634,645,652,649,657,645,650,637,648,651,642,654,649,655,645,629,635,647,649,658,649,655,665,657,644,645,632,638,637,637,636,643,651,644,653,649,657,651,644,647,647,647,644,638,643,644,648,646,653,645,643,654,643,637,647,644,631,643,481,0.0,0.0,0.0,1568471,0.6,14.1,0.1,5.0,54,0.00,0.00,0.0000,0.000000,0.000000,,,,,231 +SATSLF0720,2024246,15.009693,4.00,0.0560,0.0996,0.0161,0.00,16242,645,1,685,693,687,705,705,723,722,719,720,716,729,729,765,878,1220,1957,3139,4529,5764,6694,7338,7814,8233,8691,9205,9835,10590,11473,12481,13603,14807,15973,17104,18061,18800,19241,19385,19190,18798,18259,17652,17097,16608,16259,16029,15979,16058,16296,16722,17298,18057,18949,20019,21255,22595,24038,25539,27040,28467,29744,30758,31497,31912,31901,31580,30919,29998,28929,27675,26491,25319,24243,23219,22350,21628,21017,20521,20128,19830,19675,19588,19601,19692,19876,20141,20481,20932,21445,22022,22656,23325,23950,24590,25159,25642,26000,26263,26309,26189,25901,25427,24804,24068,23261,22370,21511,20653,19889,19173,18507,17933,17474,17045,16730,16473,16307,16212,16158,16180,16273,16431,16680,16965,17337,17766,18252,18837,19445,20080,20771,21505,22244,22997,23717,24437,25089,25693,26274,26688,27024,27265,27367,27378,27290,27072,26740,26351,25856,25277,24690,24044,23394,22727,22053,21420,20803,20200,19645,19145,18672,18257,17898,17576,17270,16999,16761,16565,16341,16163,15959,15787,15617,15460,15351,15254,15163,15096,15065,15025,15044,15043,15069,15090,15133,15158,15202,15240,15300,15314,15337,15333,15333,15349,15369,15365,15357,15304,15256,15182,15113,15031,14935,14811,14667,14480,14297,14066,13850,13616,13329,13067,12793,12489,12213,11920,11637,11358,11108,10853,10622,10336,10043,9704,9395,9126,8873,8669,8502,8338,8199,8111,8006,7955,7902,7833,7763,7596,7437,7269,7134,7042,6931,6869,6793,6738,6704,6676,6657,6643,6632,6657,6638,6503,6188,5757,5142,21.6,21.5,21.8,1568472,0.5,13.6,12.0,5.0,537,-1.00,-1.00,57.6744,-19.146436,0.000584,,,,,38 +SATSLF0720,2024246,15.009875,4.02,0.0564,0.0999,0.0156,0.00,16241,645,1,688,701,705,701,708,685,701,705,705,731,717,724,745,875,1218,1960,3138,4517,5757,6682,7330,7810,8239,8683,9227,9859,10598,11490,12488,13607,14800,15970,17090,18067,18789,19217,19357,19165,18782,18250,17653,17084,16627,16253,16027,15960,16049,16289,16697,17283,18032,18952,20011,21264,22595,24063,25553,27040,28471,29735,30753,31501,31915,31917,31593,30926,30007,28933,27696,26505,25333,24247,23227,22352,21616,20997,20512,20125,19848,19680,19576,19589,19700,19881,20149,20496,20934,21457,22026,22642,23316,23948,24578,25162,25641,26008,26281,26308,26184,25915,25424,24777,24055,23251,22376,21489,20648,19861,19173,18484,17927,17467,17061,16732,16477,16313,16200,16155,16185,16279,16437,16667,16963,17331,17769,18266,18835,19453,20105,20785,21506,22265,23003,23721,24433,25101,25682,26259,26692,27026,27282,27364,27387,27289,27075,26738,26346,25850,25274,24688,24062,23390,22732,22058,21403,20776,20207,19648,19152,18683,18280,17897,17574,17269,16987,16762,16555,16337,16155,15954,15781,15612,15462,15353,15241,15169,15101,15061,15038,15044,15037,15058,15084,15125,15166,15201,15243,15303,15314,15317,15335,15330,15361,15384,15369,15362,15303,15241,15200,15125,15031,14942,14801,14645,14485,14284,14068,13856,13605,13338,13075,12793,12491,12214,11909,11633,11341,11095,10848,10613,10349,10036,9718,9406,9117,8887,8676,8486,8335,8203,8102,8023,7941,7901,7842,7741,7595,7443,7273,7153,7025,6931,6845,6774,6738,6701,6677,6672,6645,6639,6655,6645,6487,6185,5767,5131,21.5,21.6,21.9,1568473,0.3,13.5,12.0,5.0,450,-1.00,-1.00,58.1400,-19.345579,0.000564,,,,,111 +SATSLF0720,2024246,15.010130,3.94,0.0551,0.1004,0.0159,0.00,16217,645,1,701,689,706,697,702,713,709,715,729,712,729,730,763,875,1196,1955,3140,4514,5757,6683,7331,7797,8217,8663,9185,9807,10571,11445,12437,13568,14760,15930,17062,18022,18747,19199,19314,19117,18759,18211,17625,17058,16586,16215,15994,15924,16005,16257,16657,17251,17998,18906,19989,21211,22533,23997,25486,26974,28407,29683,30685,31437,31848,31858,31513,30860,29931,28870,27628,26448,25270,24203,23181,22312,21585,20968,20496,20101,19799,19632,19555,19557,19671,19850,20109,20462,20877,21397,21982,22585,23271,23937,24549,25127,25600,25961,26235,26282,26150,25877,25402,24750,24034,23232,22353,21472,20605,19837,19136,18471,17901,17434,17024,16701,16451,16285,16175,16134,16162,16250,16420,16657,16942,17313,17741,18225,18801,19406,20050,20754,21490,22236,22985,23699,24403,25067,25655,26224,26660,26982,27222,27324,27346,27244,27024,26711,26309,25815,25248,24650,24013,23355,22701,22037,21380,20773,20168,19625,19125,18663,18243,17879,17542,17253,16978,16734,16532,16324,16133,15930,15761,15582,15444,15331,15233,15149,15088,15044,15019,15018,15026,15049,15083,15114,15163,15184,15234,15296,15302,15313,15316,15323,15337,15360,15351,15355,15301,15238,15189,15102,15037,14929,14786,14619,14453,14272,14056,13834,13609,13333,13073,12773,12496,12183,11887,11598,11325,11061,10839,10606,10341,10037,9718,9406,9128,8876,8660,8494,8329,8200,8096,8023,7957,7903,7842,7741,7593,7413,7265,7132,7015,6924,6852,6789,6726,6693,6654,6650,6631,6637,6645,6651,6489,6186,5756,5141,21.6,21.6,22.0,1568474,0.2,13.6,12.0,5.0,437,-1.00,-1.00,58.4117,-19.416756,0.000579,,,,,163 +SATSLF0720,2024246,15.010382,4.22,0.0591,0.1015,0.0164,0.00,16194,645,1,695,719,696,715,706,713,723,721,727,729,738,727,767,895,1221,1962,3139,4514,5738,6659,7293,7789,8201,8659,9179,9806,10563,11433,12423,13541,14718,15883,16997,17964,18696,19144,19253,19072,18697,18164,17585,17012,16540,16181,15960,15886,15965,16221,16640,17216,17969,18888,19957,21170,22505,23961,25453,26944,28361,29628,30624,31377,31769,31782,31450,30795,29872,28816,27569,26377,25218,24146,23130,22290,21530,20933,20435,20066,19766,19613,19505,19514,19635,19815,20080,20437,20860,21388,21952,22569,23234,23892,24493,25085,25556,25921,26184,26234,26109,25831,25341,24705,23994,23181,22311,21426,20578,19811,19105,18466,17879,17399,16999,16666,16434,16265,16160,16111,16128,16215,16397,16625,16922,17293,17714,18206,18784,19386,20035,20721,21446,22199,22925,23646,24360,25026,25639,26192,26617,26944,27186,27280,27305,27205,26994,26661,26254,25783,25200,24618,23974,23323,22668,22005,21362,20750,20161,19614,19110,18632,18228,17849,17509,17235,16965,16721,16530,16322,16125,15926,15744,15568,15432,15321,15223,15149,15072,15037,15006,15011,15020,15028,15070,15098,15131,15173,15214,15269,15273,15291,15286,15296,15317,15338,15337,15346,15298,15233,15173,15107,15014,14920,14770,14613,14445,14263,14054,13833,13590,13333,13057,12769,12467,12187,11902,11606,11333,11077,10834,10599,10337,10029,9696,9394,9103,8853,8643,8474,8325,8192,8093,8012,7946,7901,7831,7747,7601,7416,7281,7141,7037,6935,6855,6784,6729,6672,6665,6642,6638,6625,6648,6631,6483,6193,5748,5121,21.6,21.6,22.0,1568475,0.2,13.5,12.0,5.0,427,-1.00,-1.00,57.7150,-19.091036,0.000616,,,,,108 +SATSLF0720,2024246,15.010642,4.04,0.0566,0.1016,0.0168,0.00,16188,645,1,701,697,700,711,711,711,709,715,727,723,727,736,773,888,1213,1946,3120,4502,5729,6637,7297,7769,8193,8633,9164,9805,10537,11416,12421,13536,14718,15889,16999,17967,18673,19124,19264,19080,18708,18173,17569,17005,16535,16177,15954,15888,15969,16205,16619,17201,17957,18875,19954,21162,22477,23928,25432,26922,28342,29597,30609,31365,31746,31753,31440,30791,29861,28802,27565,26373,25211,24130,23126,22271,21520,20907,20429,20032,19750,19589,19501,19497,19597,19796,20052,20401,20839,21369,21948,22561,23237,23901,24504,25074,25549,25893,26180,26213,26104,25830,25339,24717,23982,23177,22315,21441,20588,19809,19104,18442,17884,17405,16983,16667,16407,16262,16145,16094,16128,16231,16405,16632,16929,17296,17720,18222,18779,19384,20021,20705,21434,22183,22937,23648,24353,25019,25600,26179,26610,26909,27178,27281,27291,27201,26986,26681,26272,25788,25197,24608,23970,23307,22670,21983,21347,20749,20164,19601,19105,18625,18217,17847,17505,17212,16949,16710,16510,16301,16118,15931,15745,15589,15437,15316,15218,15137,15061,15019,14996,15001,15021,15041,15062,15100,15149,15165,15218,15282,15290,15287,15299,15302,15323,15337,15336,15330,15277,15217,15159,15093,15009,14917,14774,14622,14437,14264,14034,13815,13572,13322,13062,12777,12474,12178,11885,11593,11329,11074,10837,10602,10318,10018,9706,9387,9100,8864,8662,8481,8329,8197,8110,8021,7959,7905,7843,7737,7611,7408,7259,7133,7021,6908,6847,6766,6724,6676,6660,6649,6630,6633,6642,6645,6490,6195,5765,5139,21.6,21.6,22.1,1568476,0.2,13.5,11.9,5.0,436,-1.00,-1.00,58.2439,-19.301031,0.000572,,,,,138 +SATSLF0720,2024246,15.010898,3.91,0.0547,0.1025,0.0178,0.00,16149,645,1,697,691,698,690,700,705,714,715,716,718,723,741,771,895,1229,1960,3134,4493,5732,6629,7271,7748,8167,8633,9141,9776,10513,11386,12388,13504,14693,15843,16965,17917,18644,19068,19229,19045,18661,18119,17524,16949,16484,16123,15915,15852,15925,16173,16574,17151,17907,18819,19881,21099,22413,23872,25355,26858,28281,29521,30523,31273,31685,31687,31357,30718,29798,28727,27503,26317,25152,24075,23062,22205,21480,20860,20373,19994,19707,19543,19462,19465,19565,19742,19996,20357,20788,21323,21882,22500,23170,23815,24418,25004,25465,25838,26099,26161,26048,25760,25281,24641,23918,23122,22250,21385,20528,19750,19037,18395,17837,17356,16953,16640,16393,16219,16136,16080,16097,16199,16365,16577,16868,17242,17664,18159,18731,19355,19965,20666,21393,22138,22892,23576,24297,24954,25534,26122,26547,26871,27115,27221,27222,27127,26929,26601,26218,25721,25128,24531,23907,23261,22602,21943,21317,20717,20113,19553,19065,18584,18178,17805,17476,17193,16912,16678,16483,16277,16080,15879,15701,15520,15392,15266,15168,15111,15013,14979,14971,14970,14978,15010,15037,15057,15105,15137,15177,15227,15245,15245,15255,15283,15293,15317,15308,15298,15248,15192,15125,15055,14965,14859,14741,14581,14398,14219,14002,13810,13553,13287,13033,12746,12443,12172,11863,11582,11297,11069,10812,10583,10319,10005,9687,9364,9094,8841,8636,8465,8312,8166,8074,7996,7925,7890,7819,7734,7593,7411,7244,7109,6997,6908,6830,6760,6715,6677,6659,6653,6634,6613,6617,6621,6470,6170,5753,5138,21.6,21.6,22.1,1568477,0.5,13.5,12.0,5.0,437,-1.00,-1.00,59.0311,-19.583475,0.000597,,,,,227 +SATSLF0720,2024246,15.011150,4.13,0.0579,0.1027,0.0175,0.00,16153,645,1,698,695,696,705,709,698,708,705,712,720,729,725,767,880,1211,1942,3117,4477,5698,6619,7259,7747,8166,8615,9136,9753,10506,11392,12380,13490,14670,15841,16949,17905,18621,19067,19181,19008,18632,18110,17502,16941,16484,16129,15906,15817,15910,16161,16578,17153,17898,18814,19872,21108,22432,23890,25373,26856,28281,29526,30529,31264,31683,31685,31351,30701,29792,28730,27493,26305,25138,24058,23063,22205,21485,20874,20392,19995,19713,19540,19452,19468,19552,19754,20022,20369,20810,21333,21898,22513,23175,23826,24436,25009,25491,25850,26117,26161,26066,25770,25277,24656,23925,23131,22258,21381,20535,19757,19062,18402,17846,17380,16964,16644,16403,16237,16121,16070,16097,16197,16345,16596,16890,17277,17692,18177,18752,19346,19988,20670,21406,22154,22882,23605,24321,24988,25577,26144,26570,26891,27131,27228,27248,27159,26946,26617,26217,25721,25140,24567,23936,23281,22626,21963,21315,20711,20114,19541,19061,18583,18177,17815,17482,17187,16939,16688,16480,16277,16094,15892,15715,15529,15407,15293,15202,15115,15040,14996,14974,14967,14969,14995,15031,15058,15096,15129,15181,15232,15245,15271,15293,15277,15293,15326,15315,15304,15257,15178,15137,15063,14974,14878,14743,14609,14437,14245,14043,13822,13577,13312,13037,12753,12449,12158,11868,11592,11305,11063,10817,10581,10317,10007,9684,9365,9074,8830,8629,8456,8310,8181,8087,7992,7935,7883,7814,7738,7573,7416,7265,7123,7023,6913,6824,6761,6721,6679,6654,6635,6621,6610,6633,6637,6482,6167,5762,5129,21.6,21.6,22.1,1568478,0.3,13.5,12.0,5.0,438,-1.00,-1.00,58.6228,-19.412871,0.000645,,,,,29 +SATSLF0720,2024246,15.011406,4.20,0.0588,0.1031,0.0175,0.00,16155,645,1,708,701,702,719,722,709,715,717,704,711,709,719,765,877,1225,1964,3132,4493,5715,6631,7279,7760,8177,8628,9146,9755,10507,11379,12385,13493,14691,15842,16944,17922,18625,19066,19204,19026,18645,18114,17518,16965,16497,16133,15902,15849,15925,16169,16588,17178,17916,18826,19904,21106,22434,23883,25353,26855,28266,29528,30522,31297,31689,31688,31360,30707,29786,28733,27488,26301,25145,24069,23062,22207,21479,20861,20388,19988,19708,19561,19438,19466,19563,19769,20028,20362,20802,21322,21877,22498,23161,23819,24430,25011,25494,25861,26138,26183,26058,25778,25290,24648,23927,23133,22261,21386,20553,19766,19048,18407,17834,17376,16968,16659,16416,16240,16135,16075,16097,16199,16358,16570,16871,17238,17685,18174,18742,19350,19984,20668,21394,22144,22900,23613,24325,24981,25577,26145,26573,26885,27106,27223,27251,27146,26949,26601,26213,25713,25145,24559,23925,23273,22624,21958,21336,20706,20125,19557,19064,18587,18176,17808,17480,17203,16922,16688,16480,16277,16087,15899,15701,15545,15384,15285,15178,15107,15042,15003,14990,14992,14994,15002,15028,15065,15108,15134,15172,15233,15243,15271,15288,15290,15306,15341,15330,15322,15266,15200,15137,15057,14977,14882,14760,14597,14427,14237,14022,13811,13581,13298,13035,12759,12439,12167,11859,11565,11305,11047,10821,10586,10323,10014,9703,9392,9101,8861,8647,8472,8313,8182,8077,8005,7931,7870,7824,7717,7575,7405,7251,7109,7008,6915,6834,6774,6706,6658,6635,6643,6619,6633,6633,6638,6474,6183,5742,5121,21.6,21.6,22.1,1568479,0.3,13.4,12.0,5.0,431,-1.00,-1.00,57.9481,-19.132804,0.000570,,,,,44 +SATSLF0720,2024246,15.011660,4.15,0.0581,0.1029,0.0174,0.00,16165,645,1,710,722,717,719,717,717,716,717,729,728,726,739,772,903,1230,1959,3131,4503,5733,6649,7294,7761,8185,8630,9150,9789,10524,11404,12397,13514,14697,15842,16968,17926,18643,19073,19207,19031,18672,18121,17543,16980,16521,16148,15918,15853,15928,16175,16593,17169,17925,18829,19904,21126,22444,23897,25395,26864,28289,29549,30549,31301,31688,31696,31371,30722,29810,28754,27514,26326,25162,24075,23083,22221,21477,20883,20387,20003,19722,19554,19447,19458,19569,19752,20035,20379,20816,21335,21894,22527,23181,23837,24449,25013,25511,25881,26137,26185,26061,25774,25297,24658,23949,23137,22260,21395,20557,19785,19089,18429,17874,17401,16981,16665,16417,16245,16141,16082,16099,16199,16375,16595,16901,17265,17693,18183,18749,19355,20000,20680,21408,22151,22889,23605,24318,24992,25581,26135,26567,26893,27143,27249,27252,27174,26948,26626,26209,25730,25154,24571,23936,23285,22627,21959,21320,20699,20123,19565,19078,18605,18189,17840,17489,17206,16925,16692,16477,16298,16105,15913,15717,15548,15403,15293,15201,15115,15051,15002,14994,14985,14985,15009,15034,15069,15112,15151,15209,15243,15267,15275,15274,15272,15309,15313,15319,15324,15275,15205,15140,15066,14985,14881,14764,14589,14427,14238,14032,13825,13573,13314,13050,12761,12471,12169,11869,11586,11313,11066,10825,10601,10330,10014,9685,9379,9101,8862,8640,8487,8333,8198,8101,8016,7944,7872,7815,7724,7587,7410,7262,7130,7032,6928,6838,6767,6722,6688,6656,6643,6635,6629,6649,6646,6480,6183,5753,5129,21.6,21.6,22.1,1568480,0.3,13.4,11.9,5.0,435,-1.00,-1.00,58.1150,-19.213269,0.000553,,,,,31 +SATSLF0720,2024246,15.011912,4.20,0.0588,0.1034,0.0178,0.00,16132,645,1,698,695,704,705,710,715,731,727,735,729,740,741,774,890,1216,1949,3114,4481,5697,6620,7248,7734,8170,8612,9129,9746,10489,11357,12343,13454,14631,15816,16909,17856,18578,19011,19143,18968,18583,18067,17469,16918,16464,16097,15869,15813,15880,16127,16538,17111,17862,18769,19836,21056,22372,23819,25296,26782,28210,29466,30464,31213,31607,31614,31293,30632,29718,28661,27415,26233,25086,24005,23021,22176,21427,20828,20338,19953,19654,19495,19423,19421,19528,19712,19985,20336,20761,21288,21846,22459,23127,23787,24388,24972,25441,25819,26072,26124,26007,25730,25251,24628,23893,23089,22209,21351,20507,19737,19021,18375,17821,17349,16940,16619,16384,16210,16117,16059,16083,16174,16338,16553,16855,17229,17659,18154,18720,19333,19978,20660,21390,22133,22874,23590,24301,24955,25537,26106,26521,26841,27088,27201,27216,27128,26906,26569,26178,25694,25125,24542,23897,23261,22586,21925,21281,20676,20091,19528,19050,18566,18156,17796,17465,17181,16912,16681,16458,16267,16085,15887,15691,15518,15388,15253,15163,15090,15027,14981,14979,14962,14981,15011,15029,15065,15106,15122,15171,15225,15223,15255,15265,15275,15298,15325,15328,15323,15261,15189,15128,15051,14965,14867,14738,14600,14409,14225,14018,13801,13557,13306,13037,12761,12453,12170,11856,11573,11297,11049,10813,10573,10312,10010,9686,9374,9086,8854,8621,8449,8303,8171,8087,8003,7937,7881,7805,7731,7580,7410,7257,7123,7011,6912,6841,6779,6720,6689,6661,6655,6628,6616,6644,6629,6476,6173,5743,5118,21.6,21.6,22.2,1568481,0.3,13.4,12.0,5.0,434,-1.00,-1.00,58.3024,-19.234912,0.000605,,,,,100 +SATSLF0720,2024246,15.012168,4.21,0.0589,0.1041,0.0185,0.00,16119,645,1,693,685,699,697,705,707,706,715,710,727,715,715,759,878,1202,1943,3106,4473,5701,6617,7251,7735,8162,8597,9122,9744,10491,11353,12348,13467,14626,15794,16897,17856,18578,19024,19146,18977,18593,18073,17480,16917,16443,16087,15860,15797,15878,16147,16549,17120,17857,18765,19835,21047,22380,23828,25302,26795,28201,29448,30445,31204,31589,31595,31249,30609,29690,28634,27410,26241,25101,24016,23013,22152,21433,20808,20332,19938,19664,19488,19393,19402,19505,19689,19969,20314,20753,21281,21848,22477,23124,23767,24386,24956,25431,25795,26053,26117,25993,25728,25242,24604,23877,23072,22210,21344,20488,19725,19005,18373,17813,17336,16937,16618,16374,16197,16097,16049,16069,16161,16326,16541,16837,17208,17638,18134,18711,19319,19964,20633,21369,22105,22864,23568,24265,24928,25521,26068,26498,26827,27075,27181,27192,27089,26867,26552,26165,25680,25110,24531,23892,23223,22583,21909,21291,20685,20088,19521,19019,18548,18138,17788,17449,17153,16891,16654,16456,16250,16046,15869,15692,15504,15386,15257,15156,15081,15003,14967,14948,14947,14958,14985,15016,15045,15077,15117,15174,15226,15220,15239,15242,15243,15271,15275,15299,15286,15239,15165,15103,15034,14970,14866,14727,14565,14401,14217,14010,13786,13541,13273,13022,12729,12445,12144,11854,11565,11277,11041,10802,10555,10291,9991,9670,9363,9076,8832,8625,8454,8301,8167,8070,7985,7909,7846,7805,7710,7573,7394,7249,7105,7001,6895,6821,6758,6697,6675,6642,6626,6621,6607,6625,6625,6465,6174,5738,5115,21.6,21.6,22.2,1568482,0.4,13.3,11.9,5.0,436,-1.00,-1.00,57.9503,-19.080299,0.000609,,,,,22 +SATSLF0720,2024246,15.012422,4.24,0.0593,0.1036,0.0182,0.00,16125,645,1,701,695,705,703,707,699,709,716,721,713,727,742,769,897,1221,1955,3116,4469,5700,6637,7257,7727,8146,8614,9121,9755,10505,11365,12366,13474,14668,15817,16928,17875,18590,19024,19165,18987,18601,18058,17480,16915,16452,16100,15882,15824,15895,16144,16544,17124,17880,18780,19852,21082,22397,23838,25307,26797,28214,29463,30484,31208,31613,31621,31285,30655,29725,28653,27433,26263,25092,24020,23012,22167,21425,20816,20331,19966,19668,19512,19415,19433,19518,19715,19981,20329,20752,21287,21832,22454,23122,23774,24386,24969,25433,25805,26077,26122,26004,25720,25239,24593,23869,23073,22214,21335,20502,19737,19037,18379,17822,17353,16928,16626,16360,16201,16079,16055,16077,16170,16338,16564,16865,17229,17649,18151,18709,19318,19954,20641,21365,22101,22841,23569,24278,24918,25521,26087,26518,26838,27083,27195,27210,27112,26893,26565,26170,25674,25114,24515,23890,23241,22585,21921,21298,20669,20080,19506,19021,18554,18155,17783,17470,17171,16890,16655,16455,16256,16058,15869,15674,15513,15387,15258,15165,15099,15023,14962,14963,14957,14958,14971,15007,15056,15093,15120,15184,15217,15221,15227,15243,15239,15261,15287,15283,15286,15234,15163,15112,15046,14954,14851,14725,14574,14397,14206,13999,13797,13553,13288,13023,12738,12441,12156,11844,11564,11296,11047,10813,10562,10294,10002,9687,9381,9082,8838,8619,8451,8293,8163,8075,7984,7923,7874,7800,7713,7563,7393,7239,7111,6998,6893,6812,6751,6693,6649,6638,6625,6611,6605,6628,6626,6485,6162,5738,5123,21.6,21.7,22.2,1568483,0.2,13.4,11.9,5.0,437,-1.00,-1.00,58.0317,-19.129735,0.000579,,,,,53 +SATSLF0720,2024246,15.012674,4.04,0.0566,0.1051,0.0185,0.00,16086,645,1,702,702,710,689,707,705,704,720,713,717,732,743,772,887,1218,1945,3097,4466,5676,6597,7229,7699,8126,8565,9090,9708,10462,11326,12306,13415,14585,15741,16851,17797,18517,18955,19083,18909,18529,18000,17424,16856,16404,16030,15811,15749,15817,16075,16477,17053,17789,18698,19770,20997,22300,23741,25235,26714,28140,29378,30365,31120,31512,31515,31195,30537,29632,28567,27345,26173,25012,23940,22955,22094,21371,20752,20278,19897,19606,19457,19351,19381,19472,19657,19924,20263,20707,21222,21787,22406,23069,23725,24325,24896,25382,25732,25997,26062,25936,25667,25181,24553,23825,23026,22167,21298,20442,19686,18992,18330,17766,17314,16901,16597,16347,16166,16083,16021,16041,16135,16297,16517,16817,17184,17605,18093,18672,19277,19901,20586,21317,22055,22813,23497,24211,24866,25458,26041,26457,26781,27025,27148,27137,27035,26820,26501,26102,25621,25057,24469,23831,23189,22529,21865,21245,20632,20045,19479,18999,18525,18125,17755,17421,17138,16877,16634,16428,16215,16039,15837,15643,15484,15342,15223,15125,15068,14972,14944,14932,14933,14921,14967,14997,15018,15072,15092,15145,15200,15213,15204,15223,15233,15252,15268,15275,15264,15208,15147,15103,15006,14935,14821,14704,14547,14380,14186,13988,13768,13525,13270,13005,12721,12420,12135,11824,11547,11277,11033,10786,10552,10285,9977,9656,9350,9073,8821,8630,8445,8290,8155,8066,7992,7913,7865,7798,7707,7562,7378,7233,7098,6987,6886,6810,6737,6693,6659,6641,6631,6613,6611,6631,6624,6459,6157,5737,5117,21.6,21.7,22.2,1568483,0.3,13.3,11.9,5.0,435,-1.00,-1.00,59.3241,-19.606113,0.000672,,,,,122 +SATSLF0720,2024246,15.012930,4.10,0.0575,0.1049,0.0187,0.00,16087,645,1,707,695,704,699,705,707,713,724,728,731,735,732,774,888,1224,1963,3105,4467,5691,6607,7261,7713,8129,8582,9096,9710,10453,11328,12308,13431,14595,15749,16865,17834,18534,18962,19104,18923,18553,18021,17431,16874,16407,16037,15817,15742,15832,16085,16487,17062,17819,18732,19796,21002,22330,23756,25237,26720,28130,29370,30363,31108,31509,31516,31196,30542,29641,28562,27355,26181,25005,23936,22945,22087,21345,20742,20266,19883,19611,19461,19360,19369,19467,19640,19906,20257,20683,21213,21765,22408,23076,23709,24325,24897,25372,25735,25992,26036,25930,25649,25170,24520,23806,23018,22151,21277,20449,19676,18970,18324,17771,17323,16908,16589,16333,16157,16056,16011,16032,16125,16289,16509,16810,17182,17623,18098,18671,19288,19908,20585,21313,22051,22792,23492,24195,24874,25453,26027,26464,26789,27044,27115,27132,27041,26817,26510,26119,25622,25061,24469,23826,23175,22520,21869,21233,20627,20021,19477,18982,18520,18115,17751,17434,17126,16887,16630,16438,16217,16035,15844,15644,15479,15331,15232,15138,15064,14990,14954,14925,14937,14939,14947,14977,15022,15066,15096,15147,15183,15223,15238,15225,15244,15252,15265,15259,15264,15221,15145,15095,15028,14930,14845,14701,14558,14382,14196,13979,13769,13540,13261,12996,12709,12422,12116,11831,11543,11265,11035,10788,10564,10281,9983,9680,9352,9081,8816,8623,8442,8299,8163,8061,7981,7922,7866,7805,7714,7577,7386,7230,7101,6985,6883,6801,6735,6674,6645,6637,6617,6627,6616,6622,6633,6475,6172,5737,5120,21.6,21.8,22.2,1568484,0.3,13.3,12.0,5.0,429,-1.00,-1.00,58.7284,-19.360876,0.000624,,,,,156 +SATSLF0720,2024246,15.013185,4.28,0.0600,0.1042,0.0186,0.00,16109,645,1,697,705,695,714,715,715,725,733,729,725,721,733,771,890,1217,1941,3119,4473,5704,6608,7257,7729,8155,8600,9115,9753,10503,11369,12349,13476,14635,15799,16901,17854,18580,18997,19153,18968,18592,18069,17485,16904,16464,16093,15865,15799,15881,16124,16537,17120,17872,18776,19837,21053,22371,23810,25291,26770,28186,29421,30427,31181,31589,31581,31250,30603,29693,28649,27396,26209,25048,23981,22979,22128,21397,20782,20321,19936,19649,19488,19388,19410,19493,19693,19963,20306,20734,21259,21825,22442,23109,23737,24368,24938,25403,25782,26043,26094,25970,25687,25211,24580,23853,23067,22198,21316,20471,19715,19004,18336,17792,17332,16914,16613,16358,16181,16082,16037,16060,16140,16323,16536,16840,17217,17642,18113,18691,19300,19918,20620,21337,22077,22816,23533,24241,24905,25484,26057,26475,26803,27033,27149,27172,27075,26866,26534,26149,25641,25078,24485,23851,23194,22549,21881,21252,20641,20055,19501,19017,18543,18137,17778,17442,17144,16883,16647,16438,16223,16041,15840,15666,15485,15351,15236,15141,15074,14988,14955,14930,14930,14919,14966,14989,15033,15069,15106,15154,15208,15219,15225,15233,15250,15254,15275,15275,15273,15221,15157,15099,15033,14949,14847,14714,14565,14393,14201,13985,13767,13528,13262,12990,12720,12424,12149,11844,11579,11294,11032,10807,10554,10287,9985,9659,9357,9060,8837,8618,8447,8299,8157,8065,7990,7913,7862,7785,7703,7554,7391,7232,7109,6988,6896,6816,6755,6692,6656,6653,6613,6611,6602,6627,6614,6465,6178,5738,5123,21.6,21.8,22.2,1568485,0.3,13.3,12.0,5.0,436,-1.00,-1.00,57.5324,-18.899831,0.000550,,,,,39 +SATSLF0720,2024246,15.013437,4.08,0.0571,0.1050,0.0189,0.00,16078,645,1,711,706,697,691,695,711,698,715,722,715,721,727,779,893,1227,1941,3105,4453,5671,6586,7233,7687,8128,8565,9089,9703,10452,11330,12318,13442,14610,15757,16874,17814,18538,18968,19111,18921,18533,18021,17408,16867,16416,16055,15829,15758,15835,16073,16481,17064,17799,18705,19767,20984,22308,23758,25239,26717,28133,29362,30365,31095,31515,31497,31181,30525,29622,28562,27328,26165,25008,23945,22932,22080,21355,20749,20257,19883,19610,19435,19355,19362,19464,19645,19916,20245,20683,21202,21747,22378,23046,23682,24319,24889,25366,25732,25988,26042,25939,25655,25175,24536,23821,23033,22155,21280,20414,19665,18964,18308,17766,17285,16884,16578,16332,16173,16058,16024,16030,16127,16292,16496,16803,17168,17601,18087,18666,19269,19897,20568,21303,22025,22785,23484,24192,24864,25438,26011,26448,26752,26989,27099,27115,27026,26808,26497,26101,25609,25042,24454,23812,23174,22517,21861,21229,20604,20027,19464,18978,18499,18098,17725,17400,17127,16848,16610,16392,16201,16031,15842,15658,15498,15343,15238,15137,15041,14973,14929,14913,14906,14921,14951,14977,15012,15053,15092,15138,15193,15192,15209,15212,15206,15243,15254,15255,15250,15211,15137,15090,15020,14925,14823,14689,14545,14366,14177,13980,13761,13497,13243,12990,12696,12407,12104,11815,11524,11267,11023,10801,10565,10281,9975,9659,9355,9071,8834,8613,8429,8271,8144,8045,7974,7897,7851,7787,7703,7563,7387,7234,7101,6995,6892,6804,6731,6683,6635,6615,6617,6593,6593,6620,6618,6451,6152,5715,5102,21.6,21.8,22.3,1568486,0.4,13.3,11.9,5.0,438,-1.00,-1.00,58.6464,-19.318503,0.000652,,,,,82 +SATSLF0720,2024246,15.013692,4.28,0.0599,0.1053,0.0192,0.00,16066,645,1,701,696,710,703,714,705,709,709,733,733,733,737,771,895,1219,1947,3101,4450,5668,6580,7220,7686,8118,8553,9086,9705,10441,11289,12295,13392,14569,15717,16824,17785,18497,18933,19048,18871,18504,17956,17387,16829,16370,16013,15785,15718,15819,16057,16472,17045,17785,18689,19763,20960,22280,23738,25206,26673,28081,29328,30313,31076,31453,31473,31156,30498,29593,28538,27302,26121,24967,23898,22891,22036,21314,20721,20236,19851,19581,19439,19340,19346,19434,19638,19882,20227,20662,21187,21739,22352,23031,23689,24292,24848,25355,25717,25977,26034,25917,25642,25168,24521,23784,23007,22130,21267,20428,19668,18945,18308,17741,17282,16881,16562,16327,16157,16053,16013,16019,16113,16265,16482,16803,17165,17590,18091,18647,19259,19893,20573,21285,22044,22772,23490,24190,24853,25443,26005,26426,26756,26982,27097,27127,27018,26804,26489,26093,25593,25024,24437,23804,23149,22500,21829,21205,20586,20010,19454,18966,18510,18101,17730,17407,17118,16859,16601,16417,16193,16002,15813,15630,15473,15339,15222,15132,15047,14979,14929,14915,14906,14916,14929,14960,15009,15041,15076,15133,15177,15210,15201,15212,15210,15237,15256,15249,15240,15187,15137,15081,15013,14912,14827,14710,14545,14384,14196,13980,13747,13513,13252,12977,12682,12390,12112,11812,11535,11268,11016,10770,10543,10281,9978,9653,9322,9047,8798,8604,8436,8283,8149,8042,7969,7907,7849,7786,7697,7573,7377,7237,7094,6983,6873,6785,6727,6669,6656,6630,6614,6598,6593,6617,6606,6449,6142,5711,5095,21.6,21.8,22.3,1568487,0.0,13.3,11.9,5.0,429,-1.00,-1.00,58.5384,-19.253851,0.000641,,,,,87 +SATSLF0720,2024246,15.013947,4.20,0.0588,0.1057,0.0185,0.00,16077,645,1,699,715,716,717,723,725,727,713,735,728,727,733,773,895,1217,1941,3096,4455,5694,6599,7237,7710,8121,8574,9085,9711,10441,11320,12312,13417,14578,15731,16843,17797,18514,18951,19076,18901,18521,17989,17401,16843,16384,16035,15805,15739,15815,16067,16474,17069,17789,18698,19771,20989,22297,23735,25201,26677,28099,29337,30341,31076,31488,31481,31152,30517,29602,28541,27314,26128,24968,23901,22910,22064,21348,20733,20263,19873,19593,19425,19323,19348,19445,19645,19897,20247,20682,21194,21758,22379,23049,23706,24297,24873,25382,25729,25985,26026,25914,25650,25157,24527,23803,23011,22135,21295,20433,19672,18965,18329,17776,17293,16891,16581,16330,16168,16052,16008,16033,16126,16281,16516,16797,17175,17586,18091,18665,19265,19911,20596,21313,22061,22789,23504,24209,24872,25450,26005,26433,26757,27014,27093,27122,27019,26807,26499,26086,25600,25040,24457,23821,23172,22539,21860,21237,20635,20021,19472,18976,18509,18122,17741,17413,17138,16845,16616,16409,16201,16020,15833,15651,15493,15354,15242,15140,15065,14978,14933,14922,14929,14944,14965,14971,15027,15062,15089,15137,15184,15195,15198,15227,15216,15234,15261,15272,15262,15213,15161,15104,15030,14939,14832,14694,14533,14369,14173,13973,13773,13536,13277,13003,12730,12425,12139,11831,11549,11270,11020,10761,10535,10285,9977,9657,9367,9077,8819,8619,8445,8280,8152,8054,7975,7925,7870,7804,7706,7565,7394,7228,7103,6995,6893,6807,6741,6695,6650,6629,6609,6602,6594,6617,6602,6453,6169,5743,5121,21.7,21.8,22.3,1568488,0.2,13.3,12.0,5.0,434,-1.00,-1.00,58.4112,-19.206970,0.000624,,,,,108 +SATSLF0720,2024246,15.014199,4.32,0.0605,0.1065,0.0193,0.00,16045,645,1,699,699,698,709,709,714,721,721,725,727,728,745,778,885,1222,1941,3096,4452,5662,6580,7202,7691,8081,8535,9042,9677,10410,11272,12269,13367,14532,15675,16775,17724,18433,18869,18999,18826,18457,17927,17339,16791,16329,15976,15746,15691,15773,16014,16417,16998,17742,18660,19709,20916,22230,23667,25131,26618,28009,29255,30247,30987,31377,31385,31061,30405,29509,28458,27229,26077,24901,23844,22842,21982,21282,20661,20205,19818,19533,19390,19290,19310,19404,19593,19857,20205,20633,21145,21717,22330,23006,23638,24251,24818,25307,25677,25941,25973,25854,25572,25107,24477,23757,22976,22108,21248,20406,19626,18933,18293,17738,17256,16865,16549,16282,16119,16026,15966,16009,16107,16275,16504,16794,17133,17570,18062,18625,19229,19850,20544,21275,22021,22757,23474,24166,24830,25413,25974,26406,26728,26955,27063,27082,26985,26763,26439,26062,25563,24999,24427,23766,23137,22500,21821,21192,20593,20005,19430,18949,18478,18069,17711,17399,17114,16845,16604,16408,16202,16022,15825,15621,15462,15319,15202,15105,15041,14953,14905,14907,14899,14909,14929,14955,14985,15043,15069,15117,15179,15177,15197,15207,15214,15230,15233,15236,15243,15189,15129,15077,15008,14915,14828,14691,14547,14365,14174,13966,13754,13511,13245,12987,12714,12416,12133,11838,11537,11259,11003,10769,10539,10270,9976,9643,9351,9056,8812,8597,8427,8273,8147,8044,7968,7913,7845,7780,7691,7557,7390,7222,7109,6986,6891,6804,6743,6689,6663,6625,6631,6602,6597,6621,6607,6466,6155,5712,5102,21.6,21.8,22.4,1568489,0.3,13.4,12.0,5.0,435,-1.00,-1.00,58.4804,-19.181710,0.000599,,,,,23 +SATSLF0720,2024246,15.014454,4.15,0.0581,0.1056,0.0194,0.00,16065,645,1,705,702,704,708,689,696,711,715,728,721,735,723,767,877,1211,1951,3123,4466,5700,6606,7242,7722,8145,8593,9109,9704,10467,11326,12317,13419,14597,15742,16880,17824,18525,18965,19089,18912,18530,18009,17413,16858,16405,16051,15822,15753,15837,16080,16477,17058,17800,18700,19768,20967,22292,23729,25205,26694,28113,29345,30343,31089,31497,31493,31162,30520,29600,28537,27310,26133,24974,23922,22905,22060,21338,20733,20233,19851,19582,19419,19330,19339,19452,19629,19899,20246,20661,21170,21733,22347,23019,23659,24288,24868,25329,25699,25973,26021,25901,25632,25153,24505,23799,23002,22135,21268,20421,19650,18960,18302,17754,17285,16882,16577,16313,16139,16037,15991,16017,16104,16268,16493,16786,17149,17582,18061,18626,19251,19880,20560,21278,22017,22758,23472,24178,24819,25425,25973,26410,26725,26965,27074,27085,26998,26772,26455,26062,25571,25013,24422,23789,23142,22493,21821,21206,20594,19995,19442,18957,18482,18085,17719,17394,17096,16848,16606,16393,16203,16009,15803,15629,15451,15316,15187,15106,15033,14949,14921,14903,14904,14893,14942,14954,14996,15036,15065,15114,15165,15170,15189,15203,15203,15224,15243,15234,15217,15187,15113,15075,14993,14912,14818,14680,14529,14357,14169,13948,13741,13502,13242,12981,12696,12396,12107,11820,11524,11257,11027,10774,10531,10275,9970,9653,9333,9055,8817,8611,8437,8274,8148,8049,7966,7905,7849,7779,7691,7557,7381,7234,7095,6976,6887,6798,6736,6673,6632,6606,6603,6598,6585,6621,6610,6451,6156,5737,5097,21.6,21.8,22.4,1568490,0.2,13.3,12.0,5.0,434,-1.00,-1.00,58.2376,-19.136166,0.000604,,,,,98 +SATSDF0720,2024246,15.259138,0.00,0.0000,0.0000,0.0000,0.00,647,0,1,626,614,616,625,637,624,626,615,625,633,634,615,629,625,625,622,616,631,625,631,643,625,650,653,653,659,653,643,644,641,641,642,645,651,661,659,661,657,664,654,654,657,651,659,649,647,651,643,664,665,666,660,670,661,649,642,642,648,640,663,665,670,666,656,654,659,662,657,650,657,656,653,663,651,660,665,650,657,660,649,650,645,647,645,663,660,657,653,661,659,633,643,647,649,652,666,665,659,667,663,649,652,667,649,661,650,649,642,642,634,643,648,644,647,652,633,653,637,645,653,652,649,645,648,647,651,656,661,656,645,650,645,653,656,650,650,649,657,653,658,652,658,656,652,654,645,645,649,649,639,638,647,649,663,642,641,639,648,646,644,643,642,643,649,646,645,646,643,654,654,665,656,653,641,647,645,634,642,636,647,637,638,649,640,635,639,636,631,637,639,651,637,659,653,641,634,631,634,640,641,632,635,648,659,656,657,641,627,643,637,659,644,639,641,646,651,642,659,641,662,669,657,658,652,650,645,647,649,644,649,648,652,647,645,647,644,644,645,642,648,643,655,633,641,656,650,646,655,646,653,652,640,641,647,647,476,0.0,0.0,0.0,1568489,0.8,14.1,0.1,5.0,54,0.00,0.00,0.0000,0.000000,0.000000,,,,,240 +SATSLF0720,2024246,15.259696,4.05,0.0568,0.1017,0.0171,0.00,16182,647,1,692,698,698,693,701,689,697,701,707,711,711,727,760,878,1197,1938,3109,4479,5729,6638,7284,7762,8199,8641,9157,9785,10525,11400,12395,13529,14712,15881,17005,17957,18681,19120,19244,19064,18711,18173,17591,17010,16549,16185,15962,15888,15961,16208,16624,17204,17956,18858,19923,21154,22481,23940,25433,26912,28346,29602,30611,31360,31767,31766,31449,30789,29861,28801,27558,26379,25216,24118,23125,22266,21532,20925,20429,20046,19766,19603,19501,19524,19608,19812,20081,20422,20858,21385,21947,22552,23215,23875,24481,25073,25545,25901,26172,26216,26089,25826,25341,24710,23976,23150,22291,21419,20571,19781,19090,18434,17872,17399,16993,16688,16436,16245,16152,16106,16123,16218,16388,16626,16919,17278,17723,18209,18772,19390,20026,20714,21440,22180,22944,23644,24353,25015,25612,26183,26617,26951,27179,27289,27307,27214,26986,26663,26257,25763,25197,24602,23960,23314,22657,21992,21349,20736,20135,19591,19097,18623,18212,17833,17501,17227,16952,16708,16503,16304,16110,15911,15739,15570,15426,15312,15198,15125,15059,15013,14995,14987,15006,15020,15043,15092,15125,15148,15194,15259,15261,15261,15299,15289,15313,15334,15321,15323,15269,15204,15152,15079,14983,14887,14745,14603,14442,14246,14037,13808,13579,13309,13055,12762,12471,12176,11876,11577,11307,11067,10832,10600,10328,10025,9705,9381,9107,8858,8640,8471,8310,8175,8083,8006,7921,7875,7820,7727,7591,7412,7271,7122,7010,6909,6821,6771,6707,6667,6656,6648,6629,6611,6630,6637,6480,6179,5752,5121,21.6,21.6,21.8,1568490,0.0,13.6,11.9,5.0,536,-1.00,-1.00,58.2688,-19.310887,0.000570,,,,,101 +SATSLF0720,2024246,15.259877,3.90,0.0547,0.1000,0.0158,0.00,16233,647,1,708,701,706,696,711,717,705,701,704,710,727,740,771,895,1229,1964,3141,4520,5765,6689,7328,7805,8238,8664,9206,9833,10582,11457,12477,13593,14779,15959,17069,18041,18768,19209,19333,19156,18777,18226,17637,17065,16605,16241,16007,15932,16018,16258,16662,17267,18021,18934,20007,21253,22574,24013,25517,27005,28445,29700,30711,31460,31873,31868,31559,30893,29984,28917,27666,26469,25290,24215,23197,22337,21601,20977,20496,20121,19816,19652,19573,19571,19695,19892,20146,20477,20913,21437,21998,22615,23290,23945,24557,25146,25604,25987,26249,26305,26176,25904,25418,24773,24043,23241,22368,21485,20646,19865,19134,18482,17924,17457,17054,16724,16489,16301,16199,16155,16161,16249,16425,16645,16951,17318,17745,18237,18817,19432,20084,20773,21502,22264,23006,23720,24421,25094,25685,26249,26685,27002,27242,27335,27362,27264,27051,26730,26338,25838,25271,24676,24030,23379,22727,22066,21413,20801,20184,19627,19140,18665,18261,17880,17555,17271,16999,16761,16558,16347,16166,15946,15758,15601,15451,15340,15236,15178,15116,15077,15031,15047,15038,15072,15088,15114,15158,15184,15227,15294,15309,15323,15336,15330,15355,15379,15377,15376,15324,15265,15196,15113,15035,14937,14785,14640,14477,14272,14067,13863,13624,13365,13084,12808,12501,12213,11901,11619,11350,11081,10851,10618,10349,10044,9724,9412,9121,8882,8665,8482,8314,8205,8116,8042,7965,7908,7833,7745,7605,7428,7267,7158,7035,6949,6854,6791,6736,6700,6677,6672,6654,6643,6651,6651,6494,6194,5753,5131,21.6,21.6,21.9,1568491,0.3,13.6,11.9,5.0,438,-1.00,-1.00,58.6264,-19.525701,0.000592,,,,,87 +SATSLF0720,2024246,15.260136,4.06,0.0568,0.1010,0.0169,0.00,16214,647,1,705,693,695,703,702,702,701,695,703,725,733,737,775,887,1217,1950,3123,4503,5738,6656,7296,7779,8217,8649,9191,9812,10558,11444,12458,13574,14769,15946,17057,18028,18734,19169,19315,19129,18744,18199,17619,17056,16590,16209,15987,15922,15997,16245,16661,17253,17994,18912,19984,21223,22565,24013,25513,26985,28417,29673,30675,31428,31831,31837,31513,30853,29933,28873,27643,26453,25279,24187,23181,22325,21576,20979,20469,20086,19800,19636,19529,19547,19636,19843,20096,20462,20884,21413,21991,22605,23267,23928,24541,25131,25591,25962,26230,26267,26140,25874,25385,24759,24013,23210,22348,21457,20612,19833,19127,18482,17900,17429,17025,16714,16461,16294,16183,16145,16160,16250,16409,16640,16934,17305,17740,18221,18792,19422,20041,20765,21473,22217,22964,23683,24397,25054,25657,26234,26654,26989,27222,27350,27345,27243,27030,26698,26301,25805,25234,24650,24013,23375,22711,22030,21383,20759,20169,19613,19102,18643,18227,17861,17536,17255,16977,16727,16542,16330,16129,15944,15767,15578,15439,15332,15221,15145,15073,15056,15026,15040,15041,15046,15065,15102,15149,15177,15209,15283,15286,15293,15301,15319,15346,15354,15361,15353,15285,15235,15160,15092,15005,14912,14775,14634,14461,14262,14037,13847,13607,13333,13063,12777,12481,12198,11906,11605,11340,11081,10840,10609,10335,10033,9715,9389,9107,8861,8653,8466,8322,8192,8087,8025,7947,7909,7832,7745,7608,7424,7269,7141,7033,6929,6846,6775,6716,6681,6670,6654,6639,6622,6649,6627,6469,6177,5742,5125,21.6,21.6,22.0,1568492,0.4,13.6,11.9,5.0,434,-1.00,-1.00,58.1940,-19.326601,0.000590,,,,,128 +SATSLF0720,2024246,15.260389,3.94,0.0551,0.1012,0.0171,0.00,16194,647,1,683,694,697,686,692,696,701,713,713,726,715,734,769,874,1209,1945,3114,4486,5723,6645,7293,7778,8189,8651,9175,9803,10550,11430,12413,13543,14729,15909,17017,17963,18702,19156,19297,19110,18732,18196,17598,17031,16567,16205,15973,15900,15984,16227,16633,17221,17960,18897,19954,21193,22518,23974,25460,26940,28375,29629,30626,31395,31808,31802,31469,30817,29899,28826,27596,26406,25243,24163,23149,22286,21542,20936,20453,20060,19772,19621,19520,19525,19612,19803,20087,20426,20874,21385,21941,22563,23221,23858,24482,25063,25560,25941,26199,26236,26125,25853,25361,24726,24001,23185,22313,21435,20567,19804,19094,18435,17882,17410,17001,16678,16427,16271,16165,16121,16140,16233,16389,16619,16901,17275,17717,18197,18765,19387,20023,20731,21454,22196,22950,23664,24369,25030,25615,26183,26616,26949,27192,27291,27317,27233,27002,26659,26267,25780,25196,24619,23989,23321,22673,21987,21364,20749,20155,19610,19099,18628,18220,17856,17527,17237,16962,16722,16509,16299,16119,15917,15726,15549,15431,15309,15219,15144,15080,15021,15005,15001,15015,15033,15056,15077,15132,15162,15204,15271,15288,15301,15306,15307,15322,15360,15348,15338,15279,15217,15152,15085,15011,14905,14775,14635,14453,14258,14048,13826,13581,13333,13055,12769,12458,12170,11874,11593,11331,11081,10845,10609,10333,10032,9702,9388,9101,8859,8641,8465,8297,8183,8093,8016,7930,7909,7841,7738,7602,7418,7251,7130,7005,6899,6841,6749,6719,6678,6652,6640,6628,6621,6651,6641,6497,6185,5756,5127,21.6,21.6,22.1,1568493,0.1,13.6,11.9,5.0,432,-1.00,-1.00,58.4538,-19.407498,0.000595,,,,,105 +SATSLF0720,2024246,15.260645,3.99,0.0559,0.1013,0.0168,0.00,16199,647,1,700,695,715,705,705,702,705,710,717,729,732,734,778,882,1221,1962,3111,4496,5735,6657,7305,7774,8202,8654,9185,9809,10558,11434,12437,13549,14729,15910,17021,17994,18698,19154,19273,19110,18720,18171,17579,17015,16555,16206,15973,15901,15981,16230,16639,17221,17969,18892,19955,21165,22499,23954,25449,26924,28358,29635,30645,31403,31792,31789,31464,30810,29890,28832,27602,26401,25234,24151,23152,22291,21549,20942,20455,20059,19787,19617,19515,19541,19637,19806,20076,20434,20854,21386,21949,22573,23241,23883,24497,25083,25557,25925,26196,26242,26121,25851,25369,24725,23993,23200,22327,21445,20581,19818,19115,18455,17908,17416,17000,16695,16439,16263,16167,16133,16141,16231,16403,16625,16910,17286,17714,18231,18805,19413,20048,20736,21458,22202,22947,23666,24371,25041,25628,26201,26626,26950,27194,27310,27310,27227,26982,26664,26279,25757,25217,24628,23985,23333,22682,22016,21366,20759,20165,19605,19112,18630,18225,17858,17526,17224,16951,16730,16522,16306,16117,15938,15738,15579,15430,15310,15223,15140,15073,15030,15026,15013,15029,15043,15053,15097,15122,15161,15211,15287,15293,15293,15330,15325,15344,15368,15358,15333,15273,15220,15161,15094,15006,14902,14769,14625,14453,14245,14048,13827,13589,13348,13061,12772,12475,12183,11891,11607,11334,11089,10845,10596,10323,10026,9701,9396,9115,8861,8653,8485,8334,8201,8098,8030,7947,7904,7829,7745,7605,7421,7253,7143,7013,6921,6841,6779,6713,6679,6653,6652,6634,6632,6639,6639,6492,6182,5761,5133,21.6,21.6,22.1,1568494,0.3,13.5,11.9,5.0,432,-1.00,-1.00,58.4672,-19.410566,0.000555,,,,,188 +SATSLF0720,2024246,15.260902,4.17,0.0584,0.1012,0.0167,0.00,16192,647,1,701,708,708,710,717,712,727,713,713,727,740,750,771,894,1221,1952,3116,4494,5751,6663,7298,7778,8187,8655,9169,9806,10542,11427,12426,13548,14730,15904,17017,17980,18705,19138,19272,19077,18698,18169,17573,17006,16551,16197,15965,15901,15965,16219,16634,17220,17968,18885,19946,21163,22497,23941,25445,26929,28371,29622,30624,31372,31777,31771,31452,30781,29865,28791,27567,26386,25217,24129,23133,22274,21538,20923,20433,20023,19767,19605,19522,19517,19629,19813,20072,20419,20864,21369,21948,22564,23209,23879,24493,25067,25533,25923,26184,26230,26109,25817,25345,24717,23992,23188,22324,21446,20587,19799,19105,18448,17869,17405,16995,16677,16424,16253,16153,16099,16129,16223,16384,16632,16914,17285,17733,18216,18787,19401,20040,20728,21449,22178,22935,23658,24353,25025,25618,26177,26608,26938,27174,27287,27297,27213,26978,26666,26269,25770,25198,24608,23957,23319,22670,21997,21351,20735,20151,19588,19095,18630,18224,17841,17524,17220,16952,16723,16509,16318,16121,15925,15741,15573,15435,15319,15223,15141,15073,15028,15011,15011,15020,15037,15061,15106,15140,15167,15213,15269,15283,15297,15300,15305,15317,15351,15341,15340,15296,15229,15165,15089,15001,14897,14775,14614,14443,14251,14049,13834,13592,13333,13057,12782,12493,12193,11898,11605,11331,11095,10853,10603,10325,10011,9713,9402,9113,8869,8670,8484,8337,8202,8109,8025,7948,7886,7830,7727,7588,7423,7265,7140,7027,6933,6848,6791,6737,6697,6669,6650,6627,6608,6634,6621,6479,6185,5750,5137,21.6,21.6,22.1,1568495,0.2,13.6,11.9,5.0,438,-1.00,-1.00,57.7324,-19.093099,0.000587,,,,,36 +SATSLF0720,2024246,15.261154,4.12,0.0576,0.1021,0.0168,0.00,16181,647,1,700,711,707,702,711,727,725,715,737,726,734,725,766,878,1211,1957,3121,4507,5737,6647,7298,7760,8192,8629,9157,9780,10528,11390,12403,13512,14709,15861,16983,17933,18677,19093,19239,19060,18686,18137,17546,16983,16522,16146,15917,15871,15942,16193,16605,17188,17937,18862,19940,21153,22465,23913,25409,26905,28318,29586,30587,31337,31735,31735,31416,30760,29833,28772,27533,26362,25201,24117,23117,22258,21506,20912,20421,20028,19742,19578,19481,19497,19602,19792,20055,20413,20837,21360,21930,22561,23219,23857,24472,25053,25545,25902,26184,26218,26101,25799,25323,24676,23961,23169,22295,21409,20579,19796,19096,18434,17869,17394,17000,16662,16425,16260,16145,16082,16128,16213,16377,16598,16890,17276,17700,18210,18782,19389,20033,20714,21445,22204,22944,23654,24355,25028,25610,26187,26617,26930,27173,27280,27283,27198,26978,26634,26237,25762,25189,24605,23947,23314,22654,21991,21354,20740,20151,19590,19095,18612,18206,17845,17506,17222,16962,16705,16506,16293,16126,15918,15730,15568,15427,15307,15209,15132,15064,15016,14997,14999,14997,15028,15045,15073,15123,15157,15211,15264,15291,15294,15289,15305,15331,15337,15342,15334,15290,15228,15163,15081,15005,14900,14763,14620,14453,14254,14039,13824,13581,13321,13049,12773,12480,12189,11890,11608,11314,11075,10824,10588,10324,10024,9704,9391,9117,8859,8649,8478,8316,8182,8098,8009,7937,7903,7831,7744,7603,7423,7250,7143,7010,6918,6834,6777,6722,6682,6669,6659,6640,6628,6647,6640,6480,6181,5741,5151,21.6,21.6,22.1,1568496,0.4,13.6,11.9,5.0,432,-1.00,-1.00,58.3710,-19.339246,0.000634,,,,,140 +SATSLF0720,2024246,15.261411,4.18,0.0586,0.1027,0.0180,0.00,16157,647,1,679,694,685,687,689,704,714,718,729,725,731,730,773,877,1205,1937,3109,4473,5722,6633,7265,7745,8187,8637,9170,9772,10519,11411,12390,13501,14682,15844,16960,17924,18637,19081,19213,19024,18653,18109,17523,16965,16509,16157,15922,15848,15919,16171,16594,17165,17910,18824,19896,21111,22441,23895,25381,26867,28297,29560,30549,31304,31693,31694,31355,30704,29787,28733,27494,26309,25155,24076,23088,22235,21482,20865,20387,19985,19705,19546,19456,19457,19580,19770,20042,20389,20816,21325,21877,22515,23169,23833,24448,25021,25510,25869,26125,26176,26049,25777,25285,24664,23938,23134,22250,21399,20549,19776,19072,18398,17847,17373,16968,16645,16401,16232,16139,16090,16104,16201,16367,16576,16885,17250,17677,18164,18740,19339,19987,20670,21410,22154,22921,23627,24323,24978,25575,26134,26552,26884,27109,27225,27242,27156,26954,26613,26229,25704,25159,24569,23931,23277,22624,21963,21325,20709,20105,19539,19061,18585,18182,17829,17493,17201,16929,16682,16474,16281,16094,15881,15711,15549,15413,15290,15191,15112,15042,15002,14981,14973,14971,15009,15026,15059,15104,15128,15168,15239,15256,15269,15274,15291,15313,15323,15319,15308,15252,15187,15121,15055,14989,14877,14733,14599,14425,14236,14021,13811,13575,13322,13046,12756,12455,12165,11853,11585,11304,11062,10826,10585,10305,10009,9685,9369,9083,8839,8625,8471,8302,8180,8071,7997,7917,7878,7824,7728,7585,7415,7254,7133,7012,6905,6839,6762,6709,6669,6648,6637,6625,6608,6635,6621,6466,6171,5749,5139,21.6,21.7,22.1,1568497,0.3,13.5,11.9,5.0,416,-1.00,-1.00,57.9941,-19.155421,0.000643,,,,,222 +SATSLF0720,2024246,15.261667,4.06,0.0569,0.1035,0.0179,0.00,16143,647,1,694,707,714,713,699,711,708,705,721,712,712,725,746,878,1209,1943,3117,4469,5708,6617,7270,7735,8165,8625,9137,9757,10509,11382,12373,13489,14661,15846,16946,17909,18627,19049,19184,18986,18606,18091,17494,16945,16486,16109,15889,15817,15891,16151,16562,17150,17888,18797,19861,21085,22395,23844,25343,26810,28237,29485,30494,31249,31655,31658,31341,30674,29761,28709,27457,26295,25117,24043,23045,22181,21458,20857,20369,19969,19698,19534,19421,19453,19546,19744,20000,20358,20786,21309,21869,22481,23146,23790,24410,24994,25473,25833,26094,26162,26030,25749,25276,24632,23904,23122,22245,21373,20520,19744,19041,18386,17830,17360,16946,16633,16393,16200,16111,16050,16085,16183,16332,16578,16869,17245,17650,18168,18720,19326,19981,20665,21394,22135,22884,23588,24289,24944,25547,26114,26562,26869,27111,27217,27232,27142,26932,26596,26201,25725,25140,24557,23897,23272,22601,21930,21300,20681,20100,19554,19054,18584,18178,17802,17470,17196,16912,16671,16462,16270,16069,15877,15692,15531,15389,15290,15166,15109,15040,15001,14986,14976,14987,15015,15021,15070,15110,15132,15192,15250,15255,15267,15277,15285,15298,15313,15306,15306,15258,15194,15125,15063,14970,14880,14737,14605,14423,14231,14021,13793,13559,13296,13037,12749,12442,12151,11859,11563,11283,11038,10817,10577,10315,10008,9701,9388,9104,8845,8633,8461,8302,8172,8081,7986,7931,7879,7825,7733,7589,7406,7246,7121,7011,6905,6830,6772,6709,6684,6650,6647,6636,6611,6642,6620,6487,6173,5742,5131,21.7,21.7,22.2,1568498,0.4,13.4,12.0,5.0,432,-1.00,-1.00,58.8229,-19.476931,0.000573,,,,,64 +SATSLF0720,2024246,15.261919,4.19,0.0586,0.1033,0.0177,0.00,16140,647,1,713,710,697,707,700,698,707,713,730,729,726,731,784,898,1233,1964,3133,4473,5707,6623,7260,7735,8154,8610,9128,9755,10510,11370,12371,13486,14664,15816,16929,17876,18596,19026,19182,18993,18640,18090,17509,16915,16471,16109,15882,15794,15884,16140,16553,17144,17890,18798,19866,21099,22413,23853,25334,26812,28241,29497,30501,31242,31642,31638,31304,30662,29725,28674,27444,26261,25106,24024,23040,22180,21457,20838,20354,19966,19685,19524,19431,19433,19534,19721,19991,20343,20774,21304,21872,22494,23147,23790,24421,24986,25468,25818,26081,26137,26023,25746,25269,24626,23918,23108,22238,21379,20525,19749,19045,18381,17821,17358,16962,16641,16400,16217,16117,16062,16093,16187,16343,16558,16854,17236,17659,18145,18734,19337,19994,20669,21401,22141,22882,23585,24288,24957,25548,26121,26541,26865,27104,27213,27232,27124,26908,26568,26187,25686,25131,24542,23916,23266,22601,21945,21297,20677,20101,19538,19061,18589,18184,17810,17483,17181,16915,16673,16465,16263,16074,15869,15678,15539,15384,15264,15181,15098,15018,14983,14973,14973,14978,14997,15019,15066,15093,15131,15181,15239,15241,15266,15269,15281,15301,15313,15312,15302,15252,15185,15133,15051,14963,14872,14742,14590,14400,14215,14015,13804,13569,13288,13047,12744,12449,12159,11860,11565,11297,11042,10792,10561,10307,10013,9688,9385,9101,8846,8631,8455,8304,8169,8074,8000,7913,7885,7820,7725,7585,7409,7244,7123,7007,6899,6828,6760,6717,6665,6639,6639,6629,6629,6654,6634,6486,6189,5743,5112,21.7,21.7,22.2,1568499,0.3,13.4,12.0,5.0,433,-1.00,-1.00,58.1588,-19.191440,0.000716,,,,,40 +SATSLF0720,2024246,15.262176,4.24,0.0593,0.1033,0.0175,0.00,16133,647,1,708,709,708,714,723,718,721,720,727,721,730,722,767,892,1223,1961,3110,4477,5709,6621,7265,7739,8151,8603,9125,9741,10493,11361,12363,13469,14635,15799,16922,17872,18580,19029,19150,18963,18595,18064,17485,16932,16457,16105,15878,15810,15880,16139,16554,17133,17882,18782,19842,21062,22389,23830,25317,26797,28221,29465,30470,31212,31605,31604,31289,30644,29728,28669,27445,26250,25093,24026,23028,22160,21448,20829,20345,19965,19680,19518,19431,19433,19529,19725,19984,20331,20768,21289,21847,22472,23130,23787,24396,24979,25461,25804,26091,26145,26021,25747,25263,24629,23904,23094,22229,21350,20510,19747,19025,18378,17827,17352,16939,16621,16374,16209,16125,16065,16085,16185,16344,16565,16860,17232,17658,18137,18710,19329,19968,20658,21377,22125,22869,23581,24305,24946,25531,26105,26518,26845,27097,27190,27200,27109,26903,26573,26185,25687,25107,24519,23883,23249,22580,21923,21287,20679,20093,19529,19037,18561,18152,17787,17456,17170,16913,16673,16458,16256,16070,15889,15715,15528,15379,15267,15169,15099,15031,14976,14969,14970,14984,15009,15031,15069,15089,15130,15166,15234,15237,15259,15271,15275,15291,15306,15300,15287,15251,15186,15139,15058,14953,14875,14737,14588,14418,14229,14010,13796,13559,13301,13035,12749,12452,12168,11869,11585,11309,11063,10819,10585,10318,10013,9687,9366,9085,8837,8621,8471,8313,8179,8076,8001,7924,7880,7805,7723,7573,7415,7254,7120,7015,6909,6833,6781,6709,6670,6653,6645,6635,6620,6641,6633,6489,6169,5743,5127,21.7,21.7,22.2,1568500,0.7,13.4,12.0,5.0,434,-1.00,-1.00,58.1084,-19.159453,0.000547,,,,,24 +SATSLF0720,2024246,15.262429,4.04,0.0566,0.1033,0.0180,0.00,16146,647,1,699,701,709,721,713,706,708,727,718,733,725,747,777,894,1220,1950,3111,4479,5709,6601,7264,7749,8165,8618,9147,9769,10504,11390,12378,13495,14666,15840,16948,17893,18619,19054,19200,19029,18637,18105,17521,16935,16481,16117,15888,15819,15909,16165,16553,17149,17899,18813,19872,21095,22421,23867,25341,26832,28249,29514,30513,31275,31665,31660,31340,30692,29772,28696,27458,26287,25111,24043,23047,22194,21453,20841,20357,19973,19684,19531,19430,19463,19559,19747,19991,20349,20779,21314,21862,22487,23158,23802,24419,24997,25477,25841,26106,26150,26032,25756,25277,24646,23915,23134,22238,21387,20535,19760,19065,18391,17850,17356,16947,16640,16379,16211,16115,16071,16114,16192,16360,16592,16880,17236,17664,18169,18730,19361,19989,20674,21408,22149,22871,23606,24309,24957,25551,26114,26561,26861,27120,27225,27234,27142,26926,26602,26200,25700,25131,24547,23915,23255,22622,21952,21322,20693,20109,19546,19044,18574,18177,17797,17461,17173,16922,16678,16483,16273,16082,15904,15713,15545,15393,15297,15184,15114,15028,14986,14967,14965,14972,14993,15015,15062,15093,15127,15187,15234,15268,15254,15273,15283,15293,15303,15303,15304,15242,15190,15121,15065,14973,14875,14733,14599,14409,14231,14027,13796,13550,13294,13023,12729,12443,12157,11859,11577,11324,11058,10819,10587,10301,10003,9685,9368,9076,8838,8633,8451,8314,8173,8068,7995,7930,7876,7806,7726,7585,7402,7245,7117,7005,6911,6841,6766,6721,6677,6656,6630,6631,6621,6629,6622,6480,6158,5739,5131,21.7,21.8,22.2,1568501,0.2,13.4,11.9,5.0,427,-1.00,-1.00,58.6097,-19.393064,0.000672,,,,,43 +SATSLF0720,2024246,15.262683,4.20,0.0588,0.1042,0.0181,0.00,16118,647,1,693,709,709,698,707,708,721,709,718,736,742,745,779,883,1220,1946,3109,4477,5712,6618,7261,7741,8154,8612,9114,9741,10502,11366,12365,13470,14642,15813,16910,17867,18593,19025,19152,18968,18595,18066,17465,16905,16435,16087,15865,15811,15885,16128,16546,17122,17877,18778,19840,21048,22365,23824,25285,26778,28201,29441,30439,31199,31608,31604,31275,30621,29707,28651,27403,26228,25077,24002,23000,22135,21425,20813,20328,19938,19661,19503,19389,19398,19507,19688,19968,20314,20741,21277,21822,22451,23117,23766,24370,24946,25431,25808,26066,26106,25992,25717,25234,24594,23862,23069,22195,21319,20480,19713,19013,18359,17816,17350,16939,16634,16378,16202,16089,16053,16054,16149,16310,16535,16839,17209,17629,18133,18701,19309,19955,20645,21356,22103,22837,23550,24266,24912,25511,26061,26500,26820,27075,27178,27198,27098,26881,26554,26165,25660,25079,24496,23867,23219,22549,21897,21253,20663,20065,19533,19021,18561,18153,17780,17454,17151,16889,16648,16453,16226,16034,15863,15676,15513,15376,15269,15161,15089,15018,14970,14948,14954,14953,14982,15015,15037,15086,15110,15158,15223,15232,15233,15244,15248,15270,15289,15301,15289,15232,15177,15117,15046,14970,14867,14743,14584,14397,14210,13997,13775,13524,13285,13013,12741,12437,12137,11843,11558,11275,11031,10798,10563,10285,9987,9669,9360,9071,8825,8611,8453,8284,8163,8083,7986,7931,7861,7788,7713,7569,7388,7242,7106,6989,6892,6813,6767,6699,6658,6648,6633,6613,6603,6627,6628,6469,6170,5742,5107,21.7,21.8,22.2,1568502,0.3,13.4,12.0,5.0,427,-1.00,-1.00,58.1222,-19.152600,0.000607,,,,,76 +SATSLF0720,2024246,15.262939,4.07,0.0569,0.1039,0.0177,0.00,16130,647,1,709,709,704,715,710,713,726,726,729,724,729,736,777,882,1213,1940,3100,4471,5719,6635,7276,7741,8171,8624,9143,9749,10512,11370,12371,13476,14652,15816,16921,17874,18614,19037,19170,18993,18617,18084,17486,16931,16466,16105,15880,15804,15877,16135,16548,17132,17872,18787,19844,21069,22392,23847,25316,26790,28215,29469,30484,31230,31613,31618,31297,30647,29719,28669,27433,26257,25107,24014,23028,22158,21427,20823,20321,19957,19672,19486,19405,19415,19522,19712,19976,20314,20747,21278,21840,22480,23129,23763,24387,24979,25449,25798,26086,26126,26008,25724,25255,24610,23896,23099,22220,21352,20509,19737,19036,18386,17826,17354,16941,16621,16386,16205,16104,16069,16080,16178,16333,16554,16861,17223,17656,18148,18717,19317,19959,20640,21378,22120,22850,23569,24270,24942,25529,26086,26539,26857,27097,27200,27213,27113,26896,26583,26165,25670,25106,24513,23886,23232,22573,21917,21290,20680,20080,19534,19035,18554,18169,17779,17467,17164,16897,16649,16458,16257,16054,15872,15678,15526,15389,15258,15159,15085,15013,14985,14952,14959,14966,14986,15019,15051,15093,15112,15173,15221,15240,15268,15261,15255,15277,15292,15299,15296,15228,15177,15132,15053,14971,14873,14739,14578,14404,14220,14010,13789,13553,13296,13026,12749,12452,12154,11861,11566,11293,11046,10817,10570,10295,9998,9681,9368,9097,8845,8619,8455,8302,8168,8083,8004,7936,7893,7817,7727,7589,7405,7258,7114,7003,6913,6832,6770,6712,6668,6650,6643,6621,6606,6640,6621,6473,6162,5749,5139,21.7,21.8,22.2,1568502,0.3,13.4,12.0,5.0,439,-1.00,-1.00,58.5363,-19.338728,0.000626,,,,,16 +SATSLF0720,2024246,15.263193,4.09,0.0572,0.1042,0.0185,0.00,16107,647,1,715,713,729,708,723,717,724,728,738,735,731,745,769,895,1227,1955,3127,4471,5701,6614,7257,7717,8155,8598,9111,9729,10478,11351,12340,13445,14633,15778,16894,17838,18573,19000,19141,18961,18582,18049,17459,16901,16433,16067,15863,15789,15853,16110,16519,17091,17853,18752,19820,21039,22343,23796,25274,26752,28167,29421,30405,31149,31541,31554,31221,30582,29685,28608,27392,26225,25052,23981,22973,22133,21392,20781,20306,19909,19639,19485,19390,19394,19507,19698,19938,20286,20713,21245,21808,22429,23094,23745,24357,24937,25409,25787,26024,26091,25954,25676,25202,24554,23837,23058,22192,21322,20470,19719,19005,18336,17794,17321,16904,16594,16329,16177,16092,16040,16066,16161,16325,16553,16849,17200,17629,18113,18681,19289,19921,20603,21335,22088,22825,23540,24243,24900,25494,26041,26468,26795,27032,27138,27157,27074,26866,26522,26135,25632,25075,24491,23849,23215,22542,21882,21251,20644,20065,19492,19020,18535,18145,17773,17427,17138,16880,16641,16444,16242,16048,15843,15662,15507,15363,15257,15149,15093,15001,14962,14938,14935,14949,14964,14969,15027,15073,15114,15156,15209,15221,15235,15236,15251,15265,15285,15283,15273,15221,15154,15106,15021,14929,14853,14721,14565,14395,14218,14007,13796,13549,13286,13021,12718,12416,12116,11827,11558,11293,11045,10806,10568,10296,9994,9664,9349,9058,8819,8621,8438,8304,8170,8067,7996,7933,7877,7825,7731,7570,7388,7242,7100,6995,6902,6829,6766,6709,6670,6649,6633,6619,6618,6639,6632,6475,6160,5739,5116,21.7,21.8,22.2,1568503,0.3,13.4,12.0,5.0,435,-1.00,-1.00,58.4658,-19.274994,0.000563,,,,,88 +SATSLF0720,2024246,15.263444,4.09,0.0573,0.1057,0.0196,0.00,16079,647,1,705,717,693,700,713,709,724,713,717,723,725,745,783,900,1221,1937,3115,4453,5669,6583,7227,7693,8128,8585,9093,9724,10465,11328,12310,13411,14577,15727,16839,17786,18505,18950,19072,18920,18541,18000,17414,16856,16405,16045,15822,15741,15815,16059,16481,17072,17802,18707,19773,20971,22299,23738,25205,26691,28105,29351,30343,31089,31485,31487,31170,30533,29605,28555,27332,26161,25002,23941,22933,22083,21344,20742,20241,19863,19584,19435,19324,19351,19464,19649,19910,20237,20679,21205,21776,22380,23048,23705,24297,24890,25358,25722,25992,26033,25925,25632,25168,24525,23816,23016,22169,21281,20455,19671,18980,18332,17773,17307,16893,16589,16326,16145,16053,16000,16029,16123,16300,16533,16821,17181,17610,18086,18651,19253,19899,20589,21302,22053,22800,23497,24200,24875,25451,26022,26440,26757,26993,27114,27104,27016,26816,26493,26090,25616,25048,24469,23837,23189,22536,21869,21237,20616,20041,19464,18993,18513,18109,17738,17413,17127,16858,16614,16418,16214,16028,15829,15653,15483,15347,15222,15120,15047,14984,14944,14936,14922,14934,14950,14978,15020,15053,15090,15130,15193,15208,15217,15231,15226,15254,15272,15261,15255,15205,15126,15069,14999,14923,14834,14702,14553,14375,14195,13985,13771,13524,13269,12989,12719,12421,12128,11834,11543,11275,11023,10789,10551,10303,9990,9667,9344,9067,8815,8628,8436,8298,8161,8048,7979,7911,7865,7779,7698,7554,7383,7227,7103,6989,6909,6821,6757,6693,6655,6636,6614,6619,6601,6625,6621,6462,6168,5742,5125,21.7,21.8,22.3,1568504,0.3,13.4,11.9,5.0,436,-1.00,-1.00,58.7794,-19.365909,0.000572,,,,,153 +SATSLF0720,2024246,15.263699,4.04,0.0566,0.1057,0.0194,0.00,16064,647,1,713,702,711,711,713,702,707,707,711,735,729,747,778,882,1201,1915,3084,4445,5691,6597,7238,7714,8136,8577,9086,9697,10443,11306,12293,13399,14601,15733,16848,17783,18485,18939,19081,18893,18513,17985,17399,16838,16381,16021,15798,15721,15799,16055,16469,17045,17789,18693,19745,20969,22284,23708,25184,26673,28074,29346,30333,31082,31485,31477,31145,30498,29578,28532,27306,26138,24977,23906,22893,22043,21321,20718,20241,19851,19589,19421,19324,19357,19438,19632,19882,20229,20665,21175,21731,22372,23025,23672,24293,24868,25337,25687,25963,26017,25898,25628,25158,24533,23797,23013,22148,21275,20429,19672,18949,18302,17733,17274,16865,16546,16307,16133,16051,15991,16018,16097,16263,16488,16791,17156,17583,18059,18633,19259,19886,20573,21293,22036,22770,23477,24165,24835,25418,25989,26409,26743,26989,27092,27104,27004,26790,26459,26065,25562,25000,24418,23793,23152,22514,21850,21218,20608,20006,19450,18961,18477,18083,17726,17408,17105,16820,16599,16394,16177,16006,15822,15637,15465,15324,15211,15113,15047,14968,14923,14901,14906,14917,14935,14959,15001,15038,15067,15113,15180,15180,15199,15214,15212,15237,15259,15241,15239,15189,15136,15076,15001,14913,14818,14676,14532,14350,14163,13955,13735,13498,13243,12980,12701,12400,12119,11812,11517,11267,11025,10778,10548,10281,9973,9636,9335,9049,8810,8596,8433,8277,8134,8055,7982,7897,7850,7795,7701,7557,7391,7232,7116,6984,6873,6801,6744,6689,6658,6630,6621,6598,6586,6615,6603,6469,6164,5729,5113,21.7,21.8,22.3,1568505,0.2,13.4,12.0,5.0,435,-1.00,-1.00,59.1434,-19.504492,0.000651,,,,,5 +SATSLF0720,2024246,15.263952,4.19,0.0587,0.1050,0.0195,0.00,16081,647,1,709,716,713,715,707,705,715,711,719,727,721,735,768,873,1208,1936,3106,4465,5692,6611,7248,7723,8141,8580,9100,9709,10467,11325,12321,13417,14583,15754,16851,17792,18521,18968,19098,18910,18533,18011,17421,16865,16409,16050,15821,15765,15830,16085,16490,17066,17817,18728,19792,20997,22323,23765,25249,26721,28125,29365,30368,31113,31496,31522,31185,30540,29633,28584,27353,26178,25021,23933,22935,22086,21341,20725,20245,19870,19596,19441,19358,19362,19453,19644,19896,20240,20688,21218,21777,22396,23051,23686,24307,24884,25356,25717,25981,26048,25924,25653,25180,24544,23833,23029,22165,21294,20452,19673,18979,18312,17766,17304,16886,16573,16331,16173,16061,16023,16027,16117,16287,16507,16809,17165,17604,18091,18656,19262,19893,20580,21309,22037,22791,23490,24188,24857,25440,26005,26428,26761,27003,27106,27122,27037,26817,26481,26101,25600,25055,24459,23826,23164,22514,21860,21232,20619,20026,19466,18968,18507,18108,17753,17409,17133,16862,16625,16425,16206,16023,15837,15650,15469,15335,15235,15123,15060,14995,14938,14916,14912,14923,14948,14960,15000,15045,15082,15139,15194,15208,15210,15223,15219,15234,15257,15267,15268,15189,15145,15072,15011,14929,14842,14693,14550,14377,14193,13970,13761,13521,13268,12999,12723,12420,12142,11841,11562,11270,11027,10785,10545,10266,9968,9664,9351,9066,8826,8610,8438,8289,8149,8049,7983,7900,7868,7800,7715,7559,7382,7236,7096,6979,6878,6804,6745,6678,6659,6637,6620,6609,6605,6612,6604,6452,6149,5726,5117,21.7,21.9,22.4,1568506,0.3,13.4,11.9,5.0,429,-1.00,-1.00,58.5113,-19.269459,0.000587,,,,,140 +SATSLF0720,2024246,15.264202,4.12,0.0577,0.1056,0.0192,0.00,16070,647,1,703,698,704,712,701,710,732,733,745,749,741,756,788,900,1217,1945,3112,4458,5684,6599,7241,7712,8129,8570,9095,9715,10453,11299,12297,13406,14577,15741,16833,17799,18521,18954,19088,18897,18530,17988,17394,16851,16403,16045,15806,15746,15813,16073,16470,17050,17793,18704,19751,20971,22280,23731,25194,26677,28068,29335,30333,31077,31483,31474,31147,30493,29584,28539,27305,26128,24982,23921,22907,22059,21330,20725,20245,19864,19596,19433,19329,19355,19444,19621,19893,20238,20669,21175,21759,22361,23028,23675,24275,24868,25333,25701,25971,26030,25902,25626,25140,24510,23805,23019,22157,21278,20446,19677,18962,18323,17757,17284,16874,16565,16318,16152,16055,15994,16027,16118,16278,16509,16803,17173,17601,18074,18653,19241,19884,20569,21293,22032,22775,23493,24180,24839,25428,26001,26421,26746,26978,27091,27113,27015,26817,26490,26103,25582,25029,24441,23798,23158,22520,21842,21210,20602,20002,19458,18976,18505,18095,17735,17410,17110,16853,16605,16406,16201,16012,15819,15630,15463,15335,15218,15121,15049,14974,14929,14919,14919,14928,14940,14965,14992,15031,15070,15133,15184,15197,15225,15225,15226,15245,15265,15275,15255,15189,15149,15081,15004,14928,14823,14678,14530,14355,14166,13975,13758,13514,13252,12982,12704,12405,12105,11817,11530,11262,11015,10774,10545,10273,9973,9659,9355,9048,8803,8599,8437,8285,8149,8054,7973,7903,7855,7793,7697,7553,7392,7233,7098,6977,6890,6802,6750,6704,6665,6634,6631,6601,6602,6620,6617,6465,6144,5727,5119,21.7,21.9,22.4,1568507,0.2,13.4,12.0,5.0,434,-1.00,-1.00,58.4757,-19.226274,0.000599,,,,,135 +SATSLF0720,2024246,15.264458,4.35,0.0609,0.1057,0.0194,0.00,16070,647,1,715,713,727,712,727,713,728,718,724,716,732,737,777,897,1224,1951,3115,4469,5706,6617,7250,7717,8145,8573,9096,9717,10453,11310,12310,13419,14577,15739,16846,17793,18505,18944,19074,18885,18510,17986,17403,16841,16390,16041,15812,15746,15842,16082,16493,17061,17801,18698,19757,20981,22293,23713,25199,26673,28100,29333,30332,31070,31469,31470,31144,30489,29588,28541,27306,26135,24998,23909,22909,22054,21332,20723,20245,19861,19569,19427,19328,19335,19442,19627,19905,20233,20667,21195,21757,22382,23056,23689,24308,24880,25351,25730,25970,26031,25893,25624,25145,24518,23791,23015,22145,21280,20424,19666,18954,18312,17755,17283,16883,16577,16333,16154,16055,16007,16036,16126,16293,16509,16797,17162,17589,18069,18646,19256,19881,20562,21286,22032,22781,23482,24193,24849,25440,25994,26409,26729,26971,27069,27100,27010,26791,26461,26077,25590,25021,24430,23784,23143,22499,21826,21205,20581,20003,19451,18973,18503,18111,17738,17408,17120,16842,16614,16405,16208,16011,15801,15639,15458,15331,15214,15125,15057,14978,14939,14917,14909,14912,14949,14972,14998,15049,15072,15128,15173,15179,15211,15220,15221,15236,15259,15252,15245,15195,15142,15076,15006,14924,14825,14698,14541,14377,14173,13958,13745,13507,13253,12985,12720,12421,12129,11828,11543,11275,11029,10790,10546,10274,9972,9653,9337,9051,8810,8605,8439,8282,8146,8055,7980,7906,7840,7779,7707,7553,7385,7227,7099,6990,6888,6801,6740,6680,6651,6630,6621,6613,6606,6618,6625,6468,6164,5738,5115,21.7,21.9,22.4,1568508,0.0,13.3,12.0,5.0,437,-1.00,-1.00,57.7109,-18.909431,0.000518,,,,,137 +SATSDF0720,2024246,15.509138,0.00,0.0000,0.0000,0.0000,0.00,647,0,1,641,616,641,633,625,623,631,625,628,625,628,619,625,625,636,629,632,637,635,626,639,638,658,660,663,657,654,648,650,641,646,648,644,658,667,669,667,669,670,664,648,649,643,655,637,647,649,649,651,655,653,663,665,660,663,657,651,654,654,663,654,654,654,657,647,663,660,644,659,654,642,652,653,651,650,634,650,645,637,658,653,653,649,657,658,662,643,658,653,645,638,627,639,646,634,640,639,647,650,653,663,663,657,651,643,660,649,640,642,640,647,636,643,646,628,647,645,653,653,649,634,647,648,656,660,658,649,649,654,633,645,642,634,638,640,644,637,652,653,655,658,658,646,640,631,643,631,645,635,651,649,657,650,651,645,651,649,641,647,636,640,635,645,645,647,651,636,646,647,637,645,635,635,656,645,658,654,656,658,656,642,637,641,645,653,646,645,657,649,649,658,654,653,648,656,654,644,639,646,660,645,647,652,650,647,650,643,643,637,640,647,645,636,645,645,636,638,651,645,658,667,662,653,650,636,659,637,639,633,634,629,648,638,655,656,650,655,656,645,651,641,651,636,649,646,653,633,637,645,642,630,645,643,661,650,503,0.0,0.0,0.0,1568507,0.7,14.1,0.1,5.0,54,0.00,0.00,0.0000,0.000000,0.000000,,,,,233 +SATSLF0720,2024246,15.509693,3.93,0.0551,0.1011,0.0171,0.00,16198,647,1,688,695,690,685,696,699,717,705,727,716,718,724,769,877,1209,1952,3124,4489,5725,6649,7289,7766,8206,8649,9186,9808,10548,11421,12441,13553,14736,15895,17012,17970,18711,19153,19281,19105,18720,18182,17586,17021,16557,16203,15986,15920,15980,16223,16633,17209,17949,18871,19950,21174,22509,23971,25466,26946,28379,29635,30640,31400,31801,31789,31483,30811,29888,28834,27594,26420,25234,24142,23141,22295,21549,20932,20460,20076,19786,19623,19524,19542,19643,19829,20090,20447,20877,21409,21963,22597,23261,23902,24507,25085,25567,25933,26194,26252,26136,25856,25365,24729,23994,23191,22318,21426,20603,19818,19121,18461,17915,17429,17012,16683,16440,16262,16158,16122,16153,16232,16400,16613,16939,17297,17729,18212,18792,19404,20055,20744,21461,22203,22948,23666,24372,25034,25630,26190,26624,26944,27192,27305,27341,27222,27025,26680,26289,25782,25216,24631,23998,23346,22692,22018,21379,20759,20161,19611,19113,18620,18221,17847,17523,17222,16951,16718,16516,16319,16137,15936,15750,15577,15440,15325,15221,15149,15073,15029,15011,15004,15020,15044,15064,15094,15140,15170,15219,15283,15302,15305,15315,15309,15326,15333,15335,15326,15278,15221,15151,15086,15008,14913,14766,14614,14451,14269,14039,13834,13573,13304,13041,12765,12478,12185,11896,11594,11331,11072,10830,10578,10315,10014,9686,9387,9108,8862,8649,8475,8317,8197,8101,8022,7958,7890,7828,7739,7589,7406,7263,7125,7006,6915,6834,6777,6720,6683,6665,6630,6626,6621,6632,6647,6484,6187,5753,5149,21.6,21.6,21.9,1568508,0.0,13.6,12.0,5.0,538,-1.00,-1.00,58.6946,-19.508265,0.000612,,,,,129 +SATSLF0720,2024246,15.509874,4.03,0.0565,0.1016,0.0165,0.00,16203,647,1,691,699,701,705,704,704,708,722,709,731,726,735,767,903,1239,1956,3137,4496,5745,6666,7315,7789,8204,8663,9189,9810,10572,11450,12442,13566,14747,15917,17044,18002,18729,19169,19309,19105,18745,18200,17609,17034,16590,16216,15984,15913,15992,16242,16660,17237,17993,18900,19977,21189,22511,23976,25472,26977,28390,29650,30662,31418,31813,31808,31478,30829,29900,28844,27617,26420,25257,24163,23175,22298,21559,20963,20467,20081,19781,19619,19504,19551,19653,19836,20101,20439,20876,21396,21978,22581,23243,23905,24517,25092,25559,25949,26205,26245,26141,25861,25366,24722,24002,23197,22311,21451,20592,19823,19126,18454,17895,17409,17012,16679,16439,16279,16165,16130,16154,16242,16403,16633,16922,17285,17725,18209,18805,19410,20062,20733,21467,22189,22944,23649,24369,25033,25621,26199,26617,26949,27185,27299,27331,27218,27011,26677,26285,25780,25209,24624,23978,23339,22668,22005,21366,20757,20156,19611,19106,18637,18221,17850,17526,17233,16978,16730,16518,16311,16116,15914,15746,15573,15429,15322,15220,15152,15070,15045,15005,15015,15019,15041,15054,15098,15150,15169,15220,15267,15269,15290,15282,15303,15318,15356,15353,15342,15306,15217,15171,15115,15015,14913,14777,14608,14439,14259,14037,13842,13586,13316,13059,12776,12477,12181,11880,11595,11323,11070,10842,10598,10332,10014,9717,9381,9113,8870,8658,8480,8327,8206,8100,8023,7945,7895,7817,7731,7591,7421,7268,7119,7015,6911,6834,6773,6721,6677,6661,6653,6655,6625,6637,6647,6494,6185,5757,5143,21.6,21.6,22.0,1568509,0.3,13.6,12.0,5.0,447,-1.00,-1.00,57.9908,-19.224230,0.000557,,,,,136 +SATSLF0720,2024246,15.510130,4.07,0.0570,0.1015,0.0172,0.00,16195,647,1,706,705,697,707,701,701,718,699,719,716,726,734,756,874,1206,1930,3115,4490,5725,6645,7289,7750,8207,8626,9169,9793,10557,11426,12416,13543,14729,15890,16998,17961,18682,19122,19255,19081,18699,18176,17581,17024,16561,16193,15970,15897,15966,16224,16617,17207,17956,18861,19937,21165,22494,23937,25440,26925,28357,29633,30617,31369,31757,31763,31442,30802,29898,28809,27585,26374,25224,24140,23110,22283,21533,20926,20437,20043,19770,19602,19507,19531,19634,19824,20089,20430,20867,21384,21953,22571,23240,23892,24513,25083,25570,25926,26181,26232,26117,25840,25355,24721,23995,23204,22318,21438,20586,19819,19113,18454,17880,17414,17009,16662,16433,16269,16157,16127,16160,16237,16425,16640,16932,17291,17725,18226,18779,19412,20037,20725,21474,22205,22957,23662,24374,25036,25638,26194,26623,26964,27202,27319,27329,27243,27016,26690,26281,25776,25198,24614,23978,23336,22670,22000,21362,20748,20160,19597,19107,18637,18221,17860,17521,17227,16955,16715,16514,16312,16137,15933,15755,15594,15435,15333,15209,15145,15064,15024,15005,15011,15024,15047,15080,15117,15141,15163,15214,15273,15273,15303,15306,15313,15336,15365,15351,15346,15299,15218,15150,15083,15003,14920,14776,14629,14455,14257,14061,13826,13589,13317,13057,12776,12485,12194,11885,11605,11326,11081,10839,10597,10332,10023,9705,9378,9105,8857,8653,8477,8322,8196,8089,8007,7939,7894,7827,7736,7605,7425,7273,7157,7023,6923,6840,6776,6717,6683,6657,6644,6631,6625,6646,6651,6484,6179,5760,5126,21.7,21.6,22.0,1568510,0.3,13.5,12.0,5.0,435,-1.00,-1.00,58.2156,-19.294984,0.000559,,,,,140 +SATSLF0720,2024246,15.510383,4.02,0.0563,0.1027,0.0178,0.00,16151,647,1,696,693,697,701,706,688,702,704,711,715,709,719,759,883,1212,1941,3107,4478,5706,6624,7270,7737,8163,8597,9134,9738,10501,11369,12372,13489,14665,15836,16948,17911,18643,19069,19207,19027,18645,18105,17519,16956,16501,16126,15897,15841,15926,16161,16569,17164,17906,18802,19892,21100,22423,23878,25349,26849,28270,29531,30542,31301,31691,31697,31364,30718,29769,28724,27491,26314,25158,24069,23081,22222,21485,20881,20369,19995,19710,19539,19456,19463,19575,19765,20028,20371,20801,21325,21889,22505,23189,23830,24426,25025,25498,25856,26120,26176,26040,25767,25290,24649,23913,23125,22257,21397,20549,19769,19054,18403,17840,17370,16958,16641,16373,16226,16129,16078,16101,16190,16352,16578,16886,17248,17674,18182,18738,19363,19991,20676,21395,22139,22896,23613,24316,24978,25565,26125,26551,26871,27130,27224,27248,27157,26926,26601,26210,25717,25145,24574,23921,23273,22614,21955,21328,20704,20113,19538,19057,18583,18170,17808,17467,17193,16932,16689,16485,16273,16093,15898,15701,15552,15404,15297,15193,15122,15029,14999,14977,14954,14979,14998,15033,15062,15104,15130,15197,15237,15257,15260,15279,15284,15296,15322,15322,15318,15261,15193,15129,15059,14960,14871,14728,14594,14405,14233,14022,13797,13555,13298,13029,12748,12440,12161,11848,11580,11300,11056,10818,10585,10311,10010,9693,9373,9083,8837,8630,8449,8311,8174,8072,7997,7933,7875,7809,7731,7586,7409,7259,7105,7011,6906,6822,6761,6699,6667,6648,6647,6630,6620,6615,6635,6477,6164,5733,5123,21.7,21.6,22.1,1568511,0.3,13.6,12.0,5.0,426,-1.00,-1.00,58.8237,-19.496067,0.000637,,,,,245 +SATSLF0720,2024246,15.510643,4.00,0.0560,0.1022,0.0177,0.00,16169,647,1,717,715,708,709,693,687,709,709,714,718,728,733,777,896,1226,1953,3127,4485,5731,6656,7282,7769,8186,8620,9143,9764,10523,11392,12389,13499,14690,15866,16978,17933,18663,19108,19236,19056,18682,18144,17560,16998,16525,16164,15937,15853,15930,16205,16601,17181,17911,18848,19917,21129,22445,23908,25390,26877,28297,29553,30555,31320,31722,31721,31400,30740,29810,28747,27518,26336,25165,24097,23097,22247,21517,20898,20423,20012,19720,19555,19478,19482,19587,19777,20046,20392,20834,21349,21939,22546,23206,23848,24473,25037,25509,25873,26148,26200,26088,25797,25313,24680,23968,23155,22276,21406,20549,19800,19076,18421,17865,17387,16988,16658,16406,16235,16145,16099,16116,16210,16383,16584,16903,17264,17696,18182,18766,19377,20014,20697,21438,22170,22919,23626,24331,24999,25589,26157,26573,26903,27141,27245,27269,27174,26949,26628,26237,25732,25165,24581,23925,23299,22618,21983,21345,20736,20129,19582,19088,18603,18188,17827,17481,17195,16938,16701,16500,16293,16104,15905,15715,15559,15410,15307,15201,15122,15047,15002,14981,14976,14987,15013,15042,15082,15111,15154,15188,15247,15265,15274,15291,15276,15297,15329,15318,15311,15261,15217,15133,15086,15001,14901,14760,14603,14425,14232,14027,13803,13557,13297,13030,12771,12456,12187,11874,11603,11321,11062,10823,10587,10306,10005,9703,9389,9110,8863,8649,8471,8320,8192,8092,8010,7932,7877,7813,7728,7581,7414,7268,7127,7008,6919,6838,6775,6711,6676,6656,6648,6635,6629,6642,6655,6498,6173,5746,5118,21.7,21.6,22.1,1568512,0.2,13.5,12.0,5.0,426,-1.00,-1.00,58.3235,-19.304798,0.000589,,,,,21 +SATSLF0720,2024246,15.510901,4.13,0.0579,0.1021,0.0175,0.00,16167,647,1,702,707,717,707,715,721,725,717,725,732,736,739,791,900,1212,1950,3126,4481,5726,6644,7282,7754,8173,8630,9159,9773,10539,11400,12401,13505,14699,15857,16955,17920,18635,19085,19213,19012,18663,18105,17531,16968,16507,16147,15922,15837,15918,16183,16589,17181,17920,18835,19902,21131,22445,23889,25378,26862,28283,29542,30564,31301,31703,31703,31366,30715,29808,28746,27527,26329,25179,24106,23098,22225,21491,20882,20377,19998,19722,19569,19480,19484,19587,19765,20032,20388,20829,21354,21908,22521,23188,23835,24451,25021,25512,25874,26131,26201,26066,25786,25296,24656,23940,23138,22263,21401,20553,19781,19075,18429,17842,17387,16974,16650,16416,16237,16134,16092,16113,16215,16378,16613,16898,17276,17693,18196,18756,19358,20023,20697,21432,22169,22903,23623,24328,24977,25569,26158,26576,26899,27148,27252,27274,27182,26962,26629,26241,25761,25172,24571,23940,23289,22625,21964,21324,20725,20111,19554,19076,18605,18189,17828,17502,17210,16945,16701,16503,16303,16113,15921,15720,15546,15403,15318,15205,15116,15059,15021,15005,15000,15012,15017,15037,15085,15133,15156,15206,15257,15271,15276,15292,15293,15303,15329,15332,15319,15251,15203,15137,15088,14989,14893,14750,14609,14432,14242,14021,13821,13568,13308,13056,12773,12466,12178,11869,11581,11331,11070,10838,10597,10326,10025,9701,9383,9111,8866,8650,8488,8325,8192,8089,7995,7935,7887,7813,7725,7584,7409,7263,7125,7021,6913,6834,6766,6725,6682,6649,6655,6638,6633,6642,6643,6494,6183,5748,5139,21.7,21.7,22.1,1568513,0.2,13.5,11.9,5.0,432,-1.00,-1.00,58.3813,-19.323601,0.000573,,,,,144 +SATSLF0720,2024246,15.511153,4.06,0.0568,0.1029,0.0177,0.00,16143,647,1,705,703,703,713,715,727,721,725,731,722,718,722,762,868,1205,1930,3111,4477,5702,6615,7275,7752,8167,8624,9142,9774,10506,11381,12376,13487,14665,15825,16933,17886,18609,19049,19192,19016,18638,18109,17505,16937,16484,16116,15885,15831,15914,16165,16589,17156,17894,18789,19863,21085,22405,23851,25334,26807,28249,29505,30510,31245,31642,31661,31326,30679,29761,28709,27479,26285,25131,24051,23046,22187,21466,20848,20360,19973,19704,19536,19449,19450,19553,19734,20007,20359,20808,21302,21879,22494,23158,23803,24408,25000,25467,25836,26106,26152,26041,25769,25266,24635,23920,23109,22238,21365,20518,19751,19051,18400,17834,17368,16953,16638,16394,16224,16122,16068,16098,16192,16341,16578,16869,17239,17671,18161,18726,19336,19980,20692,21393,22137,22874,23604,24298,24955,25546,26114,26537,26864,27100,27197,27230,27130,26917,26594,26198,25706,25141,24544,23905,23255,22590,21943,21282,20685,20114,19541,19051,18578,18170,17821,17474,17187,16909,16691,16481,16275,16083,15900,15689,15535,15399,15273,15164,15096,15021,14978,14957,14951,14973,14989,15020,15057,15084,15123,15177,15239,15245,15262,15269,15276,15287,15316,15306,15292,15251,15184,15131,15056,14973,14869,14726,14593,14405,14213,14003,13789,13568,13297,13031,12760,12461,12165,11868,11573,11302,11048,10806,10567,10296,9997,9672,9371,9091,8858,8638,8472,8317,8197,8080,7991,7915,7872,7800,7715,7591,7413,7249,7120,7010,6911,6822,6756,6704,6661,6638,6637,6620,6617,6637,6629,6466,6162,5734,5115,21.7,21.7,22.2,1568514,0.4,13.5,12.0,5.0,425,-1.00,-1.00,58.5160,-19.350203,0.000552,,,,,117 +SATSLF0720,2024246,15.511412,4.00,0.0561,0.1031,0.0176,0.00,16149,647,1,691,705,686,699,700,698,717,714,705,719,716,736,774,881,1217,1946,3093,4467,5691,6609,7256,7731,8153,8599,9127,9770,10512,11383,12382,13488,14676,15828,16932,17893,18605,19046,19202,19009,18642,18109,17511,16956,16494,16129,15893,15835,15920,16154,16551,17129,17903,18805,19869,21080,22417,23863,25351,26837,28265,29506,30524,31271,31668,31659,31341,30674,29774,28712,27493,26297,25134,24057,23054,22187,21457,20850,20360,19979,19713,19541,19440,19476,19573,19753,20009,20352,20786,21306,21860,22490,23161,23818,24432,25000,25490,25847,26105,26169,26052,25751,25264,24646,23921,23127,22247,21389,20541,19767,19055,18404,17832,17357,16955,16654,16406,16229,16146,16082,16102,16201,16346,16571,16883,17251,17673,18165,18740,19346,19982,20665,21390,22139,22897,23597,24311,24960,25572,26134,26554,26877,27131,27218,27228,27148,26933,26610,26219,25723,25153,24573,23933,23286,22625,21962,21325,20699,20113,19538,19062,18576,18174,17812,17480,17195,16924,16674,16480,16285,16069,15895,15724,15549,15402,15267,15173,15107,15015,14979,14967,14981,14989,15010,15035,15065,15104,15136,15180,15243,15252,15269,15277,15299,15302,15335,15328,15289,15253,15189,15134,15061,14978,14888,14733,14587,14411,14221,14021,13813,13573,13305,13047,12773,12472,12168,11867,11580,11307,11056,10813,10574,10317,10010,9687,9373,9082,8841,8633,8456,8311,8170,8075,8007,7938,7887,7825,7733,7589,7413,7262,7133,7005,6899,6827,6762,6716,6673,6653,6640,6631,6622,6629,6627,6483,6165,5741,5119,21.7,21.8,22.2,1568515,0.3,13.5,12.0,5.0,432,-1.00,-1.00,58.8275,-19.486726,0.000615,,,,,75 +SATSLF0720,2024246,15.511666,4.14,0.0580,0.1032,0.0177,0.00,16146,647,1,693,703,701,701,713,709,728,722,727,724,728,731,783,891,1216,1959,3113,4486,5715,6621,7271,7739,8177,8617,9143,9772,10521,11386,12389,13501,14675,15849,16942,17898,18619,19050,19186,19008,18645,18109,17523,16967,16494,16134,15910,15847,15911,16162,16570,17151,17897,18810,19889,21109,22429,23876,25344,26826,28241,29495,30507,31260,31659,31668,31345,30706,29770,28726,27484,26295,25134,24037,23047,22185,21458,20849,20358,19974,19681,19537,19436,19472,19550,19745,20009,20363,20789,21310,21874,22486,23155,23809,24439,25014,25495,25844,26114,26165,26037,25772,25264,24640,23921,23127,22241,21366,20498,19751,19053,18388,17841,17363,16958,16645,16378,16215,16106,16078,16090,16203,16347,16587,16885,17244,17670,18171,18733,19344,19973,20649,21386,22131,22877,23587,24295,24962,25561,26112,26551,26871,27117,27219,27218,27128,26921,26597,26202,25716,25141,24538,23911,23274,22613,21941,21316,20672,20103,19544,19042,18567,18175,17817,17481,17181,16928,16666,16475,16263,16073,15889,15691,15527,15380,15281,15173,15109,15025,14998,14971,14973,14968,14993,15013,15058,15105,15125,15178,15236,15249,15258,15278,15291,15305,15319,15316,15300,15251,15189,15133,15064,14954,14875,14725,14590,14423,14233,14025,13805,13556,13290,13021,12737,12435,12151,11857,11561,11301,11049,10804,10577,10308,10016,9694,9380,9086,8849,8630,8461,8301,8170,8076,7993,7925,7863,7818,7729,7577,7405,7262,7117,7003,6911,6826,6759,6706,6672,6650,6640,6627,6631,6629,6631,6476,6181,5741,5121,21.7,21.8,22.2,1568516,0.3,13.5,11.9,5.0,436,-1.00,-1.00,58.1667,-19.212560,0.000516,,,,,70 +SATSLF0720,2024246,15.511918,4.20,0.0588,0.1046,0.0191,0.00,16091,647,1,708,716,707,715,712,716,713,713,729,712,727,743,769,885,1212,1929,3089,4454,5685,6584,7235,7703,8123,8568,9091,9717,10457,11314,12309,13420,14591,15752,16853,17808,18536,18960,19077,18919,18538,18004,17421,16873,16419,16056,15838,15765,15830,16087,16487,17060,17811,18716,19790,21008,22325,23756,25251,26720,28138,29381,30373,31137,31530,31524,31210,30557,29645,28587,27362,26177,25024,23936,22958,22094,21376,20775,20282,19905,19633,19464,19373,19365,19474,19665,19924,20285,20711,21239,21800,22429,23077,23727,24336,24912,25382,25735,26016,26069,25950,25670,25181,24541,23821,23035,22169,21298,20461,19712,18997,18354,17784,17313,16901,16581,16321,16149,16055,16017,16037,16125,16296,16531,16828,17208,17621,18110,18667,19281,19917,20593,21322,22065,22806,23521,24218,24883,25472,26038,26465,26792,27035,27142,27152,27053,26837,26523,26109,25628,25076,24465,23840,23192,22537,21872,21244,20650,20037,19500,18998,18522,18123,17768,17409,17123,16847,16615,16412,16235,16029,15846,15667,15494,15357,15246,15158,15077,15003,14958,14928,14931,14932,14948,14964,15013,15065,15081,15141,15211,15205,15226,15239,15240,15260,15284,15269,15260,15218,15154,15087,15024,14921,14839,14704,14565,14388,14209,13988,13773,13530,13258,12990,12701,12427,12121,11833,11538,11271,11034,10791,10550,10283,9993,9661,9348,9059,8813,8597,8435,8292,8173,8064,7986,7919,7858,7801,7710,7557,7387,7226,7107,6992,6886,6820,6752,6696,6661,6641,6634,6613,6605,6629,6613,6461,6153,5729,5110,21.7,21.8,22.2,1568517,0.2,13.4,11.9,5.0,436,-1.00,-1.00,58.6728,-19.342580,0.000608,,,,,167 +SATSLF0720,2024246,15.512174,4.19,0.0587,0.1039,0.0180,0.00,16127,647,1,707,704,708,710,717,731,734,737,730,733,725,735,775,898,1225,1949,3115,4480,5707,6621,7264,7730,8172,8597,9139,9755,10493,11367,12370,13450,14647,15812,16914,17863,18588,19022,19157,18977,18615,18082,17481,16925,16464,16097,15868,15809,15881,16140,16545,17116,17883,18785,19845,21081,22401,23841,25320,26789,28194,29462,30453,31210,31613,31604,31289,30628,29707,28661,27428,26265,25097,24001,23015,22153,21433,20819,20337,19947,19654,19498,19405,19415,19515,19713,19978,20326,20750,21272,21836,22453,23113,23770,24378,24964,25420,25812,26072,26125,26022,25741,25245,24600,23893,23089,22222,21345,20505,19722,19034,18370,17815,17354,16949,16622,16375,16210,16104,16062,16085,16169,16320,16555,16853,17222,17655,18143,18722,19333,19965,20653,21378,22106,22861,23570,24266,24929,25525,26077,26513,26844,27086,27193,27200,27111,26893,26567,26167,25659,25104,24506,23864,23216,22567,21915,21299,20692,20093,19525,19027,18547,18149,17781,17453,17165,16904,16678,16464,16268,16061,15873,15682,15507,15365,15255,15156,15083,15017,14985,14971,14969,14967,14990,15011,15034,15081,15116,15173,15229,15250,15254,15272,15266,15283,15298,15296,15290,15249,15178,15122,15044,14950,14848,14720,14582,14412,14222,14005,13792,13549,13281,13024,12728,12440,12148,11860,11573,11294,11040,10809,10562,10300,9990,9691,9377,9102,8852,8640,8466,8298,8171,8071,7993,7923,7875,7815,7721,7568,7387,7241,7121,7013,6913,6830,6775,6717,6675,6645,6640,6628,6620,6626,6643,6481,6163,5737,5114,21.7,21.8,22.2,1568518,0.6,13.4,11.9,5.0,434,-1.00,-1.00,58.1152,-19.159225,0.000582,,,,,189 +SATSLF0720,2024246,15.512428,4.03,0.0564,0.1039,0.0185,0.00,16120,647,1,700,701,697,694,702,699,713,711,723,726,722,742,773,883,1202,1945,3111,4454,5703,6610,7251,7735,8157,8603,9134,9749,10489,11349,12336,13467,14632,15786,16904,17865,18578,19017,19163,18957,18596,18053,17458,16907,16445,16082,15850,15778,15870,16127,16532,17120,17859,18773,19844,21053,22374,23812,25296,26754,28189,29426,30437,31199,31589,31607,31272,30630,29709,28659,27440,26240,25079,24000,22997,22141,21429,20807,20318,19938,19645,19500,19405,19417,19514,19707,19970,20321,20754,21273,21845,22483,23125,23768,24378,24968,25433,25801,26054,26115,25996,25733,25245,24605,23882,23076,22205,21337,20480,19728,19016,18358,17805,17337,16932,16616,16362,16194,16107,16055,16090,16165,16329,16548,16849,17228,17644,18129,18706,19316,19945,20638,21370,22103,22848,23566,24263,24929,25514,26077,26507,26825,27077,27183,27193,27108,26877,26563,26163,25676,25106,24503,23863,23228,22577,21913,21290,20680,20081,19529,19029,18556,18137,17779,17447,17159,16895,16667,16453,16267,16062,15862,15699,15513,15367,15253,15145,15065,15003,14955,14942,14953,14952,14984,15018,15060,15101,15127,15170,15229,15243,15235,15255,15252,15267,15283,15278,15269,15249,15174,15105,15037,14958,14856,14734,14570,14403,14213,14003,13789,13545,13286,13008,12721,12445,12153,11845,11581,11284,11043,10813,10556,10307,10001,9668,9351,9069,8824,8620,8461,8318,8190,8070,7991,7903,7861,7797,7709,7563,7412,7240,7117,7011,6910,6831,6760,6703,6664,6641,6635,6631,6624,6636,6622,6465,6171,5732,5109,21.7,21.8,22.2,1568519,0.0,13.4,11.9,5.0,436,-1.00,-1.00,59.0541,-19.542436,0.000594,,,,,123 +SATSLF0720,2024246,15.512680,4.12,0.0578,0.1043,0.0181,0.00,16124,647,1,698,693,712,698,704,705,727,719,732,740,729,740,774,891,1216,1943,3093,4465,5685,6617,7257,7741,8155,8611,9123,9740,10503,11369,12358,13463,14649,15820,16918,17885,18593,19026,19144,18985,18613,18075,17480,16921,16461,16092,15871,15796,15863,16129,16541,17111,17863,18779,19854,21061,22403,23845,25322,26788,28210,29469,30461,31222,31609,31613,31276,30626,29721,28673,27429,26237,25087,24007,23010,22153,21416,20812,20333,19937,19650,19482,19387,19418,19518,19701,19977,20317,20773,21291,21843,22467,23131,23769,24386,24965,25445,25809,26064,26122,26001,25731,25238,24614,23893,23093,22220,21347,20484,19728,19025,18360,17803,17339,16933,16626,16368,16194,16100,16037,16075,16169,16329,16564,16848,17227,17650,18144,18713,19319,19960,20628,21374,22116,22853,23569,24282,24925,25536,26084,26524,26844,27081,27182,27206,27101,26882,26544,26155,25673,25110,24521,23901,23235,22592,21922,21279,20661,20069,19505,19025,18549,18148,17787,17472,17169,16906,16672,16457,16263,16058,15868,15677,15517,15369,15259,15163,15089,15009,14965,14949,14956,14954,15000,15017,15042,15082,15119,15171,15226,15230,15229,15255,15255,15271,15298,15307,15305,15253,15181,15117,15042,14946,14849,14724,14569,14402,14206,14003,13797,13562,13286,13034,12726,12439,12131,11838,11550,11274,11032,10795,10558,10299,10001,9689,9376,9107,8837,8626,8459,8289,8161,8053,7987,7914,7861,7799,7728,7585,7402,7242,7125,7005,6915,6821,6753,6711,6661,6644,6627,6620,6610,6629,6617,6479,6165,5737,5119,21.7,21.8,22.3,1568519,0.1,13.3,12.0,5.0,428,-1.00,-1.00,58.5046,-19.321260,0.000684,,,,,113 +SATSLF0720,2024246,15.512936,4.26,0.0597,0.1051,0.0194,0.00,16083,647,1,713,710,711,701,717,713,721,725,716,739,744,752,781,901,1211,1951,3111,4461,5701,6609,7237,7731,8141,8593,9115,9722,10465,11338,12334,13433,14606,15761,16860,17815,18541,18959,19101,18933,18552,18023,17454,16880,16424,16069,15826,15771,15845,16091,16482,17080,17836,18741,19800,21001,22326,23758,25245,26709,28137,29378,30372,31124,31520,31507,31184,30542,29617,28568,27349,26176,25033,23941,22945,22097,21355,20757,20274,19873,19608,19437,19354,19353,19455,19648,19906,20267,20705,21214,21771,22397,23060,23715,24326,24885,25370,25734,26002,26037,25915,25657,25174,24535,23817,23014,22160,21293,20437,19667,18967,18334,17771,17290,16886,16582,16320,16146,16057,16014,16029,16127,16289,16516,16817,17186,17617,18098,18663,19267,19892,20581,21305,22042,22789,23504,24214,24858,25443,26011,26432,26743,26994,27106,27127,27037,26836,26509,26105,25606,25045,24458,23808,23155,22511,21863,21221,20598,20037,19469,18957,18491,18090,17736,17414,17131,16869,16601,16411,16201,16016,15821,15639,15485,15339,15223,15138,15053,14983,14940,14933,14922,14925,14950,14976,15022,15041,15079,15136,15184,15200,15211,15221,15212,15249,15272,15277,15262,15207,15141,15075,15007,14913,14822,14687,14542,14370,14186,13976,13768,13515,13257,12992,12717,12405,12115,11817,11540,11258,11020,10786,10553,10287,9997,9669,9351,9069,8831,8614,8442,8283,8136,8043,7963,7903,7842,7795,7697,7554,7403,7225,7095,6979,6884,6803,6739,6686,6663,6630,6630,6615,6597,6609,6612,6456,6157,5725,5122,21.7,21.8,22.3,1568520,0.3,13.4,12.0,5.0,436,-1.00,-1.00,57.8050,-18.974407,0.000568,,,,,243 +SATSLF0720,2024246,15.513189,4.09,0.0573,0.1049,0.0186,0.00,16102,647,1,711,705,711,705,704,716,721,718,724,725,739,739,779,901,1236,1958,3104,4471,5701,6609,7239,7703,8151,8591,9107,9735,10494,11352,12360,13466,14613,15784,16885,17835,18560,18989,19118,18935,18573,18041,17445,16889,16445,16073,15845,15776,15867,16096,16502,17088,17838,18737,19808,21028,22340,23784,25239,26727,28166,29392,30403,31141,31547,31549,31230,30578,29674,28614,27384,26208,25040,23957,22948,22103,21377,20790,20300,19913,19618,19461,19362,19370,19464,19661,19930,20288,20715,21241,21809,22433,23098,23748,24360,24925,25396,25767,26021,26071,25963,25677,25194,24567,23842,23048,22180,21312,20463,19694,18997,18354,17803,17322,16917,16596,16357,16177,16097,16033,16067,16141,16311,16545,16838,17201,17623,18117,18686,19301,19917,20595,21332,22061,22817,23525,24241,24873,25477,26035,26485,26810,27057,27146,27149,27081,26849,26534,26140,25634,25069,24485,23845,23201,22556,21870,21251,20640,20050,19488,18997,18526,18106,17751,17421,17138,16873,16644,16445,16248,16042,15858,15667,15497,15357,15255,15137,15071,14989,14939,14939,14930,14947,14965,14978,15015,15069,15108,15145,15196,15214,15232,15242,15250,15259,15281,15277,15264,15214,15163,15101,15025,14945,14853,14717,14568,14400,14205,13997,13780,13537,13268,13011,12716,12426,12146,11840,11569,11286,11041,10799,10564,10284,9989,9672,9346,9070,8845,8616,8447,8281,8155,8060,7986,7906,7867,7795,7720,7569,7383,7254,7114,7001,6905,6825,6768,6697,6654,6649,6626,6603,6607,6626,6629,6478,6170,5742,5113,21.7,21.8,22.3,1568521,0.0,13.4,11.9,5.0,435,-1.00,-1.00,58.6700,-19.354786,0.000539,,,,,57 +SATSLF0720,2024246,15.513440,4.18,0.0585,0.1047,0.0188,0.00,16092,647,1,709,702,696,704,714,723,727,739,741,746,746,763,781,899,1207,1942,3100,4485,5692,6613,7251,7717,8138,8584,9106,9740,10469,11351,12342,13458,14629,15773,16882,17824,18538,18973,19101,18926,18560,18026,17443,16887,16421,16075,15841,15788,15845,16103,16491,17067,17824,18740,19793,21019,22321,23774,25236,26723,28136,29382,30391,31141,31523,31539,31213,30557,29636,28587,27365,26195,25033,23954,22961,22099,21361,20750,20279,19904,19621,19461,19370,19387,19490,19675,19942,20265,20713,21239,21812,22426,23068,23719,24326,24896,25371,25747,26013,26069,25937,25678,25193,24574,23845,23048,22176,21307,20455,19693,18981,18337,17773,17317,16913,16590,16335,16164,16071,16017,16051,16146,16305,16533,16820,17191,17607,18097,18661,19279,19912,20596,21325,22056,22801,23520,24203,24880,25465,26033,26458,26786,27026,27118,27130,27042,26816,26506,26116,25613,25065,24465,23846,23185,22535,21880,21242,20628,20039,19470,18990,18528,18116,17751,17421,17143,16855,16627,16427,16211,16028,15825,15655,15476,15351,15237,15146,15073,14980,14948,14917,14931,14944,14961,14982,15024,15060,15087,15153,15197,15201,15212,15213,15213,15259,15262,15259,15259,15209,15142,15095,15008,14947,14840,14691,14538,14378,14177,13973,13756,13505,13262,12998,12715,12418,12134,11840,11559,11272,11024,10790,10554,10263,9984,9655,9358,9070,8821,8613,8444,8278,8145,8051,7971,7915,7865,7800,7706,7564,7393,7227,7107,6987,6891,6822,6741,6683,6659,6629,6631,6609,6598,6616,6624,6469,6170,5730,5107,21.8,21.9,22.4,1568522,0.4,13.4,12.0,5.0,437,-1.00,-1.00,58.3128,-19.195005,0.000550,,,,,142 +SATSLF0720,2024246,15.513695,4.17,0.0584,0.1056,0.0192,0.00,16072,647,1,701,701,705,715,720,721,727,737,733,726,733,748,785,892,1213,1952,3105,4453,5686,6591,7236,7707,8122,8578,9088,9710,10449,11326,12317,13418,14582,15731,16839,17798,18504,18947,19088,18912,18530,17992,17407,16853,16392,16036,15816,15744,15825,16058,16477,17073,17804,18715,19750,20995,22294,23718,25205,26668,28101,29335,30341,31092,31478,31480,31168,30504,29596,28529,27314,26146,24989,23920,22918,22061,21331,20727,20245,19862,19591,19421,19329,19341,19443,19628,19905,20242,20677,21195,21753,22369,23047,23686,24299,24884,25332,25715,25987,26017,25894,25618,25159,24535,23803,23017,22157,21280,20445,19673,18958,18318,17746,17282,16870,16549,16318,16139,16047,15995,16023,16102,16278,16503,16800,17152,17593,18085,18658,19264,19898,20583,21297,22039,22778,23491,24188,24857,25441,26007,26442,26742,26989,27090,27111,27015,26805,26484,26081,25602,25018,24437,23812,23165,22513,21840,21219,20628,20024,19466,18970,18489,18097,17732,17409,17104,16839,16595,16412,16219,16021,15821,15644,15478,15348,15213,15129,15057,14969,14945,14906,14914,14906,14937,14979,15010,15062,15079,15129,15172,15195,15213,15209,15206,15216,15251,15245,15239,15197,15143,15081,15010,14925,14838,14686,14545,14360,14171,13969,13761,13500,13255,12987,12710,12417,12115,11821,11549,11261,11025,10777,10539,10268,9974,9642,9330,9052,8822,8605,8444,8282,8158,8048,7973,7898,7851,7781,7688,7576,7373,7227,7097,6992,6885,6796,6722,6685,6642,6637,6633,6613,6628,6627,6621,6458,6161,5706,5103,21.8,21.9,22.4,1568523,0.0,13.4,11.9,5.0,436,-1.00,-1.00,58.3720,-19.189058,0.000595,,,,,48 +SATSLF0720,2024246,15.513948,4.13,0.0579,0.1058,0.0198,0.00,16048,647,1,710,698,712,694,701,695,721,722,724,737,730,729,773,878,1215,1937,3096,4455,5665,6595,7233,7691,8121,8564,9079,9703,10425,11297,12281,13374,14543,15700,16818,17765,18483,18919,19057,18873,18489,17957,17369,16824,16357,16014,15778,15712,15790,16056,16460,17031,17765,18668,19736,20955,22258,23687,25161,26628,28061,29304,30295,31045,31442,31438,31112,30471,29560,28514,27274,26103,24938,23874,22877,22026,21314,20681,20227,19833,19554,19394,19323,19315,19427,19630,19869,20228,20645,21160,21731,22333,22998,23642,24261,24842,25309,25683,25950,25997,25882,25601,25109,24494,23769,22973,22117,21245,20411,19637,18948,18286,17739,17261,16855,16535,16288,16112,16026,15992,16009,16096,16261,16493,16765,17131,17576,18059,18621,19235,19866,20554,21268,22005,22749,23458,24152,24816,25389,25962,26381,26714,26957,27045,27072,26978,26765,26437,26042,25548,24997,24402,23757,23133,22474,21814,21193,20569,19987,19442,18944,18468,18062,17699,17360,17072,16819,16580,16385,16165,15987,15795,15617,15465,15313,15203,15102,15026,14939,14905,14897,14898,14917,14937,14954,14992,15018,15049,15106,15168,15175,15187,15202,15198,15217,15249,15242,15228,15169,15113,15061,14973,14889,14814,14661,14515,14349,14148,13952,13729,13484,13219,12971,12694,12395,12119,11813,11520,11257,11004,10752,10519,10255,9949,9632,9333,9040,8799,8602,8428,8279,8141,8039,7969,7899,7843,7782,7699,7555,7367,7221,7089,6974,6873,6797,6725,6691,6642,6630,6613,6592,6587,6601,6597,6451,6149,5718,5115,21.7,21.9,22.4,1568524,0.1,13.4,11.9,5.0,428,-1.00,-1.00,58.8672,-19.370371,0.000610,,,,,147 +SATSLF0720,2024246,15.514199,4.19,0.0587,0.1060,0.0200,0.00,16056,647,1,714,709,710,705,693,707,724,724,737,732,740,745,770,882,1210,1930,3094,4457,5685,6598,7246,7708,8134,8577,9094,9716,10448,11307,12307,13407,14581,15744,16826,17787,18505,18938,19065,18868,18507,17975,17378,16835,16384,16026,15806,15723,15809,16051,16455,17041,17780,18689,19738,20954,22275,23706,25189,26653,28084,29309,30327,31061,31445,31453,31122,30461,29579,28502,27291,26117,24967,23899,22892,22048,21317,20724,20245,19847,19575,19409,19313,19331,19412,19600,19863,20224,20642,21171,21738,22354,23013,23663,24272,24842,25334,25684,25965,26011,25897,25611,25133,24499,23768,22980,22118,21243,20413,19649,18939,18297,17736,17273,16864,16547,16308,16136,16059,15993,16023,16105,16253,16475,16761,17131,17564,18049,18631,19237,19876,20552,21270,22019,22758,23468,24166,24809,25414,25965,26391,26702,26960,27049,27079,26981,26773,26442,26049,25559,24999,24418,23800,23136,22499,21837,21208,20588,19990,19442,18949,18496,18097,17709,17393,17102,16837,16594,16386,16189,16003,15801,15623,15457,15316,15190,15093,15037,14934,14925,14904,14903,14909,14935,14961,14992,15018,15043,15111,15165,15181,15191,15200,15199,15223,15254,15250,15240,15192,15122,15056,14992,14897,14818,14673,14529,14345,14163,13952,13753,13505,13241,12983,12684,12389,12099,11813,11534,11253,11012,10775,10539,10275,9955,9651,9336,9056,8805,8605,8438,8280,8144,8042,7963,7902,7838,7785,7693,7559,7390,7221,7093,6967,6872,6805,6738,6695,6656,6631,6613,6598,6595,6611,6608,6443,6145,5721,5114,21.8,21.9,22.4,1568525,0.0,13.4,11.9,5.0,427,-1.00,-1.00,58.4351,-19.197917,0.000621,,,,,19 +SATSLF0720,2024246,15.514457,4.23,0.0593,0.1062,0.0197,0.00,16051,647,1,715,713,727,732,734,725,727,718,728,725,725,747,777,881,1217,1960,3114,4461,5689,6603,7233,7715,8125,8564,9077,9698,10449,11301,12289,13393,14557,15721,16816,17773,18480,18923,19037,18859,18497,17953,17387,16821,16369,16020,15799,15730,15803,16055,16445,17016,17776,18669,19719,20929,22253,23712,25170,26650,28062,29286,30279,31024,31410,31426,31088,30459,29543,28506,27272,26098,24946,23867,22887,22018,21286,20683,20204,19837,19561,19410,19305,19316,19420,19597,19878,20233,20649,21157,21732,22336,23001,23639,24267,24828,25302,25674,25938,25985,25850,25589,25113,24465,23765,22977,22109,21245,20409,19652,18945,18294,17737,17266,16855,16549,16293,16130,16036,15989,16010,16093,16258,16489,16777,17142,17560,18033,18602,19221,19860,20550,21274,22021,22745,23454,24153,24807,25382,25947,26385,26714,26953,27063,27088,26962,26775,26438,26041,25546,24990,24394,23763,23121,22485,21817,21191,20577,19990,19445,18947,18482,18070,17692,17379,17106,16834,16589,16389,16186,16008,15800,15622,15470,15324,15203,15096,15047,14953,14915,14894,14887,14883,14912,14936,14979,15034,15065,15115,15173,15184,15198,15207,15206,15212,15239,15241,15237,15173,15121,15067,14985,14909,14821,14680,14525,14359,14170,13956,13749,13506,13241,12983,12705,12416,12125,11823,11544,11261,11017,10765,10525,10277,9965,9666,9341,9064,8812,8603,8434,8280,8147,8050,7978,7908,7853,7796,7707,7565,7373,7218,7089,6969,6900,6790,6743,6682,6650,6626,6609,6596,6581,6613,6610,6465,6152,5720,5094,21.8,21.9,22.4,1568526,0.1,13.3,12.0,5.0,433,-1.00,-1.00,58.2269,-19.097427,0.000567,,,,,12 +SATSDF0720,2024246,15.759138,0.00,0.0000,0.0000,0.0000,0.00,648,0,1,634,629,628,627,612,618,629,622,619,627,627,629,618,633,629,634,645,642,630,634,625,637,645,657,665,666,665,660,654,651,651,644,653,660,651,663,658,645,655,653,654,657,646,647,644,643,665,653,667,658,661,657,655,663,656,663,642,645,641,641,631,639,651,650,662,644,659,655,661,651,659,653,652,658,649,658,657,647,659,658,667,650,654,642,651,647,647,658,651,650,637,642,644,654,640,659,653,644,651,645,646,641,653,653,649,647,651,661,649,646,646,653,645,640,650,650,660,668,661,659,644,648,650,638,647,652,644,647,647,657,649,659,648,651,634,640,629,629,630,633,638,629,651,649,646,645,659,657,645,643,647,635,635,640,642,640,648,640,632,633,647,637,645,653,657,650,659,667,657,641,654,644,643,643,642,650,651,642,643,642,652,637,644,649,647,648,650,653,642,657,645,637,641,644,638,645,648,656,650,663,662,661,659,653,651,634,635,646,654,645,645,650,654,656,653,644,659,652,654,655,661,664,659,670,669,658,646,658,657,657,661,654,656,648,655,654,652,658,668,661,665,656,657,646,638,641,647,635,643,659,650,659,653,648,654,492,0.0,0.0,0.0,1568525,0.8,14.1,0.1,5.0,54,0.00,0.00,0.0000,0.000000,0.000000,,,,,206 +SATSLF0720,2024246,15.759693,3.90,0.0546,0.1004,0.0168,0.00,16218,648,1,708,703,709,709,708,718,717,721,725,731,730,743,778,886,1208,1952,3121,4500,5751,6665,7315,7803,8243,8686,9215,9838,10584,11453,12477,13586,14773,15959,17056,18041,18745,19209,19334,19159,18784,18229,17633,17066,16599,16234,16001,15934,16021,16261,16673,17257,18005,18934,20002,21233,22554,24026,25522,27004,28429,29690,30701,31444,31874,31874,31541,30875,29959,28901,27649,26458,25289,24213,23203,22336,21605,20987,20503,20101,19817,19648,19557,19571,19677,19866,20117,20481,20916,21430,22009,22619,23303,23937,24555,25133,25612,25970,26232,26279,26160,25893,25405,24763,24025,23232,22352,21464,20626,19832,19131,18476,17913,17433,17018,16693,16446,16285,16178,16142,16181,16276,16433,16649,16942,17316,17737,18237,18800,19397,20057,20740,21469,22221,22971,23685,24386,25051,25652,26233,26642,26974,27216,27329,27340,27226,27031,26693,26284,25803,25216,24643,23997,23346,22693,22022,21381,20759,20177,19604,19115,18631,18245,17869,17548,17253,16976,16730,16521,16323,16129,15930,15748,15592,15442,15317,15210,15144,15062,15031,15005,15008,15029,15049,15070,15105,15143,15163,15220,15261,15269,15289,15300,15307,15334,15359,15357,15358,15300,15225,15163,15088,14987,14905,14761,14619,14442,14259,14036,13826,13576,13313,13053,12757,12475,12172,11876,11589,11306,11057,10821,10603,10325,10035,9712,9398,9121,8864,8654,8480,8330,8193,8098,8022,7941,7895,7829,7740,7604,7425,7268,7147,7029,6920,6831,6773,6701,6684,6658,6659,6629,6627,6647,6635,6482,6176,5749,5136,21.7,21.6,21.9,1568526,0.2,13.6,12.0,5.0,537,-1.00,-1.00,58.4518,-19.444845,0.000610,,,,,181 +SATSLF0720,2024246,15.759874,3.97,0.0556,0.1012,0.0169,0.00,16191,648,1,696,694,701,705,714,705,702,696,711,718,723,726,763,880,1223,1952,3125,4489,5743,6661,7298,7774,8203,8643,9179,9798,10540,11435,12425,13542,14728,15889,17011,17979,18690,19145,19277,19083,18720,18177,17585,17015,16555,16193,15960,15895,15965,16219,16637,17204,17962,18877,19947,21166,22501,23970,25445,26932,28356,29627,30633,31385,31788,31780,31437,30807,29881,28823,27596,26394,25248,24149,23141,22292,21538,20915,20443,20054,19780,19633,19522,19530,19633,19817,20080,20429,20869,21383,21947,22569,23229,23890,24497,25090,25561,25942,26189,26237,26120,25838,25367,24723,23995,23189,22306,21421,20561,19799,19102,18441,17880,17411,17010,16665,16439,16267,16162,16104,16135,16221,16379,16613,16918,17294,17725,18210,18793,19392,20038,20717,21442,22196,22942,23665,24363,25037,25608,26189,26615,26941,27194,27302,27300,27218,27000,26669,26275,25782,25209,24613,23976,23314,22661,21993,21364,20743,20149,19590,19100,18621,18219,17833,17526,17232,16956,16696,16506,16305,16109,15921,15744,15565,15425,15320,15220,15130,15064,15014,14999,15005,14997,15025,15054,15093,15126,15161,15204,15245,15277,15285,15293,15309,15314,15345,15334,15319,15280,15224,15160,15091,15013,14898,14771,14609,14437,14267,14042,13824,13590,13305,13033,12769,12477,12181,11889,11593,11317,11078,10817,10580,10318,10005,9690,9387,9092,8852,8656,8472,8316,8190,8081,8011,7937,7877,7825,7737,7589,7418,7252,7132,7013,6917,6839,6773,6711,6678,6656,6656,6637,6626,6647,6641,6488,6176,5748,5125,21.7,21.7,22.0,1568527,0.4,13.6,12.0,5.0,450,-1.00,-1.00,58.6058,-19.462825,0.000596,,,,,36 +SATSLF0720,2024246,15.760130,4.08,0.0571,0.1010,0.0165,0.00,16209,648,1,703,706,713,710,713,704,716,713,717,708,727,741,773,893,1210,1943,3119,4496,5742,6661,7299,7778,8206,8663,9193,9817,10553,11416,12439,13551,14734,15908,17035,18000,18721,19149,19295,19111,18745,18185,17589,17029,16561,16195,15986,15910,15994,16244,16658,17228,17981,18903,19952,21188,22519,23978,25467,26960,28400,29661,30657,31402,31811,31809,31490,30834,29904,28836,27606,26411,25240,24177,23157,22315,21563,20955,20478,20069,19800,19626,19529,19544,19636,19833,20101,20448,20894,21409,21992,22597,23267,23915,24535,25113,25580,25957,26204,26263,26128,25868,25371,24733,24018,23207,22344,21453,20619,19853,19141,18465,17898,17432,17025,16695,16442,16282,16161,16105,16155,16242,16400,16633,16941,17305,17747,18233,18800,19415,20046,20740,21484,22220,22966,23682,24391,25058,25650,26221,26642,26970,27226,27330,27329,27250,27037,26701,26297,25806,25229,24648,24000,23339,22688,22014,21394,20773,20177,19625,19128,18645,18238,17870,17532,17245,16977,16715,16531,16325,16139,15936,15750,15590,15442,15333,15215,15155,15076,15041,15022,15015,15035,15056,15074,15122,15144,15174,15229,15284,15278,15315,15321,15321,15339,15350,15355,15349,15293,15242,15172,15108,15015,14916,14797,14649,14464,14270,14063,13847,13601,13331,13056,12776,12487,12189,11880,11607,11331,11081,10843,10611,10333,10037,9710,9395,9109,8861,8654,8484,8334,8203,8097,8017,7941,7909,7837,7744,7605,7431,7280,7141,7025,6924,6846,6781,6714,6680,6673,6664,6632,6637,6657,6645,6498,6183,5757,5133,21.7,21.7,22.1,1568528,0.1,13.6,11.9,5.0,435,-1.00,-1.00,58.1066,-19.270527,0.000602,,,,,230 +SATSLF0720,2024246,15.760384,4.03,0.0564,0.1018,0.0171,0.00,16185,648,1,695,703,710,705,727,723,726,731,727,737,728,739,780,882,1214,1955,3129,4497,5737,6641,7307,7762,8192,8630,9165,9784,10537,11419,12430,13537,14726,15885,16994,17957,18677,19121,19242,19080,18685,18149,17563,16993,16547,16179,15949,15873,15949,16199,16610,17187,17944,18854,19923,21147,22478,23946,25420,26912,28342,29596,30610,31347,31755,31765,31421,30777,29849,28789,27549,26362,25208,24126,23117,22257,21531,20933,20436,20041,19752,19590,19495,19504,19613,19805,20052,20416,20843,21367,21945,22548,23232,23865,24485,25062,25533,25906,26179,26216,26114,25819,25347,24708,23983,23185,22299,21421,20574,19805,19091,18427,17874,17408,16997,16685,16418,16263,16157,16104,16140,16237,16400,16613,16927,17285,17717,18201,18791,19373,20021,20712,21448,22199,22930,23659,24357,25003,25609,26180,26607,26931,27179,27282,27286,27191,26987,26649,26256,25762,25185,24597,23965,23305,22650,21993,21353,20736,20149,19586,19081,18613,18220,17834,17510,17224,16958,16722,16506,16310,16114,15923,15732,15559,15417,15307,15218,15137,15053,15019,14994,15010,15006,15029,15058,15093,15134,15156,15232,15265,15267,15270,15293,15301,15312,15344,15338,15323,15273,15219,15154,15079,15003,14906,14773,14615,14454,14246,14034,13817,13568,13307,13044,12778,12464,12189,11883,11607,11326,11069,10827,10594,10314,10027,9700,9392,9121,8865,8661,8482,8326,8186,8086,8015,7934,7879,7825,7725,7586,7418,7266,7141,7029,6919,6851,6787,6722,6677,6662,6653,6635,6630,6655,6655,6493,6184,5760,5128,21.7,21.7,22.1,1568529,0.4,13.6,11.9,5.0,433,-1.00,-1.00,58.5279,-19.411788,0.000646,,,,,14 +SATSLF0720,2024246,15.760640,3.98,0.0557,0.1029,0.0181,0.00,16145,648,1,697,692,713,705,718,723,730,733,742,733,744,741,771,885,1201,1943,3093,4471,5692,6627,7261,7744,8168,8608,9140,9753,10503,11379,12379,13494,14667,15840,16925,17883,18627,19056,19201,18997,18615,18101,17497,16945,16481,16119,15882,15827,15898,16151,16557,17130,17889,18801,19872,21090,22409,23857,25338,26837,28236,29497,30505,31241,31667,31658,31330,30699,29766,28704,27473,26297,25129,24045,23059,22204,21477,20864,20375,19991,19705,19541,19446,19445,19559,19744,20022,20377,20793,21328,21880,22495,23155,23809,24426,24999,25472,25840,26105,26157,26034,25760,25274,24640,23933,23114,22245,21381,20534,19748,19047,18381,17818,17353,16952,16625,16381,16217,16118,16081,16098,16195,16353,16589,16881,17232,17662,18164,18725,19341,19974,20651,21374,22138,22878,23588,24296,24967,25556,26125,26550,26867,27101,27209,27208,27124,26905,26585,26189,25704,25130,24537,23912,23258,22619,21950,21305,20695,20094,19539,19057,18577,18185,17796,17473,17178,16917,16682,16482,16277,16089,15909,15701,15545,15403,15290,15176,15095,15025,14990,14962,14966,14966,14997,15031,15064,15098,15126,15168,15231,15240,15258,15265,15266,15293,15321,15294,15291,15247,15187,15118,15045,14971,14877,14745,14589,14417,14226,14029,13793,13560,13293,13027,12749,12461,12159,11871,11575,11305,11048,10807,10581,10315,10006,9680,9388,9093,8858,8637,8465,8311,8169,8074,7986,7925,7874,7811,7725,7577,7403,7243,7119,7003,6905,6839,6781,6729,6675,6666,6645,6632,6631,6636,6635,6470,6170,5738,5123,21.7,21.7,22.1,1568530,0.2,13.5,11.9,5.0,434,-1.00,-1.00,59.0882,-19.590310,0.000617,,,,,176 +SATSLF0720,2024246,15.760896,4.17,0.0584,0.1028,0.0176,0.00,16155,648,1,690,695,707,718,717,720,718,719,722,720,722,733,773,878,1207,1941,3104,4470,5712,6613,7263,7741,8174,8616,9138,9765,10523,11374,12387,13506,14672,15840,16951,17909,18632,19069,19208,19010,18657,18115,17521,16965,16498,16138,15913,15847,15924,16176,16591,17155,17921,18811,19896,21113,22436,23880,25367,26850,28278,29532,30536,31292,31685,31703,31349,30715,29780,28727,27501,26296,25127,24067,23076,22215,21480,20878,20386,20012,19737,19540,19451,19466,19572,19756,20018,20377,20812,21317,21880,22506,23187,23830,24440,25028,25501,25857,26120,26177,26053,25783,25297,24653,23941,23141,22265,21389,20546,19757,19063,18413,17838,17377,16960,16653,16408,16229,16139,16082,16102,16200,16358,16585,16883,17245,17676,18176,18730,19342,19984,20674,21398,22138,22890,23621,24317,24964,25561,26144,26553,26874,27127,27237,27246,27146,26934,26609,26193,25705,25149,24553,23932,23267,22618,21947,21313,20711,20117,19557,19060,18593,18185,17817,17493,17190,16925,16679,16482,16290,16092,15894,15709,15545,15396,15291,15194,15122,15030,15002,14976,14981,14980,15015,15014,15067,15093,15129,15174,15222,15243,15261,15273,15281,15293,15331,15332,15317,15264,15206,15137,15067,14969,14875,14745,14600,14422,14241,14023,13822,13569,13316,13030,12758,12453,12165,11862,11573,11309,11064,10820,10585,10313,10011,9695,9378,9100,8850,8651,8477,8334,8187,8083,8009,7943,7881,7819,7725,7577,7395,7239,7114,7010,6904,6829,6765,6704,6684,6659,6633,6631,6618,6633,6635,6470,6176,5738,5119,21.7,21.7,22.1,1568531,0.4,13.6,12.0,5.0,435,-1.00,-1.00,58.0934,-19.191976,0.000599,,,,,105 +SATSLF0720,2024246,15.761148,4.21,0.0589,0.1033,0.0183,0.00,16136,648,1,710,711,714,717,716,704,711,711,712,717,725,721,763,878,1221,1945,3103,4481,5707,6630,7281,7742,8166,8609,9124,9747,10501,11373,12361,13461,14651,15789,16903,17863,18579,19041,19165,18990,18601,18067,17495,16933,16485,16125,15897,15829,15894,16149,16556,17141,17891,18804,19874,21090,22402,23848,25335,26807,28225,29485,30485,31233,31648,31657,31316,30677,29754,28698,27459,26295,25118,24043,23053,22190,21467,20842,20357,19976,19686,19524,19430,19440,19547,19737,20004,20347,20795,21305,21879,22507,23169,23809,24401,24987,25475,25818,26097,26130,26019,25742,25280,24640,23915,23120,22241,21372,20527,19757,19062,18392,17842,17351,16955,16622,16380,16213,16105,16070,16105,16189,16345,16572,16869,17234,17653,18139,18715,19309,19963,20645,21393,22126,22864,23587,24313,24960,25547,26113,26546,26868,27099,27205,27226,27129,26914,26573,26187,25693,25130,24544,23904,23237,22596,21933,21289,20691,20103,19539,19041,18558,18155,17792,17461,17177,16905,16675,16481,16264,16080,15888,15698,15527,15385,15265,15169,15093,15019,14981,14965,14954,14977,14996,15015,15053,15086,15123,15168,15229,15224,15248,15255,15265,15274,15301,15300,15290,15237,15181,15113,15048,14959,14861,14741,14570,14408,14229,13994,13781,13562,13287,13026,12741,12430,12139,11836,11552,11281,11030,10801,10553,10291,10003,9678,9365,9090,8848,8637,8459,8287,8167,8068,7976,7918,7862,7799,7719,7575,7404,7225,7105,6992,6891,6829,6763,6709,6680,6661,6648,6621,6610,6614,6622,6476,6162,5739,5117,21.7,21.8,22.2,1568532,0.3,13.5,12.0,5.0,433,-1.00,-1.00,58.2920,-19.252679,0.000520,,,,,38 +SATSLF0720,2024246,15.761405,4.08,0.0572,0.1027,0.0175,0.00,16163,648,1,693,691,711,714,725,725,738,726,721,727,726,745,768,895,1219,1963,3109,4485,5720,6629,7289,7765,8185,8640,9149,9771,10517,11394,12382,13509,14669,15837,16964,17913,18645,19077,19213,19024,18652,18120,17541,16969,16493,16155,15917,15867,15926,16163,16590,17173,17903,18821,19893,21106,22445,23890,25380,26856,28291,29556,30548,31305,31707,31705,31381,30717,29789,28727,27515,26328,25158,24073,23086,22221,21490,20869,20390,19998,19712,19559,19457,19463,19571,19764,20037,20389,20818,21320,21900,22518,23191,23842,24461,25034,25512,25862,26125,26181,26067,25800,25297,24663,23931,23152,22261,21387,20544,19770,19068,18413,17856,17402,16982,16679,16420,16236,16141,16077,16105,16201,16349,16587,16898,17271,17685,18180,18750,19347,19996,20692,21412,22153,22906,23617,24326,24974,25581,26141,26579,26897,27148,27248,27264,27168,26957,26623,26224,25728,25148,24547,23947,23274,22627,21969,21325,20711,20116,19549,19057,18589,18196,17815,17490,17200,16925,16688,16488,16297,16084,15893,15704,15555,15398,15294,15189,15122,15056,15021,14997,14985,15003,15006,15043,15073,15114,15141,15185,15255,15273,15273,15283,15291,15307,15322,15325,15314,15261,15206,15141,15067,14987,14890,14769,14609,14440,14249,14034,13805,13574,13314,13037,12766,12469,12177,11877,11595,11322,11061,10828,10599,10318,10013,9704,9378,9096,8848,8645,8461,8331,8182,8091,8009,7939,7889,7817,7737,7589,7409,7260,7127,7011,6905,6835,6753,6711,6677,6654,6648,6632,6617,6636,6635,6489,6167,5741,5120,21.7,21.8,22.2,1568533,0.4,13.5,12.0,5.0,429,-1.00,-1.00,58.4805,-19.361200,0.000616,,,,,224 +SATSLF0720,2024246,15.761659,4.15,0.0581,0.1029,0.0173,0.00,16145,648,1,694,695,706,707,716,710,729,730,734,739,731,754,796,902,1240,1960,3123,4476,5713,6627,7270,7745,8167,8621,9138,9776,10517,11389,12402,13505,14682,15841,16962,17893,18629,19050,19189,19013,18648,18113,17506,16955,16485,16128,15901,15826,15921,16165,16570,17159,17901,18805,19883,21095,22429,23853,25339,26829,28237,29482,30494,31255,31654,31658,31326,30676,29762,28693,27475,26290,25138,24050,23067,22205,21460,20845,20370,19973,19698,19525,19446,19452,19555,19733,19989,20340,20780,21297,21872,22498,23165,23803,24420,24981,25467,25835,26096,26163,26042,25761,25269,24637,23914,23116,22254,21373,20530,19767,19051,18391,17843,17361,16953,16645,16386,16222,16116,16083,16102,16197,16357,16566,16871,17234,17669,18153,18725,19338,19973,20658,21397,22135,22878,23593,24289,24951,25540,26091,26523,26859,27097,27204,27220,27127,26920,26581,26192,25712,25134,24558,23912,23261,22602,21929,21300,20689,20101,19540,19040,18571,18173,17810,17475,17179,16905,16688,16473,16270,16089,15885,15701,15530,15383,15272,15176,15110,15022,14986,14953,14962,14966,14992,15024,15051,15095,15145,15176,15241,15241,15258,15280,15286,15296,15302,15307,15293,15236,15195,15146,15065,14977,14871,14737,14572,14411,14227,14011,13807,13563,13311,13025,12757,12461,12152,11867,11582,11297,11045,10816,10571,10304,10013,9687,9375,9090,8859,8629,8469,8306,8184,8096,8008,7935,7894,7822,7737,7581,7403,7253,7121,6995,6903,6826,6764,6711,6676,6657,6647,6614,6632,6633,6641,6487,6180,5753,5129,21.8,21.8,22.2,1568534,0.3,13.5,12.0,5.0,435,-1.00,-1.00,58.0153,-19.141225,0.000524,,,,,61 +SATSLF0720,2024246,15.761911,4.08,0.0572,0.1035,0.0179,0.00,16130,648,1,696,719,699,711,709,715,722,721,734,737,722,743,769,881,1212,1947,3097,4481,5716,6636,7258,7747,8158,8608,9123,9744,10488,11362,12350,13474,14648,15819,16917,17877,18601,19028,19159,18977,18606,18070,17485,16929,16461,16087,15876,15805,15887,16141,16549,17136,17858,18783,19836,21061,22386,23829,25307,26793,28218,29456,30471,31206,31607,31611,31281,30645,29744,28672,27447,26257,25092,24019,23017,22154,21428,20817,20341,19962,19680,19520,19424,19435,19532,19721,19976,20333,20752,21280,21846,22451,23131,23780,24378,24971,25440,25818,26075,26128,25989,25728,25252,24616,23882,23095,22258,21365,20505,19735,19017,18375,17814,17341,16949,16612,16384,16204,16094,16062,16089,16188,16334,16570,16858,17222,17641,18135,18713,19318,19966,20649,21392,22114,22865,23573,24275,24926,25524,26076,26507,26852,27085,27196,27197,27119,26903,26596,26192,25683,25113,24508,23883,23249,22570,21916,21289,20679,20091,19529,19042,18573,18158,17797,17458,17178,16901,16660,16454,16257,16078,15870,15693,15522,15370,15264,15157,15101,15019,14977,14959,14957,14978,14993,15014,15058,15093,15110,15172,15209,15219,15233,15245,15266,15273,15290,15301,15298,15249,15195,15125,15069,14984,14885,14743,14577,14392,14211,14003,13786,13545,13291,13030,12753,12449,12161,11857,11575,11286,11047,10810,10577,10298,10010,9682,9365,9079,8842,8629,8465,8308,8165,8078,7994,7929,7883,7810,7725,7570,7400,7239,7111,7003,6909,6833,6769,6731,6674,6656,6641,6631,6614,6621,6623,6473,6168,5748,5121,21.8,21.8,22.2,1568535,0.3,13.5,12.0,5.0,425,-1.00,-1.00,58.6909,-19.401318,0.000551,,,,,220 +SATSLF0720,2024246,15.762170,4.13,0.0578,0.1043,0.0184,0.00,16114,648,1,706,712,700,716,708,704,703,719,710,711,715,731,770,887,1209,1945,3109,4483,5716,6620,7265,7718,8145,8589,9115,9722,10481,11365,12347,13465,14635,15794,16904,17864,18585,19000,19144,18969,18594,18057,17463,16900,16437,16078,15850,15776,15860,16113,16530,17112,17865,18770,19834,21062,22368,23814,25290,26777,28186,29440,30436,31195,31591,31603,31274,30625,29705,28649,27402,26221,25077,23982,22983,22135,21413,20825,20325,19941,19653,19474,19387,19403,19509,19688,19953,20303,20747,21265,21822,22455,23109,23767,24373,24942,25440,25797,26061,26109,25973,25693,25219,24574,23866,23056,22193,21339,20500,19721,19024,18370,17813,17339,16917,16610,16357,16181,16080,16047,16069,16148,16322,16544,16837,17220,17653,18132,18696,19309,19937,20642,21353,22082,22830,23550,24253,24904,25491,26071,26501,26836,27063,27172,27193,27076,26880,26541,26153,25637,25083,24503,23853,23221,22555,21893,21265,20661,20081,19513,19024,18552,18149,17777,17437,17159,16882,16642,16429,16243,16063,15853,15683,15501,15359,15253,15150,15082,14993,14965,14948,14950,14956,14981,14981,15031,15077,15091,15157,15200,15218,15230,15229,15241,15255,15283,15279,15283,15228,15180,15111,15034,14946,14857,14711,14565,14386,14215,13995,13788,13543,13270,12994,12725,12421,12130,11842,11571,11304,11043,10812,10573,10304,10001,9670,9361,9081,8823,8617,8448,8299,8173,8080,7988,7922,7880,7809,7722,7568,7391,7240,7104,6977,6900,6810,6752,6701,6676,6645,6633,6618,6594,6616,6611,6454,6148,5725,5119,21.8,21.8,22.2,1568536,0.6,13.4,12.0,5.0,435,-1.00,-1.00,58.6957,-19.388576,0.000675,,,,,162 +SATSLF0720,2024246,15.762424,4.12,0.0578,0.1043,0.0183,0.00,16114,648,1,701,708,704,707,721,722,704,710,721,717,723,716,767,890,1210,1937,3105,4473,5713,6625,7251,7719,8151,8604,9114,9745,10486,11354,12340,13458,14649,15788,16890,17850,18570,19012,19137,18957,18577,18049,17463,16905,16448,16087,15853,15790,15862,16117,16525,17101,17837,18752,19821,21049,22361,23815,25293,26769,28172,29424,30416,31179,31587,31577,31241,30615,29685,28621,27389,26227,25064,24002,22992,22146,21406,20810,20325,19929,19636,19472,19387,19400,19501,19699,19952,20307,20746,21257,21831,22433,23115,23756,24372,24963,25425,25805,26066,26121,25994,25693,25211,24583,23857,23063,22211,21328,20491,19729,19037,18379,17812,17345,16926,16617,16348,16179,16080,16037,16053,16162,16326,16563,16856,17214,17647,18109,18687,19294,19944,20625,21349,22097,22832,23563,24268,24921,25521,26082,26503,26816,27072,27182,27181,27090,26873,26545,26153,25658,25074,24503,23873,23224,22565,21910,21270,20664,20064,19501,19027,18545,18144,17773,17453,17161,16898,16652,16464,16248,16059,15882,15689,15509,15377,15259,15173,15093,15004,14986,14954,14955,14949,14976,14987,15011,15076,15090,15147,15208,15221,15238,15255,15261,15266,15301,15280,15287,15229,15163,15113,15035,14939,14849,14706,14556,14392,14196,13999,13777,13547,13272,13015,12728,12433,12146,11844,11555,11292,11053,10797,10566,10286,9997,9675,9363,9082,8832,8625,8448,8297,8165,8065,7995,7925,7863,7803,7719,7576,7395,7229,7111,6997,6897,6810,6749,6686,6655,6643,6630,6638,6613,6629,6629,6468,6165,5724,5107,21.7,21.8,22.2,1568537,0.3,13.5,11.9,5.0,436,-1.00,-1.00,58.4810,-19.289732,0.000622,,,,,43 +SATSLF0720,2024246,15.762675,4.14,0.0579,0.1044,0.0184,0.00,16121,648,1,715,717,715,711,711,718,719,717,739,741,737,743,785,887,1218,1945,3117,4472,5706,6626,7265,7747,8169,8609,9139,9745,10489,11357,12359,13460,14637,15799,16913,17861,18573,19008,19157,18976,18596,18048,17473,16909,16450,16085,15873,15803,15876,16122,16533,17123,17860,18765,19830,21046,22370,23809,25289,26781,28189,29447,30440,31205,31589,31589,31261,30617,29696,28641,27417,26233,25077,24006,22994,22150,21413,20817,20331,19934,19649,19488,19381,19419,19497,19703,19970,20311,20749,21272,21831,22441,23120,23770,24387,24954,25437,25778,26056,26104,25985,25693,25225,24598,23876,23091,22223,21345,20519,19737,19021,18360,17802,17332,16930,16627,16368,16196,16109,16055,16069,16168,16340,16549,16851,17213,17651,18128,18682,19298,19937,20633,21358,22102,22837,23557,24264,24929,25513,26087,26514,26825,27073,27176,27175,27106,26890,26545,26163,25674,25093,24499,23883,23225,22560,21906,21283,20676,20074,19513,19028,18561,18158,17786,17460,17160,16909,16650,16457,16260,16061,15867,15676,15511,15377,15259,15163,15093,15013,14977,14957,14949,14963,14981,15000,15028,15092,15112,15158,15221,15228,15243,15242,15261,15276,15301,15305,15289,15249,15176,15109,15044,14955,14871,14740,14562,14391,14218,13997,13764,13533,13268,12999,12737,12441,12170,11873,11561,11299,11036,10799,10564,10298,10001,9685,9361,9083,8843,8637,8456,8306,8165,8072,7995,7922,7873,7795,7716,7562,7393,7254,7118,7003,6916,6834,6760,6706,6674,6660,6640,6608,6615,6629,6629,6475,6169,5753,5122,21.8,21.8,22.3,1568537,0.5,13.4,12.0,5.0,436,-1.00,-1.00,58.3765,-19.255054,0.000582,,,,,207 +SATSLF0720,2024246,15.762931,4.25,0.0595,0.1044,0.0188,0.00,16101,648,1,715,708,719,712,722,725,717,729,734,729,725,744,770,903,1235,1956,3116,4485,5698,6621,7256,7741,8136,8603,9114,9733,10466,11346,12343,13459,14626,15779,16897,17834,18561,18981,19114,18945,18571,18038,17449,16889,16432,16057,15847,15777,15851,16107,16501,17111,17837,18745,19810,21021,22341,23785,25271,26746,28168,29398,30393,31147,31533,31528,31200,30567,29638,28595,27384,26196,25047,23978,22989,22133,21378,20781,20297,19918,19634,19480,19382,19385,19489,19674,19949,20295,20730,21256,21812,22417,23079,23728,24349,24921,25396,25765,26026,26083,25955,25683,25206,24570,23863,23057,22189,21320,20466,19703,19001,18349,17794,17313,16918,16601,16350,16181,16073,16025,16040,16141,16312,16534,16835,17192,17641,18109,18672,19281,19909,20611,21334,22061,22816,23540,24225,24883,25480,26053,26488,26796,27028,27141,27150,27061,26835,26519,26128,25636,25083,24469,23842,23182,22546,21866,21253,20650,20045,19491,18986,18513,18115,17741,17421,17138,16869,16631,16426,16227,16032,15835,15660,15478,15358,15242,15142,15067,14979,14951,14939,14933,14945,14982,15003,15026,15079,15101,15138,15187,15205,15213,15236,15241,15264,15284,15272,15283,15210,15160,15095,15021,14946,14836,14711,14560,14385,14212,13989,13771,13526,13265,13009,12709,12424,12142,11848,11550,11290,11042,10795,10573,10290,9985,9673,9358,9071,8839,8616,8457,8297,8145,8059,7975,7915,7857,7778,7705,7557,7385,7246,7124,7001,6901,6821,6757,6698,6656,6647,6633,6605,6611,6626,6625,6483,6181,5754,5128,21.8,21.9,22.3,1568538,0.4,13.4,11.9,5.0,435,-1.00,-1.00,57.9520,-19.050318,0.000581,,,,,95 +SATSLF0720,2024246,15.763184,4.07,0.0570,0.1057,0.0199,0.00,16064,648,1,706,700,713,704,715,717,722,709,727,736,725,731,767,886,1208,1941,3088,4456,5673,6579,7229,7705,8130,8571,9085,9697,10439,11304,12302,13394,14570,15741,16844,17789,18500,18930,19083,18889,18520,17990,17398,16840,16388,16029,15809,15725,15821,16063,16473,17061,17789,18699,19753,20970,22274,23717,25177,26656,28075,29323,30313,31075,31472,31482,31149,30521,29616,28548,27313,26141,24986,23917,22906,22049,21321,20733,20237,19856,19576,19417,19329,19354,19437,19646,19901,20237,20688,21177,21755,22368,23029,23680,24277,24872,25338,25718,25974,26027,25899,25609,25140,24498,23784,22996,22118,21259,20421,19658,18957,18318,17745,17277,16881,16558,16310,16145,16049,15993,16011,16117,16269,16493,16791,17161,17581,18065,18629,19247,19883,20572,21277,22027,22760,23495,24178,24851,25421,25992,26419,26741,26981,27096,27105,27016,26804,26474,26056,25575,25015,24426,23773,23133,22501,21845,21196,20605,20009,19454,18962,18480,18086,17719,17388,17111,16849,16595,16391,16195,15997,15814,15618,15464,15337,15217,15126,15056,14973,14919,14917,14902,14917,14933,14965,14994,15038,15065,15107,15164,15181,15189,15205,15212,15232,15256,15261,15249,15197,15128,15059,14973,14915,14805,14681,14521,14365,14170,13957,13755,13511,13241,12979,12705,12393,12119,11810,11526,11263,11010,10781,10565,10285,9977,9659,9354,9061,8818,8604,8434,8293,8138,8043,7959,7895,7847,7782,7696,7555,7384,7225,7093,6976,6887,6812,6758,6693,6654,6637,6615,6603,6589,6613,6598,6453,6156,5729,5127,21.8,21.9,22.4,1568539,0.3,13.4,11.9,5.0,432,-1.00,-1.00,59.0302,-19.459387,0.000530,,,,,175 +SATSLF0720,2024246,15.763436,4.17,0.0584,0.1051,0.0192,0.00,16080,648,1,694,710,701,713,715,725,717,708,718,722,725,742,771,885,1226,1940,3110,4453,5687,6588,7235,7717,8138,8569,9081,9726,10460,11328,12319,13430,14598,15757,16852,17810,18516,18958,19077,18908,18532,18012,17425,16877,16405,16055,15822,15753,15821,16083,16485,17077,17808,18709,19778,21001,22289,23747,25226,26700,28114,29354,30357,31117,31512,31515,31190,30533,29611,28563,27341,26166,25009,23941,22937,22090,21362,20741,20279,19892,19589,19455,19353,19351,19448,19648,19916,20252,20694,21200,21773,22400,23052,23692,24311,24885,25370,25737,25996,26058,25937,25650,25165,24530,23814,23017,22157,21286,20445,19675,18982,18344,17782,17325,16893,16573,16325,16157,16053,16021,16036,16129,16292,16516,16804,17158,17601,18098,18662,19274,19894,20580,21315,22055,22780,23497,24194,24861,25445,26011,26438,26770,27001,27113,27134,27021,26828,26494,26099,25610,25033,24452,23803,23161,22509,21847,21217,20610,20021,19461,18986,18505,18114,17737,17408,17109,16844,16609,16413,16227,16025,15847,15669,15478,15355,15221,15122,15053,14976,14926,14914,14917,14929,14954,14970,15010,15050,15080,15126,15186,15200,15206,15225,15219,15256,15277,15261,15259,15208,15137,15083,15023,14941,14844,14705,14568,14376,14195,13981,13761,13517,13248,12969,12691,12422,12121,11819,11535,11270,11027,10788,10554,10273,9969,9646,9335,9059,8805,8607,8434,8263,8145,8045,7983,7900,7845,7786,7698,7565,7396,7230,7100,6988,6886,6811,6741,6701,6633,6627,6620,6602,6586,6619,6620,6468,6173,5733,5115,21.8,21.9,22.4,1568540,0.4,13.4,12.0,5.0,437,-1.00,-1.00,58.5150,-19.263050,0.000573,,,,,230 +SATSLF0720,2024246,15.763691,4.07,0.0570,0.1056,0.0197,0.00,16073,648,1,705,710,715,716,709,717,720,713,734,725,731,747,770,893,1221,1945,3110,4454,5677,6603,7241,7707,8135,8571,9079,9719,10458,11331,12318,13406,14586,15738,16850,17797,18525,18958,19079,18883,18536,17989,17408,16866,16405,16042,15813,15739,15831,16058,16469,17055,17794,18693,19770,20975,22286,23726,25211,26692,28112,29346,30349,31079,31482,31484,31161,30528,29615,28556,27326,26155,24985,23911,22923,22064,21346,20746,20249,19875,19595,19426,19332,19348,19443,19630,19892,20242,20674,21192,21771,22374,23036,23693,24297,24888,25346,25702,25973,26013,25889,25634,25162,24530,23799,23020,22152,21289,20443,19681,18973,18314,17760,17297,16867,16576,16324,16166,16055,16011,16044,16130,16288,16509,16801,17165,17594,18068,18651,19255,19886,20562,21309,22049,22796,23499,24200,24839,25442,26010,26438,26740,26985,27095,27108,27021,26786,26462,26083,25599,25024,24445,23815,23163,22519,21853,21221,20609,20017,19455,18984,18509,18083,17737,17402,17115,16839,16612,16410,16192,16005,15799,15643,15456,15327,15211,15120,15057,14976,14938,14922,14917,14923,14941,14971,14996,15048,15080,15128,15185,15201,15201,15225,15216,15237,15262,15255,15239,15199,15141,15067,14994,14917,14809,14675,14534,14368,14173,13960,13756,13517,13255,12989,12721,12412,12123,11816,11542,11276,11033,10799,10541,10267,9985,9654,9360,9069,8818,8609,8439,8266,8159,8044,7973,7898,7848,7777,7694,7549,7377,7233,7102,6987,6901,6816,6741,6670,6651,6628,6626,6604,6605,6616,6599,6455,6141,5719,5099,21.8,21.9,22.4,1568541,0.3,13.3,12.0,5.0,436,-1.00,-1.00,58.9761,-19.445325,0.000595,,,,,1 +SATSLF0720,2024246,15.763944,4.30,0.0603,0.1049,0.0189,0.00,16079,648,1,712,702,711,709,719,718,723,728,730,734,729,747,774,895,1217,1949,3105,4458,5691,6586,7227,7707,8117,8577,9102,9731,10464,11337,12321,13438,14600,15755,16857,17793,18512,18951,19083,18902,18536,17997,17405,16855,16404,16036,15817,15752,15822,16087,16491,17076,17826,18714,19765,20990,22289,23737,25210,26685,28108,29353,30333,31091,31477,31478,31144,30515,29589,28544,27319,26150,25005,23925,22923,22080,21349,20748,20258,19882,19590,19447,19362,19354,19463,19633,19892,20240,20669,21196,21755,22393,23057,23703,24306,24887,25355,25732,25985,26048,25907,25649,25164,24532,23811,23033,22161,21290,20434,19682,18980,18334,17775,17305,16900,16568,16327,16156,16054,16010,16026,16121,16297,16529,16830,17186,17607,18099,18653,19250,19897,20580,21309,22056,22796,23517,24209,24851,25443,26017,26444,26760,26997,27091,27114,27033,26820,26489,26090,25604,25026,24444,23823,23189,22538,21865,21229,20619,20038,19465,18973,18494,18098,17733,17408,17125,16839,16616,16405,16205,16027,15837,15646,15483,15340,15225,15115,15042,14964,14933,14918,14918,14936,14958,14969,15011,15054,15076,15120,15191,15197,15203,15230,15227,15261,15281,15271,15264,15215,15157,15092,15019,14937,14829,14695,14539,14367,14187,13979,13771,13537,13277,12989,12709,12414,12121,11822,11529,11266,11014,10791,10560,10296,9981,9662,9357,9069,8818,8599,8455,8290,8165,8066,7977,7911,7874,7798,7709,7563,7387,7218,7086,6985,6892,6825,6753,6700,6656,6634,6641,6604,6593,6618,6605,6467,6158,5743,5120,21.8,21.9,22.4,1568542,0.1,13.4,11.9,5.0,425,-1.00,-1.00,57.8017,-18.953479,0.000539,,,,,6 +SATSLF0720,2024246,15.764197,4.22,0.0592,0.1054,0.0195,0.00,16072,648,1,724,727,724,732,730,713,731,722,730,728,744,744,781,903,1223,1937,3099,4447,5669,6585,7237,7721,8139,8589,9122,9732,10459,11323,12305,13427,14593,15745,16856,17788,18514,18937,19083,18889,18523,17986,17410,16855,16390,16034,15821,15751,15834,16085,16486,17063,17793,18689,19750,20963,22284,23717,25192,26665,28083,29318,30332,31080,31474,31481,31158,30491,29579,28531,27319,26133,24979,23897,22903,22064,21322,20725,20241,19865,19589,19430,19341,19361,19457,19650,19902,20251,20679,21193,21750,22379,23031,23688,24301,24870,25357,25718,25989,26036,25907,25619,25171,24517,23803,23020,22141,21286,20436,19662,18968,18327,17765,17303,16903,16573,16317,16157,16051,16014,16033,16125,16281,16496,16801,17168,17586,18075,18641,19242,19872,20567,21292,22036,22765,23483,24181,24843,25438,25989,26410,26743,27001,27092,27118,27021,26807,26485,26097,25595,25017,24427,23789,23153,22496,21838,21201,20594,20008,19476,18984,18491,18100,17725,17393,17101,16848,16610,16395,16214,16026,15828,15637,15478,15341,15226,15115,15036,14969,14919,14914,14901,14919,14963,14965,15005,15053,15067,15112,15181,15189,15210,15213,15213,15237,15261,15254,15251,15209,15131,15074,14997,14919,14818,14687,14524,14365,14175,13973,13769,13529,13257,13005,12718,12425,12129,11817,11526,11261,11020,10790,10545,10280,9981,9667,9349,9050,8822,8629,8446,8297,8154,8050,7969,7901,7852,7786,7691,7559,7394,7232,7105,6999,6888,6817,6744,6693,6658,6633,6619,6611,6598,6613,6611,6466,6167,5745,5122,21.8,22.0,22.4,1568543,0.1,13.4,11.9,5.0,434,-1.00,-1.00,58.1143,-19.075522,0.000511,,,,,100 +SATSLF0720,2024246,15.764452,4.10,0.0575,0.1235,0.0303,0.00,15523,648,1,708,704,706,704,711,706,718,713,723,725,721,721,767,880,1177,1871,2951,4225,5394,6261,6882,7317,7718,8136,8629,9208,9911,10749,11681,12749,13858,14964,16010,16916,17602,18020,18145,17995,17646,17141,16592,16066,15636,15297,15080,15010,15082,15329,15726,16265,16989,17857,18896,20045,21312,22676,24087,25510,26873,28061,29017,29740,30125,30132,29829,29224,28357,27358,26189,25069,23972,22951,21997,21176,20491,19911,19446,19083,18829,18682,18578,18617,18693,18878,19130,19451,19872,20378,20925,21509,22183,22800,23381,23937,24407,24757,25011,25067,24965,24692,24233,23634,22938,22179,21355,20528,19712,18970,18306,17696,17145,16697,16310,16000,15757,15593,15505,15472,15496,15589,15754,15968,16245,16602,17017,17492,18040,18617,19255,19889,20599,21321,22070,22742,23437,24087,24658,25189,25608,25918,26149,26248,26283,26189,25977,25671,25301,24837,24280,23712,23092,22473,21832,21218,20594,20007,19438,18900,18427,17966,17587,17234,16929,16642,16388,16153,15957,15761,15571,15399,15224,15061,14930,14820,14720,14647,14573,14542,14525,14528,14529,14567,14588,14627,14647,14687,14743,14794,14810,14831,14843,14845,14859,14885,14890,14872,14829,14755,14720,14629,14557,14464,14344,14202,14030,13846,13637,13432,13197,12933,12680,12403,12112,11843,11546,11265,11000,10762,10521,10299,10028,9751,9437,9142,8849,8628,8419,8266,8100,7985,7888,7805,7746,7682,7624,7540,7405,7228,7095,6960,6862,6750,6671,6618,6554,6493,6499,6489,6472,6471,6485,6476,6327,6027,5623,5006,21.8,22.0,22.4,1568544,0.3,13.4,12.0,5.0,434,-1.00,-1.00,63.9275,-20.697141,0.000620,,,,,81 +SATSDF0720,2024246,16.009138,0.00,0.0000,0.0000,0.0000,0.00,651,0,1,640,613,623,617,621,619,633,622,631,631,629,628,635,640,629,627,628,638,637,627,635,636,631,648,656,659,652,665,661,650,650,654,658,644,647,657,660,663,654,668,673,669,665,657,648,643,654,655,671,670,670,666,662,656,651,647,651,654,650,651,651,642,651,658,657,657,650,650,651,654,657,657,663,670,653,671,661,666,653,651,647,636,651,649,651,657,653,647,644,647,654,663,650,651,646,643,658,646,647,653,656,664,647,663,651,658,662,676,662,662,649,653,644,639,639,641,653,649,653,641,647,645,643,659,661,654,661,668,657,668,645,652,645,634,647,645,646,661,677,658,659,649,655,656,660,654,650,654,653,646,644,659,661,654,660,660,660,667,661,657,653,648,650,643,640,647,646,650,657,654,657,645,646,645,643,648,654,652,649,655,653,653,645,661,665,657,648,641,647,651,654,653,651,651,653,645,657,650,653,652,650,645,651,633,647,650,637,634,646,645,651,645,651,651,653,644,648,652,658,643,650,641,655,650,659,657,652,646,648,661,661,653,656,662,645,643,646,651,646,645,650,651,657,663,646,670,649,659,654,658,651,667,661,661,662,492,0.0,0.0,0.0,1568543,0.6,14.1,0.1,5.0,54,0.00,0.00,0.0000,0.000000,0.000000,,,,,11 +SATSLF0720,2024246,16.009692,3.81,0.0534,0.1015,0.0166,0.00,16199,651,1,712,709,707,710,709,705,710,701,719,716,727,740,776,896,1220,1949,3116,4480,5723,6650,7300,7779,8199,8643,9183,9806,10547,11425,12436,13556,14730,15899,17012,17975,18702,19132,19285,19111,18717,18167,17593,17021,16568,16189,15958,15877,15971,16215,16621,17204,17957,18871,19943,21170,22490,23955,25444,26912,28349,29609,30615,31368,31769,31766,31449,30802,29888,28824,27592,26409,25248,24154,23150,22301,21570,20954,20450,20062,19777,19619,19511,19530,19640,19829,20093,20450,20868,21396,21973,22581,23253,23901,24507,25097,25574,25939,26210,26253,26135,25841,25356,24713,23986,23192,22322,21447,20600,19819,19117,18446,17894,17413,17001,16690,16438,16269,16177,16124,16137,16199,16395,16617,16923,17298,17719,18219,18791,19410,20038,20725,21463,22202,22945,23663,24384,25034,25623,26213,26633,26965,27208,27313,27335,27236,27019,26685,26291,25786,25216,24619,24004,23344,22685,22009,21380,20749,20181,19618,19102,18631,18226,17864,17528,17244,16970,16711,16527,16322,16133,15936,15754,15568,15442,15317,15227,15147,15080,15028,15004,15000,15002,15021,15048,15101,15136,15161,15220,15269,15284,15316,15305,15320,15329,15339,15351,15347,15295,15230,15173,15101,15015,14921,14792,14627,14457,14263,14058,13810,13575,13305,13047,12759,12465,12177,11886,11601,11326,11083,10847,10593,10343,10027,9705,9391,9108,8860,8663,8485,8329,8197,8094,8027,7957,7903,7845,7745,7591,7417,7256,7121,7024,6915,6841,6777,6726,6685,6681,6649,6648,6647,6659,6646,6500,6185,5761,5142,21.7,21.7,22.0,1568544,0.4,13.6,11.9,5.0,538,-1.00,-1.00,59.1443,-19.681754,0.000558,,,,,161 +SATSLF0720,2024246,16.009874,3.93,0.0551,0.1012,0.0170,0.00,16206,651,1,691,685,697,689,709,702,729,728,734,725,729,728,769,878,1195,1935,3103,4482,5719,6656,7292,7792,8213,8673,9197,9815,10573,11436,12449,13573,14755,15941,17037,17995,18735,19165,19309,19109,18729,18203,17611,17057,16587,16202,15969,15896,15978,16221,16643,17243,17985,18912,19982,21204,22525,23979,25474,26973,28402,29665,30658,31415,31818,31820,31495,30838,29907,28858,27624,26432,25272,24177,23188,22309,21565,20963,20479,20087,19794,19617,19525,19562,19646,19835,20109,20437,20877,21401,21976,22590,23269,23902,24512,25105,25578,25945,26215,26265,26145,25861,25367,24747,24005,23208,22318,21441,20583,19825,19132,18461,17907,17434,17020,16704,16446,16279,16175,16134,16154,16238,16401,16628,16933,17301,17731,18228,18804,19421,20052,20750,21468,22214,22966,23672,24387,25041,25649,26218,26637,26972,27221,27315,27337,27244,27026,26677,26307,25801,25241,24629,23981,23338,22666,21986,21364,20770,20178,19614,19127,18637,18225,17863,17524,17229,16963,16705,16501,16311,16113,15931,15741,15584,15439,15315,15215,15153,15073,15018,15003,14999,15003,15041,15076,15106,15156,15189,15226,15282,15293,15302,15304,15305,15335,15351,15340,15335,15282,15221,15159,15083,14997,14900,14752,14607,14448,14251,14056,13847,13594,13333,13073,12775,12480,12177,11882,11594,11318,11077,10820,10597,10331,10025,9716,9392,9101,8862,8671,8490,8327,8196,8103,8022,7957,7893,7815,7738,7586,7411,7261,7142,7028,6921,6844,6786,6725,6694,6660,6647,6642,6629,6641,6621,6478,6165,5753,5125,21.7,21.7,22.1,1568545,0.2,13.6,11.9,5.0,451,-1.00,-1.00,58.7210,-19.530919,0.000644,,,,,76 +SATSLF0720,2024246,16.010129,4.04,0.0566,0.1016,0.0167,0.00,16191,651,1,690,691,697,695,698,707,707,712,712,713,727,731,773,884,1214,1966,3122,4491,5728,6657,7301,7785,8210,8661,9176,9808,10562,11430,12430,13543,14732,15908,17026,17996,18708,19148,19280,19097,18733,18181,17588,17032,16553,16189,15971,15905,15982,16223,16646,17222,17957,18875,19955,21185,22498,23957,25448,26935,28365,29625,30624,31354,31767,31771,31451,30794,29874,28826,27574,26385,25232,24145,23152,22268,21545,20925,20451,20045,19766,19602,19507,19529,19638,19838,20085,20433,20861,21363,21943,22564,23237,23882,24496,25083,25566,25926,26192,26233,26112,25813,25343,24701,23985,23186,22301,21442,20589,19816,19106,18446,17892,17408,17009,16688,16437,16266,16161,16113,16135,16212,16387,16608,16903,17282,17698,18192,18778,19378,20030,20730,21445,22196,22950,23652,24365,25022,25625,26181,26613,26929,27168,27290,27306,27190,26985,26642,26261,25757,25196,24613,23990,23336,22669,22008,21378,20740,20151,19575,19095,18617,18213,17842,17512,17232,16960,16709,16512,16317,16121,15926,15737,15577,15420,15304,15211,15140,15050,15013,14984,14987,14996,15032,15045,15089,15133,15162,15205,15267,15280,15285,15297,15300,15319,15333,15335,15335,15285,15224,15169,15082,14999,14900,14767,14604,14443,14257,14034,13826,13580,13335,13050,12777,12468,12189,11881,11578,11319,11074,10829,10597,10318,10018,9693,9383,9102,8855,8646,8483,8328,8201,8108,8026,7954,7887,7825,7733,7584,7415,7270,7125,7011,6922,6826,6770,6714,6675,6657,6646,6619,6623,6654,6629,6484,6172,5758,5138,21.8,21.7,22.1,1568546,0.3,13.6,12.0,5.0,437,-1.00,-1.00,58.0043,-19.206213,0.000564,,,,,80 +SATSLF0720,2024246,16.010383,4.08,0.0572,0.1017,0.0173,0.00,16182,651,1,705,703,715,708,723,729,721,729,733,734,720,759,782,885,1221,1955,3117,4478,5706,6633,7273,7752,8179,8628,9175,9797,10536,11413,12401,13513,14707,15869,16989,17939,18664,19098,19234,19045,18688,18140,17544,16985,16524,16163,15930,15873,15956,16193,16590,17174,17922,18843,19912,21157,22472,23928,25418,26888,28323,29562,30589,31324,31725,31720,31405,30746,29829,28772,27539,26352,25178,24109,23096,22245,21524,20910,20417,20028,19745,19575,19501,19488,19609,19801,20077,20414,20840,21372,21929,22551,23219,23869,24485,25064,25539,25902,26169,26218,26097,25812,25338,24694,23976,23179,22297,21424,20586,19806,19111,18440,17878,17405,16997,16677,16417,16260,16158,16097,16142,16221,16386,16604,16923,17277,17693,18203,18778,19378,20025,20718,21449,22177,22921,23638,24356,25016,25609,26165,26608,26905,27180,27276,27293,27200,26977,26657,26253,25769,25197,24589,23975,23323,22665,21980,21344,20757,20147,19589,19090,18610,18215,17845,17518,17233,16965,16720,16519,16309,16118,15924,15737,15564,15419,15302,15213,15133,15060,15021,14998,14992,15003,15040,15054,15087,15130,15166,15211,15266,15289,15293,15310,15292,15319,15341,15332,15325,15282,15218,15149,15092,14998,14910,14779,14613,14448,14259,14042,13819,13577,13311,13033,12756,12465,12179,11884,11604,11333,11082,10845,10599,10327,10033,9701,9401,9114,8857,8647,8471,8329,8180,8092,8025,7937,7895,7829,7728,7592,7434,7273,7122,7023,6928,6859,6774,6740,6676,6659,6656,6634,6644,6661,6660,6498,6181,5765,5140,21.8,21.8,22.1,1568547,0.0,13.6,12.0,5.0,434,-1.00,-1.00,58.4399,-19.360947,0.000626,,,,,244 +SATSLF0720,2024246,16.010640,3.96,0.0555,0.1028,0.0178,0.00,16157,651,1,707,709,708,718,721,725,727,726,725,727,740,737,763,878,1201,1940,3113,4478,5729,6656,7297,7781,8198,8634,9161,9789,10534,11411,12393,13531,14701,15869,16984,17953,18663,19112,19228,19063,18673,18149,17547,16973,16516,16151,15933,15853,15933,16176,16576,17171,17922,18843,19909,21138,22461,23893,25403,26865,28281,29538,30544,31287,31706,31714,31392,30728,29801,28737,27517,26312,25161,24073,23077,22229,21484,20883,20387,20002,19719,19545,19454,19455,19573,19772,20027,20374,20821,21337,21899,22516,23177,23843,24451,25029,25506,25857,26124,26173,26054,25777,25297,24650,23933,23140,22281,21401,20539,19772,19061,18389,17835,17367,16973,16656,16405,16225,16117,16069,16115,16189,16353,16581,16878,17261,17677,18167,18753,19345,19978,20661,21390,22141,22885,23585,24285,24952,25553,26123,26548,26881,27133,27237,27245,27150,26935,26597,26208,25706,25142,24553,23905,23256,22619,21953,21325,20701,20104,19536,19047,18570,18166,17805,17472,17202,16930,16685,16475,16279,16085,15886,15709,15533,15383,15287,15176,15114,15045,15008,14986,14967,14989,15005,15029,15046,15096,15140,15194,15254,15257,15253,15266,15295,15290,15324,15312,15297,15255,15185,15132,15061,14953,14877,14740,14592,14407,14219,14016,13790,13552,13307,13017,12734,12452,12164,11854,11575,11310,11058,10817,10575,10296,10009,9689,9381,9085,8829,8627,8455,8299,8170,8061,8001,7942,7892,7821,7727,7583,7410,7251,7126,7014,6912,6831,6772,6720,6674,6637,6643,6629,6611,6627,6619,6487,6168,5749,5136,21.8,21.8,22.2,1568548,0.2,13.6,12.0,5.0,435,-1.00,-1.00,58.5137,-19.374593,0.000660,,,,,31 +SATSLF0720,2024246,16.010895,3.97,0.0556,0.1023,0.0176,0.00,16167,651,1,702,706,713,698,702,697,719,715,721,727,725,741,767,881,1223,1949,3113,4472,5719,6640,7286,7753,8174,8635,9139,9776,10536,11400,12409,13517,14715,15879,16980,17937,18659,19095,19225,19031,18661,18133,17547,16981,16509,16163,15927,15843,15933,16177,16576,17163,17919,18829,19905,21136,22459,23890,25392,26878,28292,29539,30544,31304,31717,31713,31378,30717,29812,28771,27518,26346,25170,24089,23095,22242,21500,20883,20396,20007,19723,19562,19476,19488,19601,19781,20040,20396,20817,21361,21912,22539,23210,23849,24450,25047,25525,25885,26149,26194,26065,25778,25303,24667,23947,23154,22273,21421,20549,19789,19073,18422,17863,17397,16998,16653,16414,16237,16139,16104,16118,16226,16378,16600,16901,17261,17692,18165,18756,19362,19995,20692,21424,22152,22913,23629,24327,24992,25587,26144,26584,26901,27149,27261,27269,27180,26950,26631,26228,25744,25157,24584,23952,23293,22633,21953,21347,20722,20120,19571,19073,18600,18186,17826,17485,17210,16936,16698,16496,16292,16097,15895,15714,15533,15419,15285,15193,15117,15057,15010,14987,14981,14992,15021,15038,15080,15110,15153,15177,15237,15253,15269,15277,15290,15313,15319,15347,15321,15250,15192,15138,15070,14986,14889,14759,14616,14429,14237,14038,13813,13564,13303,13049,12770,12449,12167,11881,11591,11317,11067,10821,10583,10308,10023,9701,9377,9090,8861,8637,8467,8322,8180,8089,8006,7918,7879,7804,7726,7581,7409,7277,7129,7013,6910,6829,6754,6707,6666,6654,6647,6627,6617,6643,6637,6487,6176,5753,5126,21.8,21.8,22.2,1568549,0.2,13.5,11.9,5.0,433,-1.00,-1.00,58.8829,-19.533246,0.000601,,,,,235 +SATSLF0720,2024246,16.011148,4.06,0.0569,0.1037,0.0180,0.00,16129,651,1,689,689,705,695,699,703,720,724,729,729,726,721,753,875,1209,1940,3093,4471,5697,6615,7269,7732,8163,8596,9139,9765,10519,11370,12359,13467,14639,15814,16905,17859,18588,19026,19148,18974,18609,18074,17485,16928,16461,16111,15870,15791,15883,16131,16533,17129,17880,18779,19846,21061,22396,23829,25298,26776,28205,29460,30468,31206,31612,31626,31286,30646,29729,28681,27444,26261,25101,24030,23025,22181,21445,20823,20350,19952,19676,19501,19415,19435,19528,19725,19968,20331,20773,21291,21842,22474,23140,23792,24397,24987,25461,25824,26093,26125,26009,25732,25258,24616,23901,23085,22225,21345,20509,19737,19025,18382,17818,17349,16930,16613,16385,16210,16106,16062,16088,16188,16327,16555,16859,17241,17642,18144,18718,19323,19981,20646,21395,22129,22880,23573,24277,24937,25540,26103,26533,26840,27085,27202,27211,27095,26900,26565,26157,25695,25133,24548,23916,23248,22585,21913,21281,20676,20078,19533,19045,18569,18158,17783,17465,17173,16907,16667,16465,16273,16073,15882,15684,15522,15373,15264,15165,15090,15009,14972,14967,14954,14957,14979,14996,15039,15078,15106,15163,15221,15226,15246,15253,15261,15276,15303,15303,15295,15235,15182,15125,15061,14969,14856,14736,14588,14416,14219,14006,13781,13553,13287,13021,12741,12429,12156,11845,11564,11293,11048,10799,10563,10292,10002,9682,9360,9099,8853,8624,8471,8309,8165,8071,7995,7926,7869,7798,7700,7557,7391,7244,7120,7005,6909,6820,6756,6700,6665,6653,6636,6632,6614,6634,6629,6477,6161,5737,5132,21.8,21.8,22.2,1568550,0.5,13.6,12.0,5.0,431,-1.00,-1.00,58.8627,-19.471042,0.000564,,,,,0 +SATSLF0720,2024246,16.011405,4.12,0.0577,0.1030,0.0178,0.00,16150,651,1,713,720,713,711,725,717,726,714,713,727,729,753,770,891,1216,1947,3117,4483,5709,6631,7274,7751,8177,8616,9155,9774,10524,11389,12381,13499,14682,15844,16945,17910,18650,19057,19197,19019,18645,18113,17509,16944,16485,16133,15897,15833,15927,16169,16570,17152,17901,18804,19886,21089,22420,23878,25353,26849,28266,29522,30512,31261,31668,31667,31346,30677,29765,28706,27473,26307,25137,24057,23061,22202,21463,20855,20384,20002,19718,19549,19446,19453,19552,19746,19988,20352,20785,21307,21874,22497,23161,23808,24413,25009,25490,25850,26126,26176,26046,25750,25287,24661,23938,23144,22258,21393,20536,19782,19057,18395,17848,17377,16965,16644,16400,16221,16133,16078,16097,16197,16357,16594,16886,17257,17678,18165,18727,19341,19987,20645,21383,22142,22886,23585,24299,24968,25565,26110,26555,26873,27105,27210,27225,27147,26933,26609,26210,25712,25128,24555,23917,23266,22608,21938,21329,20697,20113,19548,19072,18573,18172,17802,17465,17178,16909,16687,16465,16285,16085,15886,15706,15551,15396,15273,15180,15093,15034,14984,14966,14961,14971,15009,15016,15060,15101,15126,15180,15213,15247,15267,15277,15286,15299,15323,15314,15312,15269,15191,15133,15049,14955,14878,14727,14593,14414,14225,14018,13787,13559,13294,13030,12749,12456,12156,11855,11585,11304,11071,10821,10587,10317,10012,9684,9361,9090,8833,8618,8466,8311,8173,8087,8009,7946,7895,7823,7745,7590,7406,7265,7109,7007,6912,6837,6765,6706,6689,6661,6657,6636,6635,6645,6632,6462,6170,5749,5122,21.8,21.8,22.2,1568551,0.8,13.5,11.9,5.0,427,-1.00,-1.00,58.3437,-19.283455,0.000605,,,,,237 +SATSLF0720,2024246,16.011659,4.16,0.0583,0.1057,0.0207,0.00,16050,651,1,702,712,713,719,725,717,733,724,739,730,730,739,765,896,1211,1946,3109,4474,5697,6601,7255,7722,8139,8587,9120,9737,10468,11332,12309,13415,14604,15750,16853,17825,18541,18969,19099,18913,18540,18008,17429,16857,16397,16026,15811,15738,15829,16073,16493,17069,17806,18706,19777,20976,22288,23719,25185,26672,28078,29328,30321,31057,31455,31463,31145,30490,29562,28521,27296,26108,24964,23885,22914,22057,21317,20734,20233,19865,19595,19411,19328,19338,19438,19627,19888,20228,20656,21186,21741,22349,23030,23662,24279,24842,25321,25693,25940,25997,25868,25588,25113,24477,23766,22965,22109,21239,20393,19644,18934,18297,17742,17255,16849,16546,16287,16105,16021,15975,16001,16094,16263,16477,16763,17129,17554,18036,18619,19223,19854,20530,21242,21997,22728,23450,24136,24786,25378,25953,26372,26694,26940,27054,27059,26960,26744,26409,26023,25532,24960,24371,23735,23096,22452,21798,21173,20560,19972,19429,18914,18461,18064,17713,17365,17089,16821,16584,16371,16161,15963,15779,15600,15453,15305,15182,15098,14999,14935,14891,14864,14874,14877,14909,14925,14965,15010,15037,15077,15144,15168,15174,15186,15188,15189,15217,15221,15210,15153,15092,15037,14979,14868,14787,14641,14484,14334,14138,13931,13714,13478,13220,12956,12678,12373,12097,11795,11517,11249,11002,10748,10509,10253,9949,9646,9325,9049,8797,8594,8406,8255,8129,8041,7946,7895,7834,7767,7693,7541,7366,7206,7083,6963,6866,6796,6733,6689,6653,6625,6641,6604,6589,6603,6583,6437,6141,5716,5101,21.8,21.8,22.2,1568552,0.4,13.5,12.0,5.0,434,-1.00,-1.00,57.8217,-18.944719,0.000597,,,,,170 +SATSLF0720,2024246,16.011911,4.22,0.0592,0.1077,0.0210,0.00,15993,651,1,716,714,715,704,712,708,707,708,732,729,743,740,775,885,1191,1911,3067,4415,5634,6541,7181,7649,8065,8505,9024,9629,10371,11233,12216,13306,14478,15617,16711,17657,18373,18805,18926,18743,18382,17850,17280,16706,16279,15919,15697,15627,15741,15973,16363,16948,17678,18561,19617,20829,22121,23571,25041,26509,27924,29168,30164,30896,31287,31289,30966,30329,29420,28369,27149,25992,24834,23779,22784,21957,21218,20624,20148,19761,19501,19350,19245,19254,19352,19541,19797,20141,20576,21093,21662,22269,22925,23581,24170,24763,25229,25590,25852,25890,25765,25496,25015,24396,23674,22896,22042,21164,20328,19573,18877,18221,17669,17207,16803,16493,16233,16076,15970,15927,15959,16044,16213,16430,16725,17086,17513,18013,18566,19178,19790,20479,21223,21937,22673,23411,24114,24757,25338,25902,26312,26645,26869,26980,26980,26907,26685,26359,25978,25482,24931,24333,23712,23062,22416,21749,21128,20526,19946,19380,18894,18429,18030,17650,17328,17047,16774,16550,16333,16134,15952,15749,15565,15419,15284,15165,15065,14989,14912,14877,14848,14856,14873,14893,14920,14957,14993,15027,15069,15124,15137,15133,15161,15172,15181,15207,15210,15200,15154,15092,15027,14945,14858,14763,14642,14481,14322,14141,13914,13717,13465,13201,12945,12648,12359,12073,11776,11487,11221,10969,10747,10504,10251,9940,9621,9300,9031,8785,8579,8416,8270,8128,8039,7956,7895,7835,7745,7666,7526,7346,7189,7054,6960,6864,6795,6734,6684,6636,6617,6611,6594,6573,6593,6580,6432,6137,5718,5093,21.8,21.8,22.2,1568553,0.4,13.5,12.0,5.0,430,-1.00,-1.00,59.4680,-19.530032,0.000626,,,,,35 +SATSLF0720,2024246,16.012167,4.17,0.0584,0.1047,0.0188,0.00,16101,651,1,713,702,709,707,704,711,713,700,723,732,744,746,775,895,1213,1941,3081,4453,5671,6607,7242,7733,8146,8581,9095,9738,10472,11353,12345,13462,14642,15789,16890,17841,18561,18993,19125,18942,18569,18036,17454,16893,16441,16074,15865,15783,15871,16102,16517,17077,17828,18734,19815,21012,22341,23805,25266,26756,28185,29421,30417,31165,31578,31561,31236,30573,29671,28596,27374,26198,25053,23976,22981,22126,21397,20802,20309,19921,19634,19473,19374,19395,19490,19686,19943,20286,20722,21233,21810,22432,23093,23751,24359,24944,25408,25772,26040,26073,25963,25686,25204,24576,23876,23057,22192,21317,20475,19712,19006,18347,17797,17336,16907,16609,16349,16185,16070,16031,16042,16135,16305,16523,16821,17190,17628,18106,18683,19301,19927,20615,21345,22077,22809,23520,24241,24887,25481,26050,26462,26800,27040,27144,27155,27049,26851,26532,26141,25629,25057,24478,23848,23198,22551,21877,21244,20640,20044,19502,18988,18526,18129,17761,17421,17140,16877,16646,16438,16225,16050,15845,15652,15477,15347,15236,15132,15064,14993,14939,14939,14933,14935,14962,14986,15021,15057,15103,15137,15204,15209,15213,15217,15235,15250,15265,15269,15259,15217,15145,15100,15013,14929,14836,14714,14548,14401,14193,13989,13778,13528,13265,12994,12716,12404,12128,11835,11536,11278,11024,10795,10568,10297,9981,9651,9345,9061,8813,8621,8448,8277,8158,8062,7977,7915,7876,7802,7712,7559,7383,7222,7095,6988,6903,6820,6752,6703,6654,6645,6621,6611,6606,6623,6619,6460,6154,5734,5113,21.8,21.8,22.3,1568554,0.1,13.4,12.0,5.0,437,-1.00,-1.00,58.3754,-19.232842,0.000676,,,,,171 +SATSLF0720,2024246,16.012421,4.26,0.0597,0.1042,0.0181,0.00,16118,651,1,710,717,721,714,710,714,711,706,714,725,734,733,767,889,1217,1943,3097,4471,5709,6625,7263,7735,8154,8598,9115,9759,10484,11357,12346,13477,14630,15799,16893,17850,18566,18990,19133,18960,18599,18051,17466,16912,16455,16101,15876,15799,15898,16133,16547,17114,17848,18760,19821,21038,22375,23817,25296,26777,28199,29442,30443,31201,31605,31604,31259,30617,29709,28650,27417,26231,25076,24009,23010,22154,21425,20808,20321,19942,19658,19497,19394,19414,19524,19713,19974,20324,20746,21274,21825,22447,23123,23760,24369,24963,25436,25808,26072,26128,26000,25728,25232,24585,23888,23072,22208,21334,20491,19728,19026,18373,17818,17348,16921,16610,16359,16193,16080,16039,16073,16175,16349,16557,16875,17227,17669,18137,18704,19313,19935,20618,21355,22094,22848,23554,24261,24917,25513,26081,26521,26837,27070,27179,27182,27077,26870,26530,26155,25653,25104,24509,23873,23216,22573,21900,21273,20654,20069,19504,19016,18541,18140,17782,17441,17156,16897,16649,16442,16248,16051,15862,15684,15516,15377,15250,15169,15081,15002,14969,14935,14950,14948,14973,14997,15043,15068,15113,15150,15214,15209,15230,15239,15246,15258,15291,15292,15286,15220,15175,15121,15044,14954,14869,14726,14560,14391,14203,13999,13786,13541,13271,13015,12721,12439,12141,11840,11563,11300,11048,10805,10570,10288,9995,9669,9352,9064,8827,8605,8451,8293,8163,8067,7979,7907,7867,7801,7711,7575,7390,7251,7113,6997,6905,6823,6761,6721,6669,6640,6632,6600,6599,6626,6613,6462,6153,5746,5097,21.8,21.8,22.3,1568555,0.4,13.4,11.9,5.0,434,-1.00,-1.00,58.0883,-19.135540,0.000559,,,,,130 +SATSLF0720,2024246,16.012673,4.14,0.0579,0.1034,0.0184,0.00,16127,651,1,717,709,715,711,713,720,715,715,725,718,734,734,773,889,1221,1952,3118,4481,5709,6644,7260,7748,8166,8620,9123,9760,10493,11356,12370,13480,14653,15822,16917,17866,18600,19034,19161,18981,18604,18070,17472,16899,16455,16085,15867,15809,15887,16151,16557,17132,17875,18769,19829,21059,22376,23830,25321,26800,28197,29465,30456,31202,31596,31598,31282,30620,29702,28667,27441,26249,25093,23997,23018,22134,21401,20807,20317,19951,19673,19515,19430,19441,19528,19725,19976,20323,20763,21286,21845,22465,23133,23778,24390,24961,25447,25815,26069,26119,25998,25707,25227,24601,23886,23090,22225,21360,20505,19736,19028,18377,17827,17354,16938,16622,16384,16213,16107,16081,16089,16177,16333,16551,16849,17210,17655,18136,18701,19301,19943,20634,21367,22114,22855,23578,24281,24936,25517,26089,26517,26842,27077,27175,27207,27114,26880,26562,26173,25677,25114,24531,23912,23245,22597,21915,21287,20669,20074,19506,19028,18541,18151,17786,17457,17178,16902,16677,16464,16272,16077,15880,15692,15509,15379,15248,15146,15077,14998,14971,14957,14964,14978,14997,15033,15061,15089,15120,15168,15216,15228,15242,15260,15270,15282,15306,15298,15287,15234,15169,15113,15057,14961,14875,14733,14585,14414,14215,14001,13787,13548,13276,13030,12734,12433,12139,11847,11563,11285,11051,10796,10578,10309,10006,9671,9376,9091,8838,8634,8461,8302,8157,8063,7991,7921,7865,7810,7716,7579,7401,7264,7139,7013,6914,6833,6779,6716,6665,6655,6653,6616,6620,6621,6623,6458,6155,5725,5118,21.8,21.9,22.4,1568555,0.5,13.5,12.0,5.0,433,-1.00,-1.00,58.4143,-19.278458,0.000603,,,,,38 +SATSLF0720,2024246,16.012929,4.09,0.0573,0.1040,0.0183,0.00,16124,651,1,707,700,704,721,725,710,739,731,729,732,729,742,781,897,1227,1963,3120,4483,5713,6633,7277,7745,8153,8618,9129,9760,10512,11373,12381,13485,14647,15805,16909,17869,18597,19029,19165,18982,18616,18074,17484,16922,16459,16085,15875,15801,15882,16128,16533,17123,17859,18777,19863,21065,22389,23826,25303,26789,28193,29447,30463,31189,31602,31581,31275,30618,29714,28653,27411,26248,25067,23995,23009,22141,21410,20810,20323,19944,19654,19499,19402,19427,19528,19714,19969,20315,20757,21264,21833,22450,23121,23764,24397,24965,25442,25804,26056,26106,25993,25706,25248,24605,23891,23097,22235,21357,20504,19739,19016,18371,17804,17350,16933,16628,16375,16224,16109,16060,16084,16164,16306,16552,16841,17211,17654,18135,18701,19301,19959,20629,21369,22104,22842,23575,24272,24920,25514,26082,26490,26826,27066,27160,27179,27079,26871,26558,26163,25666,25114,24548,23882,23241,22565,21906,21274,20681,20061,19508,19021,18545,18148,17786,17445,17161,16893,16659,16450,16266,16064,15874,15683,15515,15365,15241,15161,15086,15004,14983,14961,14955,14961,14985,14999,15034,15082,15110,15162,15219,15242,15258,15261,15253,15282,15300,15292,15289,15229,15175,15117,15053,14956,14867,14724,14571,14411,14204,14002,13788,13555,13282,13013,12727,12438,12141,11847,11560,11297,11061,10805,10567,10297,10000,9660,9351,9083,8824,8629,8456,8309,8173,8081,8006,7933,7888,7808,7709,7563,7409,7250,7113,7005,6906,6817,6760,6712,6668,6654,6637,6621,6604,6634,6621,6476,6157,5755,5131,21.8,21.9,22.4,1568556,0.2,13.5,12.0,5.0,434,-1.00,-1.00,58.3930,-19.265128,0.000621,,,,,140 +SATSLF0720,2024246,16.013182,4.15,0.0581,0.1057,0.0203,0.00,16064,651,1,706,711,721,725,714,718,719,723,713,721,722,743,766,895,1220,1949,3102,4475,5689,6598,7241,7721,8143,8587,9092,9725,10454,11343,12328,13435,14601,15754,16874,17815,18529,18968,19093,18909,18545,18017,17432,16864,16416,16050,15827,15749,15828,16088,16485,17061,17801,18715,19776,20983,22298,23753,25218,26693,28100,29353,30345,31097,31477,31492,31165,30520,29611,28555,27318,26132,24981,23905,22920,22072,21330,20747,20269,19878,19588,19427,19329,19337,19448,19633,19889,20228,20657,21190,21746,22371,23035,23691,24302,24865,25349,25721,25988,26028,25913,25632,25165,24520,23797,23004,22138,21262,20429,19655,18971,18325,17762,17291,16887,16566,16315,16141,16034,15981,16013,16096,16275,16493,16789,17149,17573,18059,18631,19239,19869,20552,21273,22020,22757,23469,24161,24809,25405,25961,26395,26706,26955,27061,27085,26991,26771,26459,26059,25564,25002,24421,23793,23125,22481,21812,21185,20574,19988,19429,18942,18481,18074,17705,17380,17089,16823,16608,16400,16198,16016,15822,15629,15468,15338,15207,15102,15026,14937,14893,14887,14871,14892,14923,14955,14983,15031,15073,15109,15162,15170,15178,15191,15181,15210,15240,15229,15223,15165,15108,15051,14978,14903,14795,14659,14509,14344,14154,13939,13725,13495,13237,12964,12684,12400,12098,11805,11527,11249,11001,10757,10526,10256,9965,9637,9341,9046,8809,8596,8413,8265,8130,8036,7953,7895,7839,7793,7705,7557,7393,7232,7102,6985,6891,6806,6733,6675,6646,6623,6603,6597,6585,6609,6600,6437,6143,5721,5119,21.8,21.9,22.4,1568557,0.0,13.4,11.9,5.0,428,-1.00,-1.00,58.2085,-19.123077,0.000600,,,,,65 +SATSLF0720,2024246,16.013433,4.35,0.0609,0.1045,0.0188,0.00,16105,651,1,709,686,699,702,716,720,717,723,713,718,737,746,777,891,1225,1948,3107,4473,5700,6621,7268,7729,8150,8594,9113,9733,10489,11353,12341,13457,14620,15780,16882,17855,18577,18988,19118,18944,18577,18033,17455,16888,16423,16071,15868,15787,15871,16108,16530,17104,17845,18754,19827,21030,22363,23799,25278,26756,28167,29426,30416,31168,31562,31566,31237,30588,29665,28615,27378,26192,25036,23965,22958,22111,21385,20792,20301,19914,19633,19493,19381,19381,19488,19671,19939,20293,20720,21250,21805,22442,23107,23755,24370,24936,25419,25762,26051,26085,25957,25683,25210,24585,23869,23065,22187,21337,20482,19712,19020,18357,17799,17324,16921,16585,16343,16172,16082,16049,16064,16155,16331,16551,16851,17221,17621,18119,18684,19293,19917,20596,21331,22087,22825,23554,24245,24896,25485,26056,26489,26803,27054,27146,27154,27072,26869,26545,26137,25648,25080,24483,23844,23205,22552,21891,21260,20659,20057,19495,18995,18518,18118,17756,17413,17130,16885,16640,16439,16245,16037,15843,15665,15513,15357,15243,15147,15082,14995,14964,14938,14939,14949,14977,14990,15031,15074,15106,15149,15218,15217,15232,15242,15245,15253,15283,15278,15261,15215,15166,15098,15024,14935,14842,14711,14553,14392,14192,13989,13773,13541,13282,13011,12726,12426,12130,11830,11536,11279,11031,10801,10564,10303,10005,9656,9367,9065,8821,8610,8447,8275,8161,8061,7985,7912,7859,7801,7722,7570,7404,7253,7112,6997,6903,6820,6765,6689,6660,6634,6627,6617,6609,6646,6620,6459,6152,5726,5119,21.8,21.9,22.4,1568558,0.2,13.4,12.0,5.0,436,-1.00,-1.00,57.7355,-18.969442,0.000617,,,,,22 +SATSLF0720,2024246,16.013688,4.21,0.0590,0.1052,0.0198,0.00,16079,651,1,702,712,713,719,697,701,727,717,725,713,714,715,765,879,1208,1952,3113,4470,5717,6632,7259,7737,8155,8611,9121,9747,10482,11351,12342,13443,14619,15783,16880,17837,18560,19000,19125,18945,18566,18048,17457,16896,16443,16084,15864,15793,15858,16106,16521,17102,17834,18747,19806,21016,22322,23765,25230,26731,28135,29386,30384,31128,31544,31521,31200,30553,29646,28586,27356,26164,25012,23941,22941,22097,21362,20747,20281,19898,19627,19446,19353,19362,19465,19665,19925,20257,20697,21214,21785,22381,23063,23694,24325,24878,25358,25732,25994,26039,25915,25649,25165,24529,23820,23030,22164,21305,20461,19681,18980,18320,17764,17293,16888,16568,16314,16148,16058,16002,16015,16112,16283,16504,16785,17175,17586,18071,18667,19260,19911,20585,21289,22053,22777,23490,24174,24843,25422,25989,26414,26754,26986,27099,27102,27013,26813,26473,26087,25590,25019,24433,23784,23147,22506,21828,21205,20613,20008,19463,18981,18493,18097,17718,17381,17098,16842,16584,16400,16193,16004,15820,15630,15471,15321,15205,15097,15044,14952,14927,14913,14901,14919,14933,14966,14986,15033,15056,15099,15159,15176,15197,15212,15217,15226,15243,15247,15243,15194,15117,15067,14992,14903,14808,14672,14529,14375,14169,13975,13742,13500,13240,12977,12686,12390,12119,11820,11531,11260,11009,10771,10539,10275,9970,9663,9333,9053,8803,8594,8428,8269,8147,8055,7985,7912,7845,7782,7712,7555,7364,7223,7084,6967,6876,6805,6741,6673,6645,6637,6615,6615,6610,6621,6603,6459,6145,5723,5113,21.8,21.9,22.4,1568559,0.2,13.4,11.9,5.0,433,-1.00,-1.00,57.5649,-18.877479,0.000520,,,,,115 +SATSLF0720,2024246,16.013942,4.13,0.0578,0.1052,0.0187,0.00,16094,651,1,702,699,701,693,710,710,714,729,737,740,722,747,781,899,1208,1944,3096,4455,5691,6611,7237,7696,8142,8589,9110,9729,10493,11362,12342,13448,14621,15772,16874,17813,18535,18971,19113,18937,18565,18034,17442,16889,16421,16068,15841,15769,15857,16098,16485,17079,17817,18730,19789,21006,22330,23769,25252,26729,28146,29397,30378,31124,31520,31518,31190,30544,29630,28603,27365,26173,25026,23954,22956,22109,21381,20768,20273,19889,19616,19444,19351,19366,19460,19651,19936,20270,20717,21233,21789,22402,23060,23717,24333,24916,25381,25751,26022,26068,25947,25665,25192,24565,23852,23059,22194,21316,20461,19697,18996,18336,17787,17320,16901,16607,16355,16173,16080,16025,16043,16157,16301,16544,16830,17195,17621,18097,18684,19282,19924,20597,21341,22060,22812,23533,24232,24888,25477,26041,26466,26771,27028,27137,27149,27050,26822,26498,26109,25616,25059,24461,23835,23184,22539,21888,21235,20642,20042,19484,18993,18518,18117,17753,17426,17138,16879,16627,16441,16237,16036,15840,15659,15482,15342,15233,15129,15065,14992,14965,14952,14929,14936,14956,14978,15018,15046,15095,15138,15187,15210,15226,15234,15244,15261,15289,15273,15270,15214,15153,15102,15018,14942,14850,14709,14560,14380,14201,13988,13776,13533,13278,13004,12732,12425,12134,11841,11536,11281,11037,10785,10551,10281,9975,9654,9353,9081,8841,8613,8463,8289,8158,8075,7981,7911,7851,7781,7702,7553,7395,7236,7104,6985,6903,6821,6765,6703,6686,6653,6634,6615,6611,6621,6603,6471,6150,5731,5125,21.8,22.0,22.4,1568560,0.2,13.4,11.9,5.0,424,-1.00,-1.00,58.3901,-19.220823,0.000596,,,,,143 +SATSLF0720,2024246,16.014192,4.20,0.0589,0.1065,0.0197,0.00,16054,651,1,705,711,711,708,723,718,726,739,749,746,738,745,774,893,1205,1943,3105,4449,5673,6590,7239,7715,8126,8571,9084,9703,10422,11303,12281,13393,14570,15731,16823,17767,18490,18921,19040,18866,18493,17971,17381,16837,16382,16010,15776,15723,15793,16043,16455,17029,17776,18661,19747,20953,22254,23707,25181,26646,28053,29295,30308,31029,31428,31430,31099,30458,29559,28501,27271,26109,24961,23886,22897,22048,21309,20710,20217,19837,19549,19399,19297,19328,19434,19621,19877,20247,20658,21178,21737,22353,23021,23650,24261,24838,25323,25680,25941,26003,25883,25621,25133,24512,23764,22971,22117,21237,20410,19637,18945,18300,17747,17285,16880,16562,16308,16138,16037,15993,16013,16097,16261,16489,16780,17155,17589,18074,18632,19241,19857,20569,21274,22006,22749,23467,24163,24817,25403,25969,26386,26708,26958,27052,27069,26983,26763,26449,26050,25579,24997,24413,23783,23138,22483,21811,21176,20552,19967,19426,18935,18475,18085,17713,17373,17097,16832,16595,16413,16193,16001,15806,15617,15447,15310,15204,15088,15021,14941,14907,14897,14902,14901,14943,14966,14996,15028,15049,15099,15161,15179,15179,15194,15207,15214,15233,15243,15240,15181,15122,15069,14984,14899,14806,14673,14525,14346,14168,13950,13728,13495,13241,12976,12680,12409,12125,11821,11527,11263,11021,10761,10530,10250,9969,9642,9338,9066,8811,8608,8436,8279,8146,8045,7983,7909,7843,7790,7694,7557,7370,7223,7107,6997,6904,6818,6745,6689,6656,6638,6622,6606,6596,6613,6605,6451,6146,5724,5106,21.8,22.0,22.5,1568561,0.2,13.4,12.0,5.0,433,-1.00,-1.00,58.4984,-19.212287,0.000607,,,,,46 +SATSLF0720,2024246,16.014447,4.23,0.0593,0.1060,0.0199,0.00,16061,651,1,705,697,710,717,715,716,714,726,722,734,725,743,768,888,1217,1936,3088,4442,5667,6576,7231,7691,8143,8573,9098,9714,10446,11309,12304,13406,14574,15743,16838,17788,18501,18937,19061,18873,18520,17981,17401,16837,16395,16025,15806,15728,15817,16067,16484,17051,17781,18693,19737,20955,22276,23714,25207,26668,28083,29329,30309,31066,31456,31459,31140,30481,29585,28534,27290,26115,24965,23894,22907,22060,21328,20713,20244,19854,19568,19422,19317,19328,19431,19617,19880,20224,20666,21184,21746,22360,23035,23672,24274,24864,25335,25694,25966,26025,25889,25611,25147,24519,23794,22989,22137,21265,20424,19667,18957,18320,17741,17274,16867,16562,16315,16136,16045,15989,16004,16097,16264,16490,16781,17133,17579,18077,18648,19243,19879,20547,21269,22010,22748,23466,24154,24827,25417,25988,26397,26731,26985,27081,27096,27001,26789,26444,26055,25568,25004,24412,23780,23143,22490,21838,21196,20596,20009,19462,18973,18488,18092,17723,17393,17102,16841,16593,16397,16185,16004,15813,15636,15460,15315,15208,15106,15034,14948,14917,14917,14910,14903,14931,14946,14987,15031,15063,15116,15170,15188,15195,15201,15211,15214,15245,15232,15226,15186,15121,15064,14989,14897,14821,14681,14523,14363,14184,13978,13754,13511,13246,12977,12695,12400,12104,11807,11547,11268,11013,10775,10535,10260,9964,9639,9333,9055,8806,8601,8426,8277,8139,8052,7970,7902,7848,7790,7703,7574,7388,7228,7097,6987,6898,6805,6731,6695,6653,6629,6617,6597,6583,6625,6592,6430,6139,5705,5095,21.8,22.0,22.5,1568562,0.2,13.4,11.9,5.0,431,-1.00,-1.00,58.2781,-19.135535,0.000596,,,,,21 +SATSDF0720,2024246,16.259138,0.00,0.0000,0.0000,0.0000,0.00,651,0,1,637,627,618,628,627,631,648,641,644,634,617,618,616,621,633,626,631,633,651,652,653,646,633,672,657,657,646,663,656,657,645,661,657,651,656,657,648,646,647,650,661,658,650,659,661,662,653,661,672,657,654,652,663,658,655,667,657,679,660,671,663,661,663,650,647,664,668,657,652,652,647,645,657,661,653,651,657,663,652,672,661,670,652,658,648,652,653,658,660,653,656,658,651,653,647,657,653,643,647,656,654,659,652,645,659,658,653,650,663,649,656,653,652,660,649,651,653,651,649,651,647,642,649,642,653,653,660,666,662,658,658,658,659,653,657,665,657,661,649,649,640,639,650,649,649,648,643,651,641,647,656,661,657,657,649,653,659,653,657,646,653,642,647,653,647,651,645,641,657,649,655,655,659,634,647,624,643,651,648,651,663,664,657,659,651,641,652,652,651,653,645,662,663,662,650,647,660,648,649,632,647,647,652,649,659,665,650,652,662,662,650,663,649,647,650,647,646,653,645,651,648,654,654,657,653,647,636,655,641,644,641,650,648,645,643,644,667,662,661,661,645,659,653,650,642,637,639,641,649,657,658,650,653,656,651,476,0.0,0.0,0.0,1568561,0.7,14.1,0.1,5.0,54,0.00,0.00,0.0000,0.000000,0.000000,,,,,182 +SATSLF0720,2024246,16.259696,3.98,0.0558,0.1032,0.0180,0.00,16133,651,1,689,683,691,682,709,702,707,712,717,713,729,729,759,868,1203,1937,3076,4435,5669,6592,7246,7718,8147,8588,9113,9730,10468,11363,12341,13458,14618,15779,16905,17857,18580,19009,19154,18962,18589,18052,17466,16905,16454,16091,15872,15785,15867,16128,16517,17119,17851,18768,19844,21050,22366,23809,25289,26781,28221,29468,30445,31205,31606,31608,31280,30647,29717,28679,27443,26273,25108,24030,23035,22167,21437,20844,20361,19979,19692,19537,19440,19457,19553,19733,20017,20361,20786,21305,21875,22498,23152,23809,24414,24989,25457,25832,26081,26130,26012,25739,25261,24628,23897,23109,22233,21360,20513,19736,19036,18374,17825,17348,16940,16631,16381,16222,16121,16085,16094,16196,16354,16581,16874,17235,17678,18157,18738,19351,19973,20669,21389,22131,22888,23598,24301,24970,25561,26116,26556,26865,27111,27225,27234,27139,26928,26592,26196,25697,25135,24560,23922,23271,22610,21946,21301,20681,20105,19525,19044,18582,18169,17798,17485,17182,16916,16677,16477,16269,16077,15885,15680,15527,15380,15273,15172,15098,15032,14995,14983,14976,14982,15010,15031,15066,15093,15127,15177,15221,15239,15258,15270,15277,15289,15323,15328,15311,15255,15189,15127,15062,14968,14871,14733,14570,14410,14209,13995,13783,13555,13281,13021,12736,12439,12149,11850,11571,11303,11059,10814,10581,10301,10010,9690,9377,9088,8845,8636,8450,8293,8166,8074,7996,7946,7885,7800,7708,7575,7411,7242,7122,7001,6891,6814,6749,6697,6657,6632,6634,6634,6621,6627,6623,6469,6162,5738,5115,21.8,21.8,22.0,1568563,0.2,13.6,11.9,5.0,537,-1.00,-1.00,59.5370,-19.749064,0.000583,,,,,217 +SATSLF0720,2024246,16.259878,3.94,0.0552,0.1005,0.0164,0.00,16227,651,1,701,713,724,725,722,722,722,715,730,725,724,731,767,887,1203,1945,3113,4485,5758,6669,7322,7814,8235,8682,9216,9824,10583,11459,12464,13572,14775,15949,17071,18046,18768,19200,19335,19137,18765,18220,17620,17056,16589,16219,16002,15936,16017,16266,16679,17250,18010,18909,19975,21221,22550,24019,25509,26993,28433,29696,30683,31443,31843,31844,31518,30883,29933,28869,27655,26461,25288,24201,23191,22334,21593,20963,20491,20104,19803,19659,19553,19572,19683,19863,20126,20470,20910,21428,22017,22616,23299,23932,24559,25131,25617,25974,26250,26292,26168,25890,25389,24761,24033,23216,22368,21478,20631,19850,19148,18481,17933,17450,17043,16715,16469,16298,16203,16155,16178,16265,16439,16661,16953,17339,17766,18245,18826,19426,20059,20756,21494,22237,22989,23719,24413,25077,25671,26248,26670,27014,27241,27351,27361,27264,27048,26725,26329,25834,25251,24652,24023,23365,22724,22029,21403,20794,20181,19633,19138,18661,18265,17890,17546,17264,16997,16740,16551,16333,16155,15957,15752,15593,15465,15337,15236,15159,15087,15056,15029,15024,15022,15044,15083,15108,15153,15191,15237,15298,15316,15325,15320,15331,15349,15358,15360,15361,15305,15235,15178,15106,15027,14933,14797,14647,14474,14282,14073,13859,13614,13345,13070,12789,12497,12202,11906,11607,11345,11097,10858,10617,10342,10042,9710,9399,9116,8870,8664,8488,8333,8196,8109,8032,7963,7914,7837,7749,7597,7436,7274,7140,7031,6933,6839,6786,6727,6692,6673,6660,6647,6645,6669,6650,6509,6185,5775,5146,21.8,21.8,22.1,1568563,0.4,13.6,12.0,5.0,450,-1.00,-1.00,58.4126,-19.419571,0.000593,,,,,51 +SATSLF0720,2024246,16.260135,4.07,0.0571,0.1011,0.0165,0.00,16202,651,1,688,702,701,704,698,712,709,718,713,720,723,747,769,874,1203,1943,3096,4483,5722,6645,7298,7778,8191,8655,9186,9810,10546,11424,12431,13567,14741,15912,17021,17997,18718,19152,19287,19105,18709,18161,17575,17013,16547,16189,15973,15913,15990,16235,16649,17222,17969,18897,19966,21191,22509,23966,25446,26932,28352,29627,30633,31378,31789,31776,31467,30829,29906,28841,27593,26401,25236,24142,23145,22293,21553,20945,20465,20068,19784,19629,19528,19543,19641,19835,20092,20451,20873,21385,21974,22588,23239,23905,24525,25096,25572,25947,26208,26254,26131,25851,25370,24741,24004,23191,22322,21449,20602,19845,19125,18468,17905,17428,17005,16687,16453,16277,16179,16134,16153,16238,16413,16640,16925,17297,17728,18225,18799,19411,20060,20734,21469,22210,22947,23669,24379,25049,25637,26210,26632,26970,27213,27330,27345,27243,27031,26696,26288,25801,25229,24628,23981,23322,22665,21995,21368,20762,20176,19629,19125,18659,18240,17867,17529,17243,16965,16721,16510,16315,16119,15925,15752,15585,15432,15323,15225,15153,15066,15035,15021,15028,15017,15053,15061,15102,15127,15175,15225,15268,15286,15298,15312,15325,15353,15361,15354,15337,15283,15233,15177,15105,15014,14913,14773,14624,14461,14260,14044,13824,13585,13323,13063,12778,12477,12191,11897,11595,11323,11079,10842,10616,10333,10023,9713,9393,9117,8867,8645,8487,8318,8186,8089,8013,7936,7889,7826,7732,7594,7423,7288,7141,7030,6931,6841,6771,6726,6693,6669,6646,6629,6631,6642,6643,6490,6183,5760,5133,21.8,21.8,22.1,1568564,0.3,13.6,11.9,5.1,432,-1.00,-1.00,58.2527,-19.319984,0.000552,,,,,74 +SATSLF0720,2024246,16.260387,4.02,0.0563,0.1031,0.0178,0.00,16147,651,1,694,707,705,702,703,709,710,718,725,730,717,738,774,885,1205,1926,3083,4435,5687,6609,7246,7714,8151,8597,9124,9756,10496,11370,12365,13466,14664,15810,16907,17879,18594,19045,19181,18999,18622,18081,17494,16936,16474,16098,15880,15810,15882,16151,16561,17137,17895,18789,19870,21090,22394,23834,25318,26806,28240,29497,30493,31254,31653,31649,31325,30672,29747,28690,27463,26283,25122,24064,23041,22198,21463,20870,20372,19973,19699,19540,19444,19457,19574,19746,20006,20371,20793,21333,21889,22501,23181,23833,24435,25009,25493,25857,26136,26172,26061,25771,25292,24649,23932,23120,22270,21389,20544,19762,19051,18397,17834,17365,16949,16647,16400,16222,16129,16078,16100,16203,16373,16599,16889,17249,17674,18170,18740,19348,19987,20679,21398,22147,22905,23609,24314,24957,25575,26136,26560,26884,27138,27246,27249,27163,26937,26614,26212,25718,25149,24556,23923,23283,22619,21960,21309,20707,20109,19559,19072,18601,18189,17817,17486,17194,16919,16677,16475,16277,16097,15892,15717,15546,15413,15296,15188,15126,15045,14984,14983,14970,14976,15005,15010,15059,15107,15141,15192,15234,15252,15273,15276,15297,15293,15319,15317,15317,15257,15203,15133,15061,14969,14874,14745,14601,14426,14233,14008,13807,13558,13302,13024,12743,12440,12160,11875,11572,11303,11051,10817,10577,10312,10010,9674,9365,9084,8834,8636,8468,8308,8176,8082,7998,7933,7880,7814,7718,7581,7414,7253,7125,7015,6930,6837,6772,6713,6665,6652,6632,6629,6609,6635,6625,6487,6177,5742,5121,21.8,21.8,22.2,1568565,0.3,13.6,11.9,5.0,434,-1.00,-1.00,59.0233,-19.554059,0.000630,,,,,0 +SATSLF0720,2024246,16.260638,4.01,0.0562,0.1020,0.0176,0.00,16170,651,1,696,704,708,709,720,708,712,713,707,710,732,739,770,885,1210,1939,3101,4456,5680,6627,7273,7769,8192,8642,9163,9787,10522,11399,12391,13516,14690,15861,16965,17936,18653,19101,19221,19033,18663,18124,17525,16981,16516,16154,15931,15865,15921,16187,16597,17178,17917,18823,19904,21125,22448,23901,25370,26860,28290,29547,30554,31304,31693,31715,31395,30727,29815,28754,27520,26345,25179,24105,23102,22236,21490,20887,20405,20026,19744,19585,19488,19498,19593,19785,20045,20397,20827,21347,21917,22536,23208,23853,24458,25051,25525,25898,26157,26202,26080,25802,25310,24681,23954,23164,22291,21418,20554,19784,19079,18423,17853,17391,16995,16670,16416,16249,16148,16098,16106,16212,16365,16585,16898,17262,17694,18193,18762,19377,20013,20673,21419,22167,22918,23626,24340,25013,25589,26164,26587,26909,27163,27265,27264,27193,26966,26632,26230,25751,25161,24576,23946,23305,22638,21980,21354,20725,20133,19578,19073,18608,18200,17845,17497,17208,16938,16706,16492,16291,16100,15914,15729,15565,15425,15303,15198,15120,15041,15010,14988,14996,14989,15023,15048,15080,15109,15144,15186,15234,15251,15274,15294,15292,15311,15335,15328,15321,15278,15213,15140,15077,14986,14888,14758,14625,14439,14247,14040,13813,13579,13316,13049,12762,12472,12172,11868,11581,11305,11059,10824,10600,10327,10033,9697,9385,9097,8859,8652,8478,8309,8191,8089,8009,7929,7903,7829,7728,7587,7411,7262,7129,7014,6925,6842,6766,6721,6669,6654,6640,6634,6618,6641,6635,6487,6172,5745,5127,21.8,21.8,22.2,1568566,0.3,13.6,12.0,5.0,426,-1.00,-1.00,58.7161,-19.463083,0.000547,,,,,55 +SATSLF0720,2024246,16.260896,3.95,0.0553,0.1019,0.0169,0.00,16177,651,1,709,715,728,701,712,723,725,720,730,730,729,742,766,891,1208,1949,3113,4469,5708,6634,7285,7764,8192,8631,9156,9788,10539,11429,12433,13527,14711,15872,16993,17946,18688,19113,19237,19063,18674,18140,17565,16993,16526,16174,15945,15873,15955,16194,16611,17197,17913,18839,19915,21134,22464,23911,25405,26873,28310,29576,30582,31337,31731,31741,31402,30756,29841,28781,27550,26368,25176,24103,23098,22227,21510,20886,20411,20016,19745,19574,19494,19493,19607,19801,20065,20397,20852,21366,21913,22555,23205,23854,24481,25046,25539,25900,26176,26197,26083,25805,25333,24692,23977,23168,22290,21421,20561,19806,19104,18433,17885,17409,17004,16685,16421,16246,16147,16093,16132,16213,16383,16585,16895,17277,17693,18201,18775,19380,20015,20697,21444,22184,22917,23640,24336,24995,25589,26154,26587,26902,27156,27266,27273,27173,26960,26634,26236,25744,25178,24581,23959,23306,22650,21997,21357,20736,20133,19581,19089,18602,18195,17840,17505,17210,16949,16709,16491,16304,16104,15913,15728,15557,15416,15306,15208,15122,15071,15015,14993,15003,14986,15028,15037,15069,15112,15155,15197,15261,15276,15297,15304,15294,15305,15324,15322,15322,15280,15207,15161,15079,14998,14919,14765,14629,14450,14250,14035,13818,13568,13307,13046,12773,12469,12178,11875,11593,11307,11075,10832,10585,10326,10025,9707,9409,9107,8858,8647,8471,8318,8185,8081,8010,7941,7885,7817,7722,7585,7418,7260,7147,7013,6911,6849,6765,6726,6687,6664,6650,6630,6626,6640,6647,6485,6184,5758,5136,21.8,21.8,22.2,1568567,0.4,13.6,11.9,5.0,432,-1.00,-1.00,58.8256,-19.524024,0.000539,,,,,43 +SATSLF0720,2024246,16.261149,3.98,0.0558,0.1056,0.0197,0.00,16072,651,1,710,703,714,712,716,705,709,706,717,737,731,737,769,883,1217,1919,3083,4427,5643,6567,7202,7688,8119,8552,9069,9692,10432,11297,12283,13369,14567,15709,16811,17780,18478,18935,19077,18890,18518,17984,17393,16841,16367,16009,15785,15714,15800,16071,16469,17061,17787,18705,19749,20962,22262,23705,25194,26662,28086,29341,30333,31077,31472,31482,31149,30517,29593,28545,27329,26153,24993,23918,22932,22091,21361,20746,20267,19869,19589,19433,19333,19354,19453,19648,19936,20270,20704,21222,21780,22384,23069,23704,24323,24897,25369,25728,25985,26045,25924,25636,25171,24538,23819,23013,22147,21280,20438,19669,18957,18331,17764,17309,16894,16581,16322,16153,16059,16004,16023,16119,16286,16507,16813,17184,17602,18093,18641,19265,19895,20570,21306,22061,22805,23502,24208,24862,25450,26017,26432,26753,26996,27106,27128,27037,26808,26481,26087,25604,25038,24433,23808,23161,22527,21862,21236,20629,20013,19465,18969,18493,18085,17735,17411,17130,16858,16613,16412,16206,16015,15824,15634,15479,15341,15221,15128,15053,14973,14942,14919,14904,14920,14947,14974,15002,15037,15067,15126,15178,15189,15200,15223,15216,15235,15250,15270,15257,15194,15136,15071,14995,14923,14828,14693,14545,14353,14167,13960,13737,13510,13242,12983,12716,12421,12136,11833,11527,11263,11010,10769,10529,10263,9978,9669,9349,9073,8825,8621,8448,8294,8161,8058,7986,7900,7867,7786,7708,7549,7383,7222,7090,6982,6865,6796,6720,6684,6645,6615,6631,6609,6602,6612,6596,6455,6144,5719,5119,21.8,21.8,22.2,1568568,0.4,13.6,12.0,5.0,431,-1.00,-1.00,59.6655,-19.723871,0.000622,,,,,72 +SATSLF0720,2024246,16.261405,4.14,0.0580,0.1040,0.0187,0.00,16107,651,1,697,695,699,707,702,702,708,709,711,727,736,740,779,885,1210,1920,3079,4437,5692,6600,7233,7723,8150,8593,9104,9730,10483,11357,12334,13447,14624,15765,16873,17806,18540,18978,19127,18944,18573,18045,17446,16894,16436,16065,15853,15776,15858,16111,16521,17097,17848,18756,19805,21025,22334,23794,25277,26762,28186,29429,30408,31162,31573,31573,31226,30594,29682,28631,27412,26215,25056,23987,22997,22141,21415,20807,20312,19925,19634,19463,19402,19413,19520,19706,19963,20331,20753,21255,21810,22430,23107,23761,24373,24949,25444,25794,26057,26102,25987,25700,25227,24585,23857,23061,22181,21319,20480,19708,19018,18364,17806,17338,16913,16612,16349,16178,16069,16035,16064,16150,16318,16549,16833,17200,17632,18122,18697,19304,19937,20621,21351,22089,22834,23549,24266,24914,25501,26077,26497,26818,27060,27152,27163,27079,26865,26537,26141,25653,25092,24492,23869,23202,22541,21892,21261,20660,20069,19505,19029,18542,18144,17776,17437,17158,16885,16637,16424,16247,16042,15845,15661,15506,15368,15252,15154,15065,15002,14961,14937,14935,14949,14970,15004,15028,15076,15109,15153,15213,15204,15228,15230,15239,15267,15288,15280,15280,15221,15167,15101,15034,14929,14842,14705,14550,14383,14202,13986,13764,13547,13269,13012,12711,12420,12134,11835,11561,11291,11032,10797,10541,10286,9993,9649,9363,9081,8822,8625,8446,8301,8149,8059,7979,7909,7864,7810,7705,7560,7393,7234,7107,6982,6893,6804,6735,6691,6655,6639,6618,6625,6603,6627,6626,6468,6167,5730,5114,21.8,21.9,22.2,1568569,0.5,13.6,12.0,5.0,424,-1.00,-1.00,58.7668,-19.403563,0.000585,,,,,180 +SATSLF0720,2024246,16.261659,4.17,0.0585,0.1035,0.0181,0.00,16135,651,1,712,710,709,707,717,716,721,709,712,725,736,745,772,881,1219,1937,3093,4465,5696,6614,7259,7732,8157,8606,9137,9757,10508,11370,12363,13488,14661,15825,16938,17878,18609,19036,19161,18983,18610,18074,17483,16941,16462,16100,15884,15818,15886,16145,16549,17145,17886,18791,19873,21065,22405,23829,25313,26805,28213,29467,30474,31229,31641,31627,31307,30666,29735,28693,27441,26256,25110,24035,23026,22181,21445,20839,20363,19973,19685,19505,19423,19441,19541,19724,19985,20343,20760,21287,21867,22489,23153,23790,24419,24982,25467,25832,26097,26153,26017,25756,25261,24640,23912,23104,22237,21353,20509,19746,19042,18393,17824,17353,16941,16623,16383,16209,16108,16074,16089,16176,16347,16567,16870,17236,17659,18149,18711,19319,19963,20660,21379,22138,22870,23597,24297,24954,25547,26112,26522,26843,27091,27205,27209,27125,26906,26571,26187,25699,25137,24544,23890,23254,22593,21931,21292,20685,20094,19537,19043,18562,18155,17781,17462,17181,16906,16680,16462,16267,16059,15867,15682,15515,15374,15258,15169,15092,15014,14989,14973,14969,14976,15003,15010,15046,15099,15127,15178,15235,15246,15249,15257,15264,15290,15306,15303,15295,15250,15189,15121,15045,14964,14870,14734,14577,14406,14218,14007,13799,13561,13308,13025,12730,12449,12153,11847,11575,11297,11059,10811,10583,10311,9997,9688,9379,9076,8840,8631,8446,8305,8178,8071,7989,7912,7865,7809,7712,7587,7398,7256,7125,7012,6914,6839,6760,6711,6673,6649,6633,6616,6616,6624,6619,6483,6173,5742,5117,21.8,21.9,22.3,1568570,0.3,13.6,12.0,5.0,430,-1.00,-1.00,58.3634,-19.270240,0.000583,,,,,28 +SATSLF0720,2024246,16.261911,4.20,0.0588,0.1033,0.0179,0.00,16140,651,1,697,701,714,708,717,716,724,731,730,729,735,741,774,889,1211,1933,3096,4472,5709,6633,7258,7740,8171,8621,9127,9767,10501,11384,12377,13476,14659,15828,16938,17876,18609,19046,19171,18985,18615,18085,17492,16938,16488,16114,15895,15840,15901,16164,16578,17140,17890,18781,19864,21088,22397,23844,25320,26805,28215,29480,30474,31225,31627,31641,31309,30672,29740,28696,27453,26273,25120,24024,23035,22180,21426,20832,20349,19965,19689,19529,19434,19458,19550,19744,20009,20352,20778,21292,21860,22492,23153,23810,24409,24997,25463,25842,26090,26144,26024,25738,25268,24629,23911,23113,22245,21377,20517,19748,19051,18397,17837,17344,16963,16634,16389,16225,16114,16071,16082,16187,16341,16572,16879,17241,17675,18161,18729,19322,19979,20656,21399,22133,22875,23581,24288,24934,25539,26100,26530,26860,27094,27204,27202,27120,26912,26585,26185,25689,25143,24534,23914,23264,22592,21936,21288,20685,20102,19532,19057,18566,18169,17804,17472,17187,16917,16676,16473,16259,16061,15882,15698,15537,15382,15271,15170,15092,15025,14996,14973,14979,14968,15002,15021,15050,15096,15129,15189,15237,15245,15259,15282,15273,15295,15286,15301,15296,15245,15198,15129,15069,14977,14881,14750,14587,14421,14219,14000,13796,13541,13271,13031,12742,12452,12135,11868,11574,11313,11069,10822,10581,10317,10017,9685,9376,9097,8846,8630,8473,8305,8168,8081,7996,7921,7881,7814,7738,7584,7413,7261,7129,6997,6903,6830,6757,6704,6656,6663,6641,6642,6614,6636,6641,6473,6164,5731,5122,21.8,21.9,22.3,1568571,0.4,13.6,12.0,5.0,434,-1.00,-1.00,58.0274,-19.133703,0.000495,,,,,18 +SATSLF0720,2024246,16.262167,4.00,0.0560,0.1034,0.0183,0.00,16139,651,1,710,709,723,709,715,715,720,710,733,732,742,749,789,893,1226,1941,3102,4465,5697,6619,7260,7743,8175,8629,9146,9765,10502,11384,12371,13478,14651,15813,16928,17877,18600,19045,19181,18989,18613,18091,17501,16933,16471,16107,15876,15815,15894,16144,16561,17141,17882,18796,19840,21066,22393,23829,25309,26800,28230,29476,30475,31219,31627,31633,31305,30657,29737,28689,27465,26273,25105,24042,23042,22185,21469,20842,20353,19955,19684,19521,19429,19449,19549,19733,19996,20345,20787,21303,21895,22489,23150,23799,24414,24987,25463,25830,26092,26146,26033,25747,25270,24641,23909,23101,22253,21368,20516,19748,19048,18395,17834,17360,16958,16628,16392,16225,16109,16057,16083,16192,16339,16576,16865,17242,17666,18155,18720,19345,19970,20646,21358,22125,22845,23573,24270,24944,25540,26114,26546,26854,27095,27213,27220,27122,26905,26584,26193,25707,25146,24543,23907,23251,22600,21923,21284,20683,20085,19542,19049,18565,18171,17792,17468,17184,16904,16666,16456,16261,16073,15882,15693,15517,15378,15287,15173,15111,15040,14992,14980,14972,14985,14994,15027,15051,15097,15122,15181,15229,15254,15254,15269,15273,15293,15312,15310,15306,15257,15184,15117,15047,14961,14862,14733,14583,14410,14231,14006,13803,13571,13308,13032,12749,12461,12158,11848,11569,11305,11061,10821,10586,10315,10032,9693,9381,9072,8856,8646,8470,8317,8165,8083,7993,7927,7888,7817,7722,7570,7421,7236,7134,7006,6912,6833,6765,6708,6676,6650,6637,6634,6622,6634,6643,6497,6176,5750,5131,21.8,21.9,22.3,1568572,0.1,13.6,12.0,5.0,430,-1.00,-1.00,58.8973,-19.493174,0.000542,,,,,82 +SATSLF0720,2024246,16.262421,4.20,0.0589,0.1043,0.0185,0.00,16115,651,1,709,707,709,700,715,720,721,726,727,731,730,747,781,893,1208,1953,3093,4457,5698,6618,7257,7737,8157,8605,9106,9751,10482,11364,12356,13466,14641,15799,16894,17846,18564,18999,19133,18950,18583,18052,17473,16910,16452,16082,15862,15792,15867,16119,16524,17098,17846,18763,19828,21049,22347,23815,25285,26754,28181,29434,30414,31175,31556,31569,31238,30592,29678,28618,27405,26218,25056,23977,22993,22144,21416,20818,20313,19944,19644,19501,19389,19399,19508,19682,19961,20309,20744,21269,21835,22462,23114,23780,24369,24951,25413,25795,26050,26098,25991,25725,25241,24610,23893,23085,22214,21343,20489,19723,19013,18365,17810,17340,16920,16608,16370,16190,16091,16040,16059,16167,16325,16562,16861,17213,17651,18129,18698,19315,19942,20622,21357,22098,22838,23556,24260,24910,25513,26069,26482,26819,27061,27168,27169,27089,26861,26538,26142,25653,25093,24505,23858,23207,22540,21881,21254,20653,20069,19506,19014,18558,18135,17771,17446,17146,16891,16643,16432,16242,16057,15863,15687,15526,15373,15257,15157,15088,14993,14969,14945,14932,14939,14967,14995,15046,15080,15113,15155,15219,15255,15249,15255,15258,15285,15289,15291,15277,15218,15161,15109,15031,14951,14857,14712,14539,14383,14206,13992,13794,13546,13288,13025,12749,12457,12136,11851,11550,11269,11027,10795,10565,10313,10000,9690,9369,9087,8848,8640,8454,8310,8163,8071,7988,7915,7869,7812,7717,7580,7401,7240,7114,7005,6902,6831,6753,6706,6656,6637,6617,6609,6615,6635,6634,6480,6171,5739,5125,21.9,21.9,22.4,1568573,0.4,13.5,12.0,5.0,434,-1.00,-1.00,58.1047,-19.128150,0.000567,,,,,6 +SATSLF0720,2024246,16.262673,4.15,0.0581,0.1048,0.0195,0.00,16088,651,1,700,696,707,709,707,708,718,720,722,722,722,736,765,885,1209,1927,3091,4457,5670,6599,7223,7699,8131,8584,9093,9712,10459,11325,12315,13418,14599,15755,16865,17815,18529,18969,19102,18915,18544,18012,17424,16872,16413,16045,15831,15777,15837,16087,16490,17066,17819,18725,19778,20995,22316,23748,25224,26698,28121,29367,30370,31106,31509,31513,31186,30525,29629,28565,27355,26162,25010,23950,22937,22083,21369,20761,20280,19895,19617,19463,19369,19371,19467,19661,19915,20258,20692,21216,21784,22406,23088,23726,24343,24922,25395,25760,26021,26066,25941,25684,25193,24561,23834,23042,22169,21299,20441,19687,18986,18346,17781,17313,16912,16597,16329,16165,16065,16017,16048,16134,16298,16526,16828,17181,17601,18094,18671,19273,19927,20605,21323,22061,22808,23513,24231,24871,25469,26039,26465,26757,27021,27118,27141,27063,26844,26526,26117,25633,25056,24467,23819,23184,22525,21857,21225,20619,20029,19481,18993,18529,18132,17737,17413,17114,16855,16613,16418,16213,16015,15847,15665,15501,15359,15242,15141,15061,14984,14939,14930,14930,14932,14960,14970,15016,15053,15085,15139,15202,15207,15220,15233,15249,15261,15269,15267,15259,15213,15148,15075,15010,14949,14849,14702,14566,14385,14194,13979,13770,13525,13252,12988,12720,12422,12132,11834,11541,11282,11020,10778,10560,10297,9981,9664,9356,9069,8813,8609,8439,8290,8168,8057,7991,7909,7846,7801,7703,7559,7396,7237,7117,6993,6894,6809,6743,6696,6657,6630,6613,6599,6579,6605,6607,6453,6143,5738,5124,21.9,21.9,22.4,1568573,0.0,13.5,12.0,5.0,428,-1.00,-1.00,58.4605,-19.240316,0.000565,,,,,64 +SATSLF0720,2024246,16.262929,4.15,0.0581,0.1057,0.0203,0.00,16057,651,1,698,704,706,713,721,721,717,710,731,709,726,729,761,883,1197,1927,3085,4437,5664,6573,7226,7698,8118,8567,9086,9690,10433,11298,12279,13389,14580,15722,16820,17772,18493,18912,19061,18869,18494,17975,17385,16826,16384,16020,15799,15729,15802,16043,16445,17035,17770,18690,19733,20950,22257,23705,25177,26644,28066,29317,30305,31045,31433,31455,31112,30467,29563,28533,27285,26118,24963,23894,22886,22039,21303,20704,20222,19844,19569,19406,19330,19328,19438,19632,19873,20232,20664,21169,21738,22365,23030,23670,24295,24874,25341,25707,25967,26039,25890,25612,25118,24503,23770,22995,22124,21261,20415,19637,18946,18304,17744,17284,16877,16561,16301,16139,16048,15995,16022,16106,16278,16498,16789,17149,17576,18072,18648,19229,19886,20565,21289,22027,22756,23476,24179,24813,25415,25965,26401,26728,26971,27090,27089,27010,26797,26471,26069,25578,25013,24417,23789,23130,22478,21828,21200,20594,19996,19441,18963,18492,18077,17717,17398,17109,16836,16589,16401,16194,16009,15813,15623,15450,15312,15202,15113,15020,14951,14916,14903,14891,14918,14949,14953,15001,15035,15069,15105,15157,15160,15175,15195,15213,15226,15243,15241,15238,15178,15123,15051,14995,14900,14813,14672,14530,14356,14154,13950,13743,13502,13250,12966,12699,12400,12116,11809,11524,11255,11023,10777,10551,10274,9960,9651,9332,9056,8810,8598,8425,8263,8143,8052,7975,7898,7859,7777,7690,7560,7375,7230,7088,6982,6881,6788,6737,6688,6670,6638,6625,6631,6610,6620,6596,6449,6145,5719,5100,21.8,21.9,22.4,1568574,0.5,13.6,12.0,5.0,430,-1.00,-1.00,58.7884,-19.339805,0.000582,,,,,53 +SATSLF0720,2024246,16.263182,4.17,0.0584,0.1051,0.0190,0.00,16080,651,1,718,721,725,729,734,724,734,730,731,727,727,728,763,881,1197,1936,3098,4454,5702,6604,7250,7726,8131,8580,9089,9704,10453,11336,12326,13424,14596,15750,16864,17799,18515,18960,19082,18904,18548,18026,17430,16881,16410,16062,15824,15753,15817,16081,16477,17070,17817,18717,19781,20998,22299,23750,25226,26704,28124,29369,30370,31108,31504,31494,31172,30516,29612,28566,27339,26164,25021,23940,22944,22083,21347,20737,20272,19874,19601,19446,19358,19373,19473,19652,19927,20264,20690,21223,21778,22402,23065,23696,24313,24883,25370,25722,26000,26050,25931,25661,25188,24552,23829,23025,22160,21276,20450,19677,18965,18317,17770,17304,16894,16590,16333,16162,16069,16013,16039,16133,16290,16531,16813,17175,17617,18098,18665,19265,19890,20576,21305,22040,22788,23491,24189,24853,25448,26017,26437,26765,26987,27108,27104,27016,26795,26483,26086,25584,25036,24451,23805,23172,22528,21853,21225,20629,20022,19472,18968,18493,18104,17736,17408,17114,16855,16615,16416,16203,16019,15828,15629,15476,15317,15195,15106,15042,14969,14937,14932,14924,14935,14953,14976,15022,15046,15062,15117,15184,15178,15197,15205,15222,15245,15250,15255,15257,15213,15136,15093,15013,14914,14851,14685,14545,14366,14179,13964,13755,13527,13268,12998,12707,12416,12127,11821,11526,11271,11021,10788,10552,10292,9982,9654,9339,9062,8827,8608,8445,8282,8153,8057,7973,7907,7851,7783,7694,7557,7369,7225,7104,6995,6885,6809,6742,6683,6661,6647,6637,6615,6610,6615,6615,6462,6158,5736,5097,21.9,22.0,22.4,1568575,0.4,13.6,11.9,5.0,422,-1.00,-1.00,58.3920,-19.208171,0.000606,,,,,132 +SATSLF0720,2024246,16.263434,4.19,0.0587,0.1043,0.0192,0.00,16101,651,1,708,715,723,728,729,720,726,721,721,721,726,737,761,884,1217,1934,3079,4465,5698,6616,7257,7736,8156,8614,9122,9745,10481,11360,12344,13445,14619,15780,16897,17848,18569,19004,19137,18950,18581,18040,17440,16899,16426,16073,15841,15773,15865,16114,16531,17102,17844,18752,19824,21036,22346,23787,25256,26737,28146,29396,30407,31153,31538,31543,31211,30573,29660,28600,27372,26189,25040,23968,22962,22118,21378,20789,20288,19921,19618,19473,19390,19411,19481,19681,19947,20290,20727,21240,21793,22422,23088,23733,24336,24910,25403,25755,26027,26080,25948,25669,25187,24565,23844,23046,22198,21324,20485,19718,18997,18349,17794,17319,16902,16587,16351,16173,16084,16033,16041,16157,16309,16547,16849,17204,17637,18114,18683,19292,19920,20592,21319,22070,22797,23527,24212,24888,25459,26053,26461,26779,27022,27146,27148,27058,26841,26526,26119,25629,25066,24481,23837,23202,22553,21878,21233,20637,20042,19494,18998,18532,18105,17747,17424,17121,16855,16627,16433,16232,16029,15845,15666,15505,15358,15240,15137,15062,14976,14953,14920,14935,14935,14968,15001,15017,15059,15098,15157,15189,15219,15232,15239,15240,15245,15277,15273,15264,15216,15173,15085,15027,14938,14848,14720,14553,14381,14198,13973,13763,13530,13263,13015,12729,12435,12146,11847,11561,11270,11020,10777,10549,10287,9992,9670,9362,9079,8845,8624,8448,8292,8158,8058,7991,7925,7866,7806,7712,7569,7393,7245,7117,6996,6903,6819,6746,6698,6658,6646,6627,6626,6617,6641,6633,6459,6161,5745,5110,21.9,22.0,22.4,1568576,0.7,13.6,12.0,5.0,429,-1.00,-1.00,57.9914,-19.066459,0.000591,,,,,20 +SATSLF0720,2024246,16.263690,4.21,0.0589,0.1056,0.0193,0.00,16074,651,1,693,699,710,705,719,721,721,724,727,731,737,737,766,881,1216,1941,3090,4443,5681,6599,7233,7719,8137,8570,9093,9712,10450,11322,12294,13403,14588,15748,16853,17801,18512,18946,19066,18876,18529,18005,17419,16849,16390,16036,15821,15738,15824,16077,16484,17044,17787,18698,19770,20976,22293,23718,25208,26674,28093,29351,30341,31079,31470,31480,31160,30508,29602,28542,27305,26139,24980,23924,22924,22062,21338,20724,20262,19866,19574,19424,19336,19338,19450,19641,19896,20256,20681,21202,21768,22388,23054,23703,24313,24891,25353,25712,25979,26030,25922,25634,25152,24535,23824,23024,22166,21291,20441,19680,18970,18330,17768,17306,16902,16589,16332,16162,16052,16003,16023,16113,16282,16506,16797,17181,17604,18091,18669,19257,19905,20577,21296,22040,22780,23493,24192,24859,25449,26001,26421,26749,26991,27101,27104,27019,26797,26459,26087,25596,25032,24439,23810,23168,22517,21850,21207,20613,20008,19472,18977,18509,18100,17741,17409,17115,16840,16606,16401,16209,16021,15827,15657,15485,15339,15220,15108,15041,14973,14941,14916,14913,14935,14945,14962,15015,15043,15075,15128,15196,15202,15215,15221,15216,15248,15250,15271,15253,15207,15139,15083,15012,14913,14835,14686,14540,14375,14181,13968,13753,13514,13252,12993,12714,12422,12129,11838,11546,11260,11015,10777,10551,10266,9968,9650,9351,9058,8826,8600,8432,8289,8155,8066,7975,7911,7847,7791,7688,7554,7380,7232,7105,6986,6898,6802,6733,6693,6648,6620,6607,6605,6593,6599,6599,6453,6161,5726,5114,21.9,22.0,22.5,1568577,0.5,13.5,12.0,5.0,428,-1.00,-1.00,58.3840,-19.190592,0.000591,,,,,193 +SATSLF0720,2024246,16.263943,4.05,0.0568,0.1070,0.0204,0.00,16032,651,1,701,715,724,709,714,720,717,725,734,726,731,746,771,889,1205,1928,3079,4433,5649,6570,7211,7683,8110,8540,9049,9665,10409,11273,12267,13369,14528,15682,16785,17723,18435,18893,19017,18829,18461,17943,17338,16807,16329,15988,15744,15681,15762,16011,16421,17008,17737,18642,19702,20900,22217,23650,25116,26592,28000,29246,30240,30972,31367,31378,31041,30398,29502,28461,27245,26072,24932,23864,22857,22003,21275,20676,20181,19795,19533,19373,19275,19286,19395,19576,19862,20202,20622,21133,21697,22321,22985,23637,24237,24821,25292,25661,25929,25961,25843,25549,25093,24454,23747,22944,22093,21224,20386,19630,18932,18305,17717,17255,16850,16521,16283,16121,16010,15970,15985,16077,16244,16460,16755,17125,17557,18052,18613,19200,19848,20526,21243,21989,22726,23437,24147,24805,25389,25949,26369,26701,26932,27040,27048,26952,26733,26413,26029,25549,24973,24395,23758,23123,22465,21814,21170,20560,19966,19413,18926,18473,18068,17701,17374,17073,16810,16580,16378,16165,15983,15785,15609,15441,15310,15194,15101,15009,14962,14909,14889,14882,14888,14902,14932,14965,15004,15042,15089,15141,15155,15169,15179,15187,15210,15230,15229,15222,15177,15101,15045,14968,14902,14790,14662,14517,14342,14147,13933,13728,13488,13219,12971,12681,12397,12106,11802,11513,11255,11006,10770,10535,10257,9958,9648,9330,9045,8806,8585,8419,8263,8126,8038,7957,7903,7848,7780,7687,7547,7373,7215,7086,6985,6881,6788,6736,6670,6631,6610,6599,6589,6592,6592,6608,6445,6146,5718,5102,21.9,22.1,22.5,1568578,0.0,13.5,12.0,5.1,426,-1.00,-1.00,59.2520,-19.493260,0.000579,,,,,119 +SATSLF0720,2024246,16.264194,3.98,0.0557,0.1061,0.0194,0.00,16063,651,1,701,703,715,717,725,725,722,727,723,725,735,749,781,884,1213,1945,3086,4453,5673,6589,7221,7705,8119,8571,9097,9712,10462,11320,12301,13390,14581,15734,16845,17777,18509,18938,19062,18892,18518,17981,17403,16839,16384,16029,15797,15726,15803,16039,16439,17027,17781,18688,19738,20961,22281,23709,25185,26646,28066,29313,30315,31042,31444,31454,31126,30493,29561,28534,27300,26128,24957,23891,22896,22048,21319,20707,20235,19840,19569,19419,19312,19341,19445,19610,19885,20236,20656,21161,21739,22356,23032,23677,24299,24869,25346,25701,25959,26010,25898,25617,25159,24514,23789,23009,22149,21266,20427,19657,18957,18307,17751,17289,16885,16573,16314,16151,16056,15989,16019,16105,16269,16496,16788,17150,17592,18068,18637,19245,19882,20558,21308,22024,22787,23509,24193,24841,25412,25991,26403,26728,26971,27081,27090,27006,26786,26457,26059,25572,25018,24446,23815,23161,22515,21837,21211,20596,20009,19441,18961,18483,18090,17741,17389,17099,16838,16581,16394,16197,16013,15816,15638,15471,15334,15213,15115,15031,14955,14917,14897,14896,14912,14936,14954,15019,15037,15066,15124,15176,15186,15191,15212,15212,15228,15236,15246,15253,15197,15136,15080,14999,14909,14827,14685,14534,14363,14173,13960,13745,13511,13246,12973,12686,12411,12115,11825,11534,11268,11009,10779,10538,10277,9976,9654,9341,9060,8803,8589,8433,8272,8134,8044,7970,7903,7834,7778,7702,7561,7384,7233,7105,6985,6892,6824,6749,6694,6661,6636,6631,6611,6597,6619,6605,6450,6139,5731,5112,21.9,22.1,22.6,1568579,0.5,13.5,12.0,5.0,421,-1.00,-1.00,59.2721,-19.545379,0.000617,,,,,23 +SATSLF0720,2024246,16.264452,4.12,0.0577,0.1056,0.0196,0.00,16072,651,1,713,717,706,716,721,727,720,717,723,727,753,753,787,892,1209,1940,3089,4440,5675,6597,7239,7722,8152,8586,9102,9727,10466,11315,12313,13413,14582,15747,16854,17810,18514,18947,19067,18905,18536,18005,17400,16851,16398,16033,15818,15732,15820,16069,16484,17049,17809,18694,19739,20976,22298,23733,25208,26674,28087,29325,30313,31079,31469,31475,31146,30500,29579,28535,27325,26154,25002,23904,22898,22037,21320,20720,20237,19867,19588,19425,19333,19350,19442,19625,19895,20247,20688,21200,21763,22383,23060,23704,24298,24862,25337,25696,25977,26021,25904,25642,25162,24525,23822,23026,22152,21274,20416,19650,18957,18317,17751,17307,16892,16579,16333,16158,16062,16018,16025,16119,16271,16501,16805,17169,17594,18086,18656,19266,19901,20582,21302,22038,22767,23479,24177,24837,25443,25994,26417,26746,26999,27107,27115,27024,26823,26474,26089,25585,25017,24426,23808,23146,22489,21831,21214,20613,20005,19470,18970,18496,18091,17723,17405,17104,16851,16601,16411,16209,16002,15831,15635,15476,15326,15191,15106,15014,14957,14914,14917,14901,14933,14957,14985,14998,15043,15079,15109,15172,15178,15188,15210,15223,15245,15269,15257,15253,15198,15128,15073,14997,14905,14822,14689,14534,14375,14177,13965,13760,13509,13259,12990,12708,12416,12125,11828,11552,11274,11001,10771,10549,10276,9963,9647,9345,9073,8820,8600,8443,8282,8150,8058,7977,7895,7845,7796,7696,7565,7412,7249,7113,7005,6893,6821,6746,6699,6660,6632,6627,6610,6594,6625,6625,6464,6151,5719,5113,21.9,22.1,22.6,1568580,0.4,13.5,11.9,5.0,425,-1.00,-1.00,58.6196,-19.286322,0.000559,,,,,101 +SATSDF0720,2024246,16.509138,0.00,0.0000,0.0000,0.0000,0.00,652,0,1,641,621,630,620,637,637,645,640,644,633,621,629,633,633,621,630,641,625,637,637,649,645,645,661,661,653,654,656,650,658,676,653,659,653,653,653,659,646,645,654,655,662,668,680,658,651,655,648,647,653,653,655,653,647,647,659,666,658,664,657,667,661,656,665,653,662,654,652,648,651,655,659,648,662,651,647,650,640,643,636,651,649,652,652,675,663,673,650,663,654,646,649,662,649,659,664,653,659,658,656,665,654,656,658,661,650,666,650,651,653,652,645,638,656,650,656,650,659,658,647,655,649,654,653,658,649,649,640,637,647,661,653,659,649,678,664,657,647,654,663,654,652,648,645,645,651,651,641,640,643,645,647,645,655,656,659,653,657,664,660,653,656,659,664,664,668,657,665,648,658,665,648,647,656,646,641,659,657,656,653,652,665,652,645,635,643,641,644,662,656,663,645,651,647,644,659,648,651,646,659,646,670,660,659,652,649,652,640,653,654,660,653,647,654,653,650,642,659,657,667,669,665,661,659,642,671,641,651,656,648,645,643,647,651,647,651,664,652,663,670,666,661,658,667,661,639,643,645,656,656,647,651,662,662,649,489,0.0,0.0,0.0,1568579,0.7,14.1,0.1,5.0,54,0.00,0.00,0.0000,0.000000,0.000000,,,,,122 +SATSLF0720,2024246,16.509696,3.79,0.0531,0.1015,0.0170,0.00,16185,652,1,693,681,692,690,693,703,706,708,719,717,739,725,759,880,1210,1949,3108,4476,5721,6656,7303,7781,8219,8661,9173,9794,10537,11421,12425,13541,14740,15894,17008,17984,18704,19152,19268,19090,18696,18179,17591,17025,16555,16189,15957,15872,15959,16195,16631,17210,17953,18857,19936,21146,22492,23933,25421,26925,28348,29597,30600,31360,31765,31768,31428,30787,29861,28809,27581,26409,25232,24148,23131,22277,21545,20926,20436,20041,19761,19597,19511,19515,19630,19808,20082,20429,20851,21389,21957,22579,23244,23895,24510,25081,25558,25922,26173,26232,26109,25825,25346,24701,23985,23188,22312,21424,20589,19805,19106,18446,17871,17405,17000,16665,16409,16257,16141,16090,16128,16219,16389,16617,16913,17285,17704,18199,18782,19382,20017,20701,21432,22188,22925,23646,24347,25014,25612,26178,26600,26925,27176,27275,27285,27191,26974,26653,26262,25750,25190,24608,23960,23309,22665,21990,21354,20747,20142,19581,19086,18624,18205,17845,17513,17226,16949,16708,16513,16298,16111,15913,15744,15565,15414,15299,15197,15117,15047,15021,14986,14999,14997,15033,15042,15076,15111,15132,15184,15238,15263,15281,15283,15301,15317,15346,15329,15330,15268,15204,15160,15078,14993,14891,14755,14613,14432,14242,14043,13829,13576,13312,13059,12770,12463,12171,11874,11591,11302,11070,10821,10591,10317,10017,9699,9392,9111,8850,8645,8466,8296,8159,8072,7997,7936,7878,7826,7746,7589,7417,7265,7125,7007,6908,6820,6771,6701,6683,6669,6661,6637,6626,6622,6635,6478,6185,5754,5127,21.9,21.8,22.1,1568581,0.0,13.6,11.9,5.0,536,-1.00,-1.00,59.1982,-19.696562,0.000569,,,,,1 +SATSLF0720,2024246,16.509878,3.99,0.0559,0.1008,0.0165,0.00,16219,652,1,706,708,706,713,724,716,720,711,717,726,732,722,775,887,1209,1941,3109,4480,5739,6671,7325,7797,8221,8667,9193,9825,10568,11463,12466,13579,14765,15925,17054,18021,18741,19178,19310,19143,18759,18214,17613,17063,16601,16237,16009,15942,16005,16259,16660,17243,18000,18901,19993,21209,22537,24001,25485,26987,28400,29661,30679,31425,31846,31846,31513,30870,29925,28870,27639,26439,25274,24194,23184,22324,21586,20970,20491,20095,19799,19651,19543,19562,19656,19851,20123,20471,20898,21416,21981,22609,23282,23927,24555,25128,25613,25990,26248,26284,26178,25905,25409,24764,24045,23226,22364,21473,20623,19849,19143,18496,17917,17435,17025,16707,16450,16277,16181,16136,16153,16252,16414,16645,16938,17319,17746,18235,18791,19411,20057,20754,21497,22230,22974,23693,24389,25057,25650,26219,26638,26967,27226,27338,27349,27253,27042,26717,26313,25809,25234,24656,24004,23358,22709,22033,21387,20788,20182,19625,19129,18648,18249,17885,17545,17259,16990,16751,16542,16336,16130,15947,15763,15598,15461,15331,15242,15157,15075,15050,15012,15019,15024,15044,15067,15099,15143,15177,15238,15281,15301,15296,15323,15316,15335,15359,15350,15341,15299,15245,15178,15115,15029,14931,14806,14644,14459,14276,14049,13827,13593,13330,13077,12772,12498,12202,11902,11609,11341,11077,10839,10607,10341,10033,9707,9401,9121,8869,8661,8485,8329,8200,8106,8019,7944,7908,7845,7749,7617,7434,7274,7149,7039,6933,6841,6774,6725,6674,6663,6657,6653,6644,6652,6647,6499,6188,5752,5127,21.9,21.8,22.2,1568581,0.0,13.6,12.0,5.0,449,-1.00,-1.00,58.1576,-19.304929,0.000540,,,,,38 +SATSLF0720,2024246,16.510138,4.09,0.0573,0.1022,0.0180,0.00,16166,652,1,685,700,704,705,708,715,727,722,731,717,715,731,749,879,1198,1924,3085,4463,5707,6640,7277,7752,8170,8628,9153,9781,10531,11401,12403,13520,14702,15862,16995,17933,18645,19079,19223,19038,18670,18130,17541,16977,16514,16151,15923,15851,15928,16177,16590,17174,17924,18832,19913,21130,22456,23908,25394,26874,28304,29562,30563,31308,31712,31721,31395,30725,29815,28759,27514,26331,25181,24100,23097,22234,21504,20885,20420,20022,19726,19575,19481,19484,19595,19790,20049,20413,20834,21362,21911,22539,23200,23856,24439,25027,25512,25877,26152,26197,26085,25796,25317,24693,23952,23136,22276,21398,20546,19771,19068,18426,17873,17379,16979,16649,16395,16238,16120,16073,16104,16201,16372,16595,16900,17262,17709,18195,18757,19371,20024,20685,21426,22161,22900,23617,24328,24986,25578,26156,26576,26901,27137,27264,27270,27186,26961,26634,26240,25748,25178,24574,23943,23295,22634,21972,21320,20730,20128,19565,19069,18594,18202,17837,17506,17203,16945,16697,16488,16288,16098,15904,15713,15547,15418,15287,15197,15121,15050,14997,14983,14978,14993,15012,15034,15075,15125,15144,15198,15245,15267,15282,15278,15296,15317,15325,15325,15306,15257,15199,15126,15067,14978,14880,14733,14596,14416,14240,14024,13803,13572,13301,13030,12756,12471,12174,11867,11579,11314,11062,10823,10586,10321,10026,9684,9376,9101,8850,8628,8464,8318,8181,8087,8004,7941,7881,7812,7717,7585,7408,7258,7127,7013,6918,6840,6771,6723,6681,6660,6644,6621,6625,6646,6628,6477,6168,5739,5117,21.9,21.9,22.2,1568582,0.4,13.6,11.9,5.0,434,-1.00,-1.00,58.5099,-19.379301,0.000632,,,,,88 +SATSLF0720,2024246,16.510391,3.96,0.0555,0.1029,0.0181,0.00,16139,652,1,702,703,708,706,711,711,723,712,724,724,718,735,772,890,1205,1928,3082,4437,5690,6601,7265,7753,8173,8618,9133,9778,10497,11383,12383,13482,14667,15821,16944,17892,18621,19061,19185,19015,18632,18118,17510,16944,16485,16122,15901,15833,15897,16153,16563,17153,17899,18803,19879,21094,22417,23863,25336,26829,28237,29497,30504,31250,31667,31669,31345,30691,29789,28725,27482,26305,25120,24056,23061,22189,21470,20873,20389,20009,19717,19544,19451,19476,19572,19773,20009,20355,20795,21316,21879,22495,23164,23813,24428,25005,25485,25836,26096,26161,26029,25768,25281,24645,23927,23126,22245,21383,20539,19766,19045,18393,17848,17360,16951,16628,16384,16211,16108,16061,16076,16185,16341,16565,16860,17229,17665,18156,18733,19337,19973,20665,21393,22123,22875,23578,24276,24930,25525,26084,26517,26852,27093,27221,27214,27124,26897,26571,26170,25687,25120,24537,23914,23266,22593,21943,21301,20685,20072,19526,19027,18562,18170,17805,17453,17173,16902,16668,16469,16250,16082,15880,15694,15533,15373,15263,15163,15092,15018,14966,14956,14961,14952,14987,15003,15047,15090,15120,15160,15220,15229,15243,15251,15260,15269,15302,15313,15282,15237,15168,15122,15058,14962,14845,14713,14578,14400,14216,14001,13765,13533,13284,13012,12727,12426,12151,11852,11569,11298,11053,10801,10577,10289,9987,9685,9361,9080,8832,8622,8455,8313,8172,8069,7992,7927,7879,7792,7719,7570,7385,7230,7093,6986,6894,6817,6755,6698,6671,6643,6631,6629,6610,6641,6629,6487,6164,5745,5116,21.9,21.9,22.2,1568583,0.1,13.5,12.0,5.0,431,-1.00,-1.00,59.1253,-19.607806,0.000561,,,,,118 +SATSLF0720,2024246,16.510641,4.12,0.0577,0.1022,0.0168,0.00,16186,652,1,697,695,700,717,709,711,727,717,731,727,730,731,765,880,1206,1933,3088,4483,5725,6645,7293,7773,8194,8637,9179,9808,10554,11432,12435,13546,14727,15883,16999,17960,18688,19124,19253,19061,18704,18161,17557,16997,16544,16178,15961,15893,15961,16200,16624,17224,17956,18865,19929,21141,22465,23943,25416,26906,28329,29589,30593,31356,31754,31744,31429,30770,29837,28777,27543,26377,25205,24133,23129,22257,21549,20913,20432,20043,19758,19595,19481,19517,19613,19805,20059,20414,20853,21365,21939,22550,23216,23872,24473,25060,25551,25917,26182,26234,26113,25829,25336,24707,23991,23189,22297,21437,20564,19811,19110,18449,17876,17417,17014,16673,16427,16253,16150,16114,16135,16218,16392,16622,16909,17283,17722,18208,18772,19390,20029,20721,21445,22195,22946,23633,24345,25016,25594,26164,26593,26925,27176,27282,27287,27191,26992,26644,26261,25754,25189,24608,23965,23306,22645,21987,21357,20737,20148,19590,19100,18614,18211,17835,17514,17218,16954,16708,16517,16299,16112,15923,15741,15561,15421,15312,15197,15140,15066,15027,15016,15002,15010,15035,15044,15101,15130,15170,15212,15264,15277,15293,15301,15312,15330,15357,15338,15334,15278,15223,15167,15091,14986,14895,14759,14618,14439,14241,14032,13812,13572,13319,13061,12776,12487,12197,11889,11605,11323,11089,10834,10591,10326,10038,9714,9405,9117,8869,8657,8475,8311,8193,8104,8013,7955,7898,7821,7741,7594,7425,7271,7133,7021,6928,6857,6786,6733,6697,6672,6663,6635,6628,6637,6635,6493,6178,5765,5120,21.9,21.9,22.3,1568584,0.1,13.6,12.0,5.0,425,-1.00,-1.00,57.9583,-19.169822,0.000563,,,,,71 +SATSLF0720,2024246,16.510899,4.06,0.0569,0.1021,0.0174,0.00,16173,652,1,723,714,723,717,724,734,725,716,726,724,721,734,775,878,1212,1933,3105,4475,5715,6633,7296,7761,8189,8646,9166,9785,10538,11404,12406,13514,14683,15871,16978,17936,18660,19105,19234,19048,18683,18144,17548,16977,16539,16163,15940,15883,15962,16205,16605,17169,17937,18842,19906,21126,22443,23915,25398,26890,28309,29544,30574,31322,31714,31717,31394,30744,29825,28765,27538,26344,25177,24103,23081,22224,21495,20899,20409,20019,19737,19584,19485,19492,19592,19769,20033,20389,20824,21348,21923,22549,23210,23857,24466,25057,25529,25879,26141,26189,26085,25797,25299,24680,23964,23173,22293,21416,20573,19789,19097,18440,17868,17408,16994,16682,16424,16250,16145,16108,16125,16230,16381,16613,16909,17277,17699,18219,18779,19369,20009,20689,21431,22167,22909,23625,24331,24987,25573,26129,26581,26900,27145,27254,27269,27186,26973,26640,26249,25749,25156,24582,23929,23283,22626,21954,21320,20715,20125,19579,19090,18620,18208,17845,17509,17214,16946,16705,16508,16277,16099,15906,15725,15555,15409,15309,15201,15123,15063,15010,14999,14989,15004,15025,15050,15073,15107,15147,15190,15245,15255,15281,15277,15291,15309,15333,15329,15321,15271,15213,15147,15080,14986,14896,14746,14595,14427,14233,14021,13802,13569,13318,13046,12761,12467,12178,11883,11603,11326,11080,10825,10588,10314,10010,9701,9389,9100,8858,8653,8478,8320,8189,8082,8017,7947,7895,7827,7733,7597,7413,7253,7117,7015,6913,6839,6762,6709,6683,6658,6643,6629,6631,6645,6647,6502,6196,5758,5131,21.9,21.9,22.3,1568585,0.2,13.5,12.0,5.0,435,-1.00,-1.00,58.2637,-19.281233,0.000543,,,,,224 +SATSLF0720,2024246,16.511152,4.26,0.0597,0.1032,0.0182,0.00,16133,652,1,704,707,714,713,721,723,716,721,715,725,735,746,781,871,1207,1926,3081,4453,5686,6612,7258,7719,8139,8604,9116,9736,10506,11357,12365,13466,14644,15822,16912,17874,18594,19013,19150,18962,18583,18048,17479,16923,16473,16109,15885,15805,15888,16141,16546,17117,17893,18790,19851,21053,22393,23826,25308,26788,28204,29456,30480,31218,31620,31617,31307,30645,29737,28672,27447,26256,25105,24047,23034,22163,21451,20834,20344,19968,19678,19542,19437,19442,19550,19732,19979,20345,20777,21305,21850,22498,23161,23799,24404,24995,25474,25825,26097,26135,26023,25737,25252,24628,23906,23115,22234,21371,20530,19752,19036,18389,17825,17346,16942,16629,16384,16213,16120,16065,16090,16178,16339,16555,16862,17227,17655,18154,18710,19331,19974,20653,21386,22121,22867,23593,24284,24961,25545,26106,26539,26861,27109,27206,27208,27119,26893,26569,26171,25697,25129,24549,23902,23241,22596,21922,21286,20686,20098,19534,19030,18569,18162,17799,17457,17178,16910,16674,16468,16266,16078,15870,15693,15518,15380,15275,15165,15100,15022,14980,14967,14965,14977,14985,15019,15029,15080,15131,15173,15224,15243,15239,15255,15257,15280,15297,15301,15289,15234,15170,15121,15054,14957,14861,14733,14569,14411,14224,14008,13795,13553,13300,13028,12753,12433,12152,11862,11578,11305,11053,10807,10569,10305,10013,9690,9381,9093,8845,8630,8444,8302,8160,8065,7994,7927,7883,7808,7716,7579,7401,7252,7125,7013,6913,6833,6763,6716,6674,6663,6649,6627,6626,6631,6625,6481,6161,5749,5126,21.9,21.9,22.4,1568586,0.4,13.6,11.9,5.0,432,-1.00,-1.00,58.2707,-19.226366,0.000542,,,,,77 +SATSLF0720,2024246,16.511408,4.19,0.0588,0.1037,0.0184,0.00,16125,652,1,683,706,698,704,702,701,717,717,727,742,745,742,778,873,1209,1929,3068,4439,5685,6610,7251,7746,8166,8605,9153,9773,10513,11381,12358,13475,14646,15808,16920,17883,18594,19036,19161,18970,18626,18076,17479,16928,16464,16114,15889,15810,15894,16151,16550,17137,17877,18785,19853,21081,22378,23844,25300,26791,28201,29460,30462,31230,31610,31621,31289,30649,29721,28668,27428,26251,25101,24009,23009,22167,21437,20832,20346,19957,19665,19515,19419,19414,19515,19720,19990,20333,20773,21287,21871,22485,23145,23784,24381,24955,25430,25800,26064,26104,26008,25744,25265,24618,23898,23099,22221,21345,20491,19736,19029,18397,17821,17361,16936,16624,16373,16199,16097,16070,16069,16153,16323,16555,16845,17221,17655,18137,18711,19323,19965,20645,21369,22104,22836,23558,24264,24921,25505,26069,26507,26834,27067,27161,27183,27101,26894,26560,26177,25683,25115,24529,23885,23229,22578,21916,21280,20677,20075,19522,19026,18571,18141,17767,17443,17161,16879,16652,16457,16237,16055,15861,15681,15509,15365,15246,15159,15089,15006,14974,14956,14955,14955,14979,15010,15031,15091,15115,15172,15229,15244,15248,15264,15266,15290,15298,15301,15287,15226,15173,15115,15038,14949,14864,14729,14591,14412,14202,14011,13769,13531,13269,13003,12733,12448,12154,11849,11569,11289,11037,10813,10564,10290,9985,9657,9339,9069,8829,8605,8451,8307,8162,8077,7997,7927,7884,7818,7726,7577,7393,7221,7111,6991,6902,6822,6757,6706,6665,6656,6641,6614,6609,6612,6621,6461,6153,5729,5111,21.9,21.9,22.4,1568587,0.4,13.6,12.0,5.0,426,-1.00,-1.00,58.0574,-19.133946,0.000560,,,,,68 +SATSLF0720,2024246,16.511662,4.13,0.0578,0.1031,0.0181,0.00,16136,652,1,693,711,711,715,713,713,714,709,727,722,733,734,784,885,1214,1932,3089,4443,5693,6613,7256,7736,8160,8611,9145,9762,10501,11379,12390,13493,14669,15827,16937,17882,18610,19049,19180,19001,18632,18089,17503,16951,16470,16119,15898,15822,15897,16128,16552,17137,17880,18792,19872,21090,22401,23856,25322,26817,28236,29489,30483,31227,31633,31629,31290,30652,29728,28672,27439,26257,25100,24043,23037,22169,21445,20829,20349,19966,19691,19533,19444,19449,19540,19733,19995,20359,20781,21293,21863,22487,23156,23786,24402,24972,25463,25825,26092,26146,26038,25757,25273,24632,23904,23106,22240,21361,20512,19741,19042,18385,17819,17360,16949,16637,16391,16219,16123,16074,16099,16186,16345,16569,16867,17237,17664,18161,18721,19334,19965,20656,21385,22133,22861,23584,24290,24937,25527,26109,26533,26858,27101,27197,27232,27110,26903,26590,26184,25704,25138,24535,23896,23245,22590,21922,21289,20676,20071,19531,19029,18565,18149,17799,17470,17190,16914,16676,16468,16246,16075,15865,15689,15528,15385,15280,15169,15104,15024,14981,14978,14946,14967,14986,15012,15050,15090,15118,15175,15234,15241,15248,15258,15269,15277,15316,15294,15284,15248,15177,15123,15050,14955,14867,14728,14585,14412,14212,14016,13785,13571,13298,13022,12753,12459,12145,11850,11565,11297,11052,10809,10569,10311,9985,9683,9381,9095,8864,8626,8462,8296,8163,8067,7995,7920,7864,7811,7715,7578,7395,7249,7129,7002,6916,6823,6763,6706,6657,6651,6631,6619,6619,6644,6628,6476,6173,5753,5128,21.9,21.9,22.4,1568588,0.5,13.6,12.0,5.0,431,-1.00,-1.00,58.1129,-19.164146,0.000651,,,,,22 +SATSLF0720,2024246,16.511914,4.11,0.0576,0.1038,0.0187,0.00,16121,652,1,715,717,714,717,721,719,722,737,728,717,735,749,784,889,1213,1933,3083,4449,5674,6601,7250,7727,8160,8609,9122,9741,10468,11365,12349,13461,14647,15801,16914,17853,18582,19020,19156,18963,18595,18065,17477,16914,16458,16097,15875,15797,15865,16131,16544,17128,17861,18763,19833,21061,22378,23816,25303,26770,28186,29449,30425,31177,31594,31597,31251,30627,29718,28642,27425,26245,25079,24005,23001,22147,21405,20809,20335,19940,19668,19504,19411,19447,19536,19725,19997,20325,20760,21265,21847,22465,23138,23780,24395,24966,25435,25804,26082,26128,26013,25736,25259,24600,23890,23098,22218,21348,20506,19738,19032,18382,17829,17352,16942,16610,16375,16205,16102,16049,16081,16161,16347,16553,16862,17221,17661,18140,18727,19317,19947,20625,21349,22093,22843,23558,24263,24923,25512,26085,26501,26841,27058,27159,27191,27093,26873,26546,26142,25659,25095,24514,23867,23232,22567,21898,21281,20676,20084,19525,19031,18554,18149,17776,17435,17168,16873,16645,16448,16247,16055,15869,15687,15508,15366,15254,15153,15081,15002,14977,14952,14951,14941,14973,15003,15037,15080,15114,15159,15209,15235,15226,15239,15256,15268,15296,15276,15273,15220,15166,15105,15041,14942,14852,14713,14569,14389,14201,13991,13774,13532,13274,13005,12737,12451,12157,11852,11557,11287,11046,10793,10571,10292,9993,9672,9373,9078,8843,8621,8441,8303,8165,8065,7988,7926,7866,7805,7715,7568,7396,7238,7127,7006,6912,6821,6770,6698,6665,6640,6637,6622,6612,6646,6637,6481,6173,5747,5127,21.9,21.9,22.4,1568589,0.5,13.5,11.9,5.0,431,-1.00,-1.00,58.4753,-19.295773,0.000547,,,,,55 +SATSLF0720,2024246,16.512170,4.15,0.0581,0.1039,0.0186,0.00,16117,652,1,715,722,718,721,721,721,717,722,723,733,737,746,784,896,1218,1949,3108,4467,5701,6611,7261,7745,8162,8603,9131,9762,10502,11375,12375,13468,14653,15820,16906,17867,18576,19020,19149,18971,18592,18061,17474,16920,16453,16091,15872,15803,15894,16122,16541,17114,17853,18766,19831,21052,22377,23805,25299,26770,28201,29433,30450,31185,31586,31598,31270,30613,29691,28641,27410,26231,25093,23991,22998,22149,21429,20811,20339,19933,19659,19488,19407,19429,19525,19719,19981,20318,20753,21259,21832,22449,23118,23760,24387,24966,25437,25809,26057,26120,25993,25728,25239,24585,23880,23081,22197,21339,20486,19716,19027,18366,17799,17344,16923,16616,16365,16189,16093,16043,16077,16161,16327,16548,16841,17203,17629,18144,18693,19322,19941,20624,21348,22091,22824,23549,24253,24906,25513,26076,26501,26824,27074,27162,27188,27094,26873,26532,26138,25634,25083,24501,23864,23216,22560,21893,21270,20658,20058,19510,19013,18536,18124,17762,17433,17156,16885,16644,16446,16247,16051,15840,15680,15506,15361,15237,15153,15065,15001,14950,14939,14953,14954,14981,14997,15030,15075,15113,15145,15206,15223,15237,15239,15245,15269,15277,15294,15279,15240,15165,15108,15041,14952,14862,14710,14575,14385,14197,13980,13772,13536,13273,13000,12731,12444,12161,11837,11549,11275,11043,10804,10569,10290,10001,9672,9355,9066,8834,8627,8462,8310,8177,8087,8001,7930,7882,7802,7706,7558,7379,7227,7108,6995,6911,6826,6763,6708,6686,6653,6651,6629,6602,6627,6618,6457,6151,5730,5118,21.9,22.0,22.4,1568590,0.4,13.5,12.0,5.0,431,-1.00,-1.00,58.2533,-19.200265,0.000581,,,,,149 +SATSLF0720,2024246,16.512424,4.07,0.0571,0.1052,0.0195,0.00,16085,652,1,705,711,714,708,716,706,712,723,723,721,735,732,765,886,1193,1931,3081,4447,5684,6609,7255,7731,8163,8605,9106,9717,10476,11346,12330,13440,14615,15770,16872,17834,18537,18979,19122,18928,18562,18025,17443,16885,16420,16069,15833,15773,15858,16097,16514,17094,17813,18724,19787,20997,22312,23764,25232,26717,28128,29385,30382,31137,31523,31529,31197,30539,29631,28586,27376,26190,25028,23942,22945,22090,21356,20760,20285,19898,19604,19458,19353,19387,19480,19669,19915,20274,20694,21224,21781,22394,23065,23707,24333,24906,25382,25749,25997,26045,25931,25651,25175,24539,23825,23021,22161,21301,20451,19703,18994,18333,17779,17298,16898,16584,16325,16147,16056,16016,16040,16129,16289,16523,16817,17189,17607,18087,18654,19264,19904,20587,21303,22057,22794,23496,24211,24868,25454,26019,26442,26762,27019,27104,27117,27042,26804,26501,26085,25606,25037,24473,23825,23175,22531,21865,21237,20605,20023,19454,18967,18482,18086,17726,17416,17125,16864,16629,16425,16219,16037,15840,15651,15478,15317,15219,15104,15048,14979,14947,14934,14922,14930,14946,14971,15003,15046,15087,15122,15190,15185,15211,15198,15220,15229,15255,15264,15261,15192,15143,15078,15015,14923,14837,14705,14550,14369,14189,13966,13747,13509,13262,12989,12705,12419,12132,11835,11540,11273,11010,10774,10532,10269,9979,9661,9357,9063,8833,8610,8435,8281,8153,8049,7973,7903,7847,7775,7691,7549,7397,7240,7115,6992,6907,6821,6757,6681,6641,6628,6621,6601,6596,6610,6614,6460,6160,5730,5117,21.9,22.0,22.4,1568591,0.3,13.6,11.9,5.0,432,-1.00,-1.00,58.6188,-19.315305,0.000529,,,,,121 +SATSLF0720,2024246,16.512676,4.20,0.0589,0.1056,0.0198,0.00,16070,652,1,697,709,705,701,711,711,723,716,721,728,725,741,769,882,1205,1923,3088,4435,5664,6587,7237,7715,8121,8566,9099,9714,10458,11318,12320,13418,14605,15748,16843,17794,18503,18939,19085,18896,18514,17989,17403,16848,16386,16035,15796,15751,15830,16071,16476,17055,17815,18701,19765,20988,22296,23740,25197,26675,28085,29342,30341,31092,31493,31479,31172,30512,29595,28545,27328,26148,24999,23906,22926,22053,21334,20725,20255,19869,19601,19445,19336,19349,19455,19652,19902,20246,20686,21201,21771,22377,23052,23698,24306,24883,25355,25739,25988,26042,25920,25637,25160,24525,23817,23025,22151,21278,20437,19668,18970,18325,17757,17293,16875,16564,16327,16146,16059,15997,16033,16118,16277,16509,16802,17174,17597,18085,18646,19252,19895,20567,21284,22035,22778,23486,24201,24859,25457,26012,26432,26744,26987,27097,27117,27016,26794,26461,26070,25584,25018,24439,23817,23156,22501,21844,21209,20613,20013,19458,18984,18513,18100,17728,17410,17105,16850,16594,16402,16203,16000,15825,15635,15469,15335,15205,15108,15040,14965,14916,14903,14904,14921,14945,14965,14988,15050,15061,15134,15174,15188,15193,15204,15202,15223,15249,15242,15246,15193,15112,15067,15006,14915,14821,14700,14533,14363,14177,13958,13747,13504,13235,12994,12704,12419,12117,11815,11541,11254,10991,10767,10536,10277,9970,9635,9339,9067,8806,8602,8433,8269,8146,8053,7977,7909,7852,7787,7709,7573,7380,7217,7095,6972,6887,6805,6737,6683,6644,6629,6611,6601,6591,6610,6605,6449,6142,5731,5106,21.9,22.1,22.5,1568591,0.4,13.5,12.0,5.0,422,-1.00,-1.00,58.5861,-19.278483,0.000586,,,,,71 +SATSLF0720,2024246,16.512931,4.21,0.0590,0.1048,0.0193,0.00,16085,652,1,709,708,722,706,711,703,723,723,731,729,742,741,787,880,1215,1936,3078,4439,5677,6601,7250,7725,8157,8589,9102,9722,10460,11337,12322,13447,14601,15770,16864,17837,18534,18986,19105,18930,18541,18019,17436,16873,16420,16067,15846,15776,15847,16099,16498,17072,17830,18722,19788,21017,22338,23766,25254,26738,28128,29383,30370,31126,31523,31522,31180,30551,29636,28583,27349,26183,25026,23949,22946,22082,21349,20765,20293,19910,19606,19462,19368,19375,19466,19672,19920,20272,20707,21229,21792,22411,23069,23718,24330,24906,25376,25748,26005,26069,25940,25671,25188,24548,23840,23045,22182,21293,20469,19689,18997,18340,17788,17318,16901,16580,16343,16157,16060,16005,16041,16145,16282,16507,16798,17163,17589,18073,18655,19277,19904,20593,21300,22046,22789,23502,24204,24869,25442,26019,26429,26756,27002,27105,27134,27025,26808,26482,26102,25605,25037,24450,23815,23165,22526,21862,21225,20610,20017,19460,18977,18501,18089,17712,17407,17114,16852,16615,16410,16212,16021,15826,15643,15475,15339,15224,15125,15054,14961,14936,14901,14915,14913,14942,14976,15003,15045,15079,15132,15178,15187,15210,15205,15225,15245,15260,15267,15265,15215,15143,15085,15019,14922,14829,14689,14538,14379,14164,13968,13755,13531,13264,12997,12715,12421,12128,11818,11526,11255,11025,10777,10556,10290,9993,9664,9361,9065,8823,8615,8449,8277,8151,8053,7967,7905,7841,7779,7691,7551,7373,7211,7103,6985,6884,6812,6741,6690,6657,6625,6619,6603,6587,6625,6612,6453,6161,5733,5107,21.9,22.1,22.5,1568592,0.4,13.5,12.0,5.0,430,-1.00,-1.00,58.1684,-19.126858,0.000595,,,,,185 +SATSLF0720,2024246,16.513185,4.13,0.0579,0.1056,0.0195,0.00,16070,652,1,709,713,716,715,718,717,723,727,737,730,727,739,788,897,1220,1934,3091,4457,5670,6586,7251,7714,8143,8578,9099,9712,10456,11328,12312,13427,14587,15737,16843,17792,18499,18941,19065,18894,18517,17978,17418,16852,16400,16046,15821,15748,15815,16077,16469,17047,17785,18700,19754,20955,22275,23709,25190,26661,28087,29341,30327,31069,31456,31466,31140,30490,29586,28541,27321,26145,24981,23927,22912,22065,21350,20717,20244,19875,19589,19415,19335,19341,19444,19628,19888,20237,20685,21197,21773,22389,23040,23696,24316,24874,25352,25709,25973,26036,25915,25636,25165,24524,23810,23001,22144,21276,20439,19672,18969,18320,17754,17296,16886,16580,16322,16160,16053,16007,16033,16115,16286,16509,16788,17159,17582,18061,18641,19245,19885,20578,21306,22034,22788,23481,24195,24833,25424,25989,26404,26738,26983,27085,27096,27004,26816,26464,26085,25598,25030,24445,23813,23159,22515,21838,21213,20590,20003,19464,18961,18492,18101,17735,17405,17124,16857,16613,16397,16204,16009,15804,15630,15461,15323,15221,15125,15052,14973,14937,14912,14905,14919,14939,14966,14994,15030,15065,15110,15175,15172,15207,15204,15209,15233,15262,15265,15242,15186,15129,15078,15005,14909,14835,14686,14544,14364,14166,13979,13755,13515,13253,12985,12695,12411,12114,11813,11546,11261,11015,10777,10529,10267,9972,9655,9341,9063,8832,8620,8449,8300,8157,8059,7978,7917,7857,7789,7697,7547,7376,7224,7098,6988,6875,6823,6743,6685,6650,6624,6623,6604,6593,6625,6617,6473,6161,5736,5127,21.9,22.1,22.6,1568593,0.3,13.6,11.9,5.0,430,-1.00,-1.00,58.5910,-19.270493,0.000505,,,,,40 +SATSLF0720,2024246,16.513436,4.07,0.0570,0.1053,0.0190,0.00,16089,652,1,700,719,725,715,727,717,722,711,717,709,723,739,784,907,1235,1945,3095,4459,5696,6601,7244,7723,8141,8584,9094,9728,10473,11336,12338,13429,14595,15757,16865,17820,18541,18974,19113,18938,18572,18014,17421,16874,16409,16061,15829,15753,15840,16089,16501,17086,17809,18724,19773,21009,22312,23748,25227,26709,28121,29364,30359,31101,31489,31510,31179,30533,29629,28571,27344,26163,25014,23945,22950,22098,21369,20737,20250,19869,19595,19441,19349,19357,19463,19668,19923,20271,20706,21227,21790,22410,23069,23706,24320,24900,25377,25734,26011,26070,25938,25661,25205,24554,23841,23044,22184,21303,20451,19689,18985,18330,17779,17310,16900,16583,16344,16166,16055,16028,16053,16141,16292,16525,16821,17194,17611,18109,18647,19275,19914,20597,21329,22061,22802,23514,24212,24873,25467,26017,26446,26765,26993,27121,27116,27031,26816,26498,26104,25612,25050,24461,23815,23187,22528,21866,21229,20622,20045,19488,18981,18520,18121,17757,17432,17129,16862,16626,16418,16227,16025,15843,15652,15494,15352,15245,15145,15073,14986,14963,14933,14944,14928,14968,14976,15002,15033,15069,15130,15185,15199,15222,15225,15237,15267,15269,15256,15260,15219,15158,15095,15030,14938,14837,14698,14558,14381,14194,13986,13766,13526,13269,13004,12736,12427,12147,11849,11554,11277,11045,10784,10558,10295,9992,9669,9351,9077,8815,8615,8465,8294,8157,8083,7996,7917,7873,7802,7723,7580,7386,7243,7117,6996,6901,6805,6758,6698,6656,6642,6626,6618,6608,6612,6609,6460,6152,5726,5119,21.9,22.1,22.6,1568594,0.4,13.6,11.9,5.0,430,-1.00,-1.00,58.5485,-19.274763,0.000582,,,,,81 +SATSLF0720,2024246,16.513692,4.15,0.0581,0.1059,0.0199,0.00,16064,652,1,708,706,721,724,709,727,729,729,739,725,738,731,773,895,1208,1930,3092,4453,5678,6595,7230,7698,8129,8572,9102,9715,10458,11319,12288,13392,14581,15741,16828,17784,18492,18919,19059,18865,18505,17985,17403,16853,16380,16027,15813,15748,15816,16051,16455,17032,17770,18669,19746,20953,22282,23703,25191,26650,28074,29324,30309,31058,31441,31447,31133,30486,29578,28533,27302,26125,24974,23901,22907,22070,21324,20708,20226,19857,19570,19426,19323,19334,19443,19634,19898,20240,20669,21189,21741,22375,23054,23680,24290,24872,25348,25700,25954,26010,25893,25633,25157,24535,23803,23016,22140,21269,20419,19643,18960,18311,17762,17293,16891,16573,16320,16148,16037,15999,16033,16120,16270,16503,16802,17177,17590,18087,18657,19245,19876,20562,21277,22013,22758,23473,24180,24853,25437,25993,26419,26724,26958,27070,27089,26997,26773,26459,26052,25557,25008,24413,23789,23137,22491,21835,21198,20604,20013,19451,18971,18503,18101,17734,17390,17103,16834,16592,16397,16206,16016,15818,15639,15474,15331,15212,15104,15047,14964,14925,14901,14900,14920,14932,14965,15005,15032,15075,15113,15170,15165,15207,15209,15219,15248,15261,15277,15253,15198,15133,15063,14981,14907,14817,14679,14535,14362,14180,13964,13746,13508,13248,12978,12683,12406,12109,11806,11547,11273,11027,10786,10543,10277,9971,9655,9344,9055,8813,8611,8430,8269,8144,8039,7963,7897,7856,7778,7693,7554,7393,7240,7109,6983,6903,6797,6751,6685,6650,6622,6615,6612,6586,6617,6605,6463,6157,5734,5104,21.9,22.1,22.6,1568595,0.3,13.6,11.9,5.0,422,-1.00,-1.00,58.6972,-19.306896,0.000565,,,,,85 +SATSLF0720,2024246,16.513948,4.06,0.0569,0.1062,0.0201,0.00,16047,652,1,697,699,711,712,717,715,717,718,713,727,734,734,770,889,1187,1915,3057,4424,5648,6573,7200,7696,8112,8566,9068,9693,10432,11285,12285,13385,14542,15696,16793,17758,18454,18912,19026,18843,18489,17952,17351,16809,16345,15987,15771,15709,15777,16038,16438,17016,17755,18656,19712,20941,22242,23670,25141,26623,28028,29280,30282,31013,31413,31402,31093,30454,29545,28496,27273,26105,24946,23873,22877,22020,21303,20700,20221,19832,19557,19404,19309,19324,19417,19603,19869,20216,20658,21168,21745,22341,23010,23654,24267,24855,25322,25688,25946,26006,25888,25605,25115,24497,23773,22982,22122,21245,20417,19643,18946,18293,17742,17271,16880,16544,16296,16130,16025,15963,15989,16084,16247,16471,16772,17141,17579,18057,18614,19232,19881,20546,21272,22013,22749,23460,24169,24810,25411,25948,26385,26718,26968,27050,27080,26992,26777,26445,26050,25556,24983,24411,23757,23128,22484,21819,21181,20579,19989,19441,18945,18489,18073,17689,17373,17090,16829,16593,16376,16176,15991,15803,15610,15451,15318,15201,15093,15025,14953,14925,14898,14899,14901,14930,14935,14978,15025,15054,15107,15157,15191,15181,15194,15190,15223,15245,15229,15235,15177,15125,15057,14981,14900,14810,14677,14525,14357,14152,13947,13742,13496,13233,12973,12698,12407,12121,11813,11532,11270,11021,10761,10522,10263,9978,9646,9341,9063,8820,8613,8427,8279,8141,8035,7961,7889,7847,7769,7683,7552,7369,7225,7085,6983,6869,6791,6724,6683,6657,6621,6607,6604,6601,6609,6608,6456,6161,5721,5105,21.9,22.1,22.6,1568596,0.4,13.5,12.0,5.0,429,-1.00,-1.00,59.4193,-19.585966,0.000580,,,,,38 +SATSLF0720,2024246,16.514199,4.33,0.0606,0.1074,0.0212,0.00,16016,652,1,720,708,707,705,723,724,727,733,731,729,721,731,771,885,1207,1929,3073,4424,5648,6579,7194,7671,8076,8528,9055,9657,10413,11274,12262,13348,14525,15670,16766,17710,18421,18848,18983,18797,18434,17911,17328,16772,16330,15962,15745,15674,15753,15997,16407,16976,17725,18621,19684,20891,22210,23629,25100,26557,27974,29217,30196,30954,31337,31348,31005,30359,29463,28413,27189,26037,24881,23813,22818,21977,21260,20652,20178,19794,19521,19357,19257,19267,19363,19555,19809,20171,20613,21117,21694,22304,22957,23600,24209,24787,25268,25630,25895,25956,25846,25569,25098,24452,23719,22940,22066,21199,20365,19593,18909,18257,17699,17249,16821,16523,16265,16084,15987,15945,15963,16065,16224,16448,16743,17111,17536,18033,18577,19200,19833,20521,21248,21973,22699,23415,24129,24758,25340,25911,26339,26669,26924,27018,27018,26926,26699,26395,25984,25505,24941,24368,23733,23094,22445,21786,21144,20541,19933,19401,18913,18442,18033,17669,17347,17073,16813,16561,16356,16146,15967,15773,15595,15441,15304,15185,15077,15000,14928,14882,14870,14888,14884,14893,14926,14967,15008,15038,15073,15143,15149,15157,15158,15170,15195,15216,15205,15207,15141,15080,15022,14965,14859,14779,14645,14508,14336,14145,13931,13721,13485,13214,12950,12658,12370,12092,11800,11513,11258,10989,10748,10514,10252,9949,9616,9331,9028,8783,8583,8405,8246,8138,8029,7949,7891,7834,7766,7687,7537,7368,7201,7086,6965,6872,6791,6724,6674,6634,6617,6601,6599,6579,6595,6581,6424,6119,5699,5092,22.0,22.1,22.6,1568597,0.4,13.6,11.9,5.0,423,-1.00,-1.00,58.3081,-19.077860,0.000576,,,,,197 +SATSLF0720,2024246,16.514457,4.11,0.0576,0.1061,0.0197,0.00,16058,652,1,718,725,709,724,726,723,733,728,738,738,738,748,784,896,1218,1941,3093,4445,5662,6583,7233,7706,8128,8577,9099,9714,10454,11317,12296,13404,14557,15713,16827,17756,18471,18917,19053,18866,18503,17984,17402,16851,16384,16034,15790,15708,15792,16043,16450,17024,17768,18697,19730,20952,22273,23694,25160,26637,28036,29295,30284,31040,31445,31438,31120,30474,29565,28501,27277,26099,24941,23881,22882,22048,21328,20708,20233,19840,19564,19408,19313,19319,19432,19616,19863,20226,20653,21170,21739,22355,23016,23661,24288,24853,25339,25698,25943,26003,25876,25613,25143,24510,23785,23006,22129,21262,20427,19651,18954,18306,17752,17280,16869,16564,16302,16144,16044,15981,16023,16105,16275,16490,16795,17158,17590,18069,18638,19245,19861,20550,21272,22006,22752,23461,24179,24802,25404,25973,26400,26728,26982,27073,27086,27005,26777,26442,26060,25571,24993,24419,23770,23133,22485,21817,21192,20594,19997,19447,18951,18486,18073,17705,17378,17109,16834,16585,16392,16201,16016,15818,15618,15451,15304,15193,15103,15025,14957,14917,14898,14900,14915,14935,14949,14998,15029,15065,15125,15173,15195,15185,15209,15213,15229,15254,15236,15227,15181,15131,15069,15003,14909,14817,14695,14530,14351,14179,13965,13745,13514,13251,13003,12705,12414,12113,11813,11532,11275,11018,10789,10552,10277,9983,9636,9326,9048,8803,8606,8434,8285,8141,8053,7981,7912,7858,7793,7708,7549,7375,7227,7090,6983,6883,6804,6748,6680,6647,6632,6626,6614,6605,6613,6615,6456,6151,5739,5124,22.0,22.2,22.7,1568598,0.4,13.5,12.0,5.0,429,-1.00,-1.00,58.6819,-19.288481,0.000606,,,,,96 +SATSDF0720,2024246,16.759139,0.00,0.0000,0.0000,0.0000,0.00,653,0,1,651,638,642,636,622,626,631,637,632,631,650,626,642,645,642,634,625,639,625,629,625,632,634,649,665,661,650,645,643,647,659,650,655,654,664,657,671,656,663,659,649,655,665,661,663,663,659,669,673,653,661,645,659,657,652,658,667,672,666,661,667,665,654,649,667,666,650,654,652,661,657,669,663,659,663,661,658,653,648,636,639,647,657,669,653,659,644,663,669,658,657,661,660,646,647,659,649,653,660,657,672,668,670,667,657,647,648,640,629,651,649,651,657,663,661,656,660,653,653,646,647,655,659,663,658,666,650,667,660,661,649,644,643,646,652,641,651,653,649,651,647,652,649,655,658,664,665,660,651,654,657,640,656,669,653,661,651,648,640,643,651,653,643,663,652,653,666,637,647,647,650,649,641,644,651,651,658,668,657,653,658,659,653,657,650,625,647,643,653,649,656,663,667,654,645,649,637,635,651,660,653,664,669,678,669,661,653,659,651,644,642,658,647,649,647,653,654,652,653,660,653,645,654,655,653,649,637,647,643,655,669,650,651,656,656,661,660,644,654,650,651,657,656,654,669,658,655,661,667,666,657,663,654,651,651,484,0.0,0.0,0.0,1568597,0.5,13.5,0.1,5.0,56,0.00,0.00,0.0000,0.000000,0.000000,,,,,80 +SATSLF0720,2024246,16.759693,5.17,0.0724,0.1156,0.0253,0.00,15752,653,1,702,706,701,708,728,709,727,742,725,719,727,732,769,873,1197,1881,2969,4240,5403,6262,6875,7359,7760,8191,8703,9303,10015,10861,11822,12887,14011,15146,16194,17115,17794,18218,18346,18177,17825,17330,16766,16237,15817,15485,15289,15240,15319,15571,15970,16547,17274,18151,19200,20386,21662,23079,24508,25952,27310,28551,29504,30231,30617,30637,30314,29678,28800,27781,26604,25468,24346,23309,22357,21545,20859,20266,19801,19421,19154,19000,18910,18930,19035,19241,19498,19835,20277,20786,21321,21956,22597,23228,23843,24388,24865,25221,25485,25508,25399,25111,24646,24016,23314,22530,21693,20837,20012,19265,18593,17952,17427,16952,16587,16257,16021,15858,15763,15721,15755,15852,16022,16243,16529,16900,17335,17802,18363,18969,19604,20267,20990,21706,22458,23161,23840,24486,25084,25627,26056,26361,26602,26716,26725,26630,26417,26091,25708,25208,24642,24076,23457,22818,22179,21537,20913,20314,19734,19181,18701,18240,17831,17463,17151,16865,16611,16370,16173,15969,15797,15612,15429,15255,15126,15021,14919,14845,14772,14730,14727,14725,14720,14755,14776,14830,14868,14899,14926,14997,14992,14995,15017,15033,15053,15077,15057,15066,15004,14940,14888,14807,14721,14645,14493,14344,14187,13989,13791,13586,13341,13084,12812,12534,12237,11959,11657,11377,11107,10859,10631,10398,10141,9837,9515,9215,8955,8708,8495,8341,8182,8046,7947,7869,7803,7752,7676,7596,7461,7299,7156,7029,6904,6817,6738,6664,6624,6577,6564,6557,6535,6534,6541,6513,6357,6069,5651,5037,21.9,21.9,22.2,1568598,0.1,13.1,12.0,5.0,562,-1.00,-1.00,61.4138,-19.952492,0.000740,,,,,75 +SATSLF0720,2024246,16.759880,5.40,0.0757,0.1169,0.0257,0.00,15708,653,1,689,678,687,699,701,702,725,721,714,722,720,738,772,885,1185,1870,2932,4189,5347,6225,6834,7296,7717,8144,8652,9246,9962,10793,11744,12797,13922,15031,16086,16997,17670,18088,18216,18058,17718,17214,16682,16157,15739,15402,15213,15144,15236,15485,15889,16454,17182,18080,19116,20304,21573,22977,24401,25837,27220,28426,29381,30121,30504,30502,30186,29565,28681,27665,26489,25364,24253,23234,22297,21462,20757,20176,19739,19351,19088,18949,18855,18883,18983,19188,19452,19796,20220,20726,21272,21875,22535,23177,23771,24321,24790,25134,25377,25455,25338,25053,24583,23959,23254,22477,21633,20786,19966,19211,18539,17911,17370,16919,16530,16236,15985,15827,15731,15687,15713,15801,15969,16189,16499,16866,17297,17783,18330,18937,19565,20237,20951,21674,22412,23105,23805,24458,25040,25605,26023,26329,26563,26653,26673,26576,26360,26036,25654,25154,24620,24042,23418,22791,22152,21490,20865,20254,19699,19149,18665,18209,17817,17456,17134,16867,16594,16361,16167,15950,15760,15569,15397,15247,15109,14989,14892,14821,14746,14710,14691,14702,14692,14719,14745,14774,14819,14839,14903,14953,14970,14990,15023,15009,15047,15062,15048,15043,14980,14928,14874,14792,14711,14601,14475,14327,14165,13973,13770,13553,13320,13040,12795,12505,12219,11930,11648,11354,11101,10846,10629,10387,10126,9826,9506,9206,8910,8678,8483,8309,8158,8037,7941,7853,7781,7750,7677,7587,7469,7277,7141,7005,6885,6793,6701,6645,6589,6561,6550,6537,6521,6509,6519,6513,6357,6071,5641,5030,21.9,21.9,22.2,1568599,0.1,13.0,12.0,5.0,466,-1.00,-1.00,61.8021,-20.039282,0.000777,,,,,30 +SATSLF0720,2024246,16.760135,5.38,0.0754,0.1171,0.0269,0.00,15696,653,1,695,695,705,692,711,697,711,705,716,711,707,726,764,855,1193,1865,2944,4209,5376,6249,6866,7305,7728,8169,8665,9267,9993,10804,11775,12817,13952,15054,16101,17016,17693,18112,18243,18089,17745,17250,16705,16183,15751,15435,15222,15158,15264,15505,15895,16480,17194,18095,19129,20304,21584,22981,24409,25843,27211,28440,29393,30123,30484,30504,30170,29549,28686,27661,26496,25364,24251,23225,22266,21443,20740,20167,19710,19352,19062,18930,18848,18871,18979,19169,19437,19753,20187,20702,21258,21872,22525,23157,23762,24318,24778,25133,25373,25408,25300,25015,24565,23927,23223,22472,21621,20771,19961,19201,18523,17894,17362,16917,16514,16204,15975,15814,15724,15682,15702,15803,15966,16177,16492,16857,17273,17752,18320,18909,19534,20206,20917,21641,22379,23073,23777,24421,24993,25558,25973,26272,26519,26619,26640,26545,26343,26016,25625,25138,24582,24019,23385,22743,22117,21457,20830,20226,19667,19118,18641,18186,17789,17425,17113,16821,16570,16322,16125,15937,15746,15566,15378,15239,15084,14959,14871,14781,14727,14692,14675,14673,14689,14712,14727,14762,14800,14833,14888,14941,14967,14979,14989,14997,15009,15021,15021,15013,14956,14895,14834,14774,14693,14594,14461,14311,14141,13958,13739,13537,13301,13045,12763,12495,12205,11914,11630,11345,11069,10835,10597,10367,10110,9799,9497,9193,8917,8669,8461,8303,8156,8032,7925,7851,7779,7731,7650,7579,7433,7271,7116,6987,6874,6768,6705,6656,6584,6569,6537,6522,6511,6489,6502,6496,6339,6040,5613,5012,21.9,21.9,22.3,1568600,0.2,13.1,12.0,5.0,449,-1.00,-1.00,61.0462,-19.723911,0.000707,,,,,91 +SATSLF0720,2024246,16.760388,5.27,0.0739,0.1158,0.0263,0.00,15730,653,1,702,700,706,713,709,700,721,735,729,731,731,726,775,877,1193,1882,2953,4231,5377,6259,6887,7346,7754,8193,8690,9281,10011,10855,11813,12869,13995,15104,16155,17076,17749,18176,18320,18134,17815,17301,16753,16229,15789,15460,15257,15203,15287,15544,15949,16537,17237,18139,19169,20362,21638,23058,24488,25925,27304,28506,29460,30208,30586,30588,30280,29645,28752,27741,26553,25415,24294,23283,22313,21504,20816,20227,19761,19386,19122,18985,18902,18916,19020,19205,19466,19818,20237,20764,21320,21917,22576,23210,23790,24356,24813,25177,25437,25483,25353,25095,24612,23991,23299,22517,21657,20829,20009,19250,18580,17936,17398,16943,16549,16237,15988,15843,15734,15691,15744,15825,15998,16198,16485,16892,17296,17789,18357,18946,19568,20247,20962,21685,22410,23130,23805,24459,25041,25602,26013,26322,26562,26665,26677,26585,26379,26046,25660,25173,24608,24046,23426,22791,22149,21482,20897,20289,19707,19152,18666,18209,17817,17453,17132,16853,16585,16359,16160,15968,15785,15598,15419,15253,15105,14981,14886,14818,14734,14701,14702,14692,14704,14716,14743,14795,14829,14864,14909,14973,14983,14990,14997,14997,15034,15042,15037,15038,14985,14925,14855,14811,14712,14619,14482,14333,14155,13978,13771,13557,13327,13062,12807,12521,12219,11939,11646,11365,11097,10853,10619,10376,10125,9829,9514,9215,8934,8695,8498,8322,8170,8032,7943,7853,7781,7729,7676,7586,7441,7274,7130,7010,6890,6790,6715,6649,6598,6555,6539,6531,6515,6522,6542,6522,6382,6069,5654,5049,21.9,21.9,22.3,1568601,0.1,13.0,11.9,5.0,451,-1.00,-1.00,61.1902,-19.834574,0.000828,,,,,211 +SATSLF0720,2024246,16.760639,5.38,0.0754,0.1187,0.0276,0.00,15645,653,1,709,713,727,718,725,715,725,725,725,711,727,722,763,868,1180,1864,2939,4199,5348,6226,6839,7301,7697,8127,8627,9216,9936,10772,11719,12770,13885,14995,16037,16940,17628,18027,18168,18001,17636,17155,16619,16093,15675,15357,15149,15101,15201,15434,15832,16380,17123,18004,19040,20211,21488,22877,24298,25725,27097,28302,29256,29964,30353,30353,30048,29438,28553,27545,26383,25255,24151,23128,22188,21373,20679,20102,19628,19259,18994,18844,18780,18792,18901,19085,19353,19701,20130,20625,21177,21778,22433,23072,23652,24210,24692,25044,25301,25318,25198,24932,24478,23830,23148,22382,21533,20690,19883,19137,18471,17842,17286,16848,16458,16155,15909,15753,15662,15621,15651,15732,15905,16128,16427,16773,17201,17682,18248,18849,19464,20143,20856,21574,22307,23003,23706,24341,24922,25468,25889,26196,26436,26545,26546,26452,26257,25938,25533,25052,24501,23933,23314,22678,22044,21387,20782,20189,19606,19066,18594,18134,17741,17383,17068,16779,16515,16281,16069,15880,15690,15513,15337,15180,15054,14926,14843,14763,14699,14649,14635,14640,14641,14673,14705,14719,14778,14797,14851,14903,14935,14933,14955,14955,14972,14984,14996,14974,14925,14871,14811,14745,14643,14556,14426,14273,14112,13937,13722,13509,13272,13025,12753,12481,12185,11898,11600,11313,11062,10812,10579,10357,10070,9785,9482,9181,8901,8671,8466,8311,8143,8010,7922,7836,7776,7724,7667,7565,7428,7249,7117,6980,6886,6778,6713,6644,6582,6557,6517,6515,6493,6481,6503,6497,6349,6050,5632,5018,21.9,21.9,22.4,1568602,0.1,13.0,12.0,5.0,450,-1.00,-1.00,61.5693,-19.859637,0.000717,,,,,84 +SATSLF0720,2024246,16.760895,5.28,0.0740,0.1177,0.0263,0.00,15687,653,1,705,696,699,703,716,713,715,736,717,727,731,736,775,881,1192,1866,2942,4206,5357,6232,6859,7306,7719,8157,8657,9251,9964,10784,11740,12811,13917,15043,16084,16970,17664,18078,18205,18043,17709,17201,16670,16141,15717,15389,15189,15129,15229,15481,15865,16429,17163,18052,19088,20254,21537,22949,24370,25798,27170,28397,29350,30057,30453,30441,30128,29518,28645,27628,26457,25337,24218,23185,22233,21412,20718,20143,19685,19307,19046,18899,18821,18841,18957,19137,19409,19757,20178,20679,21249,21843,22503,23114,23719,24288,24741,25083,25351,25380,25280,25002,24537,23921,23221,22453,21613,20754,19947,19216,18509,17891,17361,16894,16521,16211,15957,15822,15714,15683,15709,15785,15937,16169,16472,16834,17261,17729,18296,18905,19528,20200,20920,21645,22374,23070,23765,24408,24978,25543,25956,26269,26500,26608,26621,26534,26323,26003,25607,25133,24561,24004,23379,22745,22122,21464,20839,20244,19665,19112,18633,18165,17787,17430,17101,16819,16555,16328,16133,15933,15749,15565,15385,15221,15092,14973,14874,14811,14720,14690,14673,14675,14689,14712,14734,14776,14806,14839,14888,14942,14949,14968,14994,14986,15013,15042,15040,15014,14970,14913,14853,14782,14682,14579,14458,14325,14153,13959,13752,13543,13305,13048,12785,12512,12221,11927,11625,11355,11100,10853,10612,10369,10107,9819,9508,9197,8930,8685,8477,8309,8154,8021,7929,7842,7775,7744,7670,7589,7456,7290,7125,7015,6893,6795,6708,6647,6580,6541,6512,6514,6500,6495,6530,6505,6363,6075,5655,5034,21.9,22.0,22.4,1568603,0.1,13.0,12.0,5.0,450,-1.00,-1.00,61.9869,-20.088031,0.000735,,,,,149 +SATSLF0720,2024246,16.761147,5.38,0.0754,0.1179,0.0266,0.00,15673,653,1,698,693,697,707,699,719,722,710,724,724,730,737,765,883,1193,1853,2930,4197,5348,6231,6829,7275,7692,8121,8643,9245,9956,10786,11748,12794,13905,15010,16045,16953,17634,18038,18177,18013,17672,17177,16637,16109,15685,15364,15163,15124,15193,15450,15854,16426,17134,18023,19050,20248,21513,22922,24350,25774,27129,28345,29315,30036,30410,30408,30098,29465,28595,27595,26430,25312,24194,23157,22200,21394,20704,20122,19666,19285,19029,18883,18813,18826,18929,19122,19398,19742,20157,20679,21224,21818,22473,23100,23701,24247,24701,25069,25326,25383,25253,24985,24523,23899,23200,22410,21579,20737,19921,19181,18514,17877,17336,16891,16489,16193,15952,15788,15711,15655,15673,15763,15936,16160,16453,16809,17239,17711,18283,18886,19509,20183,20894,21618,22352,23047,23739,24394,24973,25544,25959,26274,26496,26601,26604,26509,26301,25979,25575,25116,24555,23991,23357,22728,22089,21444,20834,20242,19645,19099,18618,18156,17746,17407,17079,16803,16553,16328,16135,15913,15749,15554,15367,15214,15069,14952,14858,14780,14741,14681,14675,14676,14685,14697,14732,14758,14813,14837,14904,14940,14955,14977,14962,14981,14993,15019,15029,14993,14972,14905,14845,14780,14689,14584,14452,14305,14137,13942,13749,13542,13302,13047,12785,12497,12219,11942,11642,11353,11086,10841,10607,10366,10105,9808,9504,9194,8931,8683,8485,8305,8163,8016,7937,7860,7805,7737,7671,7561,7436,7255,7119,6990,6873,6786,6709,6650,6599,6560,6543,6528,6523,6502,6515,6505,6360,6045,5631,5017,22.0,22.0,22.4,1568604,0.1,13.1,11.9,5.0,439,-1.00,-1.00,61.9465,-20.049039,0.000752,,,,,57 +SATSLF0720,2024246,16.761407,5.41,0.0758,0.1185,0.0271,0.00,15679,653,1,689,680,697,690,695,708,714,725,718,717,727,732,753,883,1185,1873,2942,4201,5367,6229,6858,7320,7713,8148,8645,9239,9959,10802,11737,12803,13906,15024,16077,16971,17658,18066,18204,18033,17704,17194,16660,16146,15696,15385,15189,15121,15214,15466,15861,16442,17173,18053,19094,20261,21529,22941,24359,25799,27158,28377,29341,30056,30434,30429,30113,29497,28621,27613,26432,25323,24201,23173,22216,21403,20704,20138,19671,19305,19041,18903,18790,18825,18931,19133,19398,19734,20169,20682,21227,21825,22475,23109,23697,24251,24742,25096,25355,25390,25271,24992,24534,23897,23194,22423,21579,20757,19921,19191,18505,17881,17346,16882,16491,16177,15946,15784,15675,15655,15669,15774,15940,16180,16454,16822,17250,17728,18286,18887,19517,20181,20905,21617,22368,23062,23754,24400,24960,25536,25945,26261,26496,26602,26597,26515,26299,25973,25596,25117,24558,23993,23364,22737,22087,21445,20814,20224,19650,19114,18634,18169,17788,17413,17095,16810,16555,16343,16133,15943,15749,15557,15365,15207,15067,14957,14852,14793,14721,14688,14677,14661,14683,14718,14738,14775,14804,14839,14899,14946,14948,14973,14977,14977,15000,15014,15026,15001,14955,14905,14828,14771,14685,14574,14451,14306,14162,13969,13746,13533,13309,13029,12779,12524,12233,11933,11648,11348,11078,10850,10601,10375,10107,9816,9505,9207,8917,8671,8490,8309,8170,8026,7935,7855,7795,7739,7659,7571,7431,7260,7107,6979,6877,6776,6703,6651,6601,6558,6538,6541,6521,6501,6516,6506,6341,6048,5638,5011,22.0,22.0,22.4,1568605,0.3,13.1,11.9,5.0,448,-1.00,-1.00,61.4144,-19.840991,0.000769,,,,,52 +SATSLF0720,2024246,16.761662,5.26,0.0737,0.1184,0.0266,0.00,15672,653,1,695,705,701,723,722,723,717,727,726,741,733,738,776,893,1189,1885,2948,4220,5369,6245,6849,7309,7718,8143,8642,9225,9949,10779,11734,12794,13917,15021,16056,16968,17648,18071,18201,18042,17698,17190,16649,16117,15699,15357,15171,15108,15182,15459,15845,16421,17150,18048,19078,20256,21533,22925,24352,25792,27144,28361,29312,30027,30405,30407,30099,29486,28597,27605,26417,25290,24173,23154,22195,21379,20684,20129,19656,19297,19033,18885,18792,18813,18926,19114,19377,19725,20140,20661,21224,21805,22474,23105,23681,24245,24717,25085,25330,25383,25261,24997,24522,23903,23201,22430,21591,20748,19917,19172,18492,17859,17335,16885,16502,16189,15945,15792,15703,15644,15683,15770,15941,16165,16458,16826,17237,17723,18285,18893,19505,20173,20885,21619,22338,23041,23731,24385,24977,25534,25928,26243,26491,26594,26600,26505,26290,25961,25584,25101,24540,23966,23345,22705,22073,21431,20820,20210,19627,19105,18629,18150,17761,17405,17085,16794,16536,16308,16121,15930,15744,15557,15368,15211,15066,14954,14852,14782,14697,14688,14672,14668,14673,14706,14724,14765,14791,14843,14883,14928,14941,14938,14957,14973,14990,15024,15021,15021,14965,14894,14845,14761,14663,14588,14445,14289,14135,13938,13729,13515,13291,13033,12765,12501,12213,11932,11628,11353,11074,10849,10608,10366,10108,9821,9481,9187,8907,8669,8467,8305,8161,8038,7937,7870,7788,7739,7667,7566,7435,7263,7107,6985,6868,6788,6707,6653,6605,6557,6539,6530,6506,6499,6507,6503,6357,6059,5639,5025,22.0,22.0,22.5,1568606,0.2,13.1,12.0,5.0,450,-1.00,-1.00,61.9474,-20.050290,0.000894,,,,,78 +SATSLF0720,2024246,16.761914,5.44,0.0762,0.1201,0.0279,0.00,15622,653,1,713,716,703,717,721,725,724,722,727,728,726,750,785,890,1191,1863,2935,4206,5339,6203,6818,7264,7674,8097,8606,9193,9903,10752,11681,12739,13877,14961,15995,16892,17558,17965,18099,17928,17599,17097,16564,16042,15639,15305,15089,15048,15120,15375,15773,16357,17084,17963,18995,20164,21419,22840,24252,25685,27022,28243,29184,29897,30297,30290,29972,29357,28490,27481,26323,25189,24090,23074,22125,21313,20619,20025,19573,19205,18940,18808,18721,18747,18865,19051,19321,19665,20078,20598,21136,21745,22381,23009,23605,24160,24635,24984,25230,25277,25175,24909,24434,23817,23113,22348,21509,20678,19858,19112,18438,17814,17269,16824,16444,16125,15885,15722,15643,15594,15628,15731,15886,16115,16411,16771,17191,17671,18221,18822,19438,20122,20842,21549,22273,22981,23669,24317,24905,25449,25845,26163,26397,26497,26525,26425,26217,25913,25517,25028,24477,23897,23287,22658,22018,21352,20759,20173,19589,19056,18577,18114,17717,17358,17065,16742,16515,16274,16075,15866,15688,15497,15317,15162,15016,14909,14823,14760,14681,14662,14636,14635,14647,14675,14690,14739,14762,14781,14839,14905,14920,14910,14946,14940,14970,14970,14973,14968,14920,14850,14801,14720,14647,14544,14411,14274,14106,13924,13723,13507,13278,13009,12748,12467,12191,11904,11601,11335,11065,10828,10586,10358,10099,9801,9478,9177,8900,8649,8439,8293,8148,8005,7917,7850,7767,7719,7656,7558,7430,7256,7106,6976,6866,6778,6701,6643,6585,6541,6525,6521,6493,6499,6512,6513,6354,6057,5632,5017,22.0,22.0,22.5,1568607,0.2,13.0,12.0,5.0,435,-1.00,-1.00,62.0671,-20.024834,0.000836,,,,,66 +SATSLF0720,2024246,16.762173,5.59,0.0783,0.1201,0.0269,0.00,15623,653,1,701,700,723,717,724,718,715,723,721,723,735,745,773,891,1193,1859,2920,4184,5309,6190,6792,7255,7667,8094,8593,9174,9890,10727,11671,12718,13829,14929,15964,16845,17531,17936,18078,17920,17571,17083,16553,16045,15611,15293,15081,15040,15140,15387,15802,16353,17067,17933,18971,20142,21412,22810,24233,25669,27028,28218,29177,29897,30279,30283,29973,29346,28473,27473,26299,25176,24083,23058,22113,21310,20614,20030,19579,19223,18957,18808,18723,18746,18852,19043,19304,19639,20081,20581,21140,21740,22394,23020,23620,24185,24644,24987,25261,25302,25178,24906,24444,23824,23109,22366,21513,20692,19860,19111,18443,17813,17267,16817,16444,16135,15891,15750,15645,15613,15636,15730,15893,16124,16405,16775,17194,17681,18237,18817,19441,20133,20838,21562,22294,23001,23680,24331,24912,25461,25869,26181,26413,26510,26531,26437,26225,25913,25529,25035,24500,23909,23297,22674,22041,21390,20765,20166,19596,19058,18566,18104,17719,17370,17042,16765,16514,16288,16090,15890,15714,15511,15348,15158,15031,14928,14818,14751,14676,14656,14636,14645,14653,14673,14700,14737,14786,14806,14854,14909,14920,14930,14940,14955,14965,14992,14991,14984,14935,14875,14833,14746,14666,14551,14423,14283,14091,13927,13721,13517,13265,13005,12748,12467,12174,11890,11588,11330,11059,10818,10590,10352,10105,9805,9484,9173,8910,8666,8464,8289,8145,8002,7908,7836,7771,7709,7654,7576,7436,7266,7121,6997,6880,6778,6699,6633,6575,6544,6522,6521,6513,6493,6521,6500,6346,6049,5627,5014,22.0,22.1,22.5,1568608,0.3,13.0,11.9,5.0,446,-1.00,-1.00,61.6796,-19.855183,0.000743,,,,,195 +SATSLF0720,2024246,16.762428,5.48,0.0768,0.1190,0.0276,0.00,15645,653,1,700,695,711,694,703,717,698,721,722,733,736,737,772,880,1179,1866,2923,4199,5354,6202,6823,7269,7679,8105,8615,9207,9925,10740,11686,12737,13855,14965,16013,16913,17587,18002,18134,17963,17625,17136,16601,16077,15643,15311,15132,15059,15162,15414,15824,16384,17107,17979,19021,20217,21478,22880,24288,25724,27081,28288,29248,29954,30347,30346,30025,29411,28537,27530,26361,25221,24117,23097,22146,21334,20640,20069,19620,19254,18998,18859,18770,18793,18893,19066,19335,19681,20101,20632,21170,21794,22417,23057,23659,24227,24684,25049,25286,25335,25216,24950,24465,23840,23153,22384,21545,20698,19891,19137,18467,17839,17317,16865,16475,16162,15927,15762,15665,15609,15652,15760,15908,16151,16430,16792,17209,17682,18248,18854,19473,20145,20870,21609,22340,23040,23735,24353,24920,25481,25893,26196,26441,26557,26572,26478,26262,25950,25555,25079,24508,23941,23305,22696,22042,21406,20797,20197,19617,19066,18585,18121,17735,17377,17063,16773,16521,16295,16103,15902,15721,15518,15355,15195,15049,14935,14846,14785,14714,14659,14644,14660,14661,14683,14696,14739,14795,14812,14869,14909,14935,14946,14951,14970,14986,15012,15012,14997,14937,14877,14811,14749,14665,14582,14429,14291,14131,13946,13748,13526,13293,13033,12772,12480,12211,11917,11626,11344,11074,10817,10576,10351,10085,9798,9479,9186,8916,8676,8465,8292,8154,8024,7926,7849,7777,7721,7663,7577,7436,7262,7121,6983,6874,6765,6691,6635,6587,6540,6526,6527,6504,6514,6509,6507,6349,6045,5632,5019,22.0,22.1,22.5,1568609,0.2,13.0,12.0,5.0,447,-1.00,-1.00,61.7383,-19.920133,0.000864,,,,,62 +SATSLF0720,2024246,16.762680,5.55,0.0778,0.1197,0.0278,0.00,15625,653,1,705,706,711,705,702,701,720,724,730,734,743,732,772,871,1191,1870,2929,4195,5332,6199,6818,7277,7682,8119,8618,9209,9921,10747,11707,12752,13860,14954,15998,16896,17565,17985,18101,17955,17613,17124,16593,16080,15658,15312,15120,15072,15153,15413,15804,16374,17093,17969,19005,20182,21466,22848,24266,25709,27065,28261,29222,29942,30312,30331,30018,29389,28513,27501,26327,25204,24108,23089,22145,21316,20626,20050,19586,19225,18973,18826,18741,18744,18859,19053,19323,19654,20085,20601,21150,21758,22414,23029,23636,24189,24649,25002,25249,25309,25184,24905,24448,23829,23143,22373,21529,20701,19877,19124,18443,17811,17280,16824,16432,16141,15901,15746,15653,15598,15623,15730,15882,16117,16405,16768,17193,17677,18241,18835,19432,20119,20810,21531,22268,22962,23666,24313,24888,25434,25853,26153,26400,26514,26517,26413,26213,25878,25488,25024,24481,23900,23280,22651,22009,21358,20747,20150,19585,19034,18562,18104,17712,17360,17049,16766,16498,16274,16055,15870,15676,15479,15318,15148,15010,14921,14813,14764,14691,14650,14629,14626,14627,14659,14676,14712,14756,14779,14828,14891,14903,14915,14945,14936,14958,14973,14987,14964,14914,14860,14804,14729,14637,14545,14409,14276,14097,13926,13701,13495,13254,13010,12749,12467,12180,11880,11598,11319,11055,10809,10578,10361,10090,9790,9469,9171,8877,8643,8443,8295,8135,8012,7931,7842,7779,7719,7650,7559,7415,7232,7102,6968,6861,6761,6684,6630,6573,6534,6514,6519,6505,6500,6506,6499,6341,6045,5625,5002,22.0,22.1,22.6,1568610,0.2,13.0,11.9,5.0,429,-1.00,-1.00,61.3345,-19.736607,0.000765,,,,,210 +SATSLF0720,2024246,16.762939,5.65,0.0791,0.1201,0.0279,0.00,15613,653,1,702,713,721,717,738,736,725,719,728,736,725,736,761,872,1192,1864,2939,4196,5333,6199,6812,7265,7671,8086,8584,9175,9895,10726,11656,12710,13816,14926,15956,16851,17531,17941,18064,17909,17571,17081,16537,16030,15609,15288,15092,15024,15136,15377,15777,16342,17061,17933,18979,20132,21419,22814,24228,25632,27013,28196,29138,29860,30240,30235,29938,29338,28445,27447,26272,25158,24050,23027,22085,21268,20589,20022,19568,19213,18946,18792,18723,18734,18833,19022,19284,19630,20058,20573,21120,21716,22380,22993,23592,24154,24614,24969,25219,25259,25147,24873,24421,23794,23108,22349,21505,20657,19836,19100,18430,17792,17263,16805,16423,16119,15907,15739,15638,15593,15614,15708,15893,16120,16406,16772,17187,17668,18236,18827,19445,20119,20838,21554,22277,22970,23664,24302,24870,25429,25857,26153,26386,26485,26509,26418,26208,25893,25509,25036,24481,23904,23283,22653,22000,21355,20731,20157,19575,19047,18563,18113,17706,17368,17053,16769,16508,16274,16078,15880,15697,15504,15319,15161,15029,14908,14819,14760,14678,14641,14621,14624,14640,14666,14686,14723,14766,14804,14860,14908,14898,14925,14935,14944,14955,14963,14976,14963,14921,14866,14802,14736,14641,14557,14416,14265,14088,13909,13706,13493,13253,13009,12756,12481,12187,11901,11606,11324,11062,10821,10587,10348,10086,9800,9483,9187,8907,8666,8455,8289,8153,8010,7925,7851,7772,7717,7633,7563,7428,7254,7102,6984,6877,6776,6706,6644,6594,6557,6520,6517,6497,6492,6490,6488,6336,6052,5636,5021,22.0,22.1,22.6,1568610,0.1,13.1,11.9,5.0,445,-1.00,-1.00,61.1853,-19.633263,0.000750,,,,,91 +SATSLF0720,2024246,16.763193,5.55,0.0777,0.1209,0.0280,0.00,15599,653,1,719,701,707,723,713,717,728,733,730,738,737,741,766,891,1185,1859,2910,4179,5317,6180,6803,7243,7653,8069,8561,9157,9856,10690,11608,12675,13778,14872,15929,16828,17489,17909,18037,17881,17542,17049,16515,15997,15571,15238,15064,15018,15115,15357,15758,16317,17031,17919,18941,20118,21380,22763,24166,25598,26968,28163,29116,29829,30211,30218,29906,29304,28427,27420,26257,25147,24032,23017,22058,21253,20562,19992,19529,19175,18929,18780,18690,18720,18822,19009,19278,19609,20048,20544,21107,21704,22362,22990,23578,24139,24599,24964,25191,25243,25129,24857,24397,23783,23073,22314,21469,20641,19829,19095,18417,17790,17259,16812,16417,16117,15879,15715,15612,15589,15625,15713,15877,16093,16388,16740,17163,17641,18206,18806,19428,20091,20819,21546,22261,22967,23634,24279,24849,25398,25825,26136,26369,26465,26488,26395,26186,25881,25501,25006,24471,23885,23266,22626,21993,21345,20727,20152,19566,19041,18557,18101,17693,17342,17026,16745,16493,16252,16059,15856,15677,15500,15309,15161,15030,14902,14816,14745,14678,14637,14627,14616,14621,14658,14693,14713,14749,14778,14839,14880,14909,14916,14912,14935,14949,14967,14976,14953,14912,14856,14797,14731,14644,14561,14411,14277,14104,13910,13713,13497,13268,13004,12733,12471,12181,11900,11609,11328,11056,10808,10573,10344,10076,9804,9481,9192,8885,8663,8451,8284,8121,7995,7908,7835,7757,7717,7661,7554,7422,7253,7103,6974,6879,6777,6701,6629,6576,6536,6525,6515,6515,6489,6520,6498,6346,6038,5631,5021,22.0,22.1,22.6,1568611,0.2,13.1,11.9,5.0,444,-1.00,-1.00,62.0764,-19.985768,0.000725,,,,,251 +SATSLF0720,2024246,16.763445,5.57,0.0781,0.1211,0.0284,0.00,15590,653,1,699,722,705,715,702,707,721,729,728,729,725,734,769,866,1179,1860,2915,4176,5300,6175,6773,7223,7639,8060,8561,9146,9856,10679,11618,12661,13769,14886,15916,16814,17485,17894,17997,17857,17521,17036,16487,15995,15563,15248,15049,14996,15089,15325,15745,16292,17004,17895,18928,20100,21373,22761,24161,25589,26942,28151,29107,29821,30207,30206,29892,29282,28405,27392,26242,25123,24020,23004,22053,21247,20570,19986,19536,19169,18915,18767,18682,18709,18797,18999,19259,19592,20023,20517,21081,21670,22341,22970,23548,24112,24571,24921,25186,25241,25126,24853,24389,23784,23077,22302,21459,20630,19811,19064,18401,17765,17259,16808,16427,16117,15867,15707,15621,15581,15602,15689,15865,16072,16375,16733,17171,17642,18210,18797,19428,20093,20803,21514,22274,22933,23639,24279,24845,25399,25796,26135,26363,26471,26484,26419,26197,25863,25488,24999,24450,23877,23267,22626,21989,21345,20726,20134,19573,19032,18537,18097,17697,17330,17019,16742,16473,16249,16055,15865,15669,15477,15315,15149,15009,14900,14821,14744,14678,14634,14610,14608,14612,14632,14667,14706,14749,14779,14839,14880,14888,14917,14931,14926,14957,14970,14969,14955,14902,14851,14785,14713,14634,14528,14401,14261,14097,13914,13709,13485,13253,12994,12725,12455,12170,11902,11594,11312,11047,10784,10573,10341,10072,9779,9473,9165,8887,8657,8450,8286,8131,8003,7897,7837,7765,7709,7651,7552,7427,7266,7111,6965,6864,6773,6682,6630,6568,6529,6509,6508,6486,6485,6506,6493,6338,6043,5622,5011,22.1,22.1,22.6,1568612,0.3,13.0,12.0,5.0,444,-1.00,-1.00,62.2945,-20.065538,0.000788,,,,,245 +SATSLF0720,2024246,16.763702,5.58,0.0782,0.1214,0.0285,0.00,15589,653,1,711,709,723,728,717,723,722,717,721,713,725,724,779,877,1183,1863,2913,4171,5305,6162,6781,7237,7645,8081,8566,9169,9869,10693,11626,12666,13781,14880,15912,16801,17479,17892,18016,17859,17516,17041,16490,15965,15571,15240,15045,15006,15074,15343,15745,16300,17021,17911,18933,20098,21371,22762,24173,25597,26950,28154,29105,29821,30209,30202,29901,29286,28424,27410,26250,25124,24036,22994,22062,21252,20549,19979,19537,19164,18907,18760,18667,18691,18797,18994,19253,19602,20012,20529,21077,21686,22345,22971,23569,24110,24577,24935,25184,25234,25105,24842,24371,23757,23063,22308,21467,20616,19815,19074,18409,17784,17254,16793,16408,16107,15867,15708,15594,15569,15606,15704,15881,16099,16394,16749,17163,17632,18187,18799,19426,20062,20791,21512,22260,22945,23636,24282,24861,25398,25815,26120,26365,26465,26488,26390,26177,25864,25472,24993,24442,23873,23251,22613,21990,21321,20720,20131,19549,19011,18529,18077,17685,17333,17034,16737,16483,16261,16057,15866,15675,15494,15304,15151,15018,14907,14793,14727,14657,14624,14610,14605,14630,14646,14677,14717,14756,14788,14829,14881,14897,14919,14919,14929,14954,14967,14963,14949,14898,14845,14781,14712,14629,14536,14401,14242,14097,13909,13690,13488,13246,12998,12737,12456,12182,11890,11593,11313,11058,10805,10578,10333,10075,9786,9475,9170,8894,8647,8439,8274,8121,7993,7897,7824,7752,7699,7639,7560,7413,7233,7105,6972,6868,6762,6668,6615,6565,6533,6521,6506,6485,6475,6494,6484,6327,6038,5619,5012,22.0,22.2,22.7,1568613,0.2,13.0,11.9,5.0,444,-1.00,-1.00,62.3504,-20.093446,0.000799,,,,,21 +SATSLF0720,2024246,16.763955,5.49,0.0768,0.1219,0.0291,0.00,15568,653,1,712,724,717,730,713,713,719,723,717,719,731,738,780,884,1201,1861,2916,4179,5301,6159,6773,7232,7626,8060,8552,9154,9860,10688,11609,12663,13772,14861,15893,16792,17465,17870,18017,17858,17506,17015,16489,15963,15543,15217,15024,14970,15074,15318,15717,16273,16994,17886,18907,20073,21330,22731,24137,25563,26918,28113,29056,29773,30149,30145,29838,29236,28360,27358,26203,25081,23970,22970,22023,21193,20520,19948,19502,19124,18883,18738,18647,18689,18789,18976,19238,19580,19997,20506,21059,21649,22301,22937,23526,24086,24545,24905,25146,25184,25077,24792,24341,23723,23025,22270,21444,20609,19800,19064,18384,17750,17214,16770,16378,16080,15843,15690,15587,15553,15590,15677,15844,16074,16367,16710,17142,17606,18173,18764,19371,20058,20758,21484,22202,22912,23588,24228,24821,25367,25768,26107,26326,26440,26454,26341,26133,25815,25442,24962,24413,23835,23213,22598,21957,21319,20704,20098,19517,18983,18512,18053,17673,17308,16989,16707,16471,16228,16028,15841,15653,15457,15286,15125,14973,14871,14771,14711,14638,14589,14579,14599,14603,14629,14656,14686,14723,14753,14800,14843,14861,14881,14908,14904,14919,14945,14951,14935,14902,14830,14762,14695,14615,14527,14403,14247,14087,13890,13687,13477,13230,12985,12717,12437,12153,11876,11584,11309,11041,10804,10567,10342,10068,9770,9452,9149,8863,8643,8429,8267,8131,8005,7912,7831,7752,7705,7642,7541,7415,7237,7089,6956,6841,6754,6685,6622,6557,6533,6503,6498,6480,6471,6484,6472,6331,6032,5622,5011,22.0,22.2,22.7,1568614,0.4,13.1,11.9,5.0,444,-1.00,-1.00,62.3122,-20.044283,0.000831,,,,,129 +SATSLF0720,2024246,16.764207,5.56,0.0778,0.1227,0.0289,0.00,15549,653,1,711,709,706,714,727,728,712,713,735,726,723,753,789,901,1213,1869,2929,4167,5301,6170,6764,7206,7622,8029,8535,9133,9850,10669,11611,12658,13761,14838,15853,16762,17430,17828,17963,17808,17472,16993,16458,15949,15528,15201,15005,14948,15034,15305,15684,16260,16981,17856,18858,20040,21291,22680,24084,25510,26861,28071,29010,29729,30113,30103,29786,29184,28318,27326,26166,25053,23941,22948,21984,21180,20493,19929,19473,19119,18843,18705,18615,18635,18758,18953,19203,19545,19979,20473,21021,21621,22280,22908,23508,24057,24503,24862,25109,25157,25038,24782,24317,23716,23013,22245,21417,20566,19751,19027,18337,17726,17189,16759,16369,16080,15845,15668,15586,15543,15561,15662,15840,16047,16333,16696,17112,17593,18149,18742,19354,20048,20746,21451,22181,22874,23553,24205,24772,25316,25751,26054,26289,26379,26401,26309,26112,25792,25410,24932,24378,23806,23187,22563,21932,21273,20676,20087,19509,18966,18487,18034,17656,17302,16985,16706,16445,16224,16014,15814,15641,15453,15281,15120,14987,14866,14761,14698,14609,14578,14571,14581,14589,14620,14645,14675,14724,14739,14791,14845,14864,14882,14885,14877,14908,14928,14922,14939,14881,14837,14769,14701,14598,14497,14355,14212,14041,13867,13656,13465,13234,12986,12729,12442,12150,11870,11558,11288,11025,10776,10539,10316,10065,9765,9454,9143,8870,8634,8434,8265,8117,7986,7893,7824,7741,7693,7628,7563,7413,7230,7080,6957,6842,6742,6682,6608,6561,6516,6506,6493,6487,6471,6487,6481,6333,6037,5604,5001,22.0,22.2,22.7,1568615,0.2,13.1,11.9,5.0,446,-1.00,-1.00,62.2943,-20.008314,0.000700,,,,,100 +SATSLF0720,2024246,16.764463,5.75,0.0805,0.1213,0.0284,0.00,15581,653,1,724,706,711,723,713,721,739,726,752,742,737,749,771,881,1199,1863,2938,4173,5308,6163,6780,7235,7633,8053,8563,9137,9859,10684,11624,12673,13778,14865,15899,16790,17476,17885,18023,17852,17511,17024,16500,15969,15557,15245,15045,15002,15092,15338,15734,16294,17021,17894,18939,20107,21366,22749,24157,25590,26944,28135,29091,29800,30170,30178,29866,29237,28390,27370,26221,25097,24007,22957,22029,21223,20535,19964,19511,19134,18887,18743,18673,18692,18789,19000,19266,19601,20003,20510,21088,21668,22319,22955,23555,24097,24559,24919,25163,25219,25109,24829,24376,23753,23058,22296,21456,20625,19803,19066,18404,17768,17227,16775,16388,16099,15852,15692,15607,15565,15596,15698,15852,16087,16368,16732,17151,17633,18197,18798,19413,20078,20800,21508,22234,22920,23609,24259,24826,25386,25789,26109,26359,26459,26468,26368,26169,25849,25461,24974,24400,23846,23228,22605,21961,21319,20712,20117,19539,19021,18528,18068,17670,17316,16986,16724,16473,16233,16032,15853,15658,15483,15326,15142,15010,14904,14798,14721,14634,14620,14600,14601,14624,14644,14673,14698,14744,14765,14819,14881,14885,14912,14930,14930,14937,14949,14957,14941,14886,14821,14786,14708,14618,14544,14409,14269,14092,13889,13705,13490,13242,12996,12725,12449,12164,11887,11594,11321,11050,10792,10560,10329,10059,9767,9456,9148,8884,8640,8443,8281,8139,8006,7897,7821,7744,7690,7626,7531,7409,7240,7094,6978,6866,6775,6699,6634,6583,6537,6517,6497,6477,6477,6490,6467,6331,6043,5622,5011,22.1,22.2,22.8,1568616,0.1,13.1,11.9,5.0,442,-1.00,-1.00,61.2679,-19.625544,0.000805,,,,,252 +SATSDF0720,2024246,17.009138,0.00,0.0000,0.0000,0.0000,0.00,655,0,1,634,626,629,628,635,631,635,647,638,631,625,631,634,619,631,638,638,646,641,646,650,641,653,663,673,658,661,653,653,654,661,647,657,669,669,671,660,663,661,669,661,655,665,664,658,657,666,665,659,663,661,659,662,664,660,666,660,647,666,665,662,663,669,674,655,663,664,649,660,657,658,658,663,665,661,667,665,648,647,656,651,659,653,663,661,657,663,659,661,664,649,655,667,673,673,647,656,653,645,643,646,663,663,661,658,645,655,653,651,646,643,655,663,657,664,642,663,652,647,661,644,649,644,657,649,651,657,654,664,645,654,641,662,652,654,664,675,663,673,661,659,649,643,645,653,657,656,654,649,657,650,654,650,657,656,645,651,654,658,665,667,667,661,656,662,659,662,653,650,637,655,646,650,654,651,659,661,668,663,656,656,649,661,653,665,658,663,660,665,665,657,658,657,661,656,651,650,639,645,655,662,648,649,653,665,648,632,659,657,659,662,657,651,656,667,661,658,651,655,659,663,661,666,645,665,661,656,653,654,652,649,648,653,658,665,667,664,670,651,653,651,646,648,659,664,677,667,668,667,662,657,657,653,647,662,482,0.0,0.0,0.0,1568615,0.6,13.5,0.1,5.0,56,0.00,0.00,0.0000,0.000000,0.000000,,,,,29 +SATSLF0720,2024246,17.009693,4.06,0.0569,0.1015,0.0173,0.00,16195,655,1,712,714,712,711,714,709,721,720,716,724,718,747,773,889,1207,1937,3099,4457,5705,6631,7279,7759,8183,8638,9166,9782,10550,11417,12427,13530,14709,15890,16985,17953,18676,19127,19265,19081,18698,18167,17572,16992,16551,16184,15956,15889,15989,16226,16630,17211,17972,18878,19938,21159,22486,23955,25452,26918,28342,29600,30610,31370,31785,31781,31464,30789,29879,28819,27578,26405,25229,24158,23130,22279,21538,20947,20469,20074,19773,19616,19515,19523,19628,19821,20091,20429,20869,21389,21948,22565,23233,23897,24497,25086,25570,25940,26187,26247,26118,25851,25361,24722,23989,23189,22304,21437,20594,19825,19121,18450,17890,17415,17010,16679,16444,16261,16165,16125,16141,16241,16389,16620,16922,17288,17706,18211,18796,19389,20029,20724,21456,22201,22941,23669,24378,25040,25637,26204,26625,26953,27190,27297,27320,27194,26995,26682,26277,25792,25218,24621,23984,23333,22688,22005,21366,20760,20160,19601,19119,18653,18229,17863,17526,17236,16972,16720,16508,16305,16122,15914,15747,15578,15431,15323,15222,15136,15079,15029,15006,15003,14999,15031,15056,15093,15141,15168,15217,15273,15269,15286,15292,15296,15325,15337,15333,15336,15286,15223,15154,15099,15013,14922,14770,14621,14449,14271,14056,13829,13589,13332,13065,12786,12488,12193,11897,11608,11340,11085,10848,10598,10330,10027,9714,9397,9111,8855,8653,8481,8325,8199,8094,8002,7950,7909,7817,7736,7598,7416,7253,7141,7022,6933,6845,6784,6721,6685,6663,6661,6646,6631,6639,6641,6477,6178,5755,5126,21.9,21.9,22.2,1568616,0.0,13.1,12.0,5.0,561,-1.00,-1.00,58.5292,-19.423286,0.000548,,,,,209 +SATSLF0720,2024246,17.009879,4.12,0.0578,0.1014,0.0172,0.00,16202,655,1,695,702,704,706,710,725,722,723,715,727,723,752,787,887,1209,1913,3076,4448,5698,6633,7282,7761,8192,8647,9173,9812,10550,11411,12429,13541,14723,15898,17014,17960,18696,19141,19267,19085,18705,18187,17577,17035,16569,16208,15964,15883,15975,16238,16641,17233,17969,18882,19961,21174,22517,23973,25461,26945,28391,29645,30656,31398,31795,31805,31465,30825,29897,28841,27577,26411,25241,24165,23147,22296,21558,20952,20473,20071,19793,19609,19521,19542,19651,19826,20094,20436,20877,21411,21974,22597,23270,23913,24525,25073,25587,25957,26220,26254,26147,25862,25386,24716,24007,23191,22329,21440,20612,19822,19121,18464,17907,17428,17014,16689,16445,16286,16169,16140,16149,16240,16406,16641,16926,17309,17746,18233,18789,19415,20045,20734,21475,22218,22972,23689,24387,25049,25650,26212,26628,26966,27210,27300,27324,27225,27001,26676,26277,25787,25210,24640,24005,23339,22688,22017,21364,20751,20156,19590,19091,18621,18231,17861,17525,17245,16970,16730,16521,16317,16126,15927,15743,15575,15432,15307,15231,15149,15070,15038,15017,15015,15022,15041,15063,15107,15148,15158,15223,15269,15283,15298,15309,15319,15333,15348,15344,15349,15285,15233,15156,15088,15000,14901,14774,14621,14456,14261,14049,13837,13592,13334,13062,12777,12473,12187,11888,11598,11332,11072,10823,10599,10316,10019,9709,9401,9112,8861,8656,8477,8325,8201,8104,8020,7952,7893,7827,7747,7587,7415,7271,7136,7035,6935,6850,6770,6721,6693,6676,6656,6642,6630,6647,6645,6491,6191,5765,5141,21.9,21.9,22.3,1568617,0.1,13.1,11.9,5.0,464,-1.00,-1.00,58.2615,-19.324750,0.000625,,,,,122 +SATSLF0720,2024246,17.010135,4.12,0.0577,0.1020,0.0172,0.00,16177,655,1,709,713,717,712,715,728,730,717,735,733,733,744,785,890,1215,1930,3078,4455,5696,6629,7281,7752,8186,8628,9144,9761,10510,11376,12384,13501,14689,15856,16969,17923,18657,19086,19217,19034,18669,18129,17541,16985,16542,16161,15929,15860,15940,16178,16597,17186,17925,18832,19916,21124,22457,23912,25398,26893,28301,29560,30564,31326,31721,31718,31388,30730,29824,28768,27529,26344,25185,24108,23093,22249,21513,20905,20419,20037,19756,19580,19495,19508,19602,19803,20050,20402,20824,21363,21940,22546,23220,23853,24477,25062,25546,25900,26152,26217,26090,25824,25338,24698,23969,23168,22313,21421,20573,19802,19102,18438,17880,17401,16998,16677,16423,16258,16148,16114,16129,16242,16377,16615,16897,17277,17696,18194,18784,19370,20020,20719,21435,22185,22931,23639,24362,25012,25590,26178,26601,26928,27174,27277,27306,27186,26980,26657,26253,25764,25190,24585,23965,23310,22650,21982,21345,20729,20142,19585,19101,18621,18196,17839,17522,17224,16954,16725,16505,16305,16121,15913,15715,15557,15419,15291,15187,15123,15065,15026,15010,15002,15009,15027,15043,15080,15111,15154,15203,15251,15278,15273,15287,15289,15315,15323,15335,15332,15283,15225,15156,15080,14993,14902,14770,14601,14439,14241,14041,13827,13591,13329,13051,12773,12481,12181,11878,11592,11308,11064,10826,10598,10325,10017,9703,9397,9108,8861,8644,8479,8320,8203,8096,8006,7941,7890,7821,7726,7587,7416,7263,7138,7020,6929,6831,6775,6722,6682,6688,6650,6641,6626,6655,6638,6485,6180,5749,5136,21.9,21.9,22.4,1568618,0.1,13.1,11.9,5.0,451,-1.00,-1.00,58.4062,-19.338226,0.000588,,,,,159 +SATSLF0720,2024246,17.010388,4.11,0.0576,0.1029,0.0173,0.00,16152,655,1,712,705,699,711,717,713,731,721,723,727,743,740,768,876,1210,1926,3078,4433,5665,6597,7241,7721,8141,8597,9120,9739,10483,11368,12369,13472,14649,15825,16921,17877,18594,19041,19163,18985,18615,18084,17496,16925,16471,16099,15880,15827,15892,16149,16561,17140,17893,18809,19866,21079,22401,23852,25342,26825,28258,29508,30493,31242,31665,31642,31331,30689,29768,28717,27472,26293,25134,24043,23063,22208,21484,20861,20378,19986,19706,19540,19455,19470,19575,19771,20024,20379,20813,21329,21895,22517,23166,23815,24440,25031,25509,25864,26117,26173,26056,25778,25298,24659,23931,23137,22260,21377,20548,19769,19072,18410,17854,17376,16985,16657,16406,16233,16126,16080,16105,16190,16365,16597,16896,17269,17690,18178,18745,19345,19995,20669,21399,22148,22886,23611,24322,24977,25574,26138,26567,26882,27129,27232,27261,27146,26948,26617,26220,25719,25160,24568,23925,23279,22624,21958,21306,20711,20115,19553,19075,18597,18196,17824,17481,17198,16925,16691,16472,16288,16105,15900,15712,15541,15403,15288,15195,15110,15045,14995,14993,14986,14974,15027,15037,15077,15137,15150,15188,15242,15256,15261,15262,15278,15293,15317,15333,15314,15265,15216,15153,15084,14997,14889,14740,14592,14427,14249,14013,13811,13563,13311,13042,12769,12473,12165,11880,11577,11309,11058,10819,10589,10324,10021,9707,9380,9100,8857,8649,8474,8317,8181,8089,8027,7934,7896,7828,7731,7582,7413,7253,7131,7018,6928,6846,6785,6722,6690,6666,6644,6650,6617,6633,6641,6478,6176,5738,5126,21.9,22.0,22.4,1568619,0.2,13.1,11.9,5.0,449,-1.00,-1.00,59.0168,-19.556243,0.000609,,,,,192 +SATSLF0720,2024246,17.010644,4.02,0.0564,0.1018,0.0178,0.00,16177,655,1,694,703,701,710,720,722,721,719,721,731,717,749,769,889,1227,1933,3099,4465,5701,6641,7261,7751,8176,8619,9141,9774,10531,11401,12385,13510,14681,15861,16970,17929,18660,19081,19227,19042,18673,18135,17561,17005,16517,16156,15923,15856,15931,16183,16600,17177,17931,18850,19920,21134,22461,23908,25386,26877,28309,29565,30573,31328,31735,31741,31426,30758,29835,28780,27528,26345,25184,24122,23117,22263,21533,20925,20424,20014,19732,19563,19503,19498,19610,19808,20070,20406,20838,21369,21936,22548,23215,23869,24481,25060,25541,25897,26184,26231,26104,25813,25338,24702,23978,23175,22297,21431,20592,19808,19107,18441,17888,17410,17018,16685,16429,16263,16162,16107,16132,16216,16384,16615,16913,17276,17719,18197,18765,19371,20021,20709,21430,22192,22929,23640,24353,24998,25600,26180,26614,26919,27158,27276,27294,27186,26977,26661,26249,25770,25193,24593,23954,23318,22657,21981,21348,20738,20145,19584,19077,18602,18201,17837,17498,17222,16961,16721,16525,16316,16109,15908,15712,15554,15417,15290,15195,15120,15051,15013,14997,15005,15013,15041,15053,15106,15149,15173,15207,15249,15265,15269,15283,15289,15313,15323,15334,15314,15270,15197,15136,15075,14981,14899,14749,14608,14426,14244,14024,13815,13589,13321,13067,12769,12491,12187,11877,11592,11305,11057,10811,10589,10309,10014,9704,9385,9107,8854,8658,8481,8323,8184,8090,8023,7946,7884,7819,7734,7594,7414,7265,7141,7017,6909,6839,6766,6722,6663,6655,6642,6630,6624,6633,6630,6488,6184,5741,5127,22.0,22.0,22.4,1568620,0.3,13.1,12.0,5.0,447,-1.00,-1.00,58.8779,-19.540431,0.000622,,,,,170 +SATSLF0720,2024246,17.010900,4.05,0.0568,0.1037,0.0183,0.00,16132,655,1,693,704,692,711,709,706,729,722,717,721,722,736,757,883,1202,1926,3073,4427,5675,6608,7242,7717,8137,8585,9106,9729,10477,11348,12333,13450,14630,15801,16898,17861,18589,19015,19149,18972,18592,18053,17479,16920,16449,16096,15859,15790,15865,16126,16533,17117,17877,18789,19850,21070,22381,23824,25297,26770,28199,29449,30445,31200,31608,31632,31289,30656,29741,28653,27451,26260,25094,24030,23040,22168,21429,20825,20352,19965,19688,19524,19419,19443,19552,19734,20010,20348,20772,21291,21858,22469,23142,23797,24404,24976,25464,25824,26083,26139,26011,25740,25268,24629,23906,23105,22241,21359,20509,19758,19045,18389,17834,17361,16949,16629,16389,16217,16110,16064,16085,16189,16346,16578,16864,17241,17658,18167,18731,19341,19968,20635,21389,22124,22873,23573,24286,24956,25542,26112,26532,26848,27108,27213,27221,27126,26929,26585,26196,25698,25125,24537,23899,23264,22594,21931,21293,20701,20090,19532,19044,18557,18157,17794,17451,17185,16913,16658,16473,16269,16090,15901,15703,15531,15399,15265,15179,15104,15017,14985,14970,14957,14968,15003,15016,15056,15104,15133,15186,15221,15241,15255,15258,15268,15287,15307,15305,15303,15264,15181,15121,15053,14958,14867,14729,14572,14408,14230,14016,13796,13565,13290,13028,12745,12437,12141,11844,11571,11301,11038,10809,10581,10304,10007,9691,9372,9094,8839,8640,8469,8304,8178,8069,7994,7930,7870,7819,7726,7581,7414,7250,7135,7013,6918,6821,6750,6709,6660,6641,6625,6614,6605,6639,6627,6481,6170,5741,5129,22.0,22.0,22.4,1568621,0.3,13.1,12.0,5.0,451,-1.00,-1.00,59.1966,-19.606210,0.000597,,,,,91 +SATSLF0720,2024246,17.011152,4.21,0.0590,0.1039,0.0181,0.00,16127,655,1,711,714,708,705,726,712,720,730,714,727,724,729,775,897,1208,1917,3056,4419,5661,6581,7238,7720,8114,8567,9089,9713,10448,11309,12307,13419,14597,15758,16865,17806,18537,18976,19106,18940,18571,18040,17431,16885,16423,16065,15840,15772,15853,16101,16518,17095,17859,18765,19832,21050,22357,23802,25290,26768,28189,29438,30438,31195,31585,31585,31265,30625,29690,28647,27414,26237,25088,24016,23033,22166,21425,20813,20333,19944,19650,19501,19413,19417,19530,19729,19993,20334,20772,21287,21852,22473,23141,23796,24401,24971,25440,25832,26093,26128,26023,25741,25266,24641,23910,23117,22238,21367,20517,19744,19037,18389,17824,17353,16947,16624,16383,16212,16109,16073,16096,16194,16353,16587,16878,17226,17662,18141,18725,19329,19962,20669,21388,22133,22873,23584,24297,24970,25548,26107,26546,26853,27103,27211,27218,27136,26910,26586,26181,25706,25130,24537,23907,23257,22610,21929,21294,20692,20091,19545,19057,18565,18175,17817,17484,17189,16905,16668,16469,16264,16069,15885,15697,15539,15397,15280,15178,15104,15021,14997,14966,14967,14973,14992,15019,15057,15106,15131,15177,15245,15253,15267,15274,15277,15285,15307,15297,15286,15249,15196,15125,15041,14973,14861,14731,14583,14404,14221,13997,13777,13544,13289,13029,12747,12455,12162,11877,11565,11301,11041,10807,10580,10302,10011,9689,9371,9083,8839,8615,8443,8282,8158,8066,7994,7924,7875,7817,7724,7597,7405,7252,7117,7001,6906,6831,6767,6717,6685,6672,6645,6632,6625,6641,6632,6481,6169,5740,5112,22.0,22.0,22.5,1568622,0.2,13.1,12.0,5.0,445,-1.00,-1.00,59.1065,-19.554544,0.000663,,,,,49 +SATSLF0720,2024246,17.011408,4.08,0.0572,0.1032,0.0176,0.00,16141,655,1,711,715,707,722,701,714,723,730,722,723,739,732,775,901,1205,1916,3074,4449,5681,6601,7242,7739,8152,8608,9133,9762,10493,11367,12362,13466,14629,15808,16917,17873,18576,19021,19159,18991,18618,18078,17483,16931,16466,16100,15876,15803,15888,16142,16549,17127,17885,18793,19842,21063,22380,23837,25323,26799,28213,29471,30467,31235,31643,31636,31314,30657,29726,28685,27437,26265,25105,24026,23040,22190,21461,20837,20361,19965,19688,19539,19443,19445,19553,19739,20010,20341,20775,21296,21873,22486,23158,23798,24418,24985,25467,25838,26101,26160,26034,25761,25274,24624,23915,23113,22244,21380,20530,19762,19054,18385,17843,17364,16958,16630,16388,16221,16117,16073,16089,16180,16341,16579,16878,17244,17680,18164,18737,19350,19991,20688,21393,22151,22886,23594,24310,24957,25541,26111,26548,26880,27101,27212,27239,27143,26924,26598,26211,25714,25141,24544,23896,23250,22598,21926,21309,20680,20089,19537,19048,18579,18173,17798,17473,17191,16932,16689,16484,16275,16077,15885,15709,15534,15384,15275,15192,15108,15030,14993,14972,14963,14968,14992,15025,15058,15098,15133,15194,15233,15259,15262,15273,15273,15288,15316,15316,15314,15251,15195,15143,15069,14983,14894,14738,14583,14411,14217,14003,13802,13576,13304,13052,12763,12468,12169,11873,11586,11306,11057,10805,10574,10302,10005,9682,9383,9105,8850,8646,8465,8321,8184,8091,8001,7938,7889,7820,7730,7581,7401,7251,7128,7006,6909,6829,6763,6720,6682,6664,6653,6633,6622,6634,6635,6489,6178,5757,5124,22.0,22.0,22.5,1568623,0.2,13.1,11.9,5.0,439,-1.00,-1.00,58.8468,-19.467699,0.000616,,,,,49 +SATSLF0720,2024246,17.011663,4.07,0.0570,0.1034,0.0175,0.00,16150,655,1,725,706,705,719,725,720,713,721,719,728,730,727,783,889,1225,1929,3095,4454,5693,6613,7259,7733,8162,8611,9135,9749,10487,11367,12352,13485,14656,15811,16936,17888,18602,19059,19173,18994,18630,18088,17523,16949,16478,16130,15901,15833,15901,16157,16550,17145,17884,18788,19866,21093,22404,23858,25332,26824,28252,29489,30512,31253,31655,31652,31321,30669,29764,28699,27461,26284,25127,24055,23048,22192,21460,20855,20384,19984,19711,19548,19435,19459,19553,19734,19997,20349,20794,21312,21875,22496,23162,23812,24413,25009,25485,25852,26116,26177,26067,25771,25293,24648,23922,23122,22261,21389,20533,19767,19064,18403,17849,17376,16965,16643,16406,16233,16128,16069,16108,16197,16360,16591,16880,17249,17685,18173,18741,19345,19975,20664,21405,22141,22892,23602,24320,24968,25569,26139,26569,26889,27128,27217,27250,27140,26925,26601,26209,25705,25147,24556,23914,23269,22616,21957,21321,20711,20123,19565,19068,18594,18181,17838,17498,17193,16923,16686,16489,16277,16084,15897,15714,15543,15409,15305,15189,15122,15050,15005,14984,14983,14978,15013,15029,15063,15101,15122,15189,15236,15260,15269,15281,15281,15303,15314,15329,15317,15257,15201,15147,15076,14993,14907,14760,14611,14424,14226,14023,13797,13570,13297,13035,12759,12471,12179,11879,11601,11314,11064,10832,10577,10313,10013,9695,9377,9092,8845,8641,8473,8314,8191,8111,8037,7945,7894,7813,7721,7574,7399,7255,7115,7012,6914,6836,6771,6702,6669,6657,6639,6631,6612,6627,6635,6485,6183,5758,5125,22.0,22.1,22.6,1568624,0.2,13.0,12.0,5.0,439,-1.00,-1.00,58.6378,-19.393803,0.000610,,,,,23 +SATSLF0720,2024246,17.011918,4.22,0.0591,0.1041,0.0188,0.00,16109,655,1,702,689,707,702,703,707,727,730,729,737,731,741,768,893,1205,1916,3063,4445,5653,6583,7220,7705,8128,8578,9098,9705,10459,11329,12333,13437,14593,15755,16852,17820,18530,18969,19105,18920,18537,18007,17436,16889,16429,16067,15848,15784,15857,16100,16489,17091,17830,18727,19801,21024,22336,23797,25274,26758,28176,29422,30413,31168,31557,31558,31233,30568,29675,28625,27398,26225,25062,23982,22977,22134,21385,20781,20307,19929,19652,19496,19403,19406,19507,19695,19958,20306,20735,21270,21832,22436,23122,23766,24372,24946,25415,25783,26050,26101,25975,25710,25232,24589,23873,23083,22204,21337,20493,19714,19019,18362,17809,17354,16914,16609,16345,16177,16091,16055,16067,16167,16315,16544,16841,17213,17641,18122,18707,19320,19945,20629,21357,22114,22837,23555,24277,24928,25506,26069,26506,26824,27054,27170,27195,27104,26865,26551,26162,25654,25076,24511,23861,23220,22574,21914,21261,20665,20066,19518,19017,18540,18145,17782,17448,17152,16893,16641,16433,16249,16066,15878,15686,15529,15377,15264,15156,15091,15005,14968,14944,14961,14957,14984,15002,15031,15065,15097,15165,15209,15231,15225,15235,15259,15280,15302,15309,15286,15245,15169,15103,15034,14942,14865,14707,14567,14391,14205,14004,13793,13529,13291,13014,12727,12440,12149,11850,11569,11291,11025,10789,10558,10285,9991,9668,9355,9078,8842,8629,8457,8294,8163,8058,7975,7913,7861,7797,7718,7585,7416,7250,7125,7008,6905,6813,6741,6687,6646,6626,6622,6605,6609,6621,6624,6477,6176,5745,5125,22.0,22.1,22.6,1568625,0.2,13.1,12.0,5.0,447,-1.00,-1.00,58.9147,-19.459245,0.000617,,,,,104 +SATSLF0720,2024246,17.012174,4.07,0.0570,0.1046,0.0186,0.00,16105,655,1,696,702,694,701,701,711,712,724,729,714,728,725,760,882,1188,1927,3075,4437,5660,6587,7229,7703,8117,8577,9076,9709,10470,11332,12329,13433,14609,15758,16861,17813,18513,18967,19117,18933,18557,18029,17438,16889,16425,16076,15858,15760,15845,16091,16504,17075,17833,18726,19803,21014,22332,23778,25266,26738,28170,29410,30408,31161,31546,31552,31231,30587,29654,28615,27395,26213,25044,23982,22981,22125,21397,20790,20317,19921,19638,19477,19382,19386,19486,19689,19945,20295,20737,21255,21818,22439,23116,23766,24349,24931,25414,25765,26037,26096,25965,25695,25221,24600,23877,23065,22205,21344,20490,19738,19024,18373,17812,17336,16917,16607,16364,16194,16084,16034,16066,16162,16311,16538,16834,17193,17621,18119,18698,19302,19947,20631,21352,22088,22830,23540,24272,24918,25509,26070,26501,26813,27051,27168,27185,27093,26858,26536,26150,25641,25079,24506,23864,23223,22548,21902,21256,20652,20065,19505,19019,18545,18153,17781,17441,17165,16901,16653,16439,16239,16048,15854,15661,15489,15359,15249,15145,15076,15005,14970,14939,14929,14943,14969,14989,15019,15067,15102,15162,15206,15223,15225,15232,15229,15255,15288,15297,15290,15229,15178,15109,15029,14948,14842,14700,14565,14405,14181,13992,13769,13534,13273,13019,12722,12429,12152,11866,11565,11289,11046,10810,10561,10279,9987,9662,9350,9079,8830,8619,8445,8293,8159,8055,7979,7909,7859,7801,7721,7553,7385,7225,7093,6994,6897,6808,6761,6705,6674,6647,6631,6621,6613,6628,6612,6453,6154,5740,5127,22.0,22.1,22.6,1568626,0.5,13.1,12.0,5.0,446,-1.00,-1.00,59.2021,-19.573441,0.000624,,,,,96 +SATSLF0720,2024246,17.012427,4.15,0.0581,0.1051,0.0191,0.00,16094,655,1,706,699,710,713,721,717,725,714,729,729,725,720,759,867,1195,1912,3070,4425,5654,6579,7224,7696,8123,8570,9095,9712,10458,11330,12314,13413,14581,15748,16848,17812,18516,18960,19095,18910,18543,18000,17428,16865,16402,16055,15826,15763,15838,16082,16492,17068,17812,18729,19789,21010,22321,23749,25225,26725,28126,29386,30388,31129,31534,31540,31205,30554,29642,28589,27355,26180,25025,23930,22960,22105,21386,20776,20294,19906,19628,19462,19361,19377,19476,19664,19920,20275,20700,21234,21804,22436,23093,23741,24343,24904,25389,25752,26029,26069,25953,25671,25198,24577,23842,23049,22176,21315,20460,19704,19003,18347,17799,17334,16910,16600,16350,16173,16075,16026,16054,16145,16315,16545,16825,17201,17634,18113,18685,19293,19920,20601,21332,22081,22806,23527,24212,24886,25485,26050,26476,26802,27045,27136,27157,27057,26842,26504,26123,25629,25069,24480,23857,23188,22530,21864,21249,20634,20052,19500,19000,18525,18133,17767,17429,17146,16884,16644,16436,16218,16031,15850,15648,15488,15346,15229,15133,15067,14988,14954,14940,14935,14941,14973,14989,15031,15073,15093,15141,15201,15213,15224,15221,15238,15268,15269,15285,15266,15218,15153,15095,15008,14931,14841,14696,14561,14387,14205,13989,13774,13539,13273,13004,12734,12429,12125,11844,11545,11297,11045,10799,10547,10305,9995,9664,9348,9078,8839,8624,8440,8290,8150,8051,7989,7898,7852,7796,7685,7557,7385,7233,7128,7005,6912,6843,6775,6712,6662,6647,6633,6605,6601,6613,6610,6467,6156,5741,5109,22.0,22.1,22.6,1568627,0.2,13.0,12.0,5.0,440,-1.00,-1.00,58.9718,-19.461586,0.000622,,,,,204 +SATSLF0720,2024246,17.012681,4.21,0.0590,0.1050,0.0186,0.00,16090,655,1,711,714,716,714,733,721,729,729,739,733,738,749,784,893,1205,1927,3079,4432,5661,6585,7238,7693,8110,8557,9067,9704,10457,11301,12299,13422,14581,15737,16827,17783,18509,18938,19063,18897,18533,17990,17408,16856,16396,16041,15813,15736,15838,16077,16472,17075,17810,18709,19769,20984,22297,23740,25209,26682,28114,29357,30352,31097,31498,31497,31180,30528,29627,28561,27332,26165,25009,23927,22944,22106,21367,20765,20290,19885,19603,19461,19365,19369,19467,19654,19920,20281,20717,21236,21800,22408,23073,23729,24329,24901,25383,25734,26017,26066,25946,25677,25192,24556,23829,23058,22184,21318,20457,19702,18985,18334,17766,17323,16893,16591,16345,16165,16081,16021,16045,16136,16317,16533,16846,17205,17620,18103,18681,19276,19914,20608,21321,22066,22807,23511,24240,24869,25476,26038,26468,26798,27032,27139,27144,27047,26839,26504,26101,25610,25068,24485,23852,23198,22547,21878,21259,20641,20049,19490,19005,18528,18117,17753,17430,17138,16871,16626,16437,16246,16042,15845,15666,15488,15342,15230,15144,15081,15000,14953,14947,14936,14945,14962,14985,15026,15075,15098,15144,15192,15213,15225,15229,15224,15248,15267,15275,15273,15213,15162,15109,15033,14945,14853,14709,14558,14382,14209,13982,13768,13548,13276,13014,12724,12423,12143,11840,11569,11278,11031,10789,10560,10292,10009,9674,9350,9067,8829,8621,8450,8286,8157,8057,7995,7930,7882,7813,7726,7573,7407,7246,7110,6995,6898,6812,6755,6680,6663,6651,6633,6627,6605,6630,6630,6469,6163,5739,5119,22.0,22.1,22.6,1568627,0.1,13.1,12.0,5.0,443,-1.00,-1.00,58.7499,-19.352980,0.000562,,,,,42 +SATSLF0720,2024246,17.012937,4.13,0.0579,0.1052,0.0189,0.00,16080,655,1,716,725,721,721,718,724,721,733,733,737,731,761,774,893,1209,1929,3077,4428,5670,6580,7232,7698,8114,8555,9079,9688,10427,11293,12299,13393,14564,15726,16826,17777,18497,18925,19067,18894,18528,17989,17401,16850,16376,16023,15815,15741,15816,16069,16483,17053,17793,18680,19748,20953,22273,23707,25198,26677,28101,29345,30346,31101,31496,31483,31154,30506,29581,28538,27309,26142,24999,23936,22939,22083,21367,20757,20277,19880,19593,19445,19354,19370,19449,19661,19926,20264,20698,21218,21783,22397,23060,23709,24331,24906,25368,25718,25995,26049,25937,25645,25192,24552,23820,23023,22161,21303,20458,19688,18966,18324,17771,17307,16907,16583,16347,16165,16071,16011,16043,16141,16285,16514,16817,17184,17607,18085,18653,19266,19910,20589,21325,22074,22801,23511,24201,24866,25458,26022,26442,26773,27012,27118,27128,27035,26821,26497,26098,25602,25041,24467,23833,23182,22519,21857,21227,20622,20028,19488,18985,18512,18105,17746,17418,17122,16863,16631,16427,16218,16032,15828,15640,15479,15341,15221,15113,15058,14969,14950,14933,14925,14925,14951,14983,15005,15051,15082,15136,15201,15198,15219,15225,15225,15255,15272,15272,15256,15213,15134,15100,15018,14933,14837,14699,14549,14383,14194,13986,13773,13513,13266,12997,12724,12434,12132,11829,11530,11261,11013,10781,10545,10282,9978,9664,9360,9077,8822,8615,8448,8292,8158,8071,7986,7912,7867,7798,7701,7563,7384,7238,7105,7009,6890,6819,6752,6690,6657,6634,6629,6626,6621,6629,6626,6476,6165,5741,5115,22.0,22.2,22.7,1568628,0.1,13.1,11.9,5.0,445,-1.00,-1.00,58.9267,-19.413166,0.000637,,,,,64 +SATSLF0720,2024246,17.013191,4.16,0.0583,0.1060,0.0204,0.00,16052,655,1,701,697,703,695,715,725,726,727,733,729,725,743,781,889,1196,1915,3069,4406,5637,6549,7211,7669,8103,8546,9064,9689,10430,11291,12275,13382,14553,15710,16798,17739,18459,18897,19033,18859,18486,17953,17378,16820,16377,16001,15787,15730,15785,16029,16452,17028,17770,18654,19729,20945,22254,23699,25162,26629,28051,29305,30302,31053,31437,31429,31114,30457,29566,28509,27281,26123,24974,23882,22912,22054,21309,20714,20227,19843,19579,19418,19323,19354,19441,19612,19881,20213,20645,21176,21738,22357,23024,23681,24289,24857,25335,25696,25964,26005,25878,25611,25146,24493,23784,22992,22115,21260,20430,19655,18949,18302,17753,17277,16867,16547,16297,16118,16030,15991,15998,16107,16268,16500,16803,17145,17585,18081,18630,19227,19882,20553,21281,22010,22754,23477,24170,24835,25428,25979,26410,26718,26973,27072,27077,26979,26770,26433,26061,25556,25000,24426,23783,23131,22481,21819,21191,20582,19989,19441,18947,18473,18071,17712,17382,17116,16833,16587,16397,16186,16000,15799,15626,15453,15320,15202,15093,15024,14944,14920,14901,14893,14903,14929,14956,14997,15031,15056,15118,15173,15177,15178,15197,15197,15222,15235,15244,15239,15182,15129,15050,14991,14901,14816,14668,14528,14348,14149,13952,13725,13497,13234,12967,12682,12385,12107,11814,11534,11252,10989,10749,10519,10258,9965,9635,9338,9040,8807,8597,8430,8285,8136,8049,7959,7889,7841,7778,7675,7543,7372,7221,7090,6978,6869,6791,6733,6666,6648,6629,6627,6610,6613,6621,6606,6449,6148,5718,5097,22.0,22.2,22.7,1568629,0.2,13.0,12.0,5.0,447,-1.00,-1.00,59.0950,-19.460760,0.000591,,,,,250 +SATSLF0720,2024246,17.013442,4.24,0.0594,0.1061,0.0198,0.00,16061,655,1,699,709,710,712,726,709,727,709,710,721,721,731,773,862,1211,1918,3083,4426,5662,6589,7225,7694,8117,8554,9073,9687,10429,11285,12283,13399,14558,15721,16809,17763,18484,18924,19048,18858,18481,17971,17380,16827,16379,16016,15809,15725,15794,16055,16457,17029,17768,18679,19737,20968,22282,23721,25182,26669,28062,29309,30324,31060,31456,31454,31126,30486,29568,28529,27291,26113,24955,23895,22903,22049,21329,20720,20258,19869,19581,19408,19318,19352,19437,19618,19897,20213,20658,21175,21754,22361,23029,23677,24298,24872,25348,25715,25989,26022,25895,25614,25141,24518,23794,22999,22138,21285,20439,19659,18967,18315,17753,17303,16889,16560,16321,16149,16045,16000,16011,16116,16272,16512,16804,17169,17589,18059,18624,19239,19880,20561,21289,22030,22781,23494,24177,24842,25438,25989,26402,26744,26973,27088,27117,26996,26790,26474,26077,25578,25018,24439,23794,23145,22505,21841,21214,20594,20005,19457,18972,18489,18091,17728,17399,17114,16841,16595,16404,16198,16010,15818,15637,15464,15329,15222,15117,15037,14967,14929,14905,14904,14920,14933,14948,14997,15048,15069,15115,15169,15183,15207,15204,15211,15216,15248,15228,15237,15180,15127,15070,14997,14912,14820,14683,14534,14363,14168,13963,13746,13502,13249,12973,12686,12398,12107,11815,11530,11264,11013,10770,10534,10263,9971,9650,9328,9047,8808,8603,8443,8293,8144,8059,7973,7901,7845,7781,7690,7551,7372,7242,7107,7003,6890,6808,6725,6676,6653,6632,6621,6608,6605,6613,6596,6452,6148,5725,5098,22.1,22.2,22.7,1568630,0.3,13.1,11.9,5.0,436,-1.00,-1.00,58.7206,-19.314341,0.000650,,,,,11 +SATSLF0720,2024246,17.013700,4.29,0.0601,0.1059,0.0200,0.00,16054,655,1,718,713,712,714,714,713,714,717,729,725,739,751,777,889,1205,1916,3071,4419,5657,6553,7203,7681,8105,8545,9058,9681,10421,11280,12277,13369,14546,15705,16802,17741,18464,18902,19019,18843,18472,17925,17363,16813,16359,15997,15776,15725,15784,16027,16451,17025,17768,18662,19721,20944,22251,23697,25176,26656,28053,29303,30281,31030,31416,31422,31094,30459,29547,28498,27297,26102,24954,23893,22891,22045,21318,20709,20218,19843,19560,19384,19326,19333,19447,19625,19885,20225,20660,21180,21743,22363,23016,23688,24294,24842,25315,25682,25941,26005,25883,25610,25137,24505,23789,22984,22128,21266,20429,19669,18957,18314,17749,17268,16881,16545,16301,16137,16030,15989,16002,16101,16275,16491,16782,17149,17581,18061,18632,19227,19862,20546,21273,22020,22759,23478,24187,24834,25422,25986,26413,26721,26964,27061,27081,26988,26777,26453,26065,25559,24995,24424,23793,23148,22496,21821,21205,20600,20001,19467,18960,18469,18089,17706,17384,17100,16838,16602,16400,16178,15991,15799,15627,15452,15309,15199,15107,15037,14961,14930,14912,14901,14902,14939,14951,14999,15045,15078,15114,15171,15179,15182,15194,15192,15221,15246,15229,15244,15180,15126,15065,14995,14906,14823,14661,14535,14360,14164,13961,13747,13499,13243,12981,12700,12411,12105,11815,11533,11263,11019,10778,10538,10276,9981,9657,9341,9067,8826,8616,8436,8281,8154,8041,7971,7892,7841,7765,7687,7547,7377,7234,7105,6997,6890,6814,6761,6694,6645,6624,6615,6589,6595,6617,6603,6465,6154,5725,5107,22.1,22.2,22.7,1568631,0.1,13.1,12.0,5.0,444,-1.00,-1.00,58.7826,-19.327034,0.000617,,,,,110 +SATSLF0720,2024246,17.013953,4.08,0.0571,0.1060,0.0193,0.00,16057,655,1,714,718,724,714,720,721,725,737,744,743,741,757,793,895,1207,1925,3073,4424,5641,6571,7204,7684,8102,8553,9077,9705,10443,11298,12287,13394,14552,15696,16804,17735,18461,18907,19035,18865,18488,17965,17373,16818,16362,16005,15778,15710,15781,16037,16445,17017,17752,18661,19721,20941,22242,23691,25172,26642,28051,29289,30277,31027,31421,31424,31113,30464,29555,28497,27283,26089,24952,23872,22864,22029,21315,20708,20232,19850,19574,19419,19321,19334,19435,19634,19884,20227,20644,21173,21742,22344,23018,23674,24277,24874,25338,25706,25962,26012,25882,25608,25146,24511,23797,22993,22129,21265,20413,19642,18933,18295,17738,17276,16880,16556,16321,16160,16058,16009,16022,16110,16266,16491,16789,17163,17577,18074,18646,19245,19888,20573,21293,22024,22754,23466,24177,24814,25425,25985,26411,26732,26976,27081,27083,26986,26764,26437,26053,25563,25001,24423,23798,23156,22501,21832,21193,20580,19994,19444,18944,18480,18080,17717,17387,17105,16829,16599,16391,16190,15994,15814,15645,15465,15329,15200,15099,15029,14963,14918,14891,14904,14925,14941,14954,15006,15048,15079,15121,15177,15182,15185,15214,15209,15229,15249,15248,15241,15199,15151,15086,15009,14900,14812,14672,14521,14344,14151,13942,13744,13506,13257,12982,12713,12402,12102,11803,11517,11269,11009,10779,10546,10264,9979,9653,9350,9060,8825,8608,8455,8284,8154,8062,7987,7902,7852,7792,7703,7553,7374,7223,7100,6981,6885,6799,6742,6686,6651,6651,6633,6621,6605,6622,6613,6467,6161,5728,5117,22.1,22.2,22.8,1568632,0.3,13.0,12.0,5.0,445,-1.00,-1.00,59.2596,-19.522781,0.000634,,,,,139 +SATSLF0720,2024246,17.014204,4.19,0.0587,0.1066,0.0205,0.00,16040,655,1,725,725,740,725,725,735,733,735,742,725,737,730,775,889,1206,1923,3074,4421,5642,6557,7205,7670,8077,8523,9055,9674,10415,11272,12253,13351,14545,15673,16758,17715,18438,18865,19000,18835,18456,17939,17345,16787,16332,15981,15749,15684,15762,16014,16420,17004,17749,18634,19713,20928,22224,23675,25133,26611,28018,29256,30249,30985,31390,31389,31075,30427,29520,28470,27245,26088,24917,23867,22873,22014,21298,20690,20208,19825,19537,19388,19296,19305,19403,19597,19858,20194,20637,21150,21717,22345,23016,23636,24243,24827,25301,25659,25937,25989,25866,25600,25118,24488,23781,22981,22116,21249,20416,19641,18941,18307,17741,17265,16864,16541,16293,16118,16021,15979,16005,16101,16255,16472,16779,17134,17557,18035,18619,19218,19859,20549,21268,22009,22749,23446,24151,24805,25397,25954,26376,26694,26935,27032,27064,26969,26765,26440,26051,25557,24990,24403,23760,23131,22482,21805,21177,20569,19985,19417,18937,18485,18072,17703,17373,17093,16821,16585,16384,16185,15981,15787,15607,15442,15300,15185,15092,15026,14948,14923,14891,14901,14914,14933,14952,14995,15017,15045,15099,15153,15168,15183,15202,15204,15224,15237,15235,15222,15175,15115,15048,14974,14881,14806,14653,14521,14349,14162,13947,13747,13513,13245,12981,12694,12396,12109,11789,11512,11250,10998,10768,10517,10267,9977,9654,9344,9054,8819,8609,8432,8274,8133,8041,7973,7890,7847,7779,7690,7557,7383,7217,7099,6970,6869,6795,6729,6668,6656,6632,6617,6604,6593,6610,6602,6458,6161,5725,5100,22.1,22.2,22.8,1568633,0.2,13.1,12.0,5.0,438,-1.00,-1.00,59.2379,-19.495754,0.000616,,,,,22 +SATSLF0720,2024246,17.014462,3.96,0.0554,0.1103,0.0235,0.00,15919,655,1,714,707,720,715,722,711,713,723,737,734,737,739,770,888,1190,1893,3031,4369,5580,6472,7130,7593,8025,8458,8978,9585,10339,11177,12153,13226,14398,15530,16623,17565,18285,18717,18849,18679,18304,17779,17197,16664,16204,15847,15628,15559,15632,15873,16273,16841,17565,18475,19529,20717,22039,23470,24918,26373,27768,29002,29987,30737,31117,31136,30800,30174,29271,28234,27012,25869,24720,23671,22676,21836,21096,20503,20033,19644,19386,19225,19138,19159,19245,19427,19691,20033,20463,20986,21550,22162,22810,23464,24057,24635,25120,25460,25717,25777,25652,25385,24909,24295,23585,22801,21949,21089,20246,19491,18793,18154,17589,17133,16729,16417,16166,16005,15904,15858,15877,15968,16141,16353,16643,17011,17434,17918,18485,19070,19710,20385,21109,21847,22574,23275,23959,24626,25188,25753,26179,26501,26725,26842,26855,26781,26565,26247,25847,25362,24797,24206,23591,22946,22308,21652,21029,20421,19848,19302,18811,18360,17955,17589,17266,16962,16697,16469,16275,16073,15872,15689,15508,15347,15211,15095,15003,14928,14858,14808,14791,14792,14801,14818,14842,14893,14932,14951,14999,15067,15081,15081,15085,15100,15124,15140,15147,15133,15086,15009,14947,14867,14812,14710,14581,14442,14259,14085,13865,13651,13417,13162,12897,12626,12314,12031,11736,11444,11186,10925,10691,10464,10209,9911,9588,9274,8991,8756,8549,8384,8228,8094,8005,7923,7840,7803,7736,7649,7511,7337,7182,7050,6941,6845,6759,6692,6642,6600,6597,6582,6570,6555,6579,6569,6414,6117,5696,5080,22.1,22.2,22.8,1568634,0.2,13.1,11.9,5.0,441,-1.00,-1.00,60.4414,-19.836794,0.000638,,,,,254 +SATSDF0720,2024246,17.259138,0.00,0.0000,0.0000,0.0000,0.00,656,0,1,651,617,627,637,633,626,637,635,639,633,625,615,637,626,638,632,645,642,633,643,630,631,636,659,658,679,677,664,663,659,655,663,668,649,667,669,658,649,647,655,663,657,669,661,667,663,669,656,658,663,654,658,672,674,660,668,664,659,653,644,653,648,659,662,661,665,657,664,665,684,664,675,653,671,661,665,653,655,662,666,670,666,667,673,685,665,661,660,647,653,669,672,676,672,675,676,681,663,671,661,665,649,663,657,665,661,661,674,669,660,641,666,653,654,656,664,657,663,659,655,663,653,657,663,643,651,659,654,650,653,665,660,651,656,663,658,647,659,656,657,657,651,653,649,651,649,657,644,647,649,657,668,654,663,675,664,672,649,651,649,637,643,647,643,647,655,651,664,659,660,661,661,658,653,661,657,652,657,654,665,669,663,659,657,661,673,657,660,653,658,668,654,645,655,659,661,661,658,651,635,648,649,646,645,651,669,654,659,654,655,663,653,653,642,645,645,642,655,670,667,669,665,651,651,655,653,651,650,657,645,647,656,651,654,670,657,657,651,657,661,661,661,658,650,656,669,668,661,667,665,663,661,668,653,655,481,0.0,0.0,0.0,1568633,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,247 +SATSLF0720,2024246,17.259691,3.95,0.0554,0.1007,0.0169,0.00,16215,656,1,713,713,712,709,708,701,719,720,713,727,730,735,768,892,1209,1936,3093,4482,5717,6659,7296,7779,8211,8682,9194,9819,10583,11454,12452,13575,14757,15920,17042,18018,18730,19165,19303,19112,18743,18209,17603,17039,16581,16219,15971,15909,15969,16231,16657,17243,17986,18910,19975,21198,22529,23986,25472,26976,28402,29645,30661,31413,31805,31819,31482,30837,29922,28854,27624,26426,25272,24189,23181,22304,21582,20962,20485,20084,19805,19649,19553,19558,19666,19861,20102,20464,20890,21426,21997,22612,23281,23925,24544,25131,25622,25977,26234,26291,26149,25869,25372,24739,24025,23225,22343,21463,20615,19841,19127,18481,17920,17440,17033,16714,16464,16293,16187,16142,16164,16251,16409,16634,16946,17312,17741,18221,18799,19417,20056,20748,21480,22228,22979,23709,24404,25058,25662,26224,26653,26986,27225,27341,27341,27237,27018,26708,26298,25801,25218,24625,23994,23343,22697,22032,21393,20769,20181,19619,19129,18660,18253,17874,17563,17259,16989,16752,16528,16331,16138,15928,15748,15591,15451,15342,15233,15165,15081,15047,15017,15021,15017,15035,15063,15094,15140,15168,15217,15275,15298,15315,15311,15323,15345,15361,15358,15354,15310,15245,15167,15101,15024,14916,14796,14637,14474,14276,14070,13857,13601,13340,13075,12781,12478,12187,11901,11589,11346,11089,10845,10613,10341,10045,9722,9405,9129,8873,8665,8500,8338,8200,8100,8025,7935,7906,7831,7751,7613,7432,7281,7151,7029,6939,6861,6797,6741,6693,6667,6653,6645,6629,6652,6655,6498,6203,5772,5149,22.1,22.0,22.3,1568634,0.3,12.9,11.9,5.0,566,-1.00,-1.00,58.6280,-19.487593,0.000614,,,,,82 +SATSLF0720,2024246,17.259876,3.96,0.0555,0.1021,0.0181,0.00,16166,656,1,695,700,697,698,715,704,727,721,737,738,725,726,769,873,1187,1905,3071,4429,5682,6617,7275,7753,8189,8635,9153,9787,10522,11399,12389,13501,14689,15858,16978,17922,18643,19075,19236,19033,18672,18125,17549,16986,16517,16156,15921,15843,15931,16177,16572,17163,17921,18838,19901,21136,22449,23914,25389,26868,28292,29541,30557,31305,31716,31725,31378,30740,29819,28757,27530,26338,25154,24093,23098,22249,21515,20900,20423,20035,19748,19573,19489,19485,19595,19787,20048,20385,20839,21348,21920,22544,23213,23859,24487,25048,25539,25897,26141,26202,26073,25806,25299,24681,23962,23156,22280,21393,20556,19779,19080,18420,17870,17392,16979,16669,16413,16249,16135,16087,16110,16213,16382,16605,16897,17271,17697,18189,18744,19365,20008,20693,21426,22152,22915,23632,24352,25001,25585,26155,26576,26888,27146,27245,27255,27188,26966,26640,26225,25723,25174,24589,23934,23286,22632,21956,21328,20716,20138,19581,19073,18600,18190,17821,17494,17200,16938,16695,16494,16286,16091,15892,15705,15524,15401,15291,15206,15130,15053,15017,14994,14988,14981,15015,15024,15056,15115,15145,15196,15242,15264,15282,15281,15282,15314,15336,15316,15318,15257,15204,15129,15064,14966,14853,14715,14588,14423,14237,14013,13823,13581,13316,13038,12769,12466,12174,11862,11578,11313,11056,10817,10585,10321,10026,9706,9394,9083,8863,8629,8462,8321,8181,8084,8004,7938,7881,7827,7722,7577,7397,7248,7111,7009,6913,6836,6773,6717,6673,6657,6637,6643,6620,6635,6632,6466,6175,5748,5128,22.1,22.0,22.4,1568635,0.1,12.9,11.9,5.0,471,-1.00,-1.00,59.0507,-19.601644,0.000636,,,,,210 +SATSLF0720,2024246,17.260132,3.94,0.0552,0.1023,0.0181,0.00,16169,656,1,727,722,709,717,708,712,723,721,718,707,731,733,769,881,1200,1926,3082,4445,5695,6629,7278,7755,8195,8634,9154,9783,10525,11398,12400,13517,14705,15878,16997,17948,18682,19113,19232,19038,18674,18145,17547,17003,16534,16172,15941,15861,15941,16183,16585,17182,17925,18837,19905,21138,22456,23909,25397,26877,28302,29541,30562,31298,31718,31720,31400,30741,29817,28780,27534,26350,25184,24101,23098,22229,21497,20885,20416,20024,19733,19573,19483,19502,19609,19789,20043,20390,20832,21337,21927,22552,23212,23866,24480,25054,25529,25881,26151,26202,26078,25811,25321,24694,23972,23168,22299,21414,20571,19789,19092,18420,17851,17377,16989,16657,16408,16245,16147,16113,16127,16216,16381,16609,16891,17269,17696,18189,18764,19369,20011,20692,21416,22157,22912,23621,24326,24993,25579,26152,26580,26893,27147,27256,27251,27171,26946,26624,26229,25742,25165,24578,23930,23297,22614,21959,21329,20714,20112,19557,19072,18606,18184,17827,17498,17207,16930,16701,16499,16293,16097,15897,15717,15553,15405,15294,15195,15123,15061,14997,14987,14992,14985,15006,15047,15074,15117,15132,15183,15242,15261,15260,15277,15266,15300,15314,15319,15314,15251,15200,15129,15067,14976,14886,14741,14592,14429,14245,14025,13817,13573,13312,13045,12763,12479,12179,11877,11589,11317,11048,10819,10585,10302,10015,9696,9381,9094,8855,8647,8469,8317,8185,8087,8013,7946,7882,7821,7725,7589,7415,7253,7139,7025,6922,6852,6781,6732,6697,6665,6643,6643,6617,6643,6629,6477,6178,5747,5134,22.1,22.1,22.4,1568636,0.0,13.0,11.9,5.0,456,-1.00,-1.00,58.8472,-19.520510,0.000565,,,,,4 +SATSLF0720,2024246,17.260385,3.95,0.0554,0.1030,0.0182,0.00,16144,656,1,709,709,705,705,698,723,721,713,727,725,723,744,786,900,1215,1935,3086,4446,5677,6615,7264,7749,8166,8612,9143,9763,10506,11381,12381,13493,14667,15818,16935,17893,18610,19059,19197,19014,18648,18101,17506,16945,16495,16129,15893,15823,15909,16146,16571,17142,17893,18810,19869,21091,22409,23862,25340,26824,28237,29490,30493,31242,31656,31651,31328,30690,29769,28716,27488,26281,25131,24058,23054,22214,21466,20852,20378,19984,19701,19545,19453,19462,19570,19755,20010,20363,20793,21323,21897,22513,23188,23833,24433,25008,25482,25847,26099,26142,26023,25751,25275,24633,23939,23133,22261,21386,20541,19757,19056,18390,17835,17367,16949,16629,16386,16219,16129,16087,16104,16192,16360,16593,16868,17243,17674,18157,18724,19325,19961,20659,21393,22120,22873,23584,24297,24946,25533,26101,26528,26848,27111,27213,27222,27128,26917,26602,26201,25703,25128,24547,23902,23240,22586,21929,21287,20683,20101,19541,19054,18580,18176,17797,17470,17191,16914,16669,16462,16261,16081,15885,15694,15529,15386,15274,15182,15097,15032,14986,14962,14976,14969,14991,15013,15048,15089,15123,15181,15226,15255,15249,15275,15280,15282,15303,15308,15284,15243,15189,15125,15045,14961,14871,14743,14585,14424,14230,14005,13799,13546,13287,13027,12749,12462,12161,11872,11572,11304,11058,10825,10574,10313,10013,9692,9381,9093,8848,8641,8465,8296,8175,8071,8008,7940,7893,7829,7737,7577,7411,7245,7114,7002,6914,6837,6763,6713,6677,6654,6646,6624,6615,6635,6624,6471,6164,5728,5107,22.1,22.1,22.5,1568637,0.2,12.9,11.9,5.0,454,-1.00,-1.00,59.0146,-19.553089,0.000581,,,,,51 +SATSLF0720,2024246,17.260635,3.91,0.0548,0.1041,0.0190,0.00,16115,656,1,723,717,722,725,727,724,729,728,725,725,733,749,780,901,1210,1924,3077,4431,5674,6601,7245,7726,8151,8605,9129,9757,10501,11373,12362,13477,14642,15821,16914,17867,18582,19027,19161,18976,18605,18065,17490,16922,16466,16103,15877,15785,15879,16125,16530,17107,17854,18773,19825,21042,22370,23812,25293,26764,28182,29432,30430,31184,31591,31586,31275,30626,29706,28651,27432,26245,25088,24009,23016,22161,21424,20818,20339,19945,19671,19501,19403,19408,19522,19718,19981,20331,20760,21280,21846,22450,23115,23762,24368,24963,25425,25802,26056,26112,25993,25721,25246,24601,23897,23077,22211,21334,20483,19724,19009,18376,17790,17322,16914,16610,16356,16187,16088,16037,16065,16151,16313,16537,16846,17208,17641,18118,18692,19296,19927,20608,21347,22085,22827,23541,24240,24906,25498,26062,26483,26813,27056,27165,27173,27073,26876,26545,26135,25657,25089,24516,23861,23218,22556,21896,21261,20649,20055,19510,19016,18541,18132,17757,17440,17145,16886,16643,16449,16241,16048,15849,15656,15499,15354,15238,15147,15077,15002,14981,14941,14949,14949,14977,14998,15035,15088,15114,15146,15207,15218,15225,15240,15239,15259,15272,15282,15273,15213,15155,15098,15031,14941,14846,14714,14546,14389,14192,13986,13769,13529,13272,13005,12725,12430,12160,11849,11568,11289,11042,10795,10550,10291,9988,9661,9355,9073,8830,8619,8464,8297,8171,8075,8006,7913,7863,7799,7713,7573,7389,7222,7115,6979,6897,6817,6758,6704,6664,6650,6637,6613,6593,6629,6628,6469,6181,5741,5119,22.1,22.1,22.6,1568638,0.2,13.0,12.0,5.0,454,-1.00,-1.00,59.1646,-19.578686,0.000553,,,,,106 +SATSLF0720,2024246,17.260890,4.06,0.0568,0.1028,0.0182,0.00,16149,656,1,695,706,709,705,716,717,717,723,733,729,739,742,781,886,1211,1917,3071,4449,5689,6612,7273,7749,8172,8619,9149,9777,10516,11399,12392,13505,14675,15841,16955,17909,18637,19060,19199,19034,18654,18129,17520,16960,16499,16128,15906,15829,15924,16160,16582,17158,17913,18817,19892,21114,22421,23877,25357,26833,28277,29514,30523,31262,31668,31660,31343,30698,29773,28717,27495,26314,25156,24076,23085,22218,21477,20864,20386,20004,19728,19562,19461,19464,19559,19747,20011,20363,20805,21326,21905,22514,23169,23819,24442,25018,25504,25876,26130,26178,26067,25770,25300,24653,23936,23136,22248,21401,20538,19774,19070,18411,17845,17381,16970,16641,16391,16217,16128,16081,16099,16197,16363,16590,16890,17250,17692,18158,18727,19348,19978,20677,21405,22137,22889,23610,24306,24971,25550,26128,26550,26874,27113,27209,27221,27124,26921,26578,26176,25705,25125,24545,23914,23269,22605,21943,21293,20692,20089,19529,19029,18571,18170,17805,17468,17169,16907,16673,16472,16274,16084,15882,15699,15521,15390,15285,15170,15085,15035,14966,14973,14959,14971,14990,15024,15053,15088,15120,15177,15242,15239,15245,15256,15264,15283,15305,15313,15309,15264,15193,15125,15057,14949,14856,14722,14571,14394,14218,14019,13797,13568,13312,13021,12745,12454,12158,11864,11566,11294,11046,10806,10569,10311,9994,9687,9367,9077,8837,8631,8477,8309,8181,8085,8012,7935,7884,7805,7712,7572,7406,7250,7126,7002,6904,6822,6754,6717,6680,6647,6639,6633,6609,6627,6609,6467,6161,5739,5119,22.1,22.1,22.6,1568639,0.2,12.9,11.9,5.0,452,-1.00,-1.00,58.5429,-19.367167,0.000578,,,,,7 +SATSLF0720,2024246,17.261143,4.19,0.0587,0.1038,0.0180,0.00,16137,656,1,711,708,705,719,722,729,740,725,731,727,727,732,771,876,1181,1907,3065,4424,5667,6596,7258,7729,8178,8625,9136,9767,10519,11377,12371,13479,14650,15823,16929,17891,18629,19050,19187,19009,18610,18080,17495,16939,16480,16119,15895,15843,15910,16166,16562,17153,17909,18792,19857,21083,22403,23849,25345,26805,28230,29504,30496,31248,31649,31634,31317,30677,29733,28689,27458,26277,25112,24050,23051,22193,21464,20833,20367,19977,19671,19523,19419,19439,19555,19750,20014,20349,20788,21314,21872,22487,23152,23784,24406,24990,25467,25838,26108,26161,26034,25770,25268,24631,23913,23109,22244,21381,20526,19753,19048,18387,17831,17352,16937,16630,16381,16208,16116,16068,16089,16178,16346,16561,16861,17237,17662,18156,18727,19337,19970,20656,21371,22129,22869,23586,24288,24945,25546,26106,26528,26862,27096,27206,27205,27126,26917,26581,26170,25687,25117,24522,23898,23254,22597,21917,21284,20678,20082,19515,19044,18560,18155,17789,17457,17180,16909,16670,16464,16252,16064,15881,15697,15513,15361,15249,15158,15088,15017,14973,14958,14973,14968,15003,15017,15057,15105,15122,15187,15230,15241,15235,15239,15240,15268,15291,15292,15285,15256,15181,15132,15058,14969,14877,14728,14578,14397,14211,14015,13801,13547,13284,13016,12739,12441,12149,11841,11564,11286,11043,10822,10582,10316,10013,9690,9382,9089,8849,8631,8455,8294,8166,8066,7982,7923,7884,7802,7713,7575,7398,7238,7123,6993,6895,6824,6753,6684,6663,6644,6629,6625,6613,6629,6622,6480,6173,5733,5117,22.1,22.1,22.6,1568640,0.0,12.9,12.0,5.0,452,-1.00,-1.00,58.1230,-19.174676,0.000583,,,,,227 +SATSLF0720,2024246,17.261399,4.05,0.0567,0.1046,0.0194,0.00,16091,656,1,699,693,704,702,706,723,725,718,731,727,736,744,773,876,1201,1893,3048,4421,5656,6583,7226,7719,8133,8578,9080,9718,10453,11322,12309,13422,14614,15780,16874,17835,18541,18983,19109,18942,18557,18042,17457,16885,16427,16065,15842,15762,15851,16088,16487,17078,17832,18753,19790,21015,22333,23783,25248,26717,28133,29386,30389,31122,31528,31546,31217,30576,29645,28601,27369,26185,25045,23975,22969,22131,21375,20759,20296,19915,19637,19466,19384,19390,19482,19689,19949,20297,20721,21238,21787,22408,23085,23709,24325,24914,25404,25764,26033,26078,25970,25684,25209,24565,23840,23050,22184,21313,20456,19703,18992,18336,17786,17312,16906,16599,16342,16166,16064,16025,16033,16131,16286,16535,16813,17189,17613,18114,18674,19281,19916,20596,21332,22062,22822,23520,24218,24886,25469,26037,26468,26777,27016,27133,27138,27050,26828,26508,26118,25624,25033,24471,23822,23181,22532,21868,21237,20627,20027,19476,18980,18509,18109,17746,17426,17116,16860,16627,16429,16212,16022,15834,15639,15488,15340,15225,15132,15067,14990,14936,14928,14920,14919,14951,14985,15031,15057,15104,15145,15189,15216,15220,15226,15225,15249,15254,15255,15245,15201,15134,15083,15021,14929,14839,14696,14561,14382,14193,13977,13768,13513,13257,12970,12706,12405,12109,11826,11528,11259,11016,10787,10569,10284,9998,9661,9335,9061,8827,8612,8449,8293,8147,8061,7977,7904,7837,7785,7702,7557,7380,7224,7099,6993,6893,6801,6743,6690,6657,6640,6628,6624,6597,6631,6617,6466,6149,5722,5124,22.1,22.1,22.6,1568641,0.3,12.9,12.0,5.0,446,-1.00,-1.00,58.8799,-19.427228,0.000619,,,,,28 +SATSLF0720,2024246,17.261653,4.17,0.0584,0.1043,0.0191,0.00,16111,656,1,708,708,718,722,729,712,725,725,730,717,726,736,775,877,1220,1929,3078,4445,5666,6585,7243,7721,8145,8585,9111,9734,10485,11365,12343,13465,14644,15799,16905,17843,18577,19016,19140,18963,18585,18046,17454,16909,16448,16085,15862,15791,15876,16131,16545,17127,17860,18763,19818,21047,22357,23796,25269,26745,28170,29420,30433,31168,31568,31584,31236,30597,29682,28633,27402,26226,25068,23993,23006,22148,21415,20805,20317,19923,19639,19475,19394,19405,19483,19696,19977,20299,20740,21264,21829,22443,23110,23757,24361,24937,25412,25781,26048,26084,25979,25701,25230,24592,23872,23063,22203,21325,20483,19717,19012,18356,17806,17336,16923,16624,16366,16196,16101,16059,16065,16145,16315,16538,16841,17189,17623,18117,18689,19296,19936,20613,21357,22088,22843,23562,24249,24889,25491,26071,26487,26812,27053,27149,27168,27063,26848,26525,26139,25653,25082,24497,23866,23201,22557,21889,21263,20645,20053,19496,19010,18536,18142,17769,17446,17150,16887,16633,16439,16241,16037,15851,15668,15499,15368,15264,15154,15077,14999,14950,14929,14943,14942,14963,14989,15027,15076,15105,15138,15193,15204,15232,15246,15248,15269,15283,15281,15278,15216,15145,15095,15016,14951,14854,14711,14578,14406,14196,13991,13765,13538,13274,13013,12739,12448,12151,11844,11566,11288,11041,10786,10557,10290,9986,9676,9349,9079,8841,8628,8458,8300,8166,8064,7991,7926,7878,7801,7730,7586,7394,7255,7122,7010,6913,6818,6765,6709,6681,6649,6646,6626,6608,6631,6621,6467,6160,5741,5113,22.1,22.1,22.6,1568642,0.2,13.0,12.0,5.0,452,-1.00,-1.00,58.2310,-19.179186,0.000521,,,,,0 +SATSLF0720,2024246,17.261906,4.08,0.0571,0.1038,0.0181,0.00,16129,656,1,712,715,708,713,706,711,719,727,725,727,743,752,788,897,1223,1922,3080,4428,5676,6601,7259,7741,8162,8615,9127,9755,10509,11365,12356,13479,14658,15818,16922,17873,18586,19028,19170,18996,18605,18058,17481,16929,16476,16114,15897,15822,15895,16129,16541,17134,17870,18777,19847,21052,22373,23813,25299,26788,28212,29465,30450,31200,31619,31614,31286,30635,29718,28660,27426,26260,25093,24010,23017,22163,21437,20841,20345,19954,19673,19514,19417,19425,19516,19724,19994,20337,20772,21301,21861,22485,23134,23789,24401,24965,25458,25815,26075,26135,26007,25739,25241,24619,23900,23097,22237,21349,20507,19745,19037,18393,17834,17361,16950,16621,16382,16208,16109,16053,16087,16180,16350,16563,16864,17224,17653,18139,18704,19326,19973,20653,21370,22114,22845,23554,24260,24918,25515,26085,26513,26846,27078,27193,27213,27101,26891,26571,26163,25672,25098,24522,23872,23223,22571,21904,21281,20666,20067,19506,19012,18555,18157,17786,17458,17169,16901,16663,16459,16257,16069,15863,15696,15516,15390,15269,15163,15094,15009,14974,14963,14957,14970,14989,15017,15045,15093,15114,15163,15223,15242,15253,15261,15265,15281,15304,15299,15298,15260,15184,15127,15045,14957,14861,14728,14569,14400,14221,14001,13787,13557,13297,13020,12758,12445,12164,11873,11565,11303,11054,10810,10568,10300,10005,9673,9363,9089,8837,8625,8465,8296,8177,8081,8011,7933,7873,7811,7737,7579,7413,7255,7120,7005,6905,6825,6763,6710,6665,6651,6651,6634,6620,6629,6629,6472,6162,5739,5121,22.1,22.2,22.6,1568643,0.1,12.9,12.0,5.0,449,-1.00,-1.00,58.4941,-19.309213,0.000554,,,,,117 +SATSLF0720,2024246,17.262162,4.05,0.0568,0.1058,0.0197,0.00,16062,656,1,715,722,715,726,720,724,726,732,725,717,716,729,777,898,1202,1910,3047,4407,5637,6573,7222,7692,8128,8581,9084,9703,10454,11304,12289,13389,14572,15730,16834,17776,18498,18929,19065,18893,18509,17988,17389,16839,16386,16035,15793,15735,15805,16071,16457,17043,17766,18679,19742,20952,22273,23707,25180,26665,28082,29309,30318,31057,31457,31450,31121,30468,29573,28544,27301,26134,24998,23929,22914,22085,21336,20727,20249,19858,19570,19427,19332,19342,19437,19636,19901,20250,20682,21186,21763,22383,23051,23688,24291,24878,25348,25708,25971,26018,25892,25622,25162,24513,23804,23006,22141,21272,20451,19665,18957,18315,17751,17265,16873,16553,16317,16145,16051,16007,16018,16116,16264,16491,16785,17134,17583,18064,18641,19241,19877,20548,21287,22022,22768,23481,24176,24848,25417,25973,26400,26701,26967,27077,27085,26997,26788,26454,26069,25573,25006,24416,23783,23147,22483,21819,21195,20579,19993,19444,18944,18488,18090,17722,17398,17105,16840,16597,16397,16192,16005,15806,15629,15468,15331,15213,15108,15045,14968,14920,14910,14897,14903,14932,14949,14987,15033,15077,15111,15177,15187,15189,15197,15201,15218,15250,15250,15245,15195,15134,15073,15001,14919,14820,14681,14523,14353,14172,13965,13727,13519,13238,12964,12695,12390,12099,11812,11533,11257,11002,10772,10540,10277,9965,9649,9344,9041,8802,8599,8428,8275,8138,8068,7973,7896,7859,7797,7690,7559,7385,7229,7100,6981,6880,6819,6752,6699,6661,6638,6622,6601,6587,6606,6604,6436,6149,5734,5113,22.1,22.2,22.7,1568644,0.0,13.0,11.9,5.0,441,-1.00,-1.00,59.0693,-19.459494,0.000576,,,,,230 +SATSLF0720,2024246,17.262419,3.97,0.0556,0.1056,0.0197,0.00,16069,656,1,698,705,712,714,727,725,731,718,727,732,737,754,775,879,1208,1916,3054,4419,5653,6567,7225,7713,8141,8580,9104,9731,10469,11316,12310,13413,14595,15753,16856,17811,18537,18970,19106,18924,18547,18007,17408,16839,16407,16052,15808,15755,15833,16082,16481,17070,17810,18701,19765,20980,22284,23733,25200,26683,28097,29363,30336,31068,31483,31494,31173,30533,29600,28563,27330,26153,25008,23912,22920,22074,21341,20730,20247,19869,19582,19431,19339,19342,19456,19654,19912,20257,20672,21195,21754,22377,23050,23692,24294,24883,25357,25733,26000,26048,25918,25635,25159,24521,23809,23013,22155,21280,20438,19669,18957,18326,17758,17291,16882,16555,16305,16136,16046,16008,16032,16129,16288,16514,16805,17165,17597,18077,18644,19241,19873,20552,21287,22018,22761,23478,24189,24837,25427,25978,26423,26736,26980,27065,27099,27010,26792,26469,26078,25572,25004,24416,23792,23138,22499,21837,21203,20608,19997,19446,18960,18477,18077,17707,17391,17093,16849,16603,16400,16197,16012,15815,15627,15454,15330,15206,15119,15037,14969,14914,14897,14906,14918,14940,14965,14995,15048,15063,15123,15157,15187,15197,15211,15206,15227,15243,15250,15229,15188,15133,15074,14996,14913,14822,14688,14537,14361,14179,13953,13747,13497,13245,12977,12692,12408,12100,11810,11528,11263,11029,10777,10530,10264,9965,9638,9332,9062,8813,8605,8425,8262,8135,8027,7959,7902,7850,7781,7688,7556,7384,7227,7105,6989,6883,6800,6731,6687,6642,6621,6612,6587,6598,6615,6605,6462,6152,5718,5098,22.1,22.2,22.7,1568645,0.1,13.0,12.0,5.0,452,-1.00,-1.00,59.1133,-19.497085,0.000592,,,,,70 +SATSLF0720,2024246,17.262671,4.21,0.0589,0.1052,0.0193,0.00,16079,656,1,713,701,713,706,703,707,721,725,731,744,723,738,771,896,1213,1909,3063,4418,5652,6585,7229,7708,8137,8573,9105,9706,10458,11330,12320,13417,14594,15768,16873,17810,18525,18969,19074,18903,18529,17989,17410,16845,16393,16046,15827,15754,15849,16069,16493,17048,17811,18725,19770,21003,22312,23749,25217,26695,28109,29353,30344,31108,31497,31492,31161,30525,29613,28568,27342,26167,24999,23934,22945,22088,21352,20757,20272,19882,19605,19451,19357,19373,19480,19659,19927,20281,20710,21221,21780,22395,23061,23707,24322,24905,25378,25748,26004,26053,25937,25668,25178,24545,23838,23022,22184,21297,20468,19697,18986,18336,17781,17305,16897,16580,16330,16151,16059,16017,16037,16128,16290,16525,16804,17173,17606,18085,18656,19262,19896,20581,21297,22053,22797,23502,24198,24848,25435,26007,26426,26760,27010,27114,27113,27021,26813,26488,26082,25591,25032,24443,23817,23168,22522,21861,21230,20621,20022,19458,18979,18517,18102,17732,17402,17127,16871,16624,16424,16202,16007,15827,15641,15473,15341,15219,15121,15052,14968,14925,14919,14920,14922,14945,14968,15013,15058,15082,15137,15193,15191,15196,15206,15220,15234,15258,15261,15246,15201,15141,15089,15013,14930,14838,14685,14535,14357,14169,13963,13747,13515,13257,12997,12705,12425,12117,11813,11531,11262,11029,10773,10545,10268,9965,9650,9331,9051,8809,8631,8436,8290,8144,8055,7980,7905,7855,7796,7684,7549,7383,7211,7101,6985,6894,6809,6749,6684,6656,6627,6619,6601,6586,6609,6614,6467,6144,5735,5110,22.1,22.2,22.8,1568645,0.0,12.9,11.9,5.0,449,-1.00,-1.00,58.5960,-19.288733,0.000596,,,,,136 +SATSLF0720,2024246,17.262926,4.19,0.0588,0.1058,0.0190,0.00,16064,656,1,695,707,712,718,721,723,721,720,731,735,734,734,774,885,1192,1901,3063,4430,5652,6592,7229,7708,8109,8563,9079,9702,10445,11306,12287,13403,14557,15717,16815,17769,18490,18928,19053,18874,18505,17965,17392,16839,16369,16021,15792,15714,15807,16064,16468,17041,17778,18694,19741,20967,22276,23707,25165,26653,28068,29309,30314,31058,31457,31460,31116,30477,29564,28528,27290,26120,24976,23901,22901,22061,21318,20729,20250,19866,19584,19425,19332,19341,19430,19619,19895,20256,20686,21196,21776,22385,23029,23677,24295,24875,25341,25715,25968,26013,25913,25616,25163,24521,23789,22998,22137,21257,20407,19655,18961,18311,17755,17287,16879,16567,16318,16149,16049,16001,16029,16109,16275,16498,16802,17162,17593,18077,18650,19248,19883,20560,21282,22022,22760,23481,24178,24839,25431,25992,26411,26731,26973,27085,27093,26989,26788,26457,26065,25562,25001,24427,23789,23150,22506,21836,21212,20611,20005,19456,18965,18487,18089,17720,17407,17113,16841,16593,16403,16201,16016,15824,15621,15474,15320,15213,15106,15028,14965,14937,14914,14916,14916,14945,14964,14989,15046,15069,15121,15166,15184,15198,15206,15218,15242,15249,15261,15245,15190,15141,15097,15013,14919,14818,14695,14536,14358,14177,13969,13748,13518,13250,12983,12702,12403,12117,11809,11535,11263,11026,10782,10557,10284,9978,9654,9344,9067,8814,8599,8433,8273,8161,8065,7990,7926,7860,7785,7705,7558,7381,7232,7108,6970,6887,6806,6728,6675,6648,6623,6629,6619,6609,6616,6619,6473,6174,5738,5110,22.1,22.2,22.8,1568646,0.2,12.9,12.0,5.0,450,-1.00,-1.00,58.6772,-19.293989,0.000591,,,,,10 +SATSLF0720,2024246,17.263180,3.96,0.0555,0.1069,0.0206,0.00,16030,656,1,718,717,710,716,717,718,721,710,739,734,750,765,794,903,1207,1900,3064,4400,5623,6541,7187,7684,8099,8541,9067,9677,10427,11277,12275,13377,14544,15681,16790,17728,18429,18875,18999,18851,18461,17956,17364,16805,16343,15977,15751,15672,15755,15997,16408,16981,17722,18629,19704,20905,22219,23656,25121,26593,28002,29241,30210,30962,31354,31374,31021,30407,29495,28451,27242,26072,24919,23853,22865,22021,21285,20689,20201,19816,19537,19376,19282,19297,19392,19576,19833,20204,20636,21149,21724,22342,23010,23656,24253,24842,25294,25683,25914,25962,25853,25587,25101,24468,23751,22962,22087,21223,20382,19637,18928,18277,17713,17259,16861,16534,16289,16110,16021,15962,15992,16084,16254,16464,16769,17130,17546,18035,18587,19193,19835,20526,21247,21990,22721,23433,24133,24777,25365,25936,26341,26683,26925,27029,27031,26930,26726,26405,26017,25521,24968,24368,23747,23086,22438,21779,21153,20555,19965,19421,18938,18464,18053,17693,17373,17065,16817,16568,16365,16166,15969,15802,15601,15442,15304,15168,15076,14996,14918,14894,14866,14869,14884,14913,14934,14976,15015,15051,15092,15134,15137,15147,15159,15170,15202,15230,15218,15219,15168,15105,15043,14968,14884,14786,14660,14501,14335,14128,13939,13725,13485,13218,12967,12681,12397,12110,11806,11514,11246,10997,10761,10522,10263,9965,9631,9319,9046,8800,8582,8415,8266,8132,8042,7969,7900,7850,7779,7702,7557,7385,7211,7093,6986,6887,6818,6739,6690,6645,6627,6610,6598,6585,6609,6606,6455,6145,5729,5107,22.1,22.2,22.8,1568647,0.0,12.9,12.0,5.0,449,-1.00,-1.00,59.5892,-19.626196,0.000639,,,,,1 +SATSLF0720,2024246,17.263431,4.13,0.0579,0.1061,0.0199,0.00,16057,656,1,725,731,721,723,730,735,734,725,731,737,725,743,770,876,1194,1918,3069,4420,5674,6589,7229,7702,8117,8562,9071,9699,10440,11309,12310,13393,14587,15724,16826,17773,18506,18922,19063,18883,18502,17995,17405,16838,16379,16014,15799,15726,15813,16050,16442,17033,17793,18685,19744,20956,22263,23699,25178,26651,28061,29305,30298,31041,31436,31433,31109,30461,29559,28510,27296,26107,24963,23896,22902,22050,21329,20713,20230,19835,19566,19403,19317,19330,19430,19617,19901,20238,20665,21190,21755,22370,23033,23671,24276,24865,25335,25709,25972,26005,25888,25614,25139,24502,23778,22999,22133,21272,20430,19670,18963,18311,17756,17281,16872,16552,16301,16135,16025,15989,16005,16105,16262,16495,16782,17149,17581,18065,18645,19241,19879,20550,21269,21991,22739,23447,24151,24818,25405,25970,26397,26717,26960,27063,27093,26988,26769,26441,26047,25543,24992,24411,23783,23143,22480,21825,21189,20586,20008,19437,18945,18472,18068,17707,17386,17101,16826,16599,16408,16173,15996,15792,15619,15446,15319,15200,15105,15038,14945,14912,14884,14899,14906,14928,14949,14997,15029,15065,15116,15181,15184,15182,15195,15189,15218,15235,15246,15231,15182,15138,15069,14999,14919,14816,14673,14526,14357,14162,13958,13737,13505,13249,12977,12672,12403,12104,11819,11530,11264,11023,10774,10549,10273,9969,9655,9336,9047,8822,8609,8442,8288,8132,8061,7981,7889,7850,7784,7704,7565,7378,7235,7082,6975,6878,6797,6733,6675,6647,6642,6625,6614,6593,6604,6605,6453,6149,5717,5109,22.1,22.3,22.8,1568648,0.2,13.0,12.0,5.0,449,-1.00,-1.00,58.5886,-19.250010,0.000586,,,,,1 +SATSLF0720,2024246,17.263687,4.22,0.0591,0.1079,0.0210,0.00,15996,656,1,705,705,722,701,712,723,725,726,735,730,745,734,772,891,1204,1904,3039,4392,5599,6531,7177,7641,8064,8498,9015,9634,10381,11222,12199,13316,14490,15621,16731,17669,18381,18799,18935,18750,18379,17856,17282,16737,16277,15921,15705,15637,15707,15956,16356,16937,17687,18577,19632,20844,22152,23576,25034,26510,27914,29161,30161,30889,31286,31292,30965,30325,29424,28357,27168,25976,24850,23789,22794,21942,21229,20617,20146,19761,19481,19331,19240,19259,19353,19549,19805,20151,20581,21095,21666,22282,22929,23584,24205,24768,25241,25608,25878,25913,25796,25533,25061,24410,23703,22907,22048,21188,20337,19574,18881,18237,17683,17218,16820,16498,16253,16081,15988,15933,15961,16053,16221,16424,16723,17084,17504,18009,18573,19162,19808,20480,21205,21941,22682,23387,24085,24738,25330,25895,26312,26625,26886,26981,26993,26908,26685,26359,25966,25479,24913,24334,23709,23065,22425,21755,21136,20518,19942,19387,18893,18432,18019,17656,17338,17050,16788,16550,16341,16149,15954,15771,15578,15411,15280,15158,15069,14996,14923,14892,14869,14866,14867,14891,14917,14962,14996,15005,15063,15113,15133,15154,15154,15157,15185,15210,15208,15198,15152,15097,15030,14967,14871,14783,14631,14486,14325,14132,13918,13698,13467,13206,12950,12669,12381,12083,11783,11491,11223,10967,10732,10491,10243,9924,9623,9312,9045,8793,8587,8405,8259,8126,8027,7957,7899,7832,7765,7672,7532,7367,7209,7081,6970,6872,6803,6736,6681,6641,6605,6608,6589,6575,6601,6587,6434,6131,5715,5098,22.1,22.3,22.8,1568649,0.0,13.0,11.9,5.0,447,-1.00,-1.00,59.4657,-19.525381,0.000627,,,,,198 +SATSLF0720,2024246,17.263940,4.30,0.0602,0.1063,0.0202,0.00,16044,656,1,711,709,716,718,712,711,718,722,725,734,741,744,785,889,1189,1905,3058,4397,5639,6565,7210,7698,8125,8558,9088,9705,10443,11297,12287,13377,14562,15716,16812,17745,18460,18894,19025,18849,18484,17962,17386,16833,16373,16026,15805,15735,15801,16037,16443,17018,17758,18674,19734,20935,22247,23666,25154,26608,28016,29275,30262,31021,31419,31396,31081,30442,29536,28488,27256,26091,24941,23875,22869,22029,21309,20704,20226,19851,19559,19408,19310,19329,19423,19609,19874,20216,20653,21174,21732,22344,23016,23654,24265,24823,25309,25659,25934,25994,25869,25600,25129,24502,23794,22986,22117,21245,20411,19643,18938,18293,17739,17277,16865,16552,16307,16134,16032,15985,16004,16090,16258,16491,16782,17146,17566,18057,18615,19237,19854,20548,21258,22006,22741,23452,24140,24803,25383,25963,26384,26677,26939,27061,27052,26964,26749,26433,26030,25531,24971,24384,23749,23105,22477,21814,21193,20564,19992,19436,18941,18458,18055,17698,17366,17077,16805,16576,16369,16177,15986,15795,15616,15445,15321,15200,15105,15021,14946,14903,14877,14880,14889,14910,14930,14983,15032,15064,15104,15151,15158,15168,15177,15181,15205,15217,15234,15232,15178,15115,15058,14977,14899,14789,14664,14517,14343,14160,13945,13732,13495,13229,12962,12683,12392,12113,11810,11526,11264,11003,10761,10515,10263,9946,9640,9334,9040,8800,8593,8421,8281,8145,8048,7986,7899,7859,7785,7681,7540,7357,7209,7091,6971,6886,6809,6742,6677,6645,6627,6609,6596,6569,6595,6589,6439,6141,5722,5101,22.1,22.3,22.9,1568650,0.1,12.9,11.9,5.0,447,-1.00,-1.00,57.9917,-18.984151,0.000493,,,,,10 +SATSLF0720,2024246,17.264191,4.08,0.0572,0.1080,0.0216,0.00,15990,656,1,708,711,728,724,733,726,725,735,737,727,729,736,781,884,1214,1908,3062,4395,5635,6551,7193,7671,8087,8536,9055,9670,10413,11277,12256,13345,14510,15657,16757,17693,18421,18855,18982,18805,18429,17896,17313,16772,16306,15953,15740,15650,15742,15977,16378,16941,17699,18600,19653,20861,22162,23597,25067,26546,27930,29181,30173,30900,31309,31294,30965,30329,29429,28376,27145,25991,24848,23792,22789,21946,21229,20626,20133,19779,19485,19330,19237,19246,19351,19548,19804,20146,20579,21097,21645,22269,22934,23570,24189,24754,25221,25605,25860,25911,25808,25510,25040,24413,23697,22889,22039,21173,20337,19571,18891,18226,17684,17221,16808,16498,16254,16077,15987,15932,15956,16043,16196,16422,16723,17089,17509,17986,18549,19166,19802,20477,21202,21929,22666,23361,24059,24724,25300,25853,26269,26592,26834,26946,26955,26867,26653,26341,25943,25453,24907,24309,23696,23041,22391,21728,21098,20495,19905,19345,18856,18396,18005,17634,17317,17025,16754,16531,16320,16121,15952,15750,15563,15394,15259,15139,15038,14967,14898,14862,14849,14835,14842,14871,14876,14945,14973,15003,15054,15102,15113,15129,15131,15141,15157,15168,15181,15153,15115,15052,15010,14941,14849,14752,14617,14470,14306,14107,13891,13685,13441,13187,12928,12643,12347,12067,11766,11479,11216,10963,10726,10501,10221,9920,9623,9308,9030,8774,8574,8400,8246,8113,8016,7945,7870,7825,7760,7677,7527,7351,7207,7077,6949,6850,6770,6704,6642,6621,6589,6582,6577,6571,6593,6589,6443,6135,5714,5092,22.1,22.4,22.9,1568651,0.2,13.0,11.9,5.0,449,-1.00,-1.00,58.9072,-19.298451,0.000659,,,,,3 +SATSLF0720,2024246,17.264447,4.09,0.0574,0.1078,0.0212,0.00,16010,656,1,739,727,734,737,721,714,724,727,725,731,741,747,789,893,1209,1911,3053,4397,5633,6557,7196,7671,8082,8547,9066,9682,10408,11273,12257,13341,14507,15657,16753,17699,18423,18858,18993,18797,18439,17908,17317,16769,16312,15936,15719,15650,15753,15979,16388,16983,17710,18615,19673,20876,22168,23601,25078,26549,27954,29205,30190,30917,31305,31303,30998,30349,29438,28398,27172,26025,24865,23801,22814,21970,21251,20637,20161,19773,19493,19335,19243,19271,19366,19558,19818,20152,20576,21111,21664,22292,22941,23597,24200,24785,25257,25621,25879,25933,25799,25542,25057,24444,23721,22923,22065,21204,20353,19589,18909,18261,17698,17234,16821,16522,16261,16087,15981,15936,15966,16056,16215,16451,16747,17111,17541,18005,18572,19197,19813,20484,21217,21956,22697,23396,24101,24757,25337,25898,26329,26641,26883,26986,27000,26905,26693,26378,25984,25494,24925,24349,23712,23077,22428,21770,21138,20530,19949,19395,18913,18445,18035,17661,17346,17056,16805,16561,16353,16150,15963,15775,15591,15429,15278,15164,15063,14976,14909,14876,14867,14857,14882,14909,14925,14953,15008,15022,15073,15120,15141,15146,15153,15155,15185,15202,15211,15191,15149,15086,15025,14963,14877,14789,14645,14502,14338,14153,13939,13724,13480,13205,12955,12665,12369,12081,11799,11511,11255,11002,10755,10522,10244,9963,9633,9335,9046,8787,8592,8416,8265,8134,8039,7962,7899,7841,7769,7685,7542,7361,7220,7081,6975,6884,6794,6745,6684,6630,6611,6606,6586,6582,6603,6585,6446,6137,5717,5093,22.2,22.4,22.9,1568652,0.2,13.0,11.9,5.0,444,-1.00,-1.00,59.1180,-19.399094,0.000641,,,,,201 +SATSDF0720,2024246,17.509138,0.00,0.0000,0.0000,0.0000,0.00,656,0,1,626,630,631,615,631,628,635,622,635,633,626,622,632,626,631,637,645,642,661,652,649,640,640,661,673,665,660,658,656,658,658,676,660,667,675,670,667,662,667,653,659,658,662,673,673,671,681,681,683,672,670,657,661,658,668,665,659,661,659,671,667,660,663,658,649,656,653,652,669,666,672,657,659,670,661,661,658,657,663,665,663,665,652,659,657,657,651,659,663,649,671,658,646,644,643,663,673,673,676,668,665,668,668,669,663,666,661,649,655,642,640,651,642,657,649,657,656,659,648,671,661,673,665,656,665,650,664,651,663,652,663,652,648,648,647,643,647,646,661,653,653,657,653,653,646,635,671,658,654,663,645,640,659,666,666,664,658,667,658,655,657,646,654,653,652,657,663,661,662,650,670,645,660,652,650,641,647,656,646,669,669,657,653,662,658,653,642,646,653,645,659,657,657,663,669,665,667,670,661,664,660,669,661,663,660,656,657,648,656,663,665,668,658,662,645,652,652,653,660,653,663,658,660,661,653,653,647,655,659,649,654,632,651,649,648,645,664,662,661,653,649,666,656,649,658,655,650,667,657,666,660,660,650,667,656,499,0.0,0.0,0.0,1568651,0.5,13.5,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,43 +SATSLF0720,2024246,17.509693,4.14,0.0580,0.1046,0.0193,0.00,16085,656,1,710,701,715,712,718,714,725,728,732,723,727,734,769,882,1195,1921,3060,4411,5643,6563,7213,7687,8109,8557,9079,9707,10444,11315,12290,13384,14570,15712,16828,17790,18485,18933,19065,18896,18524,17993,17414,16861,16392,16026,15813,15713,15822,16065,16475,17066,17812,18709,19789,20997,22301,23738,25209,26692,28108,29351,30339,31090,31490,31497,31172,30528,29629,28573,27351,26177,25016,23958,22940,22107,21368,20769,20292,19909,19605,19474,19381,19402,19506,19684,19948,20296,20719,21245,21789,22418,23082,23730,24341,24926,25400,25761,26033,26075,25960,25669,25189,24553,23828,23026,22167,21291,20445,19682,18981,18341,17789,17317,16910,16583,16339,16151,16067,16025,16042,16139,16310,16534,16823,17181,17616,18094,18662,19278,19920,20610,21330,22082,22824,23520,24239,24893,25485,26044,26482,26796,27027,27127,27146,27051,26825,26505,26101,25610,25065,24470,23833,23184,22517,21859,21243,20641,20059,19493,18999,18539,18126,17749,17413,17135,16858,16613,16419,16218,16041,15848,15661,15489,15345,15228,15133,15062,14989,14938,14930,14926,14934,14946,14989,15014,15062,15079,15136,15191,15203,15212,15228,15229,15255,15261,15262,15253,15208,15141,15089,15008,14921,14819,14695,14546,14371,14177,13979,13771,13524,13265,12994,12704,12421,12118,11816,11536,11277,11017,10786,10550,10292,9989,9672,9356,9068,8832,8617,8437,8288,8153,8056,7977,7914,7849,7799,7703,7572,7392,7239,7102,6989,6896,6810,6753,6683,6657,6624,6621,6608,6601,6619,6603,6461,6160,5736,5116,22.0,22.0,22.4,1568652,0.0,12.9,11.9,5.0,567,-1.00,-1.00,59.2039,-19.543339,0.000583,,,,,76 +SATSLF0720,2024246,17.509878,3.90,0.0546,0.1021,0.0179,0.00,16175,656,1,714,701,710,709,711,714,717,715,710,705,720,739,765,876,1216,1933,3090,4441,5689,6622,7289,7778,8200,8653,9178,9797,10541,11411,12407,13521,14698,15865,16993,17944,18690,19118,19259,19066,18696,18164,17568,17002,16517,16165,15938,15875,15949,16203,16603,17195,17937,18863,19925,21141,22482,23914,25409,26893,28295,29575,30588,31345,31743,31745,31406,30771,29847,28784,27542,26372,25205,24122,23127,22265,21522,20921,20430,20045,19768,19600,19492,19507,19617,19800,20052,20388,20844,21365,21946,22548,23232,23881,24493,25067,25559,25921,26178,26225,26097,25809,25332,24685,23963,23169,22299,21427,20582,19812,19098,18432,17857,17393,16985,16652,16408,16247,16157,16098,16123,16214,16385,16605,16890,17281,17696,18190,18769,19386,20006,20700,21432,22169,22919,23640,24345,25019,25585,26176,26601,26920,27161,27259,27280,27189,26973,26634,26231,25749,25172,24583,23945,23302,22634,21973,21336,20733,20120,19567,19074,18610,18196,17841,17501,17208,16947,16708,16501,16292,16093,15899,15731,15560,15412,15297,15201,15125,15056,15009,14986,14964,14995,15017,15038,15077,15109,15155,15192,15260,15273,15269,15278,15268,15293,15319,15308,15299,15259,15197,15134,15069,14974,14881,14746,14598,14438,14237,14030,13810,13563,13307,13041,12763,12485,12185,11874,11589,11310,11062,10829,10576,10310,10014,9693,9363,9099,8861,8643,8466,8322,8182,8090,8005,7928,7881,7805,7725,7593,7410,7246,7118,7005,6917,6827,6755,6702,6666,6641,6629,6625,6604,6634,6621,6479,6179,5757,5126,22.1,22.1,22.5,1568653,0.1,12.9,12.0,5.0,468,-1.00,-1.00,58.9680,-19.583341,0.000594,,,,,3 +SATSLF0720,2024246,17.510133,4.14,0.0580,0.1029,0.0187,0.00,16152,656,1,713,705,721,714,715,728,734,734,739,746,730,741,762,887,1213,1938,3093,4464,5697,6645,7277,7755,8178,8633,9146,9773,10515,11390,12393,13495,14675,15841,16960,17916,18649,19085,19205,19031,18650,18123,17501,16951,16496,16129,15912,15845,15927,16189,16594,17177,17922,18834,19895,21117,22432,23875,25356,26834,28261,29521,30522,31261,31683,31673,31345,30695,29778,28726,27497,26317,25154,24093,23080,22221,21489,20885,20394,20002,19721,19550,19458,19470,19577,19761,20022,20375,20805,21344,21909,22535,23204,23842,24453,25019,25499,25867,26123,26180,26065,25785,25304,24665,23930,23135,22267,21389,20539,19770,19067,18405,17851,17382,16963,16641,16403,16218,16136,16082,16112,16216,16373,16585,16883,17258,17673,18157,18715,19342,19973,20668,21380,22139,22874,23601,24308,24963,25553,26117,26536,26861,27105,27209,27218,27136,26921,26597,26217,25704,25152,24548,23909,23267,22594,21949,21313,20695,20100,19532,19051,18578,18181,17805,17469,17184,16906,16663,16479,16269,16080,15874,15702,15531,15397,15291,15177,15113,15022,14990,14969,14969,14961,14982,15019,15049,15097,15133,15184,15231,15253,15258,15273,15269,15287,15307,15291,15297,15246,15184,15109,15048,14981,14865,14720,14583,14410,14215,14019,13795,13565,13298,13020,12741,12462,12161,11858,11593,11317,11072,10829,10593,10327,10021,9681,9376,9083,8839,8624,8447,8305,8174,8072,7995,7935,7877,7810,7723,7576,7393,7243,7120,7011,6921,6818,6759,6708,6680,6656,6644,6628,6609,6631,6622,6478,6167,5741,5138,22.1,22.1,22.5,1568654,0.0,13.0,11.9,5.0,454,-1.00,-1.00,58.1578,-19.209814,0.000543,,,,,40 +SATSLF0720,2024246,17.510386,4.09,0.0573,0.1020,0.0180,0.00,16176,656,1,699,700,712,708,726,720,727,727,723,722,733,728,773,877,1211,1935,3089,4470,5700,6632,7294,7765,8189,8633,9163,9796,10539,11413,12413,13522,14710,15883,16990,17949,18665,19097,19225,19052,18667,18137,17546,16973,16519,16169,15933,15860,15954,16188,16616,17192,17931,18839,19919,21131,22464,23893,25399,26877,28315,29568,30576,31329,31739,31730,31408,30754,29825,28769,27533,26347,25173,24098,23095,22254,21513,20905,20428,20039,19757,19601,19496,19525,19617,19798,20066,20409,20843,21369,21932,22535,23221,23869,24469,25060,25549,25904,26171,26225,26108,25817,25339,24690,23973,23178,22301,21410,20577,19796,19090,18432,17875,17406,16982,16675,16426,16266,16162,16110,16128,16213,16379,16601,16902,17273,17705,18186,18763,19365,20008,20706,21440,22178,22925,23639,24347,24996,25599,26152,26593,26922,27153,27254,27275,27177,26965,26630,26235,25747,25184,24599,23957,23313,22628,21965,21323,20700,20129,19592,19086,18621,18216,17838,17507,17216,16951,16693,16489,16285,16097,15914,15721,15557,15410,15307,15204,15114,15057,15025,15002,14997,15001,15016,15045,15073,15111,15150,15193,15265,15277,15281,15296,15304,15310,15329,15323,15310,15253,15204,15132,15063,14984,14884,14765,14619,14443,14247,14039,13807,13575,13328,13049,12761,12472,12170,11877,11603,11325,11075,10833,10611,10333,10020,9689,9367,9086,8851,8648,8476,8314,8194,8105,8021,7948,7882,7828,7737,7597,7414,7265,7141,7023,6925,6841,6780,6721,6683,6660,6660,6635,6627,6640,6631,6495,6185,5766,5141,22.1,22.1,22.5,1568655,0.2,13.0,11.9,5.0,451,-1.00,-1.00,58.5094,-19.385079,0.000584,,,,,59 +SATSLF0720,2024246,17.510637,4.04,0.0566,0.1035,0.0187,0.00,16135,656,1,705,698,707,713,709,727,722,720,714,727,733,730,766,887,1205,1920,3078,4453,5690,6613,7270,7745,8172,8621,9141,9753,10505,11365,12353,13483,14661,15817,16938,17889,18616,19045,19177,18998,18619,18077,17495,16946,16466,16115,15882,15810,15896,16144,16541,17140,17900,18794,19862,21073,22395,23835,25305,26812,28212,29463,30464,31211,31611,31625,31306,30650,29730,28685,27453,26273,25120,24040,23038,22196,21461,20834,20360,19966,19696,19533,19430,19453,19551,19748,20008,20363,20795,21308,21865,22475,23160,23777,24422,24994,25458,25843,26106,26165,26036,25750,25269,24634,23921,23118,22237,21365,20521,19742,19031,18389,17826,17364,16950,16635,16392,16221,16114,16068,16099,16185,16354,16570,16883,17242,17678,18157,18712,19323,19959,20635,21367,22120,22848,23578,24272,24934,25530,26104,26526,26851,27090,27197,27213,27117,26882,26574,26176,25678,25131,24531,23896,23258,22598,21930,21290,20670,20089,19526,19031,18561,18161,17797,17450,17181,16901,16663,16450,16263,16071,15874,15696,15534,15380,15256,15171,15099,15009,14980,14967,14951,14961,14994,15017,15057,15103,15137,15183,15240,15242,15253,15258,15256,15270,15285,15291,15283,15225,15179,15106,15051,14957,14865,14726,14589,14421,14217,14010,13797,13542,13291,13023,12733,12443,12167,11864,11577,11308,11049,10810,10567,10306,9994,9672,9365,9069,8845,8640,8469,8309,8184,8097,8007,7939,7880,7818,7713,7559,7385,7238,7129,7004,6916,6843,6762,6712,6665,6632,6621,6614,6612,6646,6620,6487,6169,5755,5122,22.1,22.1,22.6,1568656,0.0,12.9,11.9,5.0,454,-1.00,-1.00,58.6628,-19.389213,0.000546,,,,,135 +SATSLF0720,2024246,17.510892,3.99,0.0558,0.1030,0.0190,0.00,16134,656,1,705,701,702,711,726,709,715,713,720,714,742,745,772,889,1211,1933,3079,4445,5699,6623,7275,7745,8168,8632,9133,9757,10501,11369,12373,13485,14658,15821,16933,17890,18608,19055,19192,18992,18619,18091,17513,16946,16478,16119,15874,15827,15886,16144,16553,17142,17901,18801,19873,21088,22393,23836,25315,26805,28214,29469,30480,31227,31625,31634,31310,30648,29737,28695,27474,26285,25122,24044,23030,22193,21464,20845,20353,19971,19688,19531,19450,19440,19541,19735,19998,20350,20781,21301,21871,22497,23162,23821,24437,24997,25475,25818,26101,26144,26009,25740,25261,24631,23905,23106,22245,21377,20522,19765,19060,18396,17834,17365,16960,16624,16386,16207,16114,16075,16094,16183,16341,16577,16872,17236,17654,18149,18713,19321,19968,20646,21371,22103,22868,23574,24276,24960,25537,26097,26516,26837,27080,27183,27195,27105,26891,26561,26177,25682,25113,24530,23891,23242,22570,21915,21293,20673,20081,19529,19039,18554,18159,17789,17454,17171,16893,16661,16458,16257,16062,15868,15681,15529,15383,15280,15170,15095,15021,14973,14963,14964,14968,14993,15021,15042,15095,15120,15174,15223,15249,15243,15249,15267,15279,15306,15312,15296,15237,15160,15099,15042,14949,14845,14717,14569,14387,14212,14017,13802,13561,13297,13029,12740,12436,12151,11843,11555,11276,11056,10805,10574,10307,9987,9671,9371,9065,8826,8624,8448,8300,8165,8078,7982,7916,7865,7797,7707,7581,7409,7246,7108,7005,6887,6822,6756,6701,6666,6641,6653,6644,6619,6630,6625,6471,6169,5729,5115,22.1,22.1,22.6,1568657,0.3,12.9,12.0,5.0,453,-1.00,-1.00,58.8544,-19.474588,0.000547,,,,,65 +SATSLF0720,2024246,17.511144,4.00,0.0560,0.1032,0.0188,0.00,16134,656,1,694,711,714,705,695,699,694,707,712,735,725,752,785,885,1209,1927,3074,4445,5690,6625,7270,7746,8171,8630,9142,9778,10518,11395,12394,13506,14677,15842,16949,17914,18629,19062,19195,19017,18644,18115,17507,16962,16493,16128,15904,15838,15904,16153,16557,17150,17892,18802,19860,21083,22409,23845,25318,26808,28256,29504,30509,31243,31636,31630,31309,30669,29731,28682,27460,26293,25117,24042,23047,22201,21466,20845,20365,19978,19696,19529,19443,19451,19560,19748,20009,20361,20783,21299,21865,22487,23144,23803,24424,24998,25466,25838,26104,26149,26036,25746,25280,24641,23921,23111,22252,21359,20515,19745,19037,18390,17822,17363,16949,16622,16377,16197,16107,16055,16090,16180,16324,16563,16859,17230,17657,18149,18725,19331,19957,20654,21367,22110,22839,23561,24264,24925,25517,26090,26512,26844,27092,27195,27210,27121,26900,26585,26166,25667,25098,24507,23891,23230,22575,21913,21287,20662,20075,19524,19028,18553,18153,17777,17458,17161,16910,16663,16469,16252,16069,15868,15693,15508,15369,15249,15149,15074,15001,14958,14958,14952,14966,14964,14998,15033,15095,15110,15169,15214,15227,15243,15252,15247,15281,15293,15289,15286,15229,15164,15104,15031,14946,14858,14715,14561,14392,14210,14009,13786,13541,13290,13021,12737,12445,12136,11853,11556,11275,11048,10789,10555,10289,10007,9684,9382,9094,8850,8630,8448,8290,8157,8054,7983,7905,7867,7789,7714,7569,7397,7249,7123,7001,6910,6827,6755,6696,6673,6637,6639,6619,6612,6631,6630,6468,6175,5748,5117,22.1,22.1,22.6,1568658,0.0,12.9,11.9,5.0,451,-1.00,-1.00,58.4901,-19.326136,0.000577,,,,,15 +SATSLF0720,2024246,17.511401,4.07,0.0570,0.1047,0.0190,0.00,16103,656,1,710,714,725,723,735,714,731,733,739,731,731,743,778,890,1205,1918,3061,4427,5668,6590,7246,7739,8155,8590,9105,9739,10476,11339,12346,13457,14634,15797,16901,17853,18562,19001,19132,18949,18577,18036,17462,16903,16448,16081,15853,15781,15873,16087,16515,17090,17843,18741,19810,21029,22349,23781,25266,26757,28162,29411,30414,31154,31552,31563,31226,30586,29669,28604,27394,26202,25062,23975,22985,22138,21417,20789,20315,19926,19633,19472,19378,19405,19509,19699,19976,20309,20757,21276,21841,22464,23112,23757,24359,24933,25413,25776,26033,26084,25963,25692,25213,24576,23866,23061,22186,21323,20481,19712,19013,18348,17786,17310,16914,16597,16352,16185,16093,16043,16067,16162,16325,16538,16835,17188,17630,18112,18683,19285,19937,20618,21348,22090,22833,23549,24245,24877,25479,26033,26465,26798,27036,27137,27154,27056,26843,26522,26120,25629,25080,24469,23832,23187,22529,21863,21235,20625,20043,19505,19008,18533,18137,17754,17429,17137,16859,16620,16420,16212,16028,15834,15656,15495,15356,15236,15122,15067,14985,14941,14928,14938,14926,14967,14982,15015,15056,15093,15149,15189,15210,15223,15235,15229,15261,15270,15270,15262,15216,15159,15098,15014,14931,14845,14704,14541,14397,14194,14003,13768,13520,13271,13012,12708,12418,12122,11821,11536,11274,11036,10798,10557,10284,9984,9665,9368,9066,8841,8622,8457,8292,8159,8055,7982,7915,7873,7789,7711,7566,7386,7237,7105,6999,6898,6821,6753,6692,6664,6624,6631,6609,6602,6629,6617,6472,6169,5734,5122,22.1,22.1,22.6,1568659,0.2,12.9,11.9,5.0,443,-1.00,-1.00,58.6994,-19.364056,0.000620,,,,,83 +SATSLF0720,2024246,17.511658,3.96,0.0555,0.1034,0.0181,0.00,16142,656,1,714,714,713,719,739,736,734,741,741,741,747,749,773,902,1208,1926,3096,4451,5695,6633,7273,7752,8178,8633,9158,9771,10514,11374,12372,13497,14650,15827,16941,17890,18624,19058,19184,19010,18633,18092,17495,16938,16482,16114,15881,15826,15902,16150,16553,17138,17888,18791,19849,21077,22376,23838,25333,26804,28232,29477,30482,31242,31626,31636,31302,30651,29725,28672,27462,26280,25120,24032,23049,22196,21461,20864,20375,19981,19697,19529,19435,19452,19553,19750,20009,20357,20796,21316,21878,22495,23162,23819,24420,25003,25477,25829,26107,26172,26048,25757,25282,24653,23925,23125,22241,21374,20524,19754,19051,18394,17825,17379,16967,16652,16393,16229,16114,16083,16093,16189,16348,16583,16889,17248,17677,18160,18733,19336,19981,20666,21402,22132,22874,23581,24293,24950,25537,26098,26524,26846,27092,27210,27213,27127,26922,26585,26186,25687,25106,24528,23877,23248,22589,21917,21301,20683,20091,19540,19035,18567,18154,17796,17450,17169,16912,16669,16469,16282,16080,15877,15697,15513,15395,15273,15165,15104,15026,14981,14979,14965,14981,15005,15021,15053,15092,15127,15170,15213,15235,15239,15249,15265,15285,15308,15319,15309,15242,15206,15129,15064,14973,14862,14727,14585,14405,14221,14008,13800,13573,13301,13024,12757,12450,12157,11865,11582,11306,11053,10821,10583,10310,10002,9691,9373,9079,8849,8637,8455,8315,8185,8084,8000,7931,7888,7810,7728,7586,7417,7250,7122,7005,6925,6837,6772,6713,6679,6658,6653,6633,6634,6647,6633,6484,6169,5737,5114,22.1,22.1,22.6,1568660,0.2,12.9,11.9,5.0,453,-1.00,-1.00,58.8412,-19.466443,0.000588,,,,,49 +SATSLF0720,2024246,17.511910,4.10,0.0574,0.1044,0.0189,0.00,16112,656,1,715,714,707,715,717,719,721,718,728,722,739,745,787,897,1215,1927,3073,4439,5669,6592,7264,7721,8155,8610,9133,9760,10504,11366,12361,13473,14641,15801,16900,17863,18589,19017,19153,18967,18601,18064,17457,16908,16443,16081,15854,15787,15867,16125,16529,17102,17845,18766,19831,21068,22378,23817,25287,26770,28187,29440,30436,31176,31576,31572,31240,30614,29681,28636,27397,26224,25066,23993,23008,22154,21430,20808,20339,19945,19660,19497,19389,19419,19526,19693,19971,20317,20747,21261,21824,22456,23124,23764,24386,24962,25426,25784,26045,26092,25974,25696,25229,24589,23889,23081,22219,21353,20490,19718,19027,18369,17805,17347,16936,16617,16363,16187,16089,16046,16091,16172,16343,16553,16835,17203,17627,18113,18686,19293,19927,20614,21338,22090,22825,23554,24249,24897,25488,26048,26467,26796,27049,27141,27157,27075,26853,26517,26131,25639,25082,24489,23861,23213,22550,21900,21269,20659,20045,19500,18997,18534,18109,17755,17425,17138,16863,16633,16443,16245,16057,15862,15667,15509,15364,15243,15124,15063,14989,14948,14919,14933,14940,14952,14995,15037,15069,15107,15154,15209,15224,15230,15241,15236,15255,15275,15272,15255,15197,15159,15101,15029,14930,14847,14708,14567,14381,14201,13981,13779,13543,13278,13017,12743,12425,12153,11834,11553,11285,11056,10810,10568,10299,9990,9668,9365,9081,8831,8621,8445,8295,8149,8059,7975,7927,7861,7799,7715,7568,7389,7243,7118,7001,6902,6817,6749,6694,6660,6642,6624,6607,6608,6634,6619,6477,6162,5746,5114,22.1,22.2,22.7,1568661,0.1,12.9,12.0,5.0,446,-1.00,-1.00,58.5680,-19.323235,0.000672,,,,,247 +SATSLF0720,2024246,17.512166,4.02,0.0563,0.1048,0.0197,0.00,16088,656,1,711,711,725,721,713,715,721,721,725,724,722,731,770,863,1199,1914,3070,4435,5675,6606,7245,7713,8136,8586,9095,9726,10461,11333,12333,13442,14619,15774,16885,17835,18560,18971,19110,18936,18546,18012,17426,16872,16414,16054,15818,15747,15839,16076,16491,17084,17819,18737,19782,20999,22322,23761,25241,26717,28132,29376,30377,31109,31517,31526,31201,30558,29649,28585,27360,26189,25025,23945,22948,22103,21364,20769,20285,19908,19623,19467,19373,19383,19492,19669,19931,20279,20708,21236,21792,22414,23087,23715,24333,24919,25397,25769,26027,26077,25968,25673,25193,24557,23837,23063,22181,21320,20457,19696,19006,18357,17781,17303,16913,16584,16343,16181,16073,16018,16033,16128,16293,16519,16832,17174,17625,18113,18668,19276,19912,20594,21329,22040,22795,23496,24215,24870,25458,26025,26447,26766,27006,27110,27129,27040,26817,26499,26097,25612,25034,24460,23819,23187,22531,21865,21235,20617,20023,19462,18987,18510,18107,17754,17410,17121,16859,16624,16423,16225,16028,15837,15640,15473,15335,15225,15118,15045,14980,14938,14920,14913,14919,14949,14976,15009,15055,15078,15121,15184,15202,15210,15218,15208,15242,15257,15260,15261,15197,15144,15076,15019,14929,14830,14696,14550,14381,14182,13961,13735,13510,13241,12970,12699,12417,12137,11832,11547,11286,11026,10788,10549,10270,9984,9654,9342,9061,8825,8605,8445,8292,8152,8064,7982,7915,7853,7787,7696,7564,7373,7225,7095,6973,6883,6811,6748,6703,6659,6647,6632,6619,6600,6615,6616,6465,6165,5733,5125,22.1,22.2,22.7,1568662,0.1,12.9,11.9,5.0,453,-1.00,-1.00,59.2652,-19.581788,0.000623,,,,,113 +SATSLF0720,2024246,17.512420,4.04,0.0566,0.1092,0.0228,0.00,15945,656,1,718,710,716,729,722,723,716,727,722,740,728,744,768,881,1198,1902,3037,4377,5597,6501,7145,7612,8014,8465,8976,9589,10327,11186,12157,13251,14413,15562,16646,17600,18310,18747,18881,18697,18330,17799,17219,16662,16212,15861,15657,15609,15669,15901,16299,16881,17610,18501,19560,20758,22062,23497,24942,26404,27818,29053,30036,30778,31174,31187,30860,30216,29317,28276,27067,25907,24762,23699,22718,21861,21146,20554,20080,19700,19434,19261,19186,19194,19300,19483,19741,20085,20519,21024,21568,22199,22861,23505,24116,24681,25146,25521,25781,25817,25720,25414,24962,24337,23632,22844,21974,21115,20275,19520,18841,18169,17623,17154,16754,16437,16187,16037,15943,15899,15896,15997,16165,16384,16665,17040,17463,17954,18520,19114,19740,20419,21155,21872,22603,23305,24009,24658,25250,25789,26241,26558,26793,26903,26913,26826,26616,26288,25893,25404,24843,24258,23634,23000,22348,21704,21061,20472,19883,19347,18829,18375,17989,17617,17284,17005,16732,16494,16299,16096,15910,15713,15525,15361,15218,15112,15019,14941,14870,14827,14815,14826,14823,14849,14869,14909,14941,14959,15011,15075,15092,15105,15112,15142,15148,15160,15166,15145,15095,15026,14971,14903,14822,14734,14585,14451,14286,14103,13883,13685,13445,13180,12905,12628,12339,12039,11750,11456,11195,10955,10725,10474,10210,9921,9608,9291,9010,8772,8553,8387,8231,8105,8008,7932,7869,7817,7758,7673,7518,7333,7183,7060,6949,6859,6764,6697,6643,6619,6597,6591,6566,6562,6580,6575,6420,6118,5702,5082,22.1,22.2,22.7,1568663,0.1,12.9,11.9,5.0,449,-1.00,-1.00,60.1666,-19.751886,0.000604,,,,,100 +SATSLF0720,2024246,17.512672,3.99,0.0559,0.1058,0.0197,0.00,16066,656,1,701,704,705,720,729,723,731,721,735,728,733,743,790,890,1229,1930,3075,4436,5648,6571,7221,7694,8116,8575,9079,9714,10448,11316,12292,13399,14572,15725,16836,17777,18504,18946,19068,18907,18530,17989,17407,16842,16389,16014,15799,15747,15810,16064,16466,17042,17790,18700,19748,20963,22288,23704,25168,26658,28065,29319,30321,31057,31458,31456,31142,30485,29579,28528,27317,26149,24989,23909,22913,22072,21325,20737,20260,19866,19582,19435,19329,19342,19453,19641,19901,20265,20682,21216,21772,22387,23053,23696,24298,24861,25345,25714,25980,26032,25903,25632,25165,24515,23815,23017,22144,21267,20437,19670,18957,18312,17753,17298,16877,16579,16321,16152,16053,16004,16021,16107,16276,16498,16797,17170,17592,18093,18649,19234,19876,20557,21282,22013,22768,23469,24174,24840,25413,25986,26404,26718,26972,27062,27079,27001,26784,26461,26066,25579,25011,24421,23796,23142,22486,21832,21210,20600,20013,19453,18946,18477,18078,17714,17383,17111,16836,16597,16384,16199,15994,15814,15625,15469,15336,15227,15121,15044,14961,14921,14902,14907,14905,14942,14961,15003,15047,15072,15115,15169,15185,15193,15195,15206,15221,15257,15245,15235,15193,15137,15073,14996,14912,14821,14685,14541,14357,14179,13984,13758,13513,13252,12973,12685,12406,12110,11824,11537,11269,11022,10788,10549,10276,9970,9659,9346,9057,8817,8585,8431,8266,8144,8045,7973,7915,7861,7800,7707,7562,7391,7230,7102,6979,6887,6810,6741,6680,6651,6637,6629,6608,6594,6610,6616,6462,6162,5733,5108,22.1,22.2,22.8,1568663,0.3,13.0,12.0,5.0,447,-1.00,-1.00,59.1852,-19.511327,0.000544,,,,,76 +SATSLF0720,2024246,17.512928,4.05,0.0567,0.1051,0.0194,0.00,16081,656,1,715,729,721,727,725,713,712,718,728,739,732,742,775,883,1217,1946,3086,4439,5691,6604,7237,7718,8118,8576,9093,9715,10471,11349,12338,13444,14622,15780,16881,17817,18542,18969,19101,18920,18540,18007,17414,16868,16420,16050,15835,15760,15841,16078,16483,17059,17800,18712,19782,20997,22294,23741,25223,26690,28104,29350,30343,31109,31499,31511,31178,30536,29618,28569,27337,26157,24994,23931,22937,22082,21370,20746,20277,19892,19593,19455,19361,19357,19468,19664,19922,20280,20714,21230,21794,22409,23072,23722,24326,24905,25383,25746,26030,26065,25942,25666,25181,24545,23824,23037,22160,21301,20461,19678,18979,18320,17768,17288,16900,16577,16341,16175,16060,16027,16040,16136,16291,16517,16808,17191,17613,18089,18663,19275,19889,20585,21308,22045,22782,23507,24204,24855,25445,25998,26426,26736,26982,27099,27100,27011,26809,26469,26073,25581,25032,24441,23809,23156,22497,21842,21206,20602,20010,19454,18971,18507,18099,17726,17410,17114,16837,16611,16410,16193,16011,15818,15629,15474,15326,15226,15117,15048,14976,14938,14926,14916,14908,14936,14962,14982,15041,15075,15138,15185,15191,15211,15204,15219,15253,15251,15258,15254,15197,15143,15085,15006,14914,14816,14682,14530,14366,14174,13965,13753,13514,13253,12992,12699,12419,12116,11817,11530,11265,11020,10791,10549,10279,9987,9671,9360,9063,8819,8610,8433,8289,8144,8062,7988,7915,7866,7803,7702,7563,7379,7235,7108,6986,6887,6805,6735,6700,6653,6633,6621,6605,6611,6613,6619,6469,6163,5736,5122,22.1,22.2,22.8,1568664,0.1,12.9,11.9,5.0,448,-1.00,-1.00,58.8646,-19.400102,0.000583,,,,,138 +SATSLF0720,2024246,17.513182,4.21,0.0590,0.1056,0.0198,0.00,16066,656,1,714,713,715,721,724,730,729,733,727,739,740,757,772,903,1205,1920,3077,4421,5658,6592,7226,7709,8123,8579,9093,9712,10453,11319,12307,13420,14598,15737,16845,17803,18512,18939,19072,18887,18519,17997,17399,16859,16405,16048,15824,15742,15819,16058,16481,17056,17800,18706,19765,20973,22283,23724,25186,26673,28075,29317,30329,31063,31454,31464,31141,30502,29584,28541,27321,26133,24978,23910,22907,22071,21366,20744,20249,19857,19574,19431,19339,19347,19455,19640,19895,20237,20677,21197,21768,22373,23051,23703,24309,24889,25361,25725,25977,26043,25909,25634,25160,24525,23800,23012,22147,21283,20444,19668,18969,18337,17765,17305,16903,16584,16314,16155,16042,15998,16017,16119,16273,16497,16794,17181,17577,18073,18645,19249,19863,20551,21289,22029,22765,23477,24180,24833,25418,25980,26413,26736,26962,27068,27097,27001,26785,26471,26060,25586,25014,24417,23778,23122,22479,21821,21187,20594,19989,19454,18965,18500,18094,17724,17403,17108,16838,16595,16401,16182,15997,15816,15617,15463,15301,15206,15109,15028,14958,14924,14893,14897,14905,14931,14953,15002,15029,15069,15130,15168,15186,15182,15174,15198,15210,15252,15229,15233,15181,15121,15071,14978,14909,14810,14673,14525,14361,14164,13959,13756,13509,13258,12981,12694,12412,12110,11818,11526,11266,11006,10772,10553,10274,9975,9663,9352,9060,8811,8599,8424,8277,8149,8045,7979,7901,7850,7803,7693,7553,7378,7227,7084,6973,6873,6792,6728,6685,6656,6632,6630,6608,6593,6618,6610,6437,6146,5726,5110,22.1,22.2,22.8,1568665,0.1,12.9,12.0,5.0,447,-1.00,-1.00,58.2784,-19.137670,0.000510,,,,,35 +SATSLF0720,2024246,17.513433,3.94,0.0551,0.1066,0.0211,0.00,16019,656,1,700,713,713,707,732,700,730,732,732,733,725,747,769,876,1213,1902,3055,4412,5633,6567,7193,7683,8093,8540,9040,9663,10395,11278,12258,13354,14536,15684,16773,17709,18432,18868,19010,18826,18467,17931,17344,16790,16320,15957,15754,15677,15763,16013,16417,16997,17725,18625,19677,20877,22190,23613,25085,26553,27956,29198,30199,30946,31353,31356,31044,30408,29488,28442,27225,26054,24905,23841,22830,21987,21249,20663,20197,19809,19537,19371,19296,19305,19389,19584,19828,20181,20610,21129,21687,22309,22969,23625,24216,24800,25273,25641,25906,25963,25846,25563,25090,24453,23741,22944,22090,21216,20366,19607,18898,18278,17714,17253,16846,16522,16280,16109,16003,15959,15986,16061,16245,16454,16762,17125,17536,18031,18583,19199,19819,20499,21215,21959,22699,23413,24116,24777,25362,25921,26327,26643,26903,27010,27034,26944,26737,26394,26007,25497,24941,24361,23721,23072,22427,21756,21143,20546,19958,19412,18924,18424,18043,17669,17358,17061,16797,16565,16358,16152,15953,15755,15591,15421,15289,15161,15072,14986,14910,14887,14873,14871,14893,14909,14942,14965,14997,15031,15092,15137,15143,15156,15170,15168,15194,15212,15198,15198,15151,15093,15029,14958,14871,14788,14653,14509,14341,14145,13929,13717,13490,13218,12945,12677,12379,12073,11785,11500,11228,10985,10747,10512,10254,9962,9636,9328,9034,8791,8581,8403,8267,8133,8034,7954,7882,7835,7778,7685,7532,7359,7211,7077,6972,6873,6789,6733,6673,6638,6618,6600,6599,6582,6605,6605,6464,6149,5705,5105,22.1,22.3,22.8,1568666,0.1,12.9,12.0,5.0,441,-1.00,-1.00,59.6729,-19.650890,0.000491,,,,,233 +SATSLF0720,2024246,17.513692,4.10,0.0574,0.1078,0.0215,0.00,16007,656,1,697,712,694,717,714,717,738,725,735,740,744,739,781,888,1202,1913,3057,4392,5628,6554,7198,7678,8091,8557,9074,9678,10406,11272,12255,13351,14519,15673,16779,17717,18430,18861,18996,18807,18432,17908,17340,16790,16338,15972,15748,15680,15757,16010,16405,16979,17725,18602,19667,20871,22178,23598,25082,26550,27968,29211,30209,30945,31334,31341,31005,30371,29467,28413,27202,26044,24889,23824,22826,21971,21245,20648,20167,19781,19502,19353,19244,19271,19371,19558,19820,20167,20602,21113,21681,22305,22962,23600,24215,24795,25287,25642,25888,25927,25820,25536,25069,24426,23723,22920,22061,21191,20346,19607,18905,18252,17703,17226,16818,16500,16253,16080,15991,15938,15965,16060,16222,16445,16733,17094,17528,18002,18562,19182,19809,20503,21218,21944,22691,23400,24101,24752,25349,25898,26317,26626,26880,26966,26992,26894,26696,26370,25977,25488,24939,24340,23703,23052,22407,21768,21133,20518,19934,19383,18889,18432,18014,17664,17329,17047,16769,16541,16338,16133,15955,15766,15581,15418,15281,15173,15057,14983,14905,14874,14854,14850,14861,14877,14922,14953,15009,15025,15077,15133,15142,15148,15149,15147,15173,15189,15194,15186,15136,15081,15016,14948,14853,14762,14635,14482,14314,14120,13922,13691,13467,13200,12944,12657,12371,12078,11782,11493,11241,10985,10733,10503,10238,9931,9610,9310,9020,8786,8565,8404,8246,8135,8022,7935,7879,7833,7765,7664,7515,7355,7207,7085,6961,6872,6789,6720,6662,6627,6615,6603,6589,6580,6592,6583,6429,6141,5713,5100,22.1,22.3,22.8,1568667,0.3,12.9,12.0,5.0,448,-1.00,-1.00,59.0316,-19.374253,0.000519,,,,,91 +SATSLF0720,2024246,17.513945,4.16,0.0582,0.1067,0.0205,0.00,16050,656,1,716,706,721,707,711,725,730,725,742,722,743,750,786,897,1215,1938,3078,4425,5671,6588,7230,7697,8119,8558,9074,9699,10451,11306,12314,13414,14586,15739,16838,17765,18489,18924,19055,18876,18485,17965,17377,16821,16370,16002,15774,15718,15802,16058,16459,17033,17774,18673,19733,20935,22268,23701,25174,26634,28037,29289,30288,31029,31429,31432,31116,30481,29550,28493,27268,26099,24952,23882,22887,22029,21303,20701,20228,19829,19562,19401,19294,19316,19421,19607,19874,20225,20666,21182,21746,22365,23017,23671,24273,24853,25325,25694,25953,26005,25880,25602,25144,24505,23781,23002,22118,21261,20408,19637,18941,18300,17737,17267,16864,16566,16317,16132,16025,15992,15997,16093,16245,16474,16767,17143,17561,18037,18619,19216,19851,20534,21265,21993,22736,23448,24139,24823,25410,25960,26387,26726,26944,27059,27061,26968,26749,26418,26017,25538,24970,24408,23758,23130,22489,21803,21195,20570,19984,19426,18952,18473,18074,17701,17375,17087,16808,16582,16378,16169,15992,15799,15613,15460,15301,15203,15085,15019,14937,14903,14885,14868,14885,14907,14932,14987,15016,15058,15092,15155,15177,15177,15189,15195,15212,15235,15229,15218,15184,15117,15049,14983,14906,14808,14661,14521,14343,14171,13957,13743,13513,13245,12982,12693,12401,12108,11814,11517,11248,11000,10773,10539,10272,9959,9637,9334,9041,8802,8607,8431,8288,8153,8048,7975,7901,7853,7775,7704,7553,7375,7223,7090,6973,6873,6805,6737,6679,6642,6627,6623,6615,6594,6620,6602,6445,6155,5712,5113,22.2,22.3,22.9,1568668,0.2,12.9,11.9,5.0,448,-1.00,-1.00,58.7251,-19.301714,0.000618,,,,,42 +SATSLF0720,2024246,17.514196,4.23,0.0592,0.1069,0.0204,0.00,16033,656,1,723,725,720,737,725,732,732,733,736,739,741,743,779,889,1197,1919,3067,4422,5657,6564,7206,7699,8118,8573,9074,9706,10430,11291,12283,13380,14559,15702,16803,17753,18450,18880,19014,18837,18458,17943,17362,16801,16359,15997,15765,15702,15777,16026,16425,16997,17751,18630,19694,20921,22237,23661,25115,26597,27986,29238,30236,30996,31381,31385,31053,30406,29500,28457,27222,26054,24904,23842,22841,22002,21285,20680,20193,19804,19530,19378,19284,19297,19402,19587,19837,20199,20644,21142,21708,22331,22983,23619,24227,24813,25278,25665,25914,25979,25843,25587,25101,24475,23753,22969,22102,21237,20391,19640,18934,18268,17719,17248,16848,16535,16281,16114,16006,15977,15996,16073,16258,16472,16773,17141,17557,18052,18617,19213,19849,20534,21255,21993,22736,23429,24124,24785,25367,25930,26354,26673,26913,27024,27044,26941,26739,26409,26011,25531,24963,24388,23744,23089,22453,21792,21160,20553,19970,19394,18915,18434,18048,17677,17371,17070,16811,16569,16373,16176,15977,15773,15594,15428,15294,15177,15079,15023,14924,14890,14885,14885,14887,14913,14929,14979,15017,15040,15104,15152,15160,15168,15178,15177,15216,15238,15221,15220,15165,15107,15051,14976,14885,14795,14661,14507,14340,14148,13924,13724,13487,13223,12976,12698,12405,12109,11810,11529,11263,11003,10774,10534,10254,9958,9640,9324,9045,8811,8598,8430,8277,8134,8043,7977,7898,7849,7793,7693,7553,7372,7220,7090,6972,6865,6802,6729,6668,6647,6617,6616,6597,6586,6595,6601,6451,6143,5723,5105,22.1,22.4,22.9,1568669,0.3,12.9,11.9,5.0,448,-1.00,-1.00,58.4202,-19.143256,0.000576,,,,,237 +SATSLF0720,2024246,17.514452,4.12,0.0577,0.1073,0.0215,0.00,16017,656,1,705,705,715,714,712,719,717,723,725,735,745,753,785,896,1223,1932,3083,4417,5643,6554,7204,7682,8087,8544,9068,9688,10419,11282,12263,13370,14529,15671,16788,17734,18433,18886,19009,18818,18436,17915,17330,16781,16325,15972,15745,15689,15764,16009,16427,16997,17733,18626,19689,20888,22189,23616,25090,26558,27959,29223,30188,30938,31346,31357,31029,30386,29469,28441,27209,26044,24876,23821,22820,21992,21255,20656,20184,19796,19513,19352,19266,19277,19367,19553,19838,20183,20614,21133,21698,22313,22973,23611,24231,24793,25259,25614,25885,25934,25815,25530,25073,24452,23733,22946,22071,21223,20379,19613,18917,18254,17706,17237,16826,16544,16266,16103,16011,15960,15970,16081,16230,16452,16744,17101,17525,18013,18587,19177,19826,20488,21219,21965,22698,23409,24116,24752,25352,25909,26322,26645,26889,27008,27009,26935,26698,26383,25985,25491,24935,24355,23710,23074,22409,21747,21142,20532,19941,19411,18906,18439,18039,17671,17348,17057,16773,16541,16342,16149,15953,15776,15596,15435,15289,15173,15067,15008,14916,14887,14870,14854,14867,14893,14910,14953,15000,15026,15085,15144,15149,15160,15173,15175,15200,15220,15209,15199,15143,15101,15015,14962,14868,14781,14653,14493,14326,14141,13945,13714,13475,13213,12947,12672,12382,12090,11804,11502,11244,10993,10743,10503,10247,9953,9626,9320,9044,8801,8593,8425,8269,8127,8036,7959,7885,7830,7776,7685,7554,7382,7208,7090,6969,6877,6798,6733,6676,6642,6619,6616,6609,6600,6611,6606,6449,6153,5733,5105,22.1,22.4,22.9,1568670,0.0,12.9,12.0,5.0,446,-1.00,-1.00,58.9353,-19.340750,0.000520,,,,,52 +SATSDF0720,2024246,17.759139,0.00,0.0000,0.0000,0.0000,0.00,657,0,1,650,644,634,648,637,633,633,629,648,645,645,630,627,642,640,641,635,627,631,637,645,648,649,672,662,662,660,655,663,677,665,664,654,647,653,649,658,645,650,650,669,667,663,678,677,670,660,666,662,658,658,670,665,662,665,678,665,666,661,657,663,657,650,659,661,671,677,653,664,666,670,661,664,657,663,657,649,659,663,650,663,663,664,663,668,667,649,651,638,652,658,644,653,666,666,669,649,667,660,651,659,666,660,666,677,650,663,661,675,657,661,664,649,647,639,647,649,652,658,660,653,658,658,657,651,651,657,651,661,653,659,660,661,652,647,669,643,651,653,666,656,653,662,662,656,651,660,657,658,645,645,651,661,654,649,668,658,664,647,663,669,656,661,653,653,645,655,655,653,653,653,659,663,673,660,670,657,660,653,657,665,673,657,660,663,669,661,654,653,651,650,645,656,642,643,655,659,653,664,673,679,665,662,666,661,661,659,674,661,669,647,664,650,647,646,651,650,649,642,641,659,657,661,665,652,664,667,670,665,673,659,659,667,646,654,658,650,654,677,669,668,674,675,661,657,646,655,661,653,666,658,660,648,659,655,499,0.0,0.0,0.0,1568669,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,251 +SATSLF0720,2024246,17.759694,3.99,0.0559,0.1011,0.0171,0.00,16202,657,1,709,701,713,716,725,727,729,726,737,730,738,745,783,893,1223,1937,3096,4477,5724,6664,7309,7801,8221,8669,9201,9818,10573,11436,12439,13562,14742,15914,17026,17994,18725,19149,19289,19111,18725,18194,17598,17024,16574,16203,15972,15901,15989,16244,16661,17241,17970,18873,19971,21186,22513,23962,25449,26932,28375,29634,30628,31389,31805,31786,31477,30836,29900,28841,27609,26406,25239,24160,23154,22304,21563,20950,20456,20066,19790,19629,19533,19557,19656,19833,20092,20446,20881,21386,21967,22599,23280,23922,24536,25094,25575,25943,26193,26268,26130,25855,25383,24750,24005,23219,22334,21456,20603,19833,19114,18455,17893,17412,17003,16691,16446,16287,16186,16133,16148,16243,16394,16618,16912,17283,17724,18232,18784,19383,20043,20733,21464,22202,22959,23666,24379,25038,25633,26203,26626,26946,27195,27306,27317,27223,27005,26674,26285,25781,25211,24624,23989,23337,22674,22012,21371,20752,20152,19592,19092,18624,18213,17852,17522,17226,16956,16717,16517,16316,16118,15931,15733,15556,15425,15315,15214,15142,15072,15037,15010,15014,15017,15026,15069,15105,15133,15172,15213,15263,15270,15282,15293,15293,15313,15333,15346,15333,15296,15221,15162,15087,15004,14915,14764,14617,14445,14245,14039,13821,13585,13341,13060,12784,12472,12179,11889,11597,11329,11087,10844,10601,10339,10041,9705,9402,9111,8861,8668,8492,8325,8179,8087,8018,7942,7893,7822,7739,7586,7418,7258,7139,7014,6926,6841,6796,6722,6683,6667,6659,6651,6629,6651,6633,6484,6170,5760,5146,22.0,22.0,22.3,1568670,0.6,12.9,12.0,5.0,568,-1.00,-1.00,58.4458,-19.399522,0.000530,,,,,105 +SATSLF0720,2024246,17.759875,3.86,0.0540,0.1010,0.0173,0.00,16198,657,1,695,677,699,695,701,715,713,727,721,711,743,757,784,889,1220,1942,3100,4471,5719,6642,7302,7781,8198,8667,9187,9808,10566,11445,12433,13565,14753,15920,17058,18001,18728,19166,19301,19109,18722,18203,17609,17041,16554,16193,15989,15894,15978,16230,16633,17216,17966,18893,19962,21194,22517,23964,25456,26932,28352,29625,30633,31373,31792,31785,31469,30818,29891,28838,27597,26402,25240,24166,23165,22312,21569,20953,20465,20065,19790,19627,19538,19530,19645,19822,20091,20446,20883,21399,21979,22596,23257,23903,24523,25095,25569,25954,26213,26258,26123,25847,25370,24717,24016,23210,22320,21452,20608,19824,19129,18450,17897,17434,17009,16674,16443,16268,16171,16135,16157,16237,16401,16638,16917,17299,17737,18225,18777,19403,20032,20723,21456,22194,22930,23654,24373,25030,25627,26196,26630,26946,27195,27293,27301,27207,26986,26654,26276,25784,25222,24614,23991,23342,22688,21994,21357,20739,20136,19581,19094,18621,18218,17842,17530,17230,16964,16722,16516,16309,16116,15921,15726,15565,15421,15319,15230,15147,15055,15036,14999,14998,15014,15025,15049,15086,15127,15170,15210,15262,15270,15281,15301,15296,15314,15337,15349,15330,15280,15223,15156,15068,15009,14912,14762,14609,14437,14250,14041,13829,13589,13326,13056,12784,12474,12179,11889,11602,11326,11077,10817,10593,10312,10016,9714,9389,9110,8872,8662,8485,8312,8183,8096,7998,7933,7885,7818,7717,7590,7407,7255,7135,7009,6917,6839,6769,6727,6674,6657,6651,6641,6626,6654,6637,6485,6170,5745,5133,22.0,22.0,22.4,1568671,0.2,12.9,12.0,5.0,460,-1.00,-1.00,58.7801,-19.533814,0.000601,,,,,39 +SATSLF0720,2024246,17.760134,3.84,0.0538,0.1016,0.0175,0.00,16192,657,1,693,694,695,707,721,716,730,727,733,730,729,737,765,900,1209,1943,3104,4466,5723,6644,7292,7789,8196,8659,9181,9816,10568,11450,12437,13555,14727,15907,17024,17991,18709,19146,19285,19084,18723,18190,17585,17019,16567,16193,15962,15892,15957,16195,16630,17202,17960,18878,19950,21158,22507,23950,25425,26909,28347,29605,30594,31362,31777,31768,31442,30797,29874,28814,27575,26388,25228,24144,23130,22272,21533,20916,20434,20063,19769,19611,19515,19533,19624,19824,20086,20433,20861,21394,21954,22577,23244,23889,24506,25064,25563,25923,26189,26246,26116,25840,25364,24720,23995,23208,22329,21456,20609,19826,19114,18459,17901,17425,17012,16698,16437,16263,16166,16129,16133,16227,16396,16625,16929,17301,17714,18221,18792,19400,20029,20714,21450,22181,22933,23653,24354,25005,25611,26177,26601,26945,27170,27270,27297,27211,26986,26664,26259,25760,25195,24609,23985,23318,22656,21984,21354,20747,20132,19579,19097,18629,18202,17836,17517,17224,16954,16711,16506,16290,16113,15933,15736,15571,15425,15308,15197,15134,15073,15030,15015,15000,15015,15037,15039,15089,15122,15160,15205,15264,15280,15284,15304,15307,15313,15339,15335,15334,15274,15222,15150,15079,14995,14906,14772,14617,14441,14257,14048,13818,13584,13310,13050,12766,12473,12181,11877,11595,11309,11079,10826,10581,10311,10035,9696,9407,9118,8878,8658,8489,8317,8192,8090,8007,7932,7889,7832,7736,7581,7415,7252,7135,7010,6921,6841,6787,6729,6687,6655,6648,6650,6616,6643,6649,6483,6180,5744,5138,22.0,22.1,22.5,1568672,0.0,13.0,11.9,5.0,457,-1.00,-1.00,58.9290,-19.582872,0.000608,,,,,68 +SATSLF0720,2024246,17.760386,3.97,0.0556,0.1026,0.0178,0.00,16164,657,1,698,701,705,702,703,718,724,740,737,758,750,753,770,883,1208,1930,3110,4454,5704,6635,7280,7763,8197,8634,9163,9771,10510,11392,12394,13503,14690,15858,16972,17928,18649,19093,19217,19035,18669,18123,17537,16965,16506,16141,15920,15845,15930,16181,16589,17173,17925,18824,19887,21117,22442,23891,25365,26853,28273,29538,30542,31293,31697,31696,31362,30730,29801,28758,27498,26329,25164,24082,23086,22241,21510,20901,20401,20010,19732,19560,19468,19486,19586,19785,20032,20391,20824,21350,21920,22532,23208,23846,24455,25047,25512,25875,26152,26188,26075,25801,25326,24680,23953,23155,22292,21409,20558,19798,19081,18432,17857,17384,16983,16653,16410,16251,16152,16100,16125,16219,16377,16603,16912,17265,17687,18178,18753,19349,20003,20692,21429,22154,22898,23608,24297,24985,25553,26143,26580,26881,27133,27242,27261,27174,26953,26624,26209,25715,25159,24565,23929,23281,22629,21963,21315,20717,20098,19553,19063,18581,18192,17821,17483,17185,16923,16689,16480,16281,16085,15905,15717,15546,15399,15293,15170,15109,15032,14993,14970,14978,14974,15001,15027,15063,15111,15146,15190,15261,15261,15275,15283,15286,15299,15313,15309,15304,15253,15186,15137,15066,14986,14894,14750,14611,14435,14225,14021,13809,13568,13312,13045,12763,12455,12167,11875,11577,11307,11061,10814,10597,10329,10028,9705,9393,9100,8850,8645,8468,8312,8190,8086,8013,7939,7898,7830,7737,7610,7413,7255,7134,7020,6913,6850,6786,6721,6693,6667,6647,6635,6633,6641,6637,6468,6174,5749,5126,22.1,22.1,22.5,1568673,0.4,12.9,11.9,5.0,455,-1.00,-1.00,58.8767,-19.518760,0.000577,,,,,57 +SATSLF0720,2024246,17.760643,4.13,0.0578,0.1029,0.0181,0.00,16150,657,1,717,705,727,713,715,729,723,723,723,733,725,734,772,885,1210,1939,3096,4456,5699,6643,7285,7757,8192,8632,9150,9774,10522,11401,12384,13496,14682,15848,16956,17896,18644,19061,19194,19019,18636,18091,17505,16946,16483,16139,15912,15849,15922,16166,16582,17170,17906,18810,19882,21085,22416,23850,25329,26832,28253,29505,30513,31257,31671,31662,31338,30683,29767,28716,27478,26306,25147,24060,23077,22218,21483,20868,20385,19988,19709,19553,19456,19480,19586,19782,20037,20393,20809,21335,21889,22513,23177,23818,24439,25018,25506,25861,26126,26177,26036,25775,25282,24640,23929,23122,22257,21389,20541,19773,19060,18417,17860,17386,16989,16649,16407,16243,16136,16089,16105,16183,16359,16584,16877,17245,17672,18165,18731,19335,19975,20665,21389,22145,22876,23597,24302,24956,25559,26128,26548,26876,27130,27234,27229,27140,26929,26601,26183,25692,25108,24525,23915,23273,22597,21943,21320,20685,20103,19542,19047,18565,18159,17800,17469,17181,16904,16667,16466,16262,16081,15877,15694,15525,15385,15267,15170,15103,15025,14990,14978,14960,14976,14997,15032,15048,15089,15124,15177,15218,15245,15256,15272,15286,15294,15304,15298,15299,15241,15191,15128,15061,14979,14880,14744,14592,14413,14221,14020,13792,13557,13301,13028,12757,12456,12171,11861,11567,11302,11049,10805,10562,10303,10013,9686,9373,9095,8845,8637,8470,8309,8181,8073,7992,7933,7882,7814,7729,7579,7413,7259,7125,7031,6925,6840,6774,6705,6679,6666,6637,6632,6611,6635,6629,6480,6173,5741,5123,22.1,22.1,22.5,1568674,0.3,12.9,11.9,5.0,446,-1.00,-1.00,58.3524,-19.281524,0.000516,,,,,205 +SATSLF0720,2024246,17.760901,4.01,0.0562,0.1029,0.0178,0.00,16164,657,1,695,708,697,701,709,715,712,715,736,729,737,748,784,888,1212,1936,3093,4474,5704,6649,7283,7774,8188,8651,9179,9793,10551,11417,12414,13540,14715,15882,16985,17933,18661,19099,19245,19055,18671,18140,17551,16980,16523,16160,15937,15861,15939,16197,16604,17185,17922,18845,19913,21133,22451,23906,25385,26872,28302,29555,30563,31305,31703,31717,31377,30739,29805,28756,27537,26344,25173,24091,23099,22234,21499,20902,20407,20018,19729,19563,19455,19467,19591,19780,20037,20395,20832,21361,21924,22535,23203,23850,24462,25047,25508,25872,26144,26186,26078,25796,25321,24694,23973,23158,22290,21408,20570,19798,19085,18422,17847,17403,16978,16665,16421,16243,16139,16100,16099,16203,16371,16601,16907,17276,17693,18171,18743,19351,19993,20674,21412,22155,22888,23623,24317,24983,25569,26135,26556,26893,27130,27226,27248,27152,26945,26613,26205,25725,25153,24565,23924,23275,22609,21949,21318,20708,20110,19560,19061,18584,18177,17815,17482,17201,16928,16698,16480,16292,16085,15885,15704,15541,15389,15288,15175,15106,15037,14980,14969,14973,14969,15009,15020,15066,15109,15145,15189,15241,15255,15265,15271,15283,15292,15316,15315,15303,15262,15213,15137,15068,14977,14875,14737,14583,14419,14228,14017,13813,13558,13303,13047,12765,12445,12159,11858,11571,11313,11053,10814,10578,10314,10013,9691,9377,9095,8850,8639,8474,8306,8161,8071,7997,7917,7879,7809,7717,7571,7401,7242,7124,7008,6911,6840,6781,6717,6677,6657,6643,6618,6616,6637,6635,6480,6174,5748,5132,22.1,22.1,22.6,1568675,0.4,12.9,12.0,5.0,455,-1.00,-1.00,58.5184,-19.379685,0.000546,,,,,244 +SATSLF0720,2024246,17.761153,4.14,0.0579,0.1038,0.0188,0.00,16115,657,1,681,703,708,713,709,721,711,717,723,726,724,733,768,887,1197,1916,3069,4439,5680,6626,7265,7738,8171,8609,9121,9741,10484,11351,12340,13462,14631,15790,16902,17872,18600,19018,19154,18969,18586,18064,17468,16919,16464,16091,15875,15811,15868,16130,16546,17133,17881,18778,19837,21049,22362,23805,25275,26775,28183,29457,30448,31204,31598,31605,31267,30632,29721,28669,27418,26231,25091,24009,23019,22165,21420,20821,20333,19947,19674,19510,19417,19418,19518,19707,19970,20331,20759,21278,21854,22465,23131,23792,24403,24964,25434,25815,26088,26114,26011,25733,25242,24611,23892,23083,22210,21350,20490,19726,19026,18373,17820,17349,16936,16606,16351,16179,16084,16056,16072,16161,16323,16545,16848,17207,17649,18138,18695,19305,19940,20613,21361,22085,22843,23553,24262,24904,25501,26069,26502,26810,27047,27160,27159,27079,26858,26525,26141,25648,25072,24498,23851,23211,22565,21906,21273,20660,20064,19499,19008,18538,18140,17767,17430,17146,16872,16635,16436,16235,16045,15835,15671,15494,15344,15232,15141,15069,14990,14953,14948,14950,14945,14976,14996,15033,15056,15091,15137,15200,15218,15221,15241,15249,15251,15279,15273,15261,15226,15166,15105,15017,14920,14839,14717,14553,14391,14201,13991,13773,13537,13269,12997,12711,12425,12149,11840,11573,11290,11048,10795,10569,10287,9980,9650,9347,9056,8804,8612,8444,8285,8152,8069,7983,7922,7862,7797,7707,7566,7396,7249,7130,7008,6906,6825,6748,6687,6655,6641,6613,6599,6594,6624,6609,6456,6151,5732,5111,22.1,22.1,22.6,1568676,0.1,12.9,12.0,5.0,451,-1.00,-1.00,58.5257,-19.316153,0.000563,,,,,151 +SATSLF0720,2024246,17.761410,4.11,0.0575,0.1044,0.0187,0.00,16109,657,1,702,706,715,716,717,721,721,724,729,728,734,736,763,882,1192,1913,3083,4446,5685,6610,7262,7727,8161,8614,9126,9741,10495,11361,12353,13450,14641,15802,16900,17859,18587,19026,19149,18957,18583,18046,17462,16903,16443,16078,15877,15800,15894,16122,16549,17121,17861,18756,19817,21029,22349,23795,25275,26746,28160,29429,30419,31176,31570,31581,31258,30593,29688,28628,27402,26233,25067,24003,23002,22135,21409,20777,20311,19922,19641,19489,19393,19421,19522,19707,19976,20309,20745,21268,21825,22447,23116,23769,24378,24954,25429,25792,26056,26094,25982,25713,25216,24594,23874,23081,22210,21354,20493,19726,19010,18368,17797,17335,16917,16584,16343,16181,16083,16037,16063,16160,16325,16545,16839,17219,17640,18121,18688,19294,19934,20624,21341,22097,22829,23552,24246,24898,25496,26056,26493,26797,27041,27136,27157,27064,26829,26507,26119,25643,25077,24493,23851,23211,22544,21896,21262,20642,20053,19505,19009,18546,18125,17758,17441,17145,16881,16636,16423,16229,16041,15837,15650,15490,15365,15248,15149,15063,14992,14954,14939,14947,14945,14973,14987,15037,15069,15092,15147,15200,15213,15226,15229,15239,15262,15285,15285,15271,15225,15157,15110,15025,14945,14861,14710,14558,14382,14193,13992,13762,13543,13265,13002,12709,12425,12126,11840,11557,11293,11037,10795,10566,10293,9995,9653,9349,9057,8818,8620,8445,8286,8155,8058,7984,7921,7877,7813,7711,7571,7389,7235,7109,6989,6893,6816,6749,6708,6661,6633,6617,6611,6613,6631,6621,6468,6173,5741,5117,22.1,22.1,22.6,1568677,0.3,13.0,11.9,5.0,451,-1.00,-1.00,58.4607,-19.274530,0.000534,,,,,87 +SATSLF0720,2024246,17.761664,4.03,0.0565,0.1039,0.0188,0.00,16113,657,1,712,718,711,702,715,720,741,729,743,747,747,748,787,895,1207,1927,3088,4444,5690,6619,7259,7735,8149,8601,9130,9738,10477,11351,12353,13464,14652,15793,16907,17859,18588,19017,19149,18967,18594,18053,17464,16906,16452,16075,15859,15792,15872,16129,16531,17115,17867,18761,19831,21026,22349,23790,25269,26760,28172,29430,30429,31176,31581,31574,31241,30601,29685,28647,27403,26234,25081,23991,23003,22144,21406,20800,20330,19933,19646,19508,19413,19435,19530,19712,19974,20318,20746,21270,21831,22443,23122,23773,24370,24951,25432,25794,26058,26098,25984,25713,25222,24609,23881,23086,22215,21357,20500,19721,19002,18371,17796,17327,16923,16599,16371,16194,16099,16073,16084,16171,16327,16548,16834,17201,17634,18128,18688,19309,19951,20617,21357,22091,22829,23550,24245,24906,25488,26057,26492,26797,27040,27147,27169,27068,26859,26535,26142,25650,25078,24497,23857,23205,22562,21892,21265,20648,20060,19496,19003,18519,18118,17757,17425,17150,16877,16637,16441,16237,16046,15864,15669,15493,15345,15239,15133,15059,14993,14971,14945,14928,14944,14983,15003,15035,15080,15100,15150,15196,15202,15219,15225,15240,15255,15281,15281,15266,15228,15160,15105,15030,14946,14854,14713,14578,14405,14216,14004,13786,13520,13262,12997,12714,12435,12133,11839,11564,11290,11043,10795,10569,10289,9984,9672,9349,9078,8829,8621,8451,8298,8172,8069,7999,7929,7883,7819,7726,7573,7401,7242,7124,6993,6907,6824,6750,6705,6664,6647,6630,6614,6610,6626,6605,6462,6142,5735,5113,22.1,22.1,22.6,1568678,0.0,13.0,11.9,5.0,451,-1.00,-1.00,58.8028,-19.418550,0.000549,,,,,95 +SATSLF0720,2024246,17.761916,4.08,0.0571,0.1048,0.0193,0.00,16089,657,1,706,702,723,721,725,721,727,721,729,737,734,750,777,886,1211,1926,3083,4446,5683,6605,7248,7729,8153,8585,9095,9731,10466,11333,12334,13444,14612,15776,16871,17820,18540,18971,19107,18925,18557,18012,17441,16876,16421,16059,15834,15769,15837,16093,16489,17069,17813,18723,19778,21004,22322,23765,25228,26715,28146,29377,30369,31110,31514,31512,31190,30541,29635,28586,27354,26176,25035,23953,22957,22112,21380,20769,20286,19903,19622,19468,19376,19390,19494,19691,19932,20277,20714,21232,21803,22421,23077,23721,24336,24914,25387,25762,26013,26072,25946,25667,25190,24557,23837,23046,22178,21312,20464,19690,18987,18333,17792,17321,16913,16591,16347,16173,16064,16015,16041,16136,16295,16533,16821,17189,17618,18090,18671,19286,19905,20587,21315,22066,22782,23504,24206,24864,25449,26022,26453,26768,27013,27101,27128,27017,26817,26498,26101,25613,25054,24461,23820,23164,22510,21863,21230,20610,20023,19457,18978,18493,18107,17737,17410,17123,16853,16615,16420,16213,16023,15835,15659,15489,15339,15225,15132,15047,14983,14946,14921,14924,14917,14951,14971,15013,15054,15081,15142,15195,15213,15204,15219,15235,15249,15267,15283,15254,15204,15141,15088,15002,14927,14830,14697,14549,14385,14184,13968,13762,13518,13259,12994,12710,12420,12127,11834,11545,11275,11031,10795,10558,10286,9976,9660,9349,9054,8833,8612,8440,8279,8157,8062,7982,7913,7859,7787,7693,7557,7382,7222,7105,6990,6894,6814,6757,6689,6669,6653,6629,6615,6625,6626,6619,6461,6161,5726,5110,22.1,22.2,22.6,1568679,0.1,12.9,12.0,5.0,450,-1.00,-1.00,58.7947,-19.380818,0.000591,,,,,147 +SATSLF0720,2024246,17.762172,3.97,0.0556,0.1042,0.0196,0.00,16102,657,1,717,714,718,711,728,722,727,721,715,732,719,734,779,884,1202,1936,3085,4455,5687,6611,7246,7728,8149,8588,9117,9737,10487,11357,12356,13452,14637,15780,16909,17854,18574,19008,19146,18957,18601,18057,17453,16891,16436,16075,15850,15778,15853,16100,16512,17097,17853,18746,19826,21029,22349,23790,25271,26757,28176,29413,30413,31161,31552,31546,31233,30602,29669,28621,27386,26217,25053,23984,22985,22142,21393,20786,20315,19931,19637,19485,19400,19395,19509,19685,19954,20311,20733,21264,21824,22453,23117,23752,24355,24927,25404,25784,26039,26088,25973,25691,25227,24584,23868,23067,22191,21329,20476,19703,19015,18363,17795,17329,16934,16606,16363,16186,16091,16026,16046,16142,16316,16523,16839,17205,17626,18128,18682,19287,19925,20602,21333,22069,22800,23511,24219,24889,25488,26029,26474,26785,27031,27146,27156,27048,26843,26504,26120,25617,25049,24464,23825,23193,22528,21869,21236,20637,20053,19489,19004,18528,18123,17749,17421,17140,16873,16638,16436,16220,16032,15836,15653,15485,15341,15227,15125,15042,14971,14952,14924,14925,14931,14978,14996,15016,15068,15085,15139,15195,15211,15217,15225,15234,15240,15280,15273,15254,15207,15146,15080,15017,14918,14837,14709,14561,14381,14203,13989,13761,13528,13249,12993,12722,12426,12123,11831,11556,11280,11036,10795,10555,10296,9987,9668,9365,9074,8823,8614,8446,8293,8155,8071,7985,7911,7873,7798,7719,7575,7389,7242,7110,6992,6897,6797,6750,6694,6656,6642,6640,6615,6603,6613,6617,6465,6162,5721,5111,22.1,22.2,22.7,1568680,0.2,12.9,12.0,5.0,450,-1.00,-1.00,59.0724,-19.521821,0.000653,,,,,84 +SATSLF0720,2024246,17.762426,4.14,0.0580,0.1081,0.0222,0.00,15964,657,1,715,715,713,701,703,709,717,723,727,725,726,729,771,887,1201,1913,3056,4407,5627,6539,7187,7657,8075,8515,9029,9638,10385,11256,12225,13324,14493,15642,16726,17667,18375,18810,18933,18753,18396,17850,17275,16722,16263,15906,15693,15627,15713,15965,16361,16928,17668,18545,19607,20811,22117,23540,25015,26482,27870,29128,30107,30859,31261,31238,30916,30277,29361,28325,27104,25943,24797,23738,22772,21915,21189,20590,20115,19748,19457,19322,19232,19229,19321,19493,19771,20133,20536,21050,21614,22240,22902,23546,24149,24709,25189,25552,25818,25872,25755,25497,24994,24362,23656,22864,22005,21145,20293,19529,18832,18176,17639,17176,16769,16453,16212,16048,15929,15896,15929,16027,16192,16403,16696,17052,17477,17957,18530,19124,19777,20448,21165,21914,22634,23339,24035,24682,25269,25831,26232,26579,26813,26912,26946,26835,26621,26301,25897,25415,24874,24261,23653,23005,22360,21712,21074,20483,19890,19329,18850,18370,17981,17601,17285,17005,16737,16502,16299,16087,15902,15714,15542,15370,15234,15125,15030,14946,14870,14838,14811,14805,14804,14829,14861,14913,14961,14986,15040,15091,15090,15095,15111,15104,15117,15155,15155,15162,15097,15042,14994,14922,14827,14721,14585,14455,14289,14084,13888,13675,13431,13170,12921,12618,12331,12033,11757,11468,11201,10962,10722,10473,10227,9927,9605,9300,9011,8761,8554,8386,8225,8085,7995,7915,7853,7803,7735,7663,7511,7349,7181,7063,6949,6849,6769,6697,6646,6613,6592,6573,6579,6565,6575,6573,6427,6129,5706,5081,22.1,22.2,22.7,1568681,0.0,12.9,12.0,5.0,442,-1.00,-1.00,59.0750,-19.333724,0.000626,,,,,118 +SATSLF0720,2024246,17.762681,3.95,0.0553,0.1057,0.0204,0.00,16064,657,1,714,715,722,717,723,723,709,727,725,737,727,743,770,893,1220,1937,3077,4425,5669,6585,7232,7702,8122,8559,9081,9711,10455,11309,12311,13415,14573,15737,16827,17794,18509,18937,19084,18896,18529,17981,17399,16853,16394,16025,15801,15735,15801,16049,16466,17041,17771,18685,19749,20957,22273,23706,25177,26654,28081,29301,30313,31056,31448,31450,31127,30483,29572,28539,27306,26129,24978,23910,22912,22057,21319,20732,20250,19868,19600,19428,19335,19362,19462,19638,19895,20249,20677,21192,21760,22374,23040,23677,24295,24873,25352,25729,25977,26039,25909,25634,25157,24535,23813,23026,22162,21288,20422,19659,18957,18306,17767,17296,16896,16573,16317,16165,16045,16023,16036,16127,16277,16503,16802,17155,17591,18072,18647,19251,19893,20566,21293,22020,22778,23472,24180,24845,25429,25996,26413,26725,26963,27068,27089,26999,26775,26454,26059,25571,25007,24413,23773,23123,22493,21817,21197,20585,19989,19445,18946,18482,18098,17714,17405,17093,16832,16601,16396,16187,15993,15808,15625,15464,15318,15202,15094,15031,14958,14914,14897,14906,14901,14939,14954,15002,15035,15053,15113,15169,15177,15179,15198,15209,15225,15249,15257,15238,15196,15134,15051,15015,14906,14810,14680,14524,14352,14176,13962,13749,13509,13246,12971,12683,12401,12102,11813,11533,11263,11004,10765,10540,10274,9976,9656,9344,9053,8817,8613,8436,8284,8149,8053,7963,7889,7850,7781,7696,7553,7383,7234,7092,6983,6891,6816,6750,6697,6657,6631,6630,6597,6595,6612,6597,6449,6141,5718,5113,22.1,22.2,22.8,1568681,0.3,12.9,12.0,5.0,444,-1.00,-1.00,59.3019,-19.554900,0.000582,,,,,1 +SATSLF0720,2024246,17.762936,4.14,0.0580,0.1068,0.0208,0.00,16036,657,1,710,713,715,709,727,721,722,734,744,749,759,749,787,894,1209,1910,3066,4417,5653,6585,7224,7699,8123,8571,9081,9712,10441,11303,12295,13387,14560,15722,16823,17776,18477,18906,19034,18857,18487,17957,17376,16831,16363,16009,15789,15728,15798,16038,16445,17024,17751,18643,19706,20921,22236,23669,25136,26610,28016,29277,30256,31012,31417,31405,31091,30433,29517,28468,27255,26073,24926,23848,22864,22021,21284,20673,20211,19838,19552,19398,19289,19325,19422,19605,19853,20207,20642,21145,21709,22333,22997,23658,24260,24839,25305,25661,25928,25973,25857,25578,25111,24493,23760,22979,22109,21237,20400,19633,18920,18269,17704,17245,16840,16532,16286,16113,16017,15965,15989,16086,16253,16467,16759,17115,17544,18031,18592,19204,19841,20518,21242,21976,22731,23440,24125,24785,25362,25924,26343,26682,26922,27028,27047,26938,26743,26404,26013,25515,24957,24369,23738,23081,22454,21777,21155,20557,19946,19402,18922,18450,18067,17698,17361,17088,16805,16577,16375,16168,15974,15771,15585,15416,15287,15165,15086,15018,14931,14897,14886,14883,14888,14913,14926,14963,15015,15037,15092,15146,15147,15171,15177,15184,15205,15224,15225,15207,15154,15107,15038,14970,14891,14809,14666,14501,14334,14137,13926,13713,13477,13218,12957,12673,12386,12096,11803,11526,11253,10994,10758,10517,10252,9962,9640,9328,9043,8811,8600,8424,8265,8128,8034,7953,7869,7824,7765,7677,7554,7373,7222,7088,6983,6880,6805,6725,6668,6643,6622,6613,6600,6584,6606,6601,6452,6146,5735,5113,22.1,22.2,22.8,1568682,0.2,13.0,11.9,5.0,448,-1.00,-1.00,58.5261,-19.200577,0.000557,,,,,53 +SATSLF0720,2024246,17.763190,4.09,0.0573,0.1077,0.0216,0.00,16006,657,1,712,711,713,721,734,738,741,729,739,731,733,737,768,887,1203,1911,3056,4398,5641,6554,7203,7669,8099,8550,9058,9672,10379,11263,12248,13347,14516,15655,16768,17697,18421,18849,18973,18795,18421,17889,17316,16757,16311,15928,15731,15670,15730,15978,16381,16964,17701,18613,19641,20864,22169,23591,25062,26545,27949,29181,30157,30906,31283,31297,30982,30337,29443,28398,27182,26004,24849,23799,22818,21960,21227,20654,20170,19777,19505,19335,19249,19259,19369,19549,19814,20174,20608,21125,21678,22297,22951,23606,24202,24773,25246,25607,25873,25929,25805,25527,25066,24415,23725,22928,22058,21204,20361,19585,18911,18244,17701,17229,16830,16525,16268,16097,15994,15950,15970,16075,16235,16446,16747,17105,17525,18007,18579,19170,19819,20496,21226,21953,22677,23414,24105,24769,25334,25908,26313,26647,26880,26984,26997,26906,26696,26354,25955,25475,24931,24335,23723,23065,22421,21754,21124,20519,19914,19387,18890,18429,18036,17673,17342,17047,16793,16546,16354,16147,15946,15757,15581,15403,15273,15165,15080,14993,14922,14875,14854,14852,14858,14904,14906,14948,14992,15014,15080,15125,15151,15157,15165,15183,15201,15205,15211,15196,15149,15085,15012,14939,14867,14768,14639,14494,14318,14135,13925,13705,13471,13200,12935,12658,12382,12085,11789,11513,11225,10987,10748,10517,10236,9959,9627,9323,9041,8788,8590,8425,8257,8130,8050,7970,7892,7840,7764,7679,7533,7364,7212,7083,6962,6855,6789,6721,6663,6635,6620,6601,6581,6580,6601,6603,6452,6146,5723,5109,22.1,22.2,22.8,1568683,0.3,12.9,12.0,5.0,446,-1.00,-1.00,59.2291,-19.438057,0.000585,,,,,224 +SATSLF0720,2024246,17.763441,4.05,0.0567,0.1062,0.0206,0.00,16045,657,1,707,711,708,716,721,705,714,714,717,724,725,739,776,886,1206,1915,3079,4429,5656,6565,7214,7691,8110,8560,9059,9699,10441,11290,12295,13377,14564,15717,16821,17750,18472,18899,19034,18865,18489,17965,17395,16828,16373,16020,15786,15718,15784,16025,16435,17015,17753,18650,19730,20930,22235,23687,25158,26640,28039,29309,30284,31009,31420,31424,31092,30441,29545,28496,27265,26118,24942,23875,22873,22017,21295,20698,20229,19830,19559,19415,19314,19319,19410,19602,19866,20227,20660,21169,21741,22352,23035,23668,24273,24849,25320,25677,25956,25996,25891,25608,25131,24493,23767,22986,22128,21270,20410,19649,18953,18311,17755,17269,16872,16536,16298,16117,16021,15982,15998,16098,16261,16473,16774,17133,17571,18061,18630,19225,19863,20538,21254,22001,22738,23438,24151,24796,25403,25937,26358,26698,26937,27061,27058,26984,26769,26440,26041,25546,24986,24401,23755,23129,22458,21814,21166,20560,19959,19424,18925,18454,18059,17698,17358,17078,16804,16580,16375,16167,15990,15798,15610,15448,15312,15190,15089,15019,14953,14908,14888,14881,14903,14924,14942,14977,15028,15045,15102,15150,15170,15180,15180,15191,15214,15232,15214,15217,15174,15102,15044,14980,14897,14800,14659,14511,14337,14156,13946,13728,13495,13234,12959,12690,12397,12106,11799,11515,11245,10999,10755,10532,10266,9970,9644,9333,9053,8805,8601,8429,8268,8136,8034,7958,7891,7847,7781,7687,7543,7372,7205,7079,6967,6877,6790,6726,6683,6652,6632,6609,6599,6596,6600,6604,6445,6141,5716,5099,22.1,22.2,22.8,1568684,0.3,13.0,11.9,5.0,447,-1.00,-1.00,59.2044,-19.495342,0.000609,,,,,234 +SATSLF0720,2024246,17.763698,4.09,0.0572,0.1067,0.0206,0.00,16037,657,1,705,719,724,726,732,717,717,717,731,720,745,741,780,889,1193,1923,3076,4419,5650,6570,7223,7700,8106,8553,9075,9693,10430,11300,12290,13385,14565,15704,16819,17761,18465,18905,19026,18855,18477,17953,17369,16808,16363,16003,15779,15718,15781,16027,16439,17008,17752,18657,19710,20917,22235,23664,25136,26609,28014,29262,30249,30998,31400,31404,31072,30439,29520,28485,27260,26077,24920,23852,22859,22023,21282,20688,20213,19821,19553,19398,19293,19330,19432,19602,19859,20211,20632,21152,21704,22336,23003,23656,24281,24846,25324,25684,25938,26005,25866,25585,25104,24482,23767,22960,22094,21245,20404,19630,18942,18294,17737,17263,16861,16545,16290,16119,16009,15959,15991,16080,16240,16474,16770,17135,17554,18046,18608,19211,19853,20525,21257,21993,22741,23445,24145,24789,25377,25945,26346,26675,26929,27026,27035,26955,26741,26425,26034,25546,24984,24390,23754,23099,22446,21794,21164,20566,19985,19434,18938,18461,18050,17689,17362,17079,16821,16577,16373,16164,15981,15788,15605,15444,15294,15187,15089,15009,14928,14909,14877,14881,14873,14915,14933,14978,15016,15040,15093,15155,15170,15172,15173,15191,15208,15232,15221,15215,15168,15097,15045,14957,14877,14783,14661,14516,14334,14166,13941,13725,13485,13230,12967,12669,12379,12094,11797,11512,11242,10994,10745,10507,10246,9950,9622,9315,9043,8797,8588,8422,8269,8134,8037,7947,7883,7836,7769,7685,7543,7366,7218,7085,6961,6872,6793,6727,6683,6641,6616,6593,6583,6589,6605,6590,6449,6143,5709,5100,22.1,22.3,22.8,1568685,0.2,12.9,12.0,5.0,448,-1.00,-1.00,58.9777,-19.388000,0.000541,,,,,1 +SATSLF0720,2024246,17.763951,4.05,0.0568,0.1059,0.0200,0.00,16060,657,1,699,719,713,701,724,722,733,733,732,729,720,743,769,880,1204,1927,3089,4433,5651,6595,7225,7703,8123,8580,9101,9728,10469,11325,12318,13419,14585,15733,16843,17797,18507,18941,19081,18904,18533,17992,17407,16855,16413,16033,15815,15736,15817,16064,16475,17045,17779,18682,19741,20965,22265,23705,25188,26659,28068,29307,30307,31066,31450,31461,31132,30482,29565,28500,27291,26126,24969,23891,22915,22057,21338,20717,20256,19856,19572,19411,19329,19330,19444,19634,19893,20252,20685,21202,21746,22376,23031,23672,24284,24865,25332,25704,25976,26005,25898,25620,25162,24508,23794,22997,22142,21269,20429,19666,18965,18309,17758,17289,16869,16563,16317,16137,16038,15995,16017,16103,16276,16506,16789,17147,17576,18061,18622,19229,19874,20548,21285,22011,22757,23450,24165,24819,25408,25973,26384,26716,26955,27066,27074,26985,26773,26452,26053,25559,25008,24418,23784,23139,22474,21824,21192,20584,19985,19441,18949,18466,18082,17703,17374,17099,16837,16581,16395,16181,16006,15799,15618,15448,15316,15209,15112,15025,14945,14903,14902,14887,14900,14928,14950,14978,15033,15064,15109,15166,15169,15187,15190,15205,15223,15247,15255,15245,15192,15126,15066,14977,14905,14810,14664,14517,14352,14162,13962,13741,13498,13243,12978,12689,12397,12103,11825,11533,11261,11021,10778,10538,10275,9971,9650,9340,9063,8821,8605,8429,8279,8151,8056,7981,7910,7854,7789,7689,7541,7367,7220,7096,6980,6888,6801,6747,6693,6653,6633,6612,6599,6590,6608,6600,6454,6149,5719,5103,22.1,22.3,22.8,1568686,0.0,12.9,12.0,5.0,447,-1.00,-1.00,58.5657,-19.245515,0.000576,,,,,241 +SATSLF0720,2024246,17.764202,4.24,0.0594,0.1078,0.0209,0.00,16005,657,1,709,719,729,719,744,725,721,729,727,747,730,755,789,893,1213,1922,3060,4411,5637,6549,7200,7679,8091,8535,9044,9657,10407,11258,12259,13349,14513,15658,16750,17698,18429,18845,18965,18783,18424,17901,17309,16779,16327,15938,15731,15669,15745,15978,16395,16965,17707,18601,19654,20872,22185,23613,25073,26537,27943,29181,30173,30914,31309,31309,30984,30346,29434,28403,27170,25997,24861,23786,22797,21953,21242,20637,20163,19781,19506,19341,19247,19270,19365,19562,19811,20141,20583,21112,21674,22291,22944,23586,24195,24773,25253,25594,25874,25924,25810,25537,25062,24433,23702,22903,22051,21188,20353,19595,18906,18261,17709,17237,16833,16505,16272,16098,15977,15949,15965,16057,16216,16434,16723,17097,17523,18002,18571,19182,19816,20505,21220,21971,22690,23397,24093,24747,25331,25894,26309,26644,26866,26978,26990,26900,26675,26375,25957,25459,24919,24325,23712,23060,22420,21757,21140,20525,19943,19381,18872,18393,18002,17645,17335,17039,16780,16541,16351,16147,15954,15767,15581,15412,15271,15143,15051,14978,14909,14865,14849,14857,14866,14871,14922,14953,15002,15024,15072,15120,15133,15143,15169,15168,15185,15211,15201,15198,15159,15102,15035,14967,14869,14775,14638,14484,14315,14131,13929,13713,13465,13211,12949,12667,12355,12086,11774,11499,11233,10994,10757,10525,10258,9953,9639,9325,9039,8793,8580,8411,8259,8121,8034,7953,7893,7824,7783,7682,7531,7355,7195,7077,6970,6873,6789,6731,6679,6636,6627,6625,6590,6581,6590,6593,6438,6141,5722,5105,22.1,22.3,22.9,1568687,0.1,12.9,12.0,5.0,451,-1.00,-1.00,58.5962,-19.177005,0.000594,,,,,236 +SATSLF0720,2024246,17.764458,4.03,0.0564,0.1069,0.0206,0.00,16028,657,1,701,701,708,717,723,731,741,740,759,742,749,737,764,879,1207,1915,3069,4429,5660,6581,7216,7709,8116,8562,9078,9681,10430,11289,12269,13388,14554,15710,16808,17738,18447,18883,19026,18853,18477,17937,17378,16811,16363,15989,15761,15691,15769,16024,16429,17010,17737,18632,19698,20913,22217,23658,25117,26594,27990,29239,30234,30978,31369,31381,31057,30419,29506,28461,27242,26065,24888,23834,22861,22006,21272,20677,20199,19805,19537,19377,19286,19298,19395,19593,19852,20197,20623,21141,21709,22308,22987,23632,24236,24816,25297,25669,25933,25977,25862,25594,25117,24470,23755,22955,22091,21224,20389,19629,18933,18285,17710,17255,16837,16523,16276,16098,16009,15964,15991,16089,16243,16461,16754,17131,17548,18024,18593,19200,19819,20513,21229,21991,22714,23424,24128,24763,25347,25916,26349,26668,26904,27009,27016,26926,26721,26390,26000,25518,24965,24365,23725,23076,22437,21769,21157,20546,19957,19401,18912,18436,18041,17677,17341,17072,16809,16576,16362,16152,15965,15774,15598,15432,15289,15162,15069,14998,14935,14894,14885,14890,14881,14912,14928,14968,15000,15025,15072,15133,15143,15157,15171,15187,15206,15229,15230,15211,15158,15093,15047,14962,14886,14785,14656,14500,14335,14149,13938,13715,13469,13208,12949,12663,12387,12080,11806,11505,11249,10981,10746,10522,10237,9950,9636,9334,9045,8797,8583,8427,8268,8139,8045,7968,7884,7847,7785,7692,7546,7351,7207,7080,6966,6878,6801,6730,6672,6637,6621,6609,6588,6588,6615,6597,6443,6147,5714,5119,22.1,22.4,22.9,1568688,0.1,13.0,11.9,5.0,449,-1.00,-1.00,59.1049,-19.428678,0.000546,,,,,119 +SATSDF0720,2024246,18.009138,0.00,0.0000,0.0000,0.0000,0.00,653,0,1,649,641,629,625,633,628,643,641,642,636,629,631,629,631,628,637,633,637,647,650,641,631,651,652,637,651,659,660,665,667,669,653,655,660,657,661,659,651,659,666,666,675,656,651,651,634,646,651,652,653,643,641,653,653,656,654,663,674,665,665,663,654,662,657,658,666,662,667,677,664,665,662,666,658,645,635,647,646,653,665,664,661,665,678,659,663,654,649,664,649,650,663,669,674,649,660,662,661,651,649,637,659,665,660,667,661,665,657,656,651,647,645,651,663,649,649,652,652,643,652,655,653,656,645,646,659,657,659,641,647,659,644,661,664,658,653,652,658,660,653,646,637,640,622,631,637,653,650,659,668,660,662,665,645,644,640,643,659,647,645,644,638,643,652,658,657,666,663,669,672,652,651,643,652,644,643,663,661,661,659,650,646,637,651,650,643,659,661,655,662,670,649,663,651,655,673,657,651,650,646,655,650,649,650,646,647,643,651,659,654,655,657,650,648,641,649,652,646,657,658,663,660,663,653,648,636,651,644,663,648,670,646,654,665,652,654,658,648,645,634,643,647,650,652,650,646,661,653,649,656,657,665,657,669,665,486,0.0,0.0,0.0,1568687,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,140 +SATSLF0720,2024246,18.009696,4.04,0.0566,0.1019,0.0176,0.00,16172,653,1,704,706,718,710,712,703,725,725,715,721,726,744,772,889,1217,1938,3104,4477,5721,6642,7294,7771,8196,8645,9175,9790,10551,11417,12427,13552,14733,15889,16997,17941,18667,19104,19252,19067,18693,18160,17559,16996,16539,16166,15953,15875,15954,16190,16609,17184,17945,18864,19929,21146,22472,23922,25394,26880,28307,29563,30569,31325,31732,31736,31403,30761,29832,28765,27538,26351,25168,24107,23113,22245,21517,20910,20418,20041,19763,19601,19497,19512,19608,19785,20071,20409,20839,21371,21933,22544,23233,23877,24480,25074,25540,25905,26161,26201,26084,25800,25326,24688,23961,23147,22295,21413,20569,19784,19081,18435,17877,17405,17004,16678,16436,16256,16147,16106,16119,16204,16375,16586,16897,17267,17701,18193,18761,19367,20017,20690,21419,22161,22901,23635,24325,24990,25579,26145,26583,26893,27143,27230,27259,27163,26953,26621,26220,25733,25160,24565,23932,23287,22625,21961,21319,20720,20116,19567,19081,18594,18181,17830,17506,17204,16933,16679,16494,16281,16103,15901,15721,15561,15396,15285,15180,15101,15048,14997,14976,14983,14989,15012,15042,15074,15125,15141,15184,15244,15249,15264,15272,15284,15301,15309,15335,15323,15262,15207,15141,15071,14973,14878,14744,14588,14432,14238,14027,13799,13567,13303,13029,12738,12457,12152,11860,11571,11291,11050,10817,10590,10308,10009,9698,9381,9095,8840,8645,8469,8313,8187,8085,7997,7929,7880,7814,7712,7582,7409,7254,7115,7017,6912,6836,6762,6717,6683,6650,6640,6637,6613,6639,6635,6489,6181,5749,5125,21.9,21.9,22.2,1568689,0.2,12.9,11.9,4.9,567,-1.00,-1.00,58.2122,-19.264120,0.000554,,,,,57 +SATSLF0720,2024246,18.009878,3.85,0.0539,0.1013,0.0174,0.00,16189,653,1,691,703,704,705,711,699,715,713,728,722,727,737,777,897,1220,1919,3099,4470,5721,6650,7300,7783,8212,8669,9202,9817,10560,11445,12441,13555,14742,15917,17019,17993,18721,19149,19311,19116,18736,18199,17598,17024,16563,16188,15955,15880,15974,16230,16642,17217,17971,18870,19945,21165,22501,23959,25436,26945,28366,29633,30616,31385,31773,31767,31447,30798,29878,28802,27586,26379,25226,24149,23145,22282,21561,20952,20458,20061,19784,19626,19524,19525,19630,19805,20083,20442,20870,21392,21956,22567,23241,23879,24502,25089,25572,25943,26208,26254,26125,25841,25350,24704,23989,23193,22327,21457,20605,19826,19121,18458,17899,17409,17002,16675,16443,16274,16167,16121,16140,16229,16378,16611,16904,17276,17709,18201,18777,19380,20027,20725,21438,22197,22932,23656,24363,25006,25616,26170,26604,26909,27179,27277,27292,27194,26977,26635,26235,25754,25186,24602,23957,23316,22648,21981,21347,20729,20121,19573,19067,18610,18205,17834,17509,17219,16952,16715,16491,16295,16112,15914,15716,15561,15425,15309,15193,15117,15060,15002,14988,14987,14999,15029,15032,15084,15131,15150,15201,15254,15272,15277,15272,15285,15309,15326,15333,15317,15268,15209,15149,15072,14992,14885,14765,14613,14432,14241,14038,13808,13579,13298,13046,12754,12451,12174,11866,11581,11305,11054,10821,10579,10314,10006,9690,9378,9095,8850,8642,8477,8312,8177,8081,8001,7927,7895,7821,7727,7593,7408,7262,7132,7022,6920,6845,6773,6720,6681,6653,6641,6616,6602,6629,6629,6482,6184,5750,5119,21.9,21.9,22.4,1568689,0.1,12.9,12.0,5.0,467,-1.00,-1.00,58.6136,-19.457903,0.000659,,,,,30 +SATSLF0720,2024246,18.010133,3.96,0.0555,0.1017,0.0175,0.00,16176,653,1,701,702,711,710,719,725,725,721,738,729,715,751,769,883,1209,1938,3102,4477,5712,6649,7297,7776,8198,8648,9167,9799,10547,11424,12427,13553,14741,15897,17021,17967,18685,19117,19243,19068,18690,18167,17568,17011,16557,16178,15933,15874,15957,16204,16618,17202,17949,18846,19925,21142,22471,23926,25408,26890,28323,29574,30578,31335,31737,31744,31429,30764,29860,28797,27555,26372,25197,24133,23137,22261,21520,20917,20425,20035,19756,19605,19506,19529,19629,19806,20065,20408,20857,21376,21937,22567,23233,23862,24492,25076,25542,25906,26167,26225,26105,25821,25334,24702,23958,23168,22298,21431,20578,19808,19105,18432,17883,17411,17009,16672,16425,16244,16147,16103,16125,16221,16382,16613,16893,17284,17704,18190,18764,19386,19997,20700,21436,22167,22921,23629,24336,24993,25591,26152,26566,26903,27125,27232,27257,27163,26957,26626,26226,25741,25169,24583,23937,23303,22643,21963,21328,20711,20119,19550,19062,18583,18172,17819,17486,17210,16936,16694,16505,16289,16098,15905,15721,15544,15405,15297,15190,15125,15048,15000,14977,14980,14998,15012,15028,15068,15106,15142,15189,15253,15273,15264,15268,15285,15305,15322,15309,15316,15259,15199,15143,15073,14971,14883,14753,14593,14427,14245,14017,13806,13561,13306,13034,12757,12473,12180,11869,11598,11325,11061,10801,10585,10326,10013,9699,9389,9098,8848,8641,8459,8304,8178,8076,8011,7934,7880,7806,7731,7588,7393,7244,7118,7000,6897,6831,6777,6717,6679,6653,6636,6639,6626,6628,6647,6486,6171,5744,5121,21.9,21.9,22.4,1568690,0.1,12.9,12.0,5.0,455,-1.00,-1.00,58.6676,-19.462803,0.000515,,,,,252 +SATSLF0720,2024246,18.010386,4.21,0.0589,0.1020,0.0169,0.00,16170,653,1,705,709,711,713,707,702,718,722,712,739,744,750,773,889,1200,1935,3101,4472,5710,6642,7290,7777,8181,8631,9161,9780,10535,11401,12405,13522,14706,15879,16997,17946,18670,19096,19229,19048,18664,18120,17549,16989,16521,16164,15938,15874,15958,16205,16609,17197,17933,18844,19909,21139,22464,23914,25394,26883,28308,29560,30544,31309,31705,31707,31376,30731,29831,28761,27529,26355,25177,24113,23092,22251,21512,20904,20425,20025,19724,19590,19492,19513,19601,19795,20073,20393,20839,21357,21929,22546,23206,23863,24466,25047,25530,25901,26161,26216,26088,25815,25322,24695,23962,23168,22293,21425,20557,19783,19067,18433,17858,17386,16986,16662,16421,16245,16140,16098,16121,16203,16379,16599,16906,17273,17701,18182,18743,19363,20004,20685,21431,22165,22920,23623,24337,24992,25581,26149,26577,26900,27136,27238,27267,27161,26962,26625,26232,25748,25165,24581,23926,23278,22621,21956,21307,20713,20125,19561,19083,18598,18197,17841,17502,17208,16938,16679,16486,16270,16069,15891,15713,15550,15401,15291,15190,15125,15040,15004,14981,14986,14990,15021,15021,15081,15117,15145,15188,15242,15251,15265,15275,15281,15301,15309,15318,15316,15267,15205,15163,15084,14982,14887,14757,14610,14425,14236,14019,13812,13566,13305,13037,12746,12442,12161,11867,11579,11333,11055,10815,10590,10321,10030,9685,9375,9093,8835,8645,8468,8314,8184,8085,8009,7936,7888,7823,7726,7579,7416,7253,7125,7005,6909,6840,6785,6740,6688,6671,6655,6636,6627,6639,6638,6489,6181,5771,5125,21.9,21.9,22.4,1568691,0.3,12.9,12.0,5.0,456,-1.00,-1.00,57.8005,-19.086170,0.000474,,,,,121 +SATSLF0720,2024246,18.010643,3.98,0.0557,0.1033,0.0189,0.00,16126,653,1,707,700,721,712,696,711,718,713,725,729,726,744,770,884,1220,1930,3115,4454,5704,6622,7266,7750,8163,8618,9129,9763,10489,11383,12377,13478,14679,15834,16933,17882,18622,19042,19194,18999,18620,18089,17494,16939,16474,16124,15889,15815,15889,16135,16546,17142,17872,18788,19851,21062,22388,23829,25307,26802,28212,29457,30465,31212,31617,31610,31284,30651,29724,28663,27445,26265,25111,24021,23025,22164,21419,20823,20346,19966,19685,19526,19434,19453,19559,19754,20002,20356,20769,21293,21853,22490,23137,23787,24391,24971,25454,25805,26073,26120,26013,25730,25234,24623,23899,23100,22229,21351,20520,19737,19028,18370,17809,17341,16949,16637,16374,16203,16098,16072,16081,16160,16339,16554,16851,17213,17646,18144,18726,19312,19947,20625,21355,22109,22834,23561,24277,24909,25507,26073,26505,26824,27066,27168,27195,27095,26882,26556,26154,25644,25085,24506,23864,23225,22571,21901,21280,20653,20079,19524,19025,18551,18136,17781,17444,17160,16885,16645,16436,16237,16050,15872,15680,15501,15365,15269,15165,15089,15016,14981,14941,14921,14949,14971,14991,15049,15078,15106,15159,15209,15234,15236,15244,15241,15274,15281,15287,15280,15222,15173,15097,15027,14950,14861,14731,14566,14402,14227,13998,13768,13531,13288,13012,12729,12437,12144,11854,11565,11293,11037,10794,10548,10293,9981,9660,9361,9073,8833,8627,8464,8305,8174,8069,7968,7899,7846,7790,7697,7559,7390,7241,7113,6999,6903,6833,6760,6693,6657,6655,6640,6624,6604,6627,6620,6469,6162,5756,5120,21.9,22.0,22.5,1568692,0.0,12.9,11.9,5.0,455,-1.00,-1.00,58.6457,-19.378528,0.000555,,,,,81 +SATSLF0720,2024246,18.010898,4.02,0.0563,0.1035,0.0175,0.00,16139,653,1,707,714,723,714,716,711,715,713,727,733,742,734,778,886,1211,1935,3079,4455,5693,6603,7267,7735,8168,8613,9137,9745,10491,11375,12357,13464,14640,15800,16906,17857,18600,19033,19165,18993,18618,18082,17493,16922,16461,16104,15883,15800,15888,16134,16537,17143,17881,18771,19859,21064,22391,23826,25306,26788,28214,29477,30476,31250,31634,31618,31303,30653,29735,28673,27446,26260,25101,24037,23035,22197,21466,20865,20357,19978,19677,19532,19428,19459,19550,19759,20001,20368,20804,21326,21861,22486,23168,23802,24414,24988,25479,25830,26103,26154,26030,25741,25274,24635,23922,23127,22233,21377,20523,19757,19048,18394,17849,17361,16944,16631,16384,16215,16109,16077,16106,16185,16361,16594,16870,17239,17676,18163,18725,19346,19986,20664,21400,22133,22865,23578,24301,24960,25544,26104,26537,26869,27113,27208,27217,27129,26913,26581,26177,25684,25120,24541,23897,23253,22593,21924,21278,20695,20105,19546,19041,18577,18171,17799,17478,17170,16897,16669,16457,16264,16062,15884,15713,15542,15397,15273,15164,15107,15016,14981,14969,14968,14971,15017,15027,15048,15104,15129,15180,15229,15244,15255,15264,15277,15293,15325,15314,15305,15253,15197,15144,15060,14967,14866,14742,14573,14411,14214,14021,13800,13574,13302,13019,12755,12456,12173,11883,11573,11309,11069,10809,10569,10306,9997,9683,9373,9090,8842,8623,8463,8316,8175,8079,8002,7928,7874,7806,7712,7565,7396,7246,7121,7013,6921,6840,6784,6730,6678,6661,6632,6621,6609,6628,6624,6482,6158,5751,5128,21.9,22.0,22.5,1568693,0.3,12.9,11.9,5.0,450,-1.00,-1.00,58.9589,-19.514030,0.000628,,,,,102 +SATSLF0720,2024246,18.011151,3.92,0.0550,0.1044,0.0190,0.00,16102,653,1,705,696,704,705,717,702,710,717,715,731,740,734,768,885,1198,1913,3087,4448,5693,6605,7258,7725,8146,8596,9121,9731,10484,11340,12335,13442,14614,15775,16889,17825,18562,19000,19125,18951,18565,18049,17453,16889,16445,16069,15842,15780,15849,16107,16513,17092,17829,18733,19805,21018,22329,23779,25253,26729,28138,29392,30398,31156,31542,31537,31227,30573,29671,28619,27401,26227,25050,23983,22981,22127,21380,20794,20309,19917,19634,19480,19389,19415,19505,19706,19965,20316,20742,21256,21819,22450,23088,23747,24373,24937,25429,25785,26061,26112,25970,25705,25217,24594,23854,23051,22197,21312,20483,19703,19011,18365,17814,17333,16922,16601,16343,16182,16085,16035,16055,16149,16310,16524,16829,17202,17630,18123,18690,19299,19922,20608,21347,22070,22819,23525,24253,24896,25488,26053,26477,26798,27047,27154,27166,27061,26861,26519,26147,25640,25052,24474,23837,23202,22536,21880,21245,20635,20048,19493,19000,18520,18121,17745,17427,17132,16869,16620,16426,16241,16039,15849,15658,15488,15363,15242,15134,15062,14978,14948,14945,14932,14951,14974,15009,15018,15059,15087,15130,15191,15205,15221,15226,15235,15253,15273,15268,15264,15214,15136,15095,15024,14941,14842,14716,14545,14387,14184,13986,13754,13518,13275,13016,12725,12429,12133,11837,11541,11277,11037,10802,10569,10297,9988,9669,9361,9058,8818,8609,8431,8287,8158,8057,7978,7916,7863,7793,7701,7555,7386,7241,7106,6987,6901,6817,6753,6696,6661,6645,6634,6616,6613,6629,6617,6477,6157,5731,5114,21.9,22.0,22.6,1568694,0.1,13.0,11.9,5.0,454,-1.00,-1.00,59.3245,-19.623808,0.000508,,,,,136 +SATSLF0720,2024246,18.011408,3.94,0.0551,0.1039,0.0190,0.00,16116,653,1,702,706,711,720,729,726,717,715,726,722,720,729,761,870,1203,1927,3085,4455,5699,6611,7260,7749,8154,8610,9121,9741,10488,11355,12353,13477,14657,15828,16933,17879,18606,19025,19173,18992,18597,18061,17477,16928,16466,16112,15889,15811,15888,16133,16531,17101,17849,18750,19826,21035,22373,23813,25298,26788,28196,29443,30455,31196,31586,31591,31266,30625,29704,28648,27431,26253,25107,24017,23013,22162,21435,20821,20342,19949,19645,19512,19409,19431,19543,19732,19997,20338,20754,21275,21831,22464,23121,23781,24389,24973,25442,25823,26081,26140,26002,25736,25237,24598,23878,23069,22215,21334,20489,19726,19021,18378,17805,17344,16925,16602,16359,16193,16100,16057,16081,16165,16333,16548,16851,17225,17646,18118,18695,19306,19938,20628,21357,22087,22841,23557,24261,24909,25493,26055,26484,26809,27043,27152,27170,27077,26867,26546,26146,25645,25093,24505,23861,23217,22557,21888,21248,20642,20042,19500,19008,18554,18145,17764,17450,17145,16875,16637,16438,16210,16043,15833,15663,15492,15359,15257,15149,15069,15005,14967,14946,14935,14935,14963,14977,15031,15065,15099,15141,15191,15217,15213,15227,15229,15262,15274,15282,15275,15211,15159,15095,15032,14929,14847,14708,14561,14393,14189,13991,13778,13525,13271,13015,12717,12423,12145,11840,11554,11272,11013,10788,10551,10293,9997,9668,9367,9086,8838,8616,8444,8294,8151,8071,7982,7917,7866,7799,7697,7575,7398,7243,7113,6997,6911,6824,6754,6695,6666,6640,6647,6625,6611,6636,6621,6467,6144,5730,5102,21.9,22.0,22.6,1568695,0.3,12.9,12.0,5.0,443,-1.00,-1.00,58.9710,-19.502006,0.000583,,,,,81 +SATSLF0720,2024246,18.011662,4.07,0.0570,0.1043,0.0196,0.00,16090,653,1,713,719,714,709,708,709,721,724,729,725,723,740,769,881,1219,1937,3089,4467,5693,6619,7264,7726,8145,8588,9101,9731,10475,11341,12332,13448,14621,15778,16878,17821,18567,18976,19104,18936,18566,18037,17447,16888,16436,16066,15843,15779,15844,16103,16505,17085,17818,18728,19780,21031,22330,23770,25228,26715,28125,29367,30382,31138,31528,31538,31210,30557,29645,28613,27378,26189,25031,23959,22967,22103,21389,20793,20298,19904,19623,19467,19393,19400,19485,19689,19948,20288,20722,21243,21797,22420,23097,23724,24353,24923,25393,25760,26035,26089,25964,25687,25183,24542,23834,23030,22174,21303,20473,19699,19008,18357,17795,17310,16917,16593,16342,16158,16070,16017,16051,16139,16311,16522,16831,17181,17611,18099,18665,19271,19917,20597,21320,22050,22807,23509,24208,24865,25453,26013,26434,26754,26999,27109,27129,27034,26835,26498,26114,25621,25044,24457,23808,23165,22525,21861,21224,20624,20021,19472,18977,18502,18115,17753,17413,17128,16858,16603,16414,16202,15995,15817,15641,15473,15330,15228,15125,15056,14977,14934,14921,14906,14920,14946,14957,14999,15047,15073,15134,15181,15205,15210,15214,15223,15245,15265,15270,15245,15211,15141,15075,15005,14923,14829,14696,14537,14375,14171,13975,13770,13501,13251,12986,12706,12412,12121,11810,11520,11263,11013,10793,10544,10281,9988,9662,9347,9056,8827,8596,8427,8273,8142,8059,7979,7913,7860,7799,7703,7571,7377,7225,7105,6987,6891,6808,6741,6702,6653,6633,6621,6605,6601,6615,6618,6464,6153,5738,5118,21.9,22.0,22.6,1568696,0.3,12.9,11.9,5.0,454,-1.00,-1.00,58.7352,-19.367456,0.000517,,,,,129 +SATSLF0720,2024246,18.011914,4.15,0.0581,0.1045,0.0190,0.00,16103,653,1,712,717,720,729,727,721,739,714,715,737,725,738,775,893,1220,1946,3094,4463,5689,6627,7275,7750,8169,8613,9126,9747,10493,11370,12361,13461,14651,15805,16897,17864,18563,19006,19123,18956,18565,18050,17460,16912,16441,16087,15860,15773,15869,16106,16505,17102,17849,18749,19819,21042,22344,23789,25250,26729,28148,29397,30417,31157,31568,31554,31225,30560,29667,28603,27377,26197,25046,23970,22985,22141,21403,20802,20301,19929,19638,19479,19382,19408,19511,19701,19956,20305,20728,21237,21811,22427,23108,23749,24368,24942,25409,25771,26045,26098,25981,25705,25217,24583,23865,23065,22187,21319,20482,19708,19013,18349,17791,17329,16925,16605,16355,16182,16080,16039,16057,16142,16317,16532,16829,17217,17625,18109,18679,19291,19925,20605,21329,22068,22825,23525,24234,24883,25470,26044,26482,26795,27031,27128,27144,27046,26833,26501,26112,25621,25064,24477,23841,23196,22542,21876,21248,20629,20048,19490,18997,18530,18125,17766,17413,17147,16862,16620,16407,16221,16020,15837,15659,15500,15357,15236,15141,15069,14989,14948,14923,14931,14942,14965,14981,15037,15061,15092,15150,15205,15206,15223,15218,15229,15251,15271,15269,15256,15212,15150,15095,15018,14939,14842,14710,14557,14397,14205,14013,13797,13538,13270,12992,12707,12419,12131,11832,11550,11276,11033,10795,10553,10282,9979,9673,9334,9071,8825,8599,8443,8293,8162,8073,7977,7911,7866,7799,7715,7562,7379,7239,7101,6986,6890,6817,6761,6706,6666,6640,6647,6617,6601,6631,6625,6472,6158,5730,5114,21.9,22.1,22.6,1568697,0.2,12.9,11.9,5.0,450,-1.00,-1.00,58.1624,-19.138923,0.000586,,,,,120 +SATSLF0720,2024246,18.012170,4.15,0.0582,0.1056,0.0194,0.00,16066,653,1,708,696,707,724,732,714,715,727,724,735,738,745,781,893,1219,1933,3087,4437,5671,6596,7241,7713,8132,8570,9091,9722,10455,11323,12314,13413,14581,15731,16833,17782,18482,18928,19055,18887,18522,17988,17408,16849,16401,16034,15810,15737,15814,16064,16468,17042,17785,18688,19760,20971,22284,23722,25173,26662,28088,29290,30312,31051,31461,31445,31115,30490,29589,28548,27315,26140,24973,23899,22909,22074,21346,20733,20257,19866,19598,19444,19335,19342,19462,19632,19915,20256,20682,21202,21772,22385,23033,23691,24306,24867,25347,25717,25987,26037,25906,25628,25160,24515,23795,23000,22145,21261,20423,19654,18962,18325,17749,17286,16887,16566,16307,16146,16043,16003,16021,16119,16289,16514,16808,17168,17602,18081,18633,19250,19877,20549,21277,22023,22765,23478,24199,24844,25440,26005,26429,26734,26984,27063,27099,27016,26789,26463,26067,25571,25015,24425,23810,23146,22499,21832,21202,20589,19997,19456,18970,18498,18083,17723,17389,17124,16850,16609,16400,16196,16016,15815,15628,15470,15329,15215,15101,15023,14949,14918,14903,14901,14912,14937,14953,14994,15042,15078,15133,15188,15189,15198,15207,15194,15226,15249,15245,15232,15186,15127,15081,14998,14912,14817,14680,14523,14347,14157,13959,13741,13504,13243,12989,12697,12410,12126,11813,11521,11271,11010,10777,10545,10269,9973,9641,9357,9056,8819,8610,8434,8274,8127,8035,7965,7897,7850,7778,7691,7560,7385,7217,7093,6993,6892,6814,6738,6698,6656,6646,6633,6600,6595,6615,6613,6442,6141,5726,5118,21.9,22.1,22.6,1568698,0.3,13.0,12.0,5.0,449,-1.00,-1.00,58.5718,-19.257825,0.000485,,,,,49 +SATSLF0720,2024246,18.012424,3.92,0.0549,0.1045,0.0196,0.00,16092,653,1,691,708,706,724,720,724,724,726,714,723,730,743,785,874,1213,1919,3070,4447,5677,6610,7243,7731,8150,8592,9111,9731,10472,11349,12332,13444,14616,15780,16872,17831,18554,18989,19113,18925,18566,18036,17444,16886,16423,16059,15824,15769,15861,16091,16512,17068,17819,18713,19778,21004,22311,23747,25227,26709,28119,29383,30369,31125,31513,31529,31209,30561,29651,28589,27370,26195,25035,23948,22951,22112,21384,20786,20290,19901,19641,19466,19383,19386,19490,19677,19938,20294,20704,21255,21809,22435,23076,23723,24334,24921,25397,25757,26037,26097,25973,25680,25203,24565,23849,23045,22193,21326,20458,19718,19010,18340,17784,17305,16904,16588,16339,16161,16081,16020,16052,16150,16305,16549,16834,17195,17626,18101,18651,19268,19900,20592,21322,22076,22801,23531,24221,24875,25461,26036,26468,26784,27018,27140,27137,27031,26823,26512,26109,25607,25043,24471,23830,23182,22534,21857,21225,20624,20039,19493,18997,18522,18113,17757,17429,17140,16865,16625,16413,16209,16032,15821,15659,15480,15349,15237,15138,15066,14981,14933,14917,14921,14926,14945,14983,15017,15061,15089,15135,15187,15207,15216,15221,15223,15234,15271,15283,15264,15201,15147,15076,15019,14928,14836,14696,14545,14379,14187,13976,13761,13531,13268,13001,12717,12417,12121,11830,11529,11262,11017,10786,10557,10277,9989,9662,9357,9073,8813,8610,8434,8277,8151,8045,7990,7908,7863,7803,7714,7553,7395,7225,7104,6993,6893,6827,6753,6698,6665,6645,6622,6601,6596,6626,6625,6457,6149,5725,5109,21.9,22.1,22.6,1568699,0.2,13.0,11.9,5.0,450,-1.00,-1.00,59.2903,-19.594086,0.000532,,,,,181 +SATSLF0720,2024246,18.012676,4.07,0.0570,0.1065,0.0208,0.00,16031,653,1,703,709,718,717,712,722,738,725,725,729,721,735,770,878,1197,1927,3077,4410,5659,6565,7230,7701,8110,8542,9079,9690,10429,11286,12270,13371,14552,15708,16812,17753,18484,18905,19045,18849,18491,17952,17372,16824,16361,16001,15764,15703,15781,16041,16434,17013,17766,18664,19710,20927,22245,23680,25145,26612,28018,29252,30241,31004,31400,31402,31095,30454,29546,28485,27255,26080,24922,23849,22855,22017,21297,20681,20207,19831,19557,19405,19296,19301,19399,19591,19851,20214,20650,21168,21737,22339,23002,23642,24253,24829,25290,25657,25917,25984,25856,25591,25108,24481,23767,22955,22116,21237,20395,19630,18908,18275,17720,17249,16858,16534,16277,16125,16016,15969,15995,16089,16249,16476,16769,17108,17553,18021,18587,19189,19816,20506,21246,21981,22730,23432,24138,24779,25376,25931,26365,26668,26906,27012,27026,26935,26721,26392,25995,25529,24964,24377,23733,23099,22441,21787,21150,20541,19960,19397,18919,18432,18049,17685,17367,17061,16800,16568,16362,16153,15964,15767,15589,15410,15282,15158,15069,15001,14918,14907,14874,14884,14880,14907,14928,14958,14996,15019,15070,15117,15135,15142,15150,15173,15190,15218,15220,15212,15168,15104,15034,14963,14887,14792,14651,14500,14335,14150,13941,13707,13465,13213,12939,12673,12391,12085,11801,11505,11233,10986,10733,10499,10225,9934,9606,9307,9029,8789,8583,8422,8278,8136,8037,7959,7890,7826,7746,7660,7525,7364,7213,7085,6969,6882,6806,6738,6672,6633,6607,6607,6581,6567,6605,6593,6433,6147,5713,5095,22.0,22.1,22.7,1568699,0.2,13.0,11.9,5.0,445,-1.00,-1.00,59.0009,-19.404151,0.000565,,,,,98 +SATSLF0720,2024246,18.012932,4.01,0.0561,0.1060,0.0205,0.00,16054,653,1,720,736,726,724,723,720,723,724,723,725,730,731,778,898,1212,1949,3095,4449,5674,6600,7229,7710,8129,8569,9096,9711,10449,11318,12309,13418,14581,15720,16834,17786,18493,18944,19060,18888,18512,17976,17385,16841,16375,16010,15789,15729,15809,16059,16464,17040,17764,18661,19734,20957,22263,23707,25165,26628,28056,29289,30295,31040,31438,31453,31136,30482,29573,28507,27277,26112,24947,23888,22890,22042,21325,20718,20247,19872,19584,19434,19321,19347,19436,19629,19869,20214,20652,21177,21755,22373,23034,23673,24289,24872,25352,25712,25974,26009,25894,25613,25125,24494,23789,22997,22145,21273,20421,19656,18961,18295,17761,17249,16871,16548,16295,16128,16034,16003,16017,16109,16268,16502,16781,17137,17561,18048,18613,19228,19853,20537,21267,22010,22746,23458,24169,24804,25405,25962,26382,26720,26953,27059,27073,26980,26758,26432,26038,25542,24977,24391,23760,23122,22478,21820,21186,20581,19985,19429,18938,18461,18064,17693,17376,17089,16819,16589,16393,16178,16004,15803,15616,15443,15301,15183,15095,15016,14947,14921,14903,14893,14886,14928,14932,14965,15018,15037,15097,15152,15173,15188,15182,15200,15227,15237,15232,15223,15172,15106,15044,14976,14901,14802,14662,14525,14342,14163,13950,13729,13501,13228,12977,12679,12394,12106,11817,11530,11257,11008,10773,10539,10261,9953,9636,9323,9040,8791,8598,8426,8275,8136,8045,7957,7891,7845,7787,7692,7554,7365,7232,7089,6975,6898,6797,6737,6685,6657,6645,6633,6613,6601,6623,6602,6458,6158,5717,5113,22.0,22.1,22.7,1568700,0.0,12.9,12.0,5.0,448,-1.00,-1.00,59.0853,-19.459341,0.000593,,,,,46 +SATSLF0720,2024246,18.013185,4.12,0.0577,0.1074,0.0216,0.00,16007,653,1,715,709,710,708,713,719,729,738,749,741,741,757,803,905,1221,1921,3083,4434,5650,6565,7202,7687,8105,8539,9063,9685,10422,11285,12268,13364,14533,15674,16764,17707,18429,18867,19000,18805,18443,17907,17345,16789,16324,15961,15756,15664,15751,15997,16407,16976,17701,18611,19680,20890,22197,23620,25085,26563,27954,29207,30213,30934,31346,31342,31012,30368,29461,28405,27194,26024,24877,23821,22823,21979,21266,20658,20194,19805,19521,19354,19259,19273,19357,19566,19828,20162,20600,21117,21678,22290,22955,23593,24201,24784,25251,25605,25881,25929,25810,25524,25063,24425,23726,22932,22057,21197,20364,19593,18888,18245,17696,17218,16823,16505,16267,16093,15979,15946,15964,16053,16206,16455,16732,17122,17540,18002,18577,19178,19820,20494,21216,21944,22681,23382,24074,24731,25336,25889,26314,26633,26880,26977,26981,26889,26672,26357,25966,25477,24917,24319,23699,23066,22413,21755,21117,20515,19930,19392,18890,18413,18009,17656,17319,17043,16784,16549,16342,16139,15950,15745,15569,15421,15273,15170,15060,14988,14926,14866,14848,14836,14841,14883,14893,14938,14983,15000,15063,15125,15117,15145,15137,15150,15182,15205,15186,15185,15135,15065,15008,14942,14867,14781,14638,14484,14316,14125,13909,13716,13457,13204,12939,12653,12369,12090,11778,11496,11223,10978,10741,10500,10236,9928,9611,9315,9025,8799,8593,8409,8257,8122,8032,7938,7883,7830,7757,7681,7549,7365,7216,7078,6980,6874,6792,6715,6678,6636,6627,6605,6583,6573,6585,6583,6427,6129,5706,5085,21.9,22.1,22.7,1568701,0.3,12.9,12.0,5.0,448,-1.00,-1.00,58.8693,-19.307638,0.000614,,,,,252 +SATSLF0720,2024246,18.013437,4.12,0.0577,0.1063,0.0205,0.00,16031,653,1,701,705,709,701,714,717,727,726,734,725,733,738,783,902,1209,1934,3075,4422,5665,6561,7214,7690,8096,8543,9063,9682,10412,11277,12269,13362,14544,15696,16802,17736,18458,18877,19015,18836,18459,17929,17350,16800,16334,15971,15747,15681,15767,16013,16417,16998,17728,18647,19697,20906,22231,23656,25126,26603,27995,29231,30231,30977,31388,31381,31062,30408,29512,28442,27239,26054,24915,23845,22852,22005,21290,20672,20199,19812,19544,19391,19306,19302,19415,19591,19856,20194,20631,21154,21722,22322,22995,23638,24255,24827,25304,25658,25933,25961,25857,25574,25108,24474,23749,22966,22102,21234,20397,19631,18934,18286,17724,17257,16856,16534,16277,16117,16014,15957,15995,16096,16262,16466,16779,17131,17576,18053,18609,19202,19847,20521,21250,21984,22716,23428,24122,24784,25372,25921,26359,26669,26908,27027,27047,26941,26738,26405,26008,25505,24955,24361,23747,23107,22454,21799,21158,20563,19986,19413,18928,18454,18051,17680,17361,17057,16795,16564,16377,16173,15981,15783,15611,15434,15299,15195,15074,15015,14930,14889,14869,14863,14870,14908,14926,14965,15008,15049,15101,15156,15168,15166,15179,15177,15208,15210,15213,15211,15145,15097,15045,14979,14898,14804,14658,14525,14344,14155,13926,13723,13481,13223,12953,12685,12384,12096,11799,11508,11239,10993,10755,10519,10257,9961,9637,9322,9053,8809,8604,8434,8260,8147,8037,7951,7883,7825,7772,7683,7543,7377,7215,7090,6973,6882,6801,6738,6677,6653,6601,6606,6598,6589,6610,6597,6451,6145,5725,5107,22.0,22.2,22.8,1568702,0.3,12.9,11.9,5.0,448,-1.00,-1.00,59.1172,-19.436278,0.000631,,,,,14 +SATSLF0720,2024246,18.013692,4.00,0.0560,0.1075,0.0211,0.00,16001,653,1,708,708,705,710,716,714,722,736,726,731,737,744,782,887,1205,1917,3065,4411,5639,6557,7207,7682,8089,8529,9048,9650,10393,11263,12233,13340,14504,15656,16749,17693,18416,18849,18978,18801,18421,17900,17308,16757,16285,15927,15723,15648,15729,15972,16393,16962,17703,18612,19652,20862,22165,23588,25065,26532,27944,29161,30162,30913,31294,31291,30987,30359,29452,28404,27173,26020,24861,23809,22808,21973,21221,20626,20153,19763,19491,19336,19255,19269,19372,19560,19833,20169,20602,21109,21680,22280,22963,23593,24200,24781,25249,25607,25876,25920,25788,25524,25057,24433,23718,22925,22056,21201,20352,19597,18903,18240,17691,17214,16803,16516,16253,16073,15991,15927,15944,16055,16219,16448,16744,17086,17517,18005,18582,19184,19795,20479,21211,21941,22699,23388,24082,24741,25325,25889,26307,26633,26880,26992,27001,26900,26690,26376,25943,25456,24905,24311,23699,23062,22413,21753,21117,20531,19928,19371,18880,18413,18013,17661,17314,17026,16777,16534,16355,16137,15947,15750,15572,15397,15261,15161,15062,14993,14894,14860,14867,14857,14864,14886,14905,14948,14985,15003,15067,15120,15122,15143,15146,15155,15181,15197,15208,15190,15144,15085,15025,14960,14865,14777,14642,14490,14333,14133,13917,13708,13470,13209,12921,12655,12354,12062,11769,11493,11222,10965,10743,10496,10238,9930,9623,9317,9032,8781,8566,8408,8249,8127,8042,7959,7885,7831,7745,7675,7533,7371,7214,7089,6969,6884,6782,6721,6649,6631,6597,6597,6582,6568,6603,6605,6437,6143,5714,5101,22.0,22.2,22.8,1568703,0.0,12.9,12.0,5.0,448,-1.00,-1.00,59.6684,-19.625813,0.000588,,,,,108 +SATSLF0720,2024246,18.013946,4.18,0.0585,0.1062,0.0206,0.00,16039,653,1,708,717,709,701,711,699,721,721,730,738,734,752,772,891,1212,1925,3069,4429,5676,6580,7225,7709,8134,8573,9091,9717,10440,11306,12289,13385,14561,15707,16827,17753,18468,18909,19037,18856,18474,17960,17382,16825,16358,16003,15779,15713,15793,16050,16429,17019,17762,18658,19728,20936,22249,23681,25149,26624,28026,29273,30264,31008,31388,31419,31081,30440,29524,28488,27273,26078,24929,23879,22873,22027,21297,20685,20229,19833,19553,19403,19312,19316,19413,19589,19859,20202,20654,21173,21740,22346,23010,23651,24262,24835,25302,25670,25947,25997,25872,25602,25124,24485,23779,22985,22110,21243,20407,19646,18955,18285,17726,17258,16853,16541,16276,16123,16011,15972,15996,16093,16251,16474,16776,17141,17577,18048,18619,19225,19851,20525,21239,21988,22729,23438,24142,24795,25384,25937,26354,26692,26930,27028,27044,26946,26731,26425,26023,25529,24966,24381,23752,23093,22467,21797,21146,20556,19953,19399,18915,18456,18062,17704,17369,17085,16807,16584,16366,16161,15957,15776,15610,15449,15310,15185,15074,15003,14933,14891,14881,14878,14888,14913,14933,14966,15009,15040,15083,15151,15152,15169,15181,15182,15210,15226,15217,15211,15162,15108,15041,14973,14881,14781,14662,14503,14340,14155,13943,13731,13498,13226,12960,12680,12392,12101,11799,11509,11243,11002,10751,10529,10256,9954,9620,9319,9034,8807,8596,8425,8265,8138,8048,7969,7895,7850,7778,7689,7549,7364,7210,7081,6962,6867,6784,6729,6674,6631,6631,6607,6589,6590,6605,6600,6437,6139,5703,5095,22.0,22.2,22.8,1568704,0.1,13.0,12.0,5.0,443,-1.00,-1.00,58.5221,-19.206512,0.000554,,,,,63 +SATSLF0720,2024246,18.014198,4.09,0.0573,0.1079,0.0213,0.00,15998,653,1,706,697,703,706,709,707,727,737,724,727,739,749,781,899,1214,1927,3070,4421,5658,6550,7199,7677,8097,8526,9038,9654,10377,11257,12237,13332,14507,15653,16759,17686,18401,18829,18962,18789,18405,17891,17309,16754,16275,15942,15706,15648,15731,15977,16385,16965,17692,18584,19636,20845,22149,23578,25034,26507,27918,29152,30141,30890,31285,31305,30965,30333,29426,28379,27158,25984,24842,23780,22789,21956,21232,20629,20151,19773,19480,19338,19237,19249,19361,19549,19808,20163,20580,21111,21664,22262,22939,23582,24175,24757,25229,25589,25862,25907,25805,25517,25053,24431,23706,22921,22052,21191,20344,19595,18902,18248,17687,17223,16817,16504,16262,16098,15991,15947,15969,16061,16221,16428,16729,17101,17524,18006,18571,19192,19812,20512,21216,21952,22674,23377,24073,24747,25309,25879,26312,26629,26888,26989,26993,26890,26688,26357,25960,25477,24904,24325,23700,23052,22384,21758,21131,20521,19934,19381,18884,18418,17997,17645,17301,17030,16772,16550,16345,16140,15942,15763,15578,15409,15281,15168,15060,14993,14916,14882,14854,14859,14858,14883,14903,14941,14986,15022,15077,15114,15133,15147,15169,15149,15171,15198,15197,15186,15145,15084,15020,14968,14869,14771,14630,14481,14314,14124,13919,13696,13467,13205,12953,12661,12376,12078,11771,11495,11237,10977,10751,10509,10241,9953,9617,9312,9017,8776,8570,8402,8253,8117,8015,7953,7883,7828,7763,7677,7541,7372,7213,7078,6976,6869,6782,6715,6670,6636,6619,6609,6591,6581,6600,6579,6434,6137,5704,5104,22.0,22.2,22.8,1568705,0.2,13.0,12.0,5.0,443,-1.00,-1.00,59.2052,-19.419682,0.000547,,,,,177 +SATSLF0720,2024246,18.014454,4.11,0.0575,0.1070,0.0210,0.00,16025,653,1,722,714,713,701,722,699,712,713,737,733,743,755,784,911,1223,1951,3085,4439,5659,6584,7225,7686,8119,8570,9082,9715,10442,11312,12304,13398,14570,15720,16812,17779,18486,18917,19037,18861,18489,17963,17373,16823,16362,16013,15777,15712,15782,16026,16438,17014,17741,18644,19700,20906,22219,23657,25122,26615,27997,29243,30234,30984,31367,31378,31037,30395,29491,28440,27213,26048,24902,23834,22840,21999,21277,20681,20185,19803,19520,19377,19278,19287,19394,19585,19849,20200,20630,21148,21701,22314,22973,23632,24213,24801,25293,25658,25924,25962,25842,25576,25094,24448,23744,22947,22087,21228,20388,19605,18906,18266,17710,17240,16842,16522,16259,16103,15997,15960,15993,16061,16243,16445,16755,17124,17538,18023,18592,19192,19813,20497,21227,21958,22697,23406,24102,24766,25351,25920,26329,26644,26885,26991,27021,26917,26692,26386,25988,25496,24939,24350,23723,23080,22413,21757,21131,20522,19933,19397,18903,18426,18043,17678,17335,17049,16779,16547,16356,16149,15960,15763,15577,15425,15288,15176,15063,15001,14921,14885,14871,14874,14885,14909,14913,14958,15002,15021,15091,15133,15157,15160,15155,15168,15184,15200,15205,15189,15149,15092,15027,14961,14880,14784,14651,14489,14322,14138,13924,13718,13486,13210,12952,12665,12380,12087,11799,11517,11243,11007,10759,10531,10250,9952,9623,9318,9033,8788,8586,8425,8266,8145,8041,7957,7892,7834,7771,7673,7544,7367,7212,7085,6979,6867,6795,6726,6680,6622,6611,6607,6594,6576,6606,6603,6445,6153,5717,5103,22.0,22.2,22.8,1568706,0.1,12.9,11.9,5.0,444,-1.00,-1.00,58.1038,-19.008281,0.000570,,,,,96 +SATSDF0720,2024246,18.259138,0.00,0.0000,0.0000,0.0000,0.00,653,0,1,639,619,625,634,624,631,629,631,639,626,632,621,619,613,631,617,635,629,643,640,654,645,646,663,652,663,660,665,670,669,669,660,654,653,651,654,654,648,654,650,664,653,663,665,676,665,666,676,658,647,650,650,648,655,666,667,681,662,654,667,656,653,652,660,645,652,654,662,651,667,666,659,661,670,665,661,659,650,659,656,673,657,653,660,664,661,656,660,650,657,658,652,661,661,661,654,655,653,667,662,645,659,653,649,648,641,644,655,650,662,657,646,653,646,647,645,649,656,653,669,653,661,662,656,651,649,633,635,646,637,647,643,659,640,647,647,651,641,658,659,661,660,649,657,654,667,671,660,677,648,661,656,640,647,646,652,661,669,662,656,658,651,645,660,649,649,651,645,659,658,669,650,656,657,653,662,644,651,656,657,651,650,657,647,653,648,653,652,649,658,657,650,649,662,661,648,646,657,654,637,655,653,649,665,662,661,653,649,654,651,652,657,652,649,638,656,640,645,647,659,648,639,652,654,660,661,652,650,662,661,653,649,653,661,654,659,672,653,661,650,651,663,650,659,664,654,675,669,651,657,653,667,665,650,660,501,0.0,0.0,0.0,1568705,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,156 +SATSLF0720,2024246,18.259703,3.92,0.0549,0.1016,0.0171,0.00,16195,653,1,714,706,707,711,711,724,729,716,723,728,726,748,765,883,1216,1939,3108,4496,5738,6665,7298,7774,8203,8640,9179,9806,10561,11440,12451,13564,14746,15911,17024,17973,18702,19152,19267,19099,18715,18181,17575,17021,16562,16182,15965,15891,15982,16212,16652,17226,17974,18869,19947,21173,22493,23958,25428,26901,28343,29605,30624,31370,31780,31785,31464,30813,29901,28826,27592,26400,25230,24153,23139,22288,21546,20936,20452,20072,19781,19618,19508,19534,19641,19828,20102,20461,20901,21416,21970,22594,23254,23909,24513,25085,25565,25932,26207,26256,26141,25860,25364,24726,23981,23190,22316,21437,20596,19829,19122,18468,17906,17423,17013,16681,16439,16264,16179,16133,16154,16249,16401,16637,16923,17293,17710,18204,18773,19400,20042,20716,21447,22194,22938,23653,24363,25028,25623,26183,26608,26947,27174,27296,27308,27204,27001,26657,26251,25765,25192,24613,23957,23320,22666,21996,21367,20754,20150,19590,19085,18617,18220,17856,17509,17235,16962,16714,16516,16305,16106,15913,15728,15577,15430,15313,15200,15133,15067,15021,14995,14999,14998,15043,15056,15064,15115,15145,15194,15257,15269,15274,15273,15303,15309,15337,15337,15331,15281,15216,15159,15078,15003,14917,14768,14617,14442,14243,14030,13823,13600,13320,13059,12778,12475,12180,11895,11593,11317,11077,10825,10601,10331,10034,9710,9395,9115,8861,8661,8485,8329,8189,8095,8027,7947,7890,7838,7737,7596,7414,7266,7125,7019,6920,6841,6774,6717,6690,6665,6658,6639,6627,6649,6631,6491,6195,5764,5136,21.9,21.9,22.2,1568707,0.1,12.9,11.9,5.0,566,-1.00,-1.00,58.7959,-19.538248,0.000528,,,,,83 +SATSLF0720,2024246,18.259893,3.99,0.0558,0.1017,0.0173,0.00,16187,653,1,699,697,703,697,705,711,722,722,727,718,723,727,765,875,1218,1941,3099,4486,5713,6656,7305,7782,8211,8656,9178,9796,10547,11414,12421,13539,14706,15889,17011,17976,18701,19133,19269,19090,18701,18151,17578,17001,16548,16194,15947,15891,15978,16228,16621,17199,17959,18865,19930,21161,22477,23941,25413,26906,28349,29594,30606,31352,31762,31746,31437,30778,29863,28807,27561,26387,25209,24137,23133,22279,21545,20930,20449,20057,19760,19595,19506,19531,19626,19814,20085,20436,20877,21393,21953,22576,23232,23897,24506,25079,25553,25916,26185,26228,26121,25838,25357,24716,23993,23212,22324,21453,20581,19816,19113,18455,17885,17415,17011,16677,16426,16272,16165,16117,16142,16224,16384,16610,16910,17273,17704,18199,18777,19396,20039,20725,21459,22194,22934,23633,24355,25017,25621,26176,26609,26925,27170,27272,27289,27197,26992,26657,26256,25745,25202,24604,23971,23318,22653,21994,21344,20725,20149,19581,19082,18619,18205,17835,17504,17235,16950,16731,16497,16295,16098,15913,15727,15552,15417,15306,15209,15129,15045,15023,14987,15000,15001,15034,15048,15081,15128,15163,15213,15268,15274,15272,15297,15296,15319,15331,15334,15326,15266,15204,15151,15089,14996,14905,14763,14601,14421,14241,14035,13812,13587,13320,13053,12761,12472,12176,11883,11588,11315,11063,10829,10589,10318,10017,9701,9399,9109,8857,8650,8481,8329,8178,8089,8009,7937,7885,7824,7737,7584,7418,7264,7146,7029,6917,6827,6767,6698,6672,6656,6634,6628,6627,6647,6631,6494,6178,5740,5128,21.9,21.9,22.4,1568707,0.0,12.9,11.9,5.0,465,-1.00,-1.00,58.4713,-19.389536,0.000537,,,,,198 +SATSLF0720,2024246,18.260158,4.03,0.0565,0.1014,0.0177,0.00,16177,653,1,713,711,712,709,706,712,725,718,717,723,724,729,767,891,1217,1943,3127,4503,5734,6664,7282,7779,8202,8644,9171,9811,10557,11425,12428,13538,14727,15895,16992,17963,18704,19132,19260,19092,18714,18176,17576,17009,16562,16193,15953,15884,15962,16215,16622,17200,17958,18855,19955,21165,22493,23929,25433,26925,28340,29586,30582,31332,31739,31751,31429,30774,29859,28785,27557,26366,25201,24110,23127,22254,21518,20914,20432,20046,19749,19600,19520,19509,19611,19801,20087,20413,20865,21381,21952,22564,23248,23891,24493,25079,25557,25910,26172,26228,26100,25811,25335,24700,23976,23184,22296,21447,20594,19813,19093,18449,17896,17408,16997,16664,16413,16247,16152,16090,16128,16215,16388,16615,16917,17289,17714,18194,18770,19377,20008,20695,21426,22153,22909,23633,24333,24988,25577,26160,26581,26891,27142,27249,27267,27162,26963,26633,26219,25741,25169,24573,23929,23288,22612,21963,21317,20709,20105,19546,19072,18580,18181,17821,17493,17197,16933,16699,16490,16291,16094,15895,15721,15539,15395,15282,15171,15117,15029,14993,14981,14977,14987,15009,15034,15067,15105,15133,15182,15247,15261,15273,15265,15281,15289,15317,15324,15297,15259,15187,15138,15057,14969,14875,14741,14599,14417,14225,14021,13807,13577,13309,13029,12744,12447,12166,11869,11584,11315,11060,10809,10574,10298,10007,9693,9369,9102,8850,8641,8467,8322,8181,8091,8007,7928,7881,7802,7723,7584,7393,7255,7132,7009,6904,6822,6756,6706,6666,6654,6655,6647,6629,6633,6634,6482,6178,5750,5136,21.9,21.9,22.4,1568708,0.1,12.9,12.0,5.0,457,-1.00,-1.00,58.0467,-19.207676,0.000569,,,,,233 +SATSLF0720,2024246,18.260416,3.89,0.0545,0.1024,0.0175,0.00,16158,653,1,710,711,723,714,713,723,713,723,726,725,715,742,776,880,1209,1938,3097,4469,5707,6629,7281,7773,8192,8633,9166,9787,10538,11397,12403,13527,14705,15861,16980,17934,18653,19090,19217,19041,18666,18126,17526,16971,16512,16144,15909,15847,15922,16154,16579,17167,17911,18824,19908,21114,22447,23890,25378,26862,28272,29532,30530,31299,31694,31688,31373,30722,29812,28754,27518,26335,25141,24087,23061,22219,21489,20877,20393,20013,19725,19574,19473,19488,19581,19781,20029,20375,20826,21346,21920,22550,23208,23857,24449,25021,25497,25865,26134,26192,26060,25781,25301,24685,23953,23152,22283,21405,20551,19781,19065,18415,17838,17391,16978,16662,16413,16247,16139,16096,16112,16197,16358,16587,16873,17249,17685,18173,18749,19361,19996,20683,21410,22153,22887,23597,24307,24953,25564,26123,26548,26871,27115,27235,27245,27154,26923,26619,26206,25707,25139,24574,23924,23272,22611,21953,21315,20701,20118,19545,19047,18575,18187,17811,17476,17192,16926,16692,16480,16273,16091,15898,15701,15533,15393,15288,15173,15117,15044,14995,14981,14969,14973,15010,15013,15062,15101,15147,15182,15240,15245,15245,15259,15266,15285,15316,15301,15306,15256,15191,15145,15069,14977,14877,14745,14586,14417,14214,14010,13796,13559,13281,13024,12733,12446,12166,11857,11573,11298,11053,10810,10583,10315,10023,9701,9385,9099,8854,8638,8459,8296,8168,8083,7990,7929,7878,7822,7722,7591,7408,7267,7137,7021,6914,6833,6765,6709,6667,6655,6629,6623,6620,6642,6634,6484,6171,5742,5120,21.9,21.9,22.4,1568709,0.0,12.9,12.0,5.0,453,-1.00,-1.00,59.2469,-19.677266,0.000603,,,,,6 +SATSLF0720,2024246,18.260681,3.98,0.0557,0.1034,0.0185,0.00,16126,653,1,700,711,702,706,708,706,717,716,709,712,711,723,765,882,1219,1933,3088,4454,5684,6618,7262,7745,8153,8605,9119,9757,10502,11373,12378,13489,14666,15821,16919,17873,18585,19038,19153,18993,18606,18091,17494,16925,16456,16103,15875,15809,15892,16141,16547,17131,17873,18777,19835,21051,22378,23818,25304,26774,28215,29466,30463,31223,31614,31624,31297,30637,29735,28666,27450,26262,25101,24020,23033,22173,21454,20826,20356,19966,19677,19523,19433,19447,19549,19733,20007,20343,20773,21299,21853,22480,23131,23787,24416,24993,25477,25836,26098,26146,26006,25735,25243,24615,23913,23099,22231,21353,20508,19741,19029,18386,17816,17349,16950,16629,16375,16207,16105,16064,16094,16162,16341,16553,16852,17223,17659,18146,18714,19321,19947,20634,21358,22102,22855,23560,24263,24930,25529,26086,26518,26842,27081,27181,27193,27101,26884,26571,26184,25685,25117,24537,23894,23236,22585,21913,21277,20644,20068,19513,19008,18538,18141,17765,17451,17154,16904,16657,16458,16263,16064,15876,15689,15517,15372,15250,15165,15073,14997,14965,14938,14941,14951,14986,14998,15031,15066,15112,15149,15203,15227,15236,15247,15261,15281,15298,15288,15277,15219,15161,15111,15040,14933,14860,14720,14576,14398,14211,13977,13783,13539,13274,13000,12717,12427,12130,11847,11563,11293,11041,10812,10573,10300,9988,9667,9361,9074,8841,8624,8448,8311,8176,8067,7997,7929,7868,7801,7700,7563,7389,7247,7117,6996,6895,6818,6756,6711,6669,6642,6638,6610,6595,6627,6608,6471,6165,5745,5113,21.9,21.9,22.5,1568710,0.2,12.9,12.0,5.0,455,-1.00,-1.00,59.0185,-19.534184,0.000556,,,,,71 +SATSLF0720,2024246,18.260944,3.94,0.0552,0.1035,0.0183,0.00,16131,653,1,699,695,701,705,707,709,723,725,715,732,745,743,764,893,1213,1937,3108,4460,5691,6627,7258,7739,8173,8620,9138,9759,10502,11376,12375,13472,14647,15808,16916,17876,18604,19045,19187,18981,18619,18092,17489,16930,16460,16105,15872,15813,15897,16136,16554,17129,17872,18765,19848,21077,22381,23835,25298,26785,28210,29463,30466,31236,31616,31621,31300,30628,29732,28676,27456,26256,25117,24030,23016,22171,21443,20829,20333,19949,19674,19506,19425,19441,19556,19745,19984,20348,20784,21297,21865,22497,23146,23801,24405,24985,25472,25827,26085,26135,26012,25737,25256,24619,23906,23109,22224,21357,20505,19733,19027,18363,17819,17352,16941,16634,16386,16219,16126,16061,16093,16181,16339,16579,16866,17241,17652,18157,18717,19317,19968,20646,21385,22122,22853,23574,24274,24935,25529,26101,26518,26839,27081,27182,27194,27104,26892,26553,26183,25697,25117,24528,23884,23236,22570,21905,21269,20662,20067,19528,19034,18574,18165,17785,17454,17159,16887,16641,16427,16242,16050,15873,15683,15534,15381,15268,15158,15083,15005,14980,14961,14955,14962,14993,15015,15033,15081,15111,15157,15218,15235,15235,15255,15258,15269,15307,15294,15284,15246,15182,15117,15047,14953,14862,14724,14588,14401,14214,14017,13789,13544,13285,13027,12718,12443,12155,11849,11562,11291,11044,10818,10573,10301,9998,9668,9361,9086,8845,8635,8469,8316,8187,8069,7997,7922,7877,7797,7719,7571,7405,7250,7143,7017,6920,6825,6752,6707,6662,6651,6653,6625,6607,6651,6629,6487,6157,5742,5125,21.9,21.9,22.5,1568711,0.2,12.9,12.0,5.0,452,-1.00,-1.00,59.0259,-19.538517,0.000596,,,,,1 +SATSLF0720,2024246,18.261202,4.08,0.0572,0.1028,0.0179,0.00,16152,653,1,704,712,717,713,709,727,724,717,727,717,731,757,778,889,1215,1947,3095,4463,5706,6633,7287,7757,8187,8645,9173,9785,10547,11405,12404,13512,14685,15840,16962,17908,18643,19077,19210,19014,18645,18105,17522,16960,16504,16135,15908,15834,15925,16178,16583,17175,17908,18813,19882,21099,22417,23860,25348,26851,28249,29513,30528,31258,31659,31665,31341,30696,29776,28728,27482,26302,25142,24062,23061,22214,21468,20858,20375,19981,19700,19566,19456,19477,19569,19760,20029,20360,20801,21318,21881,22513,23191,23822,24455,25009,25497,25857,26128,26178,26048,25773,25301,24661,23933,23138,22271,21385,20541,19771,19072,18407,17845,17375,16971,16653,16416,16234,16136,16085,16117,16192,16356,16580,16888,17248,17675,18183,18741,19341,19975,20663,21403,22144,22885,23610,24293,24962,25552,26129,26537,26871,27114,27223,27237,27145,26917,26596,26189,25693,25141,24545,23911,23268,22605,21952,21321,20693,20116,19541,19036,18568,18165,17801,17461,17183,16926,16685,16481,16273,16071,15885,15691,15533,15382,15269,15169,15101,15016,15001,14974,14978,14992,15027,15033,15069,15105,15136,15177,15239,15249,15257,15259,15261,15299,15312,15300,15304,15246,15192,15131,15064,14979,14880,14733,14593,14408,14215,14007,13796,13553,13289,13028,12750,12455,12160,11865,11585,11311,11049,10817,10579,10318,10013,9693,9378,9094,8848,8637,8465,8305,8192,8099,8013,7933,7892,7816,7717,7575,7405,7245,7109,7013,6912,6835,6780,6725,6682,6651,6655,6634,6614,6631,6637,6489,6169,5743,5119,21.9,22.0,22.6,1568712,0.0,12.9,11.9,5.0,452,-1.00,-1.00,58.3174,-19.272841,0.000530,,,,,56 +SATSLF0720,2024246,18.261468,4.03,0.0564,0.1035,0.0185,0.00,16136,653,1,708,699,709,705,709,709,709,729,725,720,727,738,765,882,1209,1934,3093,4474,5709,6628,7289,7767,8181,8634,9141,9754,10510,11370,12371,13488,14665,15828,16945,17892,18632,19065,19192,19016,18632,18097,17509,16932,16481,16116,15875,15830,15901,16163,16563,17149,17909,18808,19865,21080,22397,23840,25314,26805,28217,29478,30472,31227,31622,31645,31332,30668,29748,28672,27453,26272,25108,24032,23044,22185,21445,20829,20346,19959,19691,19530,19428,19453,19549,19741,20016,20365,20804,21312,21873,22491,23143,23795,24416,24987,25456,25835,26092,26149,26048,25757,25284,24637,23915,23120,22247,21373,20523,19749,19042,18384,17824,17361,16953,16624,16384,16205,16100,16066,16089,16180,16334,16582,16874,17249,17667,18153,18725,19324,19965,20649,21375,22114,22862,23568,24283,24951,25529,26101,26516,26842,27077,27193,27210,27127,26918,26578,26171,25696,25124,24532,23874,23235,22560,21891,21272,20673,20083,19529,19032,18564,18170,17792,17466,17182,16892,16675,16456,16248,16070,15870,15673,15518,15379,15273,15157,15090,15008,14977,14960,14962,14968,14997,15009,15048,15080,15115,15177,15229,15237,15246,15261,15255,15286,15306,15315,15297,15237,15183,15111,15047,14953,14867,14707,14583,14404,14216,14018,13794,13557,13287,13030,12745,12466,12164,11871,11560,11307,11045,10804,10571,10306,10004,9676,9367,9083,8829,8639,8457,8298,8171,8077,7994,7925,7879,7813,7723,7575,7393,7252,7108,7001,6899,6809,6741,6708,6664,6646,6642,6624,6600,6625,6611,6461,6163,5723,5119,21.9,22.0,22.6,1568713,0.1,12.9,11.9,5.0,446,-1.00,-1.00,58.4517,-19.308373,0.000570,,,,,8 +SATSLF0720,2024246,18.261731,4.00,0.0561,0.1051,0.0202,0.00,16076,653,1,701,697,704,705,716,710,714,720,730,740,737,730,775,875,1199,1933,3077,4438,5682,6597,7249,7721,8139,8599,9117,9717,10474,11338,12321,13435,14605,15771,16874,17835,18545,18981,19122,18934,18556,18022,17438,16878,16410,16056,15826,15780,15849,16080,16491,17078,17819,18721,19789,20996,22309,23753,25229,26701,28112,29366,30361,31104,31498,31500,31177,30545,29636,28565,27355,26181,25008,23934,22941,22088,21368,20773,20277,19883,19618,19459,19357,19371,19476,19666,19926,20264,20709,21211,21790,22390,23072,23721,24345,24914,25378,25742,26011,26050,25937,25657,25173,24544,23815,23032,22169,21284,20449,19675,18961,18327,17761,17296,16896,16558,16316,16154,16058,16016,16034,16119,16289,16494,16791,17169,17609,18092,18644,19265,19892,20569,21301,22042,22781,23492,24186,24858,25437,26007,26433,26745,26988,27101,27109,27021,26789,26464,26067,25597,25017,24442,23809,23156,22503,21853,21201,20595,19995,19455,18954,18493,18099,17728,17390,17094,16847,16585,16393,16189,16001,15809,15630,15445,15319,15210,15101,15042,14965,14932,14914,14917,14909,14950,14962,15006,15028,15063,15104,15163,15176,15186,15211,15198,15239,15250,15253,15237,15191,15117,15054,14980,14890,14803,14677,14531,14349,14169,13970,13746,13504,13260,12980,12693,12396,12103,11812,11520,11254,11001,10770,10533,10269,9978,9645,9337,9048,8812,8602,8425,8278,8138,8042,7964,7887,7835,7774,7678,7528,7374,7225,7101,6987,6898,6831,6741,6686,6654,6622,6616,6585,6588,6611,6615,6453,6143,5730,5105,21.9,22.0,22.6,1568714,0.3,12.9,12.0,5.0,451,-1.00,-1.00,58.7865,-19.375163,0.000539,,,,,68 +SATSLF0720,2024246,18.261991,4.05,0.0568,0.1060,0.0203,0.00,16051,653,1,708,707,713,725,715,717,727,718,731,731,728,725,779,880,1207,1933,3091,4458,5678,6589,7230,7703,8129,8574,9079,9701,10446,11305,12296,13394,14579,15733,16823,17773,18493,18921,19048,18881,18516,17969,17393,16841,16384,16014,15800,15717,15806,16034,16452,17043,17781,18682,19736,20951,22263,23690,25165,26632,28050,29280,30278,31028,31425,31430,31109,30473,29561,28514,27301,26130,24973,23899,22907,22065,21321,20719,20240,19846,19581,19421,19321,19325,19445,19627,19902,20256,20673,21191,21752,22361,23028,23669,24274,24845,25331,25676,25944,25992,25890,25609,25156,24506,23780,22994,22117,21243,20403,19652,18954,18292,17734,17280,16865,16534,16307,16117,16021,15991,16013,16108,16265,16488,16781,17148,17568,18064,18629,19232,19867,20558,21268,22016,22752,23437,24151,24811,25390,25954,26376,26699,26946,27045,27075,26979,26756,26449,26045,25554,24986,24390,23748,23128,22470,21815,21182,20579,19993,19440,18956,18469,18061,17692,17357,17068,16809,16577,16384,16193,15995,15800,15613,15457,15305,15201,15089,15021,14937,14913,14881,14886,14909,14928,14945,14974,15019,15042,15095,15144,15149,15171,15188,15181,15221,15236,15213,15211,15164,15121,15051,14984,14900,14803,14673,14518,14345,14151,13938,13733,13482,13240,12971,12681,12389,12087,11799,11512,11259,11010,10764,10535,10241,9956,9633,9327,9050,8796,8595,8409,8267,8129,8022,7959,7892,7847,7788,7690,7553,7377,7225,7080,6979,6880,6802,6731,6690,6645,6626,6613,6604,6573,6607,6613,6454,6147,5726,5114,21.9,22.1,22.6,1568715,0.1,12.9,12.0,5.0,451,-1.00,-1.00,58.9691,-19.409300,0.000485,,,,,76 +SATSLF0720,2024246,18.262253,4.08,0.0571,0.1050,0.0195,0.00,16088,653,1,697,709,719,717,731,736,726,725,737,743,740,741,770,885,1215,1925,3077,4441,5675,6613,7250,7739,8146,8578,9110,9717,10455,11329,12321,13429,14603,15761,16852,17801,18517,18962,19082,18907,18551,18022,17430,16861,16423,16059,15835,15753,15831,16077,16490,17076,17821,18701,19768,20961,22286,23746,25240,26709,28151,29365,30363,31112,31506,31496,31190,30537,29634,28576,27352,26165,25015,23945,22954,22109,21370,20754,20283,19886,19619,19456,19363,19377,19485,19677,19926,20285,20712,21234,21802,22417,23095,23730,24349,24918,25389,25770,26025,26074,25957,25677,25185,24557,23844,23048,22174,21309,20459,19690,18994,18346,17789,17327,16917,16586,16351,16168,16072,16037,16038,16139,16285,16522,16818,17179,17623,18112,18673,19291,19912,20593,21314,22049,22796,23506,24227,24874,25463,26012,26443,26781,27005,27141,27146,27050,26838,26493,26117,25610,25063,24462,23828,23181,22527,21867,21234,20615,20029,19480,18979,18510,18103,17747,17413,17129,16866,16610,16414,16200,16027,15835,15652,15472,15347,15214,15127,15057,14984,14945,14937,14931,14938,14954,14981,15013,15046,15075,15121,15178,15190,15199,15232,15236,15240,15283,15267,15254,15221,15142,15079,15019,14937,14840,14695,14539,14375,14191,13973,13757,13514,13261,13003,12714,12426,12130,11829,11537,11274,11019,10788,10541,10285,9984,9673,9351,9077,8836,8623,8456,8293,8167,8057,7971,7901,7845,7791,7695,7566,7393,7240,7119,6993,6885,6819,6754,6689,6653,6627,6625,6624,6617,6621,6635,6477,6162,5737,5113,21.9,22.1,22.6,1568716,0.0,12.9,11.9,5.0,450,-1.00,-1.00,58.8941,-19.419979,0.000611,,,,,82 +SATSLF0720,2024246,18.262514,4.07,0.0570,0.1057,0.0199,0.00,16060,653,1,712,709,716,712,720,725,730,729,736,738,741,746,763,883,1207,1927,3077,4441,5682,6587,7243,7706,8130,8557,9079,9693,10428,11303,12281,13392,14569,15721,16840,17785,18497,18930,19065,18868,18491,17963,17394,16821,16377,16025,15795,15715,15803,16058,16462,17040,17776,18682,19746,20960,22250,23700,25169,26641,28032,29306,30301,31060,31453,31451,31141,30480,29571,28531,27306,26124,24967,23907,22907,22052,21320,20731,20233,19863,19566,19423,19333,19350,19458,19634,19898,20245,20669,21197,21761,22389,23049,23693,24288,24871,25344,25716,25992,26022,25921,25632,25152,24514,23798,23000,22147,21261,20440,19675,18977,18314,17753,17281,16877,16561,16320,16146,16048,16013,16037,16104,16279,16493,16779,17147,17576,18058,18637,19240,19874,20570,21289,22017,22753,23489,24182,24826,25420,25972,26411,26729,26971,27077,27085,26993,26781,26449,26048,25563,24996,24409,23771,23143,22489,21833,21196,20602,19990,19456,18950,18483,18085,17701,17379,17082,16822,16589,16388,16190,15997,15810,15644,15462,15315,15201,15095,15022,14944,14918,14881,14891,14895,14935,14965,15001,15043,15066,15120,15165,15179,15191,15201,15205,15227,15248,15252,15241,15187,15130,15064,14993,14911,14814,14683,14538,14354,14169,13969,13749,13505,13252,12981,12700,12397,12110,11798,11528,11243,10999,10753,10535,10262,9970,9639,9347,9063,8818,8611,8433,8275,8163,8049,7975,7896,7850,7765,7683,7555,7373,7208,7083,6979,6893,6804,6747,6686,6648,6634,6635,6599,6597,6608,6596,6452,6154,5720,5107,21.9,22.1,22.7,1568717,0.1,13.0,12.0,5.0,453,-1.00,-1.00,59.1791,-19.504680,0.000549,,,,,39 +SATSLF0720,2024246,18.262774,4.13,0.0578,0.1064,0.0210,0.00,16037,653,1,692,695,692,703,719,713,717,727,738,722,729,724,766,877,1195,1907,3073,4423,5672,6586,7225,7710,8132,8582,9083,9707,10437,11303,12299,13386,14570,15725,16821,17780,18486,18921,19038,18863,18491,17957,17360,16827,16366,16006,15786,15725,15786,16045,16438,17025,17751,18666,19719,20928,22242,23673,25144,26621,28050,29277,30269,31023,31407,31397,31081,30451,29521,28471,27267,26091,24954,23869,22883,22038,21316,20700,20205,19832,19533,19383,19304,19316,19413,19613,19869,20226,20654,21169,21728,22349,22998,23648,24267,24846,25306,25681,25939,25986,25869,25596,25131,24498,23776,22991,22097,21225,20405,19633,18929,18277,17713,17259,16849,16520,16268,16113,15997,15979,15994,16096,16241,16473,16766,17133,17556,18038,18589,19207,19840,20524,21268,21984,22732,23437,24149,24793,25376,25937,26357,26679,26945,27050,27053,26974,26731,26422,26017,25536,24966,24386,23744,23101,22453,21781,21165,20553,19968,19411,18921,18448,18040,17668,17363,17078,16814,16581,16377,16161,15963,15769,15605,15427,15297,15177,15082,15000,14924,14900,14874,14865,14866,14899,14933,14951,15008,15021,15085,15142,15158,15163,15186,15186,15198,15214,15219,15213,15160,15093,15029,14970,14866,14785,14635,14510,14326,14154,13938,13715,13475,13218,12953,12675,12394,12085,11784,11508,11236,10983,10752,10511,10265,9949,9625,9304,9027,8799,8589,8417,8268,8149,8045,7961,7892,7837,7761,7677,7533,7364,7198,7083,6972,6871,6799,6736,6668,6632,6630,6597,6590,6597,6612,6597,6454,6153,5720,5101,21.9,22.1,22.7,1568718,0.1,12.9,12.0,5.0,445,-1.00,-1.00,58.6495,-19.259816,0.000572,,,,,144 +SATSLF0720,2024246,18.263036,3.99,0.0559,0.1054,0.0204,0.00,16060,653,1,715,717,721,728,728,707,721,721,717,731,736,761,781,893,1211,1947,3083,4446,5671,6601,7236,7719,8148,8570,9086,9721,10454,11309,12290,13407,14563,15725,16836,17777,18509,18941,19058,18890,18504,17975,17406,16846,16365,16008,15785,15725,15803,16053,16458,17037,17778,18685,19734,20955,22261,23714,25179,26653,28062,29301,30308,31042,31447,31450,31130,30481,29568,28538,27291,26137,24965,23893,22897,22051,21338,20709,20247,19858,19589,19444,19346,19350,19447,19625,19894,20233,20669,21189,21744,22376,23034,23666,24295,24865,25343,25714,25968,26017,25904,25628,25150,24520,23803,22997,22153,21270,20423,19653,18946,18291,17749,17287,16897,16575,16331,16153,16037,15995,16011,16107,16265,16493,16789,17157,17585,18088,18650,19253,19878,20554,21269,22021,22746,23475,24155,24822,25410,25974,26389,26725,26977,27076,27097,26994,26772,26442,26066,25568,25002,24427,23785,23129,22496,21826,21198,20579,19994,19441,18950,18466,18087,17706,17399,17104,16833,16589,16372,16187,15988,15805,15627,15464,15321,15200,15105,15041,14957,14919,14889,14902,14893,14931,14957,14996,15021,15054,15098,15159,15168,15174,15200,15202,15227,15260,15248,15247,15200,15121,15047,14983,14898,14800,14667,14522,14346,14151,13948,13747,13511,13234,12979,12702,12394,12119,11821,11533,11266,11018,10772,10540,10263,9970,9650,9342,9059,8813,8599,8424,8282,8149,8051,7972,7911,7858,7789,7706,7544,7379,7221,7090,6987,6882,6810,6748,6686,6637,6622,6620,6598,6599,6615,6609,6463,6158,5720,5095,21.9,22.1,22.7,1568719,0.4,12.9,12.0,5.0,451,-1.00,-1.00,59.3567,-19.578830,0.000585,,,,,194 +SATSLF0720,2024246,18.263297,4.12,0.0577,0.1072,0.0210,0.00,16006,653,1,681,703,701,706,711,721,728,735,746,733,734,737,773,881,1210,1923,3086,4433,5666,6581,7225,7691,8100,8554,9062,9675,10409,11281,12242,13355,14521,15669,16769,17721,18445,18865,18990,18813,18443,17903,17336,16777,16309,15957,15741,15659,15751,15993,16403,16986,17721,18628,19687,20887,22189,23616,25079,26549,27954,29198,30189,30945,31317,31321,31017,30374,29457,28422,27198,26039,24881,23808,22825,21978,21257,20669,20188,19784,19514,19345,19267,19272,19375,19563,19833,20165,20602,21108,21674,22293,22964,23605,24198,24776,25248,25612,25881,25934,25812,25547,25061,24441,23722,22921,22065,21197,20363,19598,18906,18249,17689,17221,16833,16519,16269,16096,15995,15928,15954,16043,16211,16441,16726,17095,17527,18007,18573,19186,19815,20496,21217,21950,22688,23382,24101,24741,25325,25878,26295,26637,26875,26974,26987,26906,26693,26357,25965,25481,24914,24322,23716,23057,22393,21739,21105,20501,19917,19374,18891,18427,18032,17673,17332,17054,16782,16533,16327,16120,15939,15746,15576,15425,15269,15164,15049,14981,14907,14853,14851,14846,14857,14881,14909,14941,14976,15011,15082,15125,15141,15156,15161,15159,15166,15201,15189,15181,15125,15081,15029,14942,14867,14773,14632,14474,14298,14114,13897,13689,13445,13193,12943,12661,12364,12077,11781,11493,11219,10963,10744,10489,10227,9933,9620,9305,9029,8795,8575,8407,8269,8121,8035,7957,7885,7837,7777,7685,7523,7354,7199,7062,6964,6869,6798,6738,6681,6632,6619,6597,6580,6580,6580,6577,6424,6139,5713,5092,21.9,22.1,22.8,1568720,0.0,12.9,11.9,5.0,447,-1.00,-1.00,59.0081,-19.365522,0.000545,,,,,161 +SATSLF0720,2024246,18.263559,4.15,0.0581,0.1061,0.0204,0.00,16048,653,1,703,700,712,707,718,724,730,728,743,726,717,738,775,880,1198,1927,3079,4452,5675,6576,7223,7699,8135,8572,9081,9703,10453,11314,12293,13397,14568,15709,16819,17766,18481,18914,19034,18883,18504,17975,17393,16832,16375,16017,15787,15712,15797,16040,16449,17033,17776,18685,19736,20954,22254,23690,25153,26621,28032,29275,30264,31017,31402,31409,31102,30457,29555,28488,27281,26101,24957,23893,22897,22055,21314,20714,20221,19835,19558,19402,19317,19320,19425,19617,19889,20226,20658,21181,21745,22365,23026,23665,24284,24857,25330,25694,25944,26002,25878,25613,25109,24488,23778,22990,22120,21269,20418,19645,18943,18306,17730,17274,16853,16554,16301,16121,16022,15984,16010,16107,16258,16477,16780,17158,17577,18055,18627,19238,19872,20545,21265,22011,22754,23465,24157,24818,25405,25962,26391,26707,26941,27053,27060,26961,26763,26421,26035,25542,24978,24381,23765,23122,22477,21808,21171,20571,19988,19419,18925,18474,18069,17704,17377,17088,16836,16581,16376,16169,16002,15800,15621,15453,15312,15223,15104,15033,14949,14913,14882,14882,14892,14920,14935,14978,15005,15037,15097,15149,15174,15180,15175,15191,15211,15239,15243,15236,15188,15110,15049,14979,14890,14797,14664,14531,14349,14161,13946,13733,13493,13221,12955,12679,12389,12092,11797,11528,11237,11011,10766,10530,10263,9959,9645,9330,9031,8791,8592,8416,8260,8137,8046,7979,7902,7844,7773,7685,7533,7368,7220,7085,6983,6890,6816,6730,6691,6641,6621,6607,6590,6579,6610,6591,6443,6137,5719,5090,21.9,22.2,22.8,1568721,0.1,12.9,12.0,5.0,439,-1.00,-1.00,58.4672,-19.190588,0.000503,,,,,83 +SATSLF0720,2024246,18.263827,4.14,0.0580,0.1067,0.0206,0.00,16029,653,1,706,706,708,712,721,715,715,730,743,726,738,732,759,885,1217,1932,3074,4438,5666,6587,7229,7693,8103,8552,9067,9691,10423,11284,12297,13381,14569,15713,16810,17748,18464,18902,19026,18837,18467,17941,17349,16817,16357,16003,15781,15701,15778,16045,16434,17026,17753,18658,19696,20907,22216,23645,25105,26577,27995,29238,30228,30976,31389,31397,31061,30432,29514,28469,27239,26071,24904,23828,22849,21990,21285,20675,20211,19825,19530,19384,19289,19285,19400,19582,19852,20204,20644,21153,21712,22336,23003,23645,24247,24822,25294,25648,25920,25965,25845,25571,25099,24461,23744,22956,22106,21227,20395,19621,18934,18285,17722,17258,16836,16523,16280,16113,16013,15957,15976,16084,16239,16457,16758,17131,17559,18046,18584,19202,19839,20496,21252,21981,22704,23422,24106,24773,25361,25913,26345,26677,26909,27033,27032,26933,26740,26417,26021,25521,24966,24381,23712,23083,22420,21765,21133,20546,19953,19411,18905,18440,18049,17683,17354,17074,16804,16569,16369,16160,15969,15765,15598,15438,15282,15178,15081,14997,14929,14891,14864,14883,14877,14901,14916,14958,15014,15044,15089,15141,15168,15172,15174,15201,15201,15232,15208,15194,15159,15085,15040,14962,14871,14791,14668,14513,14341,14146,13943,13717,13465,13204,12936,12656,12378,12087,11792,11516,11258,10986,10756,10518,10266,9945,9635,9323,9045,8792,8592,8406,8256,8124,8021,7955,7874,7822,7768,7685,7538,7365,7212,7091,6974,6866,6779,6718,6661,6631,6613,6593,6583,6570,6597,6579,6435,6150,5717,5101,22.0,22.2,22.8,1568722,0.2,12.9,11.9,5.0,448,-1.00,-1.00,58.6196,-19.232151,0.000466,,,,,29 +SATSLF0720,2024246,18.264085,4.23,0.0592,0.1067,0.0205,0.00,16041,653,1,700,709,717,725,724,733,723,727,737,730,728,744,776,893,1218,1929,3091,4441,5672,6572,7223,7702,8119,8560,9090,9709,10444,11309,12302,13382,14548,15715,16816,17753,18470,18905,19034,18853,18483,17957,17376,16818,16359,15993,15782,15717,15790,16034,16439,17032,17760,18674,19733,20933,22241,23677,25114,26596,28008,29240,30256,30997,31390,31421,31085,30439,29530,28468,27230,26074,24936,23869,22867,22039,21306,20692,20218,19833,19541,19383,19291,19301,19417,19605,19864,20213,20644,21174,21737,22342,23001,23637,24253,24826,25314,25667,25945,25984,25856,25597,25128,24482,23769,22965,22101,21234,20398,19629,18942,18298,17744,17261,16861,16532,16307,16137,16034,15985,16001,16097,16264,16493,16774,17130,17559,18049,18612,19213,19848,20527,21253,21986,22731,23444,24128,24801,25389,25938,26369,26693,26930,27028,27047,26928,26743,26416,26014,25531,24972,24382,23747,23101,22447,21792,21157,20555,19974,19425,18929,18453,18057,17688,17363,17081,16809,16571,16370,16162,15976,15778,15597,15425,15293,15177,15082,15008,14933,14889,14891,14881,14893,14921,14934,14982,15025,15058,15105,15148,15162,15178,15181,15195,15210,15234,15231,15208,15172,15108,15045,14967,14887,14802,14673,14507,14340,14157,13952,13736,13499,13220,12957,12687,12392,12107,11801,11524,11258,11011,10769,10521,10256,9946,9653,9338,9055,8815,8599,8428,8272,8151,8055,7979,7905,7863,7786,7700,7545,7379,7223,7093,6989,6902,6799,6735,6687,6635,6617,6621,6610,6584,6619,6614,6453,6152,5733,5113,22.0,22.2,22.8,1568723,0.0,12.9,11.9,5.0,448,-1.00,-1.00,58.1823,-19.058054,0.000536,,,,,50 +SATSLF0720,2024246,18.264351,4.08,0.0572,0.1068,0.0209,0.00,16031,653,1,708,711,715,718,712,713,723,730,740,731,741,752,783,890,1203,1931,3090,4440,5658,6589,7225,7701,8119,8557,9073,9680,10438,11292,12282,13386,14561,15709,16806,17753,18462,18899,19019,18843,18460,17922,17357,16802,16355,15996,15768,15710,15773,16024,16413,17003,17732,18628,19699,20913,22215,23662,25131,26595,28005,29229,30226,30979,31365,31379,31048,30417,29510,28461,27242,26065,24920,23841,22848,22008,21290,20666,20190,19809,19523,19374,19284,19290,19386,19594,19853,20187,20633,21152,21698,22327,22990,23641,24259,24822,25296,25654,25923,25965,25853,25581,25094,24468,23742,22957,22080,21232,20375,19611,18921,18275,17723,17242,16832,16531,16282,16113,16016,15971,16016,16090,16247,16467,16751,17113,17543,18026,18596,19211,19838,20530,21262,21988,22718,23431,24125,24781,25361,25920,26351,26673,26913,27041,27045,26939,26737,26410,26016,25517,24953,24365,23729,23086,22443,21793,21161,20555,19973,19418,18926,18465,18052,17685,17353,17067,16808,16584,16376,16162,15971,15785,15589,15425,15296,15170,15077,15006,14923,14891,14883,14885,14889,14915,14930,14981,14989,15040,15078,15145,15157,15169,15186,15189,15206,15213,15213,15218,15168,15109,15033,14962,14883,14786,14637,14496,14333,14141,13953,13724,13492,13233,12962,12674,12373,12092,11805,11521,11255,10997,10765,10520,10248,9945,9633,9331,9045,8818,8587,8422,8270,8139,8033,7965,7889,7835,7768,7679,7533,7356,7209,7097,6986,6876,6801,6735,6692,6645,6609,6595,6597,6577,6587,6596,6439,6143,5714,5101,22.0,22.2,22.8,1568724,0.3,12.9,12.0,5.0,435,-1.00,-1.00,58.9591,-19.370615,0.000555,,,,,54 +SATSLF0720,2024246,18.264616,4.07,0.0570,0.1071,0.0216,0.00,16009,653,1,712,706,699,712,722,724,733,729,737,741,741,746,770,883,1207,1918,3071,4424,5655,6571,7209,7687,8085,8551,9062,9693,10425,11280,12275,13363,14535,15693,16788,17721,18436,18859,19009,18817,18445,17923,17347,16782,16336,15965,15740,15667,15750,15995,16398,16981,17719,18625,19681,20878,22179,23623,25085,26568,27978,29210,30185,30925,31334,31342,31012,30363,29456,28425,27200,26029,24869,23799,22818,21959,21237,20629,20142,19779,19506,19361,19274,19289,19373,19568,19833,20161,20586,21091,21664,22281,22957,23610,24212,24781,25259,25620,25873,25933,25815,25533,25069,24432,23724,22928,22055,21204,20357,19595,18909,18262,17702,17245,16838,16512,16268,16089,15994,15944,15971,16072,16225,16462,16749,17108,17533,18021,18593,19182,19813,20493,21213,21961,22694,23387,24102,24763,25322,25895,26309,26631,26873,26978,26989,26905,26696,26368,25968,25497,24928,24348,23706,23051,22420,21768,21144,20532,19940,19381,18895,18429,18024,17666,17334,17049,16784,16552,16328,16140,15957,15760,15581,15421,15282,15161,15063,14993,14909,14871,14852,14860,14856,14875,14912,14941,14984,15011,15076,15124,15134,15156,15165,15178,15187,15207,15195,15184,15134,15072,15008,14944,14864,14767,14637,14484,14317,14125,13911,13710,13457,13199,12925,12657,12374,12087,11784,11496,11221,10977,10740,10501,10244,9946,9626,9317,9030,8774,8570,8407,8264,8125,8027,7947,7882,7809,7755,7666,7533,7360,7193,7069,6968,6857,6786,6725,6665,6624,6599,6594,6574,6558,6587,6587,6437,6130,5701,5095,22.0,22.2,22.8,1568724,0.1,12.9,12.0,5.0,447,-1.00,-1.00,58.9881,-19.357347,0.000575,,,,,175 +SATSDF0720,2024246,18.509141,0.00,0.0000,0.0000,0.0000,0.00,654,0,1,654,646,641,643,646,649,642,629,636,634,621,624,618,622,622,619,625,642,652,643,642,651,649,661,645,660,650,667,663,672,666,677,670,662,653,659,651,658,650,651,656,656,653,656,662,657,668,668,664,664,654,649,650,663,661,660,664,653,660,666,648,655,658,661,653,663,663,653,650,649,654,645,646,653,662,655,662,658,665,661,669,667,659,658,660,654,656,653,655,663,665,662,661,661,649,671,659,652,659,656,653,663,644,658,652,663,647,663,653,646,663,655,666,653,647,636,647,644,651,657,648,667,658,652,650,655,637,630,647,649,656,653,645,651,659,654,645,634,656,656,639,645,659,664,653,667,667,656,652,663,661,652,657,659,664,660,657,660,657,659,658,654,656,635,661,648,653,645,638,647,653,650,649,646,641,647,649,662,646,663,673,665,661,666,660,667,653,657,647,645,649,643,647,647,657,653,657,658,659,658,660,669,653,672,658,647,663,649,649,654,654,657,663,655,650,654,648,640,649,649,654,667,660,657,664,652,656,644,647,648,657,642,647,643,634,648,647,651,652,668,648,663,658,663,673,653,651,659,665,657,654,655,660,658,656,491,0.0,0.0,0.0,1568723,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,62 +SATSLF0720,2024246,18.509704,3.82,0.0535,0.1023,0.0178,0.00,16154,654,1,682,690,690,683,711,715,717,727,717,727,724,725,750,871,1181,1915,3060,4439,5692,6622,7277,7757,8177,8631,9157,9789,10530,11396,12391,13506,14681,15847,16961,17931,18658,19093,19222,19049,18670,18133,17536,16973,16509,16144,15912,15832,15919,16163,16570,17162,17901,18816,19895,21129,22446,23884,25370,26854,28277,29547,30529,31278,31691,31671,31362,30713,29805,28737,27522,26328,25169,24088,23080,22231,21482,20871,20407,20008,19733,19573,19479,19505,19592,19792,20057,20395,20821,21346,21909,22535,23192,23840,24445,25022,25509,25885,26141,26176,26067,25789,25290,24652,23927,23128,22246,21395,20526,19763,19073,18421,17845,17383,16960,16659,16390,16226,16119,16083,16112,16213,16373,16581,16879,17263,17684,18176,18752,19348,19984,20680,21405,22148,22900,23602,24315,24977,25562,26138,26558,26892,27136,27244,27246,27154,26930,26610,26199,25720,25148,24551,23914,23268,22617,21954,21305,20718,20106,19555,19060,18584,18164,17800,17472,17170,16909,16679,16482,16286,16070,15893,15702,15533,15373,15279,15175,15089,15027,14984,14981,14976,14985,15001,15034,15065,15098,15125,15173,15225,15248,15254,15261,15262,15274,15307,15290,15289,15252,15190,15137,15057,14983,14873,14725,14597,14413,14222,14005,13800,13564,13293,13033,12744,12445,12153,11846,11575,11306,11058,10803,10565,10311,10006,9682,9358,9073,8833,8629,8472,8317,8181,8082,7989,7917,7893,7824,7708,7591,7404,7265,7129,6997,6899,6819,6749,6703,6656,6651,6633,6618,6609,6641,6626,6481,6167,5744,5117,21.9,21.9,22.3,1568725,0.4,12.9,11.9,5.0,568,-1.00,-1.00,59.3643,-19.721032,0.000631,,,,,15 +SATSLF0720,2024246,18.509894,3.98,0.0558,0.1013,0.0173,0.00,16187,654,1,707,697,693,701,713,708,727,715,726,729,731,736,775,889,1207,1936,3094,4474,5713,6648,7285,7777,8209,8648,9178,9814,10557,11429,12433,13545,14742,15909,17017,17974,18701,19126,19260,19078,18698,18152,17563,16990,16528,16173,15961,15882,15963,16206,16618,17201,17943,18859,19927,21169,22482,23941,25433,26905,28345,29581,30601,31341,31743,31757,31433,30777,29858,28787,27572,26390,25210,24152,23122,22275,21525,20910,20434,20032,19758,19606,19523,19526,19645,19828,20092,20425,20874,21392,21949,22584,23245,23889,24509,25093,25578,25929,26197,26237,26113,25828,25347,24723,23985,23169,22304,21426,20582,19816,19109,18442,17880,17408,17003,16683,16434,16245,16151,16125,16138,16213,16379,16609,16909,17297,17716,18212,18782,19396,20033,20713,21429,22181,22926,23637,24347,25018,25613,26170,26600,26924,27169,27285,27278,27209,26986,26657,26265,25769,25189,24603,23954,23304,22650,21971,21339,20727,20141,19580,19091,18613,18212,17833,17495,17203,16941,16711,16489,16299,16093,15912,15726,15561,15421,15300,15192,15132,15057,15022,14998,15000,15018,15037,15061,15074,15137,15172,15202,15249,15273,15275,15300,15301,15312,15347,15341,15315,15283,15208,15151,15072,14997,14897,14761,14617,14458,14250,14032,13815,13581,13312,13044,12764,12476,12183,11877,11601,11316,11069,10832,10596,10324,10031,9705,9389,9096,8842,8647,8471,8327,8185,8083,8027,7943,7888,7821,7733,7595,7412,7253,7131,7014,6924,6849,6781,6727,6696,6676,6657,6647,6637,6664,6653,6478,6183,5762,5137,21.9,21.9,22.4,1568725,0.0,12.9,11.9,5.0,466,-1.00,-1.00,58.7461,-19.502082,0.000576,,,,,30 +SATSLF0720,2024246,18.510161,3.81,0.0534,0.1020,0.0180,0.00,16169,654,1,709,690,707,705,704,706,721,705,715,713,709,733,770,890,1215,1931,3105,4489,5717,6642,7307,7777,8204,8651,9170,9805,10551,11431,12422,13541,14713,15889,16994,17949,18680,19116,19248,19076,18687,18170,17572,17000,16544,16171,15953,15865,15939,16187,16597,17171,17947,18842,19917,21137,22467,23927,25397,26880,28315,29562,30563,31309,31726,31726,31404,30756,29857,28789,27549,26362,25186,24104,23099,22231,21512,20912,20409,20027,19742,19584,19494,19506,19607,19805,20053,20414,20841,21359,21937,22546,23210,23849,24478,25065,25531,25915,26164,26201,26087,25805,25315,24685,23965,23158,22295,21417,20569,19798,19090,18433,17858,17396,16983,16653,16404,16245,16141,16093,16119,16204,16363,16595,16880,17262,17685,18199,18765,19369,19997,20681,21423,22157,22910,23628,24329,24993,25575,26146,26564,26899,27126,27234,27238,27158,26938,26613,26218,25713,25149,24567,23924,23289,22617,21948,21331,20714,20125,19554,19063,18581,18180,17809,17477,17191,16939,16692,16486,16290,16081,15891,15706,15535,15378,15283,15168,15111,15047,15016,14980,14981,14984,14998,15012,15047,15107,15125,15176,15233,15259,15264,15285,15287,15304,15321,15319,15309,15242,15188,15130,15077,14973,14880,14743,14595,14423,14238,14029,13803,13575,13306,13036,12751,12454,12171,11876,11578,11301,11053,10813,10567,10311,10020,9686,9387,9093,8857,8648,8477,8325,8188,8085,8012,7937,7893,7818,7722,7576,7399,7247,7132,6997,6911,6842,6781,6721,6677,6654,6641,6624,6618,6633,6627,6476,6162,5740,5121,21.9,21.9,22.5,1568726,0.1,12.9,12.0,5.0,453,-1.00,-1.00,59.1438,-19.652724,0.000568,,,,,236 +SATSLF0720,2024246,18.510423,4.01,0.0562,0.1036,0.0185,0.00,16129,654,1,707,694,701,699,702,719,724,709,723,726,737,737,770,881,1198,1915,3093,4451,5672,6619,7244,7730,8173,8622,9149,9760,10507,11387,12380,13483,14684,15834,16938,17902,18620,19048,19186,19004,18636,18085,17495,16944,16490,16110,15889,15827,15894,16136,16557,17145,17890,18790,19849,21076,22394,23840,25306,26795,28231,29473,30483,31227,31629,31641,31298,30651,29734,28680,27445,26270,25097,24034,23049,22201,21465,20844,20371,19971,19683,19522,19425,19444,19521,19724,19992,20325,20783,21299,21879,22488,23159,23810,24427,24989,25469,25843,26113,26152,26018,25756,25266,24630,23922,23114,22242,21373,20526,19762,19052,18407,17836,17363,16957,16631,16369,16195,16108,16070,16081,16170,16345,16561,16859,17225,17666,18153,18726,19321,19963,20635,21355,22103,22854,23578,24269,24930,25518,26091,26521,26839,27078,27185,27189,27114,26887,26567,26166,25657,25102,24512,23888,23237,22578,21913,21277,20666,20074,19517,19015,18539,18142,17767,17440,17153,16903,16649,16441,16237,16056,15852,15680,15488,15359,15242,15146,15066,14995,14976,14952,14965,14962,14978,15015,15034,15083,15108,15155,15205,15227,15222,15234,15242,15259,15291,15269,15255,15221,15174,15113,15045,14958,14848,14714,14570,14392,14194,13973,13769,13536,13289,13009,12739,12445,12145,11846,11554,11280,11029,10789,10544,10301,9997,9668,9360,9075,8830,8618,8440,8289,8167,8060,8000,7916,7874,7801,7709,7565,7396,7228,7108,6990,6903,6832,6757,6711,6681,6650,6635,6611,6616,6616,6623,6468,6173,5736,5119,21.9,21.9,22.5,1568727,0.2,12.9,11.9,5.0,453,-1.00,-1.00,58.6082,-19.369023,0.000578,,,,,21 +SATSLF0720,2024246,18.510678,3.92,0.0549,0.1034,0.0182,0.00,16135,654,1,706,709,705,712,724,717,723,723,721,726,736,738,775,887,1202,1933,3082,4442,5691,6616,7257,7737,8170,8614,9135,9758,10503,11387,12385,13503,14675,15832,16951,17901,18627,19057,19185,18988,18626,18096,17506,16952,16482,16107,15899,15813,15890,16141,16551,17128,17875,18792,19861,21090,22405,23841,25319,26811,28229,29486,30478,31223,31630,31643,31302,30657,29739,28708,27473,26288,25136,24050,23059,22185,21467,20864,20386,19969,19699,19537,19434,19461,19562,19734,20023,20361,20785,21307,21873,22506,23161,23794,24435,25001,25461,25842,26112,26158,26025,25733,25263,24637,23915,23113,22248,21370,20531,19763,19052,18390,17827,17354,16955,16642,16377,16208,16104,16068,16069,16167,16326,16557,16873,17217,17671,18154,18724,19329,19979,20637,21383,22128,22856,23572,24274,24921,25531,26082,26501,26833,27086,27208,27216,27115,26877,26567,26170,25666,25109,24518,23902,23241,22588,21925,21289,20681,20080,19539,19041,18557,18158,17789,17443,17151,16881,16660,16461,16254,16064,15869,15682,15505,15375,15260,15169,15089,15013,14977,14950,14957,14948,14976,15015,15037,15091,15112,15162,15232,15222,15242,15253,15258,15277,15304,15301,15290,15243,15177,15121,15034,14949,14859,14717,14570,14398,14216,14005,13789,13544,13287,13015,12722,12447,12151,11874,11578,11297,11053,10809,10571,10299,10004,9658,9371,9086,8834,8631,8457,8296,8167,8061,7985,7915,7868,7803,7715,7585,7401,7254,7124,6996,6905,6835,6773,6706,6673,6671,6645,6636,6624,6628,6631,6469,6170,5733,5125,21.9,21.9,22.6,1568728,0.1,12.9,12.0,5.0,453,-1.00,-1.00,59.1671,-19.608167,0.000575,,,,,35 +SATSLF0720,2024246,18.510942,4.21,0.0589,0.1033,0.0177,0.00,16139,654,1,706,708,717,709,717,723,721,724,740,741,758,758,780,903,1224,1945,3093,4476,5700,6625,7292,7750,8174,8621,9149,9777,10509,11381,12379,13499,14672,15835,16942,17907,18615,19049,19185,19012,18621,18084,17501,16949,16477,16121,15893,15832,15911,16152,16567,17156,17893,18804,19869,21083,22411,23848,25315,26823,28226,29481,30472,31237,31637,31632,31301,30653,29745,28677,27444,26263,25117,24038,23045,22189,21463,20849,20379,19979,19702,19541,19437,19464,19557,19755,20008,20348,20796,21301,21878,22489,23158,23803,24431,25012,25473,25837,26103,26146,26037,25752,25265,24640,23924,23114,22245,21365,20527,19749,19040,18394,17837,17363,16948,16634,16381,16229,16117,16072,16087,16193,16346,16563,16866,17239,17667,18154,18717,19331,19959,20647,21374,22114,22853,23569,24292,24937,25534,26109,26536,26868,27080,27200,27215,27114,26891,26571,26181,25681,25104,24524,23888,23254,22598,21931,21293,20685,20089,19524,19046,18540,18155,17774,17453,17176,16913,16656,16453,16263,16053,15863,15681,15509,15373,15258,15153,15092,14999,14980,14957,14967,14963,14991,15011,15041,15081,15116,15169,15229,15228,15230,15242,15237,15272,15282,15303,15300,15253,15187,15139,15059,14966,14858,14722,14578,14397,14209,14000,13793,13549,13304,13024,12744,12451,12149,11865,11560,11282,11043,10813,10572,10301,10008,9692,9374,9096,8852,8640,8471,8317,8165,8083,8001,7933,7884,7818,7725,7585,7401,7248,7121,6999,6906,6827,6759,6698,6672,6641,6635,6622,6625,6635,6643,6489,6173,5757,5129,21.9,22.0,22.6,1568729,0.2,13.0,12.0,5.0,453,-1.00,-1.00,57.7983,-19.034602,0.000554,,,,,43 +SATSLF0720,2024246,18.511202,3.86,0.0540,0.1036,0.0193,0.00,16118,654,1,699,707,716,702,709,715,725,715,720,743,747,739,768,875,1201,1926,3069,4447,5687,6636,7264,7745,8179,8605,9150,9761,10505,11382,12365,13476,14668,15825,16929,17887,18614,19049,19177,19000,18624,18077,17484,16921,16475,16104,15866,15795,15882,16127,16544,17132,17857,18763,19831,21045,22375,23825,25299,26776,28193,29442,30440,31204,31586,31604,31277,30630,29697,28653,27425,26247,25088,24014,23010,22141,21431,20805,20328,19944,19668,19514,19424,19434,19536,19721,19982,20327,20755,21277,21845,22463,23115,23771,24397,24970,25442,25809,26086,26139,26011,25728,25250,24610,23882,23081,22204,21330,20498,19721,19027,18358,17805,17345,16920,16603,16373,16201,16105,16062,16074,16176,16329,16560,16849,17208,17628,18113,18697,19302,19940,20646,21361,22114,22844,23560,24253,24903,25500,26082,26493,26816,27053,27155,27161,27077,26884,26546,26164,25653,25111,24489,23863,23218,22554,21893,21261,20648,20062,19501,19008,18541,18125,17775,17433,17150,16878,16639,16442,16229,16041,15845,15660,15495,15351,15239,15133,15070,14993,14957,14953,14945,14940,14961,14980,15009,15060,15085,15136,15195,15205,15221,15239,15253,15269,15298,15285,15282,15216,15157,15085,15011,14931,14839,14711,14577,14385,14207,13999,13789,13557,13281,13015,12712,12424,12129,11829,11559,11285,11032,10789,10565,10281,9989,9658,9345,9077,8828,8619,8453,8298,8166,8062,7979,7901,7862,7781,7713,7565,7405,7241,7107,7019,6906,6821,6756,6707,6661,6640,6628,6621,6592,6617,6612,6471,6172,5733,5117,22.0,22.0,22.6,1568730,0.0,12.9,11.9,5.0,453,-1.00,-1.00,59.0938,-19.553006,0.000608,,,,,155 +SATSLF0720,2024246,18.511463,4.07,0.0570,0.1037,0.0188,0.00,16114,654,1,692,699,708,696,693,702,701,705,714,715,733,753,781,880,1191,1911,3060,4430,5671,6608,7249,7736,8155,8606,9113,9729,10499,11362,12361,13459,14647,15805,16914,17841,18580,19017,19161,18974,18598,18062,17469,16905,16448,16077,15857,15792,15865,16129,16529,17105,17856,18777,19827,21048,22365,23836,25298,26775,28200,29429,30439,31178,31575,31573,31244,30598,29691,28663,27398,26231,25068,24001,22999,22144,21419,20813,20326,19932,19661,19498,19419,19428,19517,19716,19965,20308,20754,21299,21836,22459,23124,23773,24386,24973,25444,25815,26080,26117,25995,25725,25241,24612,23890,23078,22224,21346,20489,19730,19026,18362,17813,17345,16934,16614,16369,16189,16101,16054,16091,16173,16340,16561,16841,17204,17621,18130,18696,19307,19953,20645,21368,22115,22842,23563,24241,24905,25504,26058,26486,26812,27061,27159,27159,27085,26872,26549,26141,25653,25078,24498,23850,23206,22550,21899,21266,20649,20055,19509,19013,18538,18145,17779,17437,17139,16878,16637,16437,16225,16049,15855,15682,15508,15371,15258,15157,15072,15004,14956,14953,14946,14941,14969,14995,15034,15054,15099,15154,15196,15211,15229,15240,15241,15272,15290,15279,15273,15223,15170,15101,15029,14933,14855,14720,14546,14385,14199,13977,13758,13509,13261,13022,12722,12438,12149,11845,11566,11293,11031,10801,10553,10295,9984,9672,9353,9078,8837,8613,8455,8301,8161,8065,7988,7917,7873,7790,7707,7569,7384,7239,7112,6999,6897,6814,6756,6702,6663,6649,6618,6612,6600,6629,6617,6455,6154,5712,5109,22.0,22.0,22.6,1568731,0.2,12.9,11.9,5.0,449,-1.00,-1.00,58.6344,-19.354703,0.000653,,,,,2 +SATSLF0720,2024246,18.511731,4.06,0.0569,0.1048,0.0191,0.00,16095,654,1,701,704,712,709,702,719,741,733,741,743,741,740,771,879,1193,1913,3075,4435,5679,6605,7255,7738,8161,8594,9111,9739,10478,11345,12339,13454,14616,15773,16884,17830,18551,18980,19127,18948,18561,18031,17453,16901,16449,16077,15833,15770,15850,16094,16500,17095,17838,18728,19815,21013,22336,23769,25241,26721,28150,29392,30381,31127,31523,31533,31207,30571,29658,28606,27374,26194,25040,23969,22964,22106,21395,20772,20293,19905,19618,19475,19370,19383,19499,19678,19944,20294,20739,21233,21815,22434,23095,23734,24343,24908,25414,25773,26039,26073,25965,25696,25218,24586,23857,23072,22189,21316,20471,19714,18996,18353,17783,17340,16917,16601,16360,16170,16076,16021,16035,16132,16304,16524,16828,17197,17623,18101,18693,19285,19915,20605,21322,22058,22790,23505,24197,24872,25456,26035,26466,26789,27026,27130,27142,27048,26827,26496,26093,25600,25057,24474,23837,23177,22525,21875,21223,20618,20027,19482,18989,18507,18120,17734,17427,17137,16867,16631,16433,16233,16037,15853,15661,15494,15349,15227,15134,15074,15001,14946,14931,14935,14926,14945,14966,15003,15045,15083,15137,15177,15203,15211,15220,15227,15255,15274,15269,15247,15209,15150,15092,15013,14929,14825,14690,14542,14377,14189,13991,13766,13514,13274,13008,12714,12416,12113,11829,11537,11270,11019,10785,10568,10281,9980,9664,9360,9060,8829,8625,8440,8300,8149,8066,7982,7925,7865,7799,7702,7558,7393,7222,7105,6986,6890,6813,6760,6697,6653,6628,6631,6605,6609,6616,6622,6473,6161,5733,5122,22.0,22.1,22.6,1568732,0.1,12.9,12.0,5.0,451,-1.00,-1.00,58.6606,-19.338083,0.000553,,,,,167 +SATSLF0720,2024246,18.511988,4.10,0.0575,0.1055,0.0198,0.00,16068,654,1,707,707,709,713,715,722,731,729,722,726,727,757,778,892,1219,1937,3086,4438,5680,6589,7244,7720,8145,8587,9102,9719,10471,11332,12308,13426,14615,15758,16861,17802,18521,18949,19077,18903,18524,17997,17409,16836,16393,16024,15801,15755,15809,16075,16482,17063,17797,18706,19754,20968,22279,23728,25194,26668,28073,29321,30310,31053,31460,31459,31146,30506,29605,28533,27319,26139,24983,23905,22923,22061,21348,20728,20258,19864,19589,19437,19340,19365,19450,19634,19907,20253,20680,21212,21776,22393,23053,23698,24309,24893,25357,25735,25988,26025,25909,25632,25149,24515,23808,23029,22152,21278,20434,19672,18952,18317,17761,17283,16882,16567,16329,16149,16057,16014,16028,16117,16257,16487,16784,17146,17579,18078,18649,19253,19883,20561,21285,22026,22763,23489,24182,24841,25418,25988,26415,26729,26976,27069,27097,26999,26788,26442,26057,25574,25009,24412,23788,23158,22501,21832,21219,20598,19994,19448,18949,18489,18085,17720,17401,17108,16837,16616,16398,16189,16005,15816,15620,15456,15312,15205,15113,15045,14970,14926,14905,14896,14912,14941,14957,15005,15025,15058,15112,15163,15187,15201,15217,15218,15228,15255,15259,15255,15192,15127,15068,15000,14914,14792,14671,14521,14344,14159,13954,13745,13506,13245,12985,12705,12407,12133,11814,11527,11254,11008,10771,10549,10281,9978,9653,9346,9052,8812,8608,8437,8289,8162,8059,7981,7913,7861,7798,7692,7575,7378,7219,7100,6984,6897,6804,6751,6685,6653,6634,6615,6599,6590,6603,6611,6468,6149,5739,5112,22.0,22.1,22.7,1568733,0.1,12.9,12.0,5.0,451,-1.00,-1.00,58.6948,-19.312669,0.000532,,,,,208 +SATSLF0720,2024246,18.512253,4.12,0.0577,0.1043,0.0188,0.00,16108,654,1,697,706,697,696,712,706,724,714,733,733,741,737,785,877,1219,1934,3092,4452,5689,6603,7255,7740,8149,8610,9136,9748,10501,11361,12350,13453,14637,15794,16902,17852,18567,18998,19154,18954,18578,18049,17445,16903,16448,16082,15872,15801,15866,16125,16529,17105,17850,18752,19814,21017,22338,23787,25266,26739,28158,29412,30418,31160,31557,31555,31221,30593,29670,28619,27395,26213,25074,23989,22988,22125,21397,20784,20318,19915,19654,19486,19393,19415,19506,19698,19965,20307,20750,21262,21812,22449,23105,23771,24361,24955,25421,25796,26044,26105,25962,25704,25213,24583,23867,23069,22199,21323,20491,19717,19019,18365,17805,17338,16921,16616,16369,16200,16101,16049,16070,16146,16309,16541,16834,17217,17648,18126,18693,19300,19929,20606,21355,22081,22821,23545,24250,24912,25490,26074,26493,26806,27050,27148,27161,27056,26865,26529,26117,25632,25074,24490,23845,23207,22545,21878,21241,20631,20048,19485,19000,18522,18141,17761,17442,17141,16887,16641,16424,16226,16034,15849,15667,15505,15353,15245,15149,15072,14993,14968,14941,14930,14938,14972,14996,15033,15079,15102,15142,15207,15210,15222,15242,15245,15269,15273,15285,15279,15210,15156,15102,15022,14931,14861,14710,14564,14407,14206,13997,13773,13527,13271,13017,12714,12420,12146,11843,11552,11287,11029,10801,10554,10292,9982,9661,9355,9077,8840,8617,8445,8304,8179,8078,7989,7909,7859,7804,7712,7558,7379,7235,7113,6992,6905,6820,6759,6690,6661,6637,6631,6621,6615,6632,6618,6474,6157,5735,5116,22.0,22.1,22.7,1568734,0.2,13.0,11.9,5.0,442,-1.00,-1.00,58.3267,-19.211882,0.000520,,,,,166 +SATSLF0720,2024246,18.512514,4.09,0.0573,0.1073,0.0206,0.00,16005,654,1,709,710,717,714,715,713,714,730,724,732,743,752,781,885,1191,1911,3056,4401,5614,6535,7168,7666,8083,8525,9038,9655,10383,11241,12226,13331,14488,15645,16745,17681,18388,18821,18953,18785,18425,17897,17303,16753,16285,15917,15698,15641,15721,15970,16387,16969,17708,18619,19654,20869,22165,23586,25049,26515,27920,29160,30148,30917,31306,31315,30992,30349,29443,28400,27197,26013,24880,23813,22821,21985,21257,20654,20168,19794,19501,19354,19265,19274,19383,19569,19820,20168,20612,21115,21668,22298,22956,23601,24203,24784,25256,25620,25875,25922,25821,25545,25068,24433,23719,22933,22056,21203,20352,19594,18889,18241,17691,17207,16825,16512,16249,16072,15992,15941,15968,16057,16211,16448,16738,17106,17541,18016,18590,19181,19813,20512,21225,21978,22696,23399,24092,24730,25341,25908,26337,26649,26901,26983,27001,26912,26688,26378,25978,25493,24926,24347,23702,23067,22425,21758,21130,20541,19954,19393,18909,18438,18029,17668,17348,17045,16791,16562,16373,16144,15961,15770,15580,15414,15274,15152,15059,15008,14921,14893,14884,14866,14869,14899,14923,14962,14989,15021,15058,15129,15125,15141,15153,15161,15186,15222,15213,15195,15161,15082,15041,14962,14878,14789,14647,14481,14317,14123,13910,13702,13463,13209,12941,12666,12371,12088,11801,11498,11227,10968,10739,10514,10245,9943,9617,9307,9042,8788,8576,8404,8250,8130,8020,7953,7862,7817,7753,7674,7528,7355,7219,7094,6978,6875,6778,6724,6658,6611,6603,6600,6580,6591,6606,6598,6430,6135,5709,5091,22.0,22.1,22.7,1568735,0.1,12.9,11.9,5.0,451,-1.00,-1.00,59.6619,-19.622912,0.000581,,,,,63 +SATSLF0720,2024246,18.512775,3.88,0.0543,0.1051,0.0192,0.00,16080,654,1,697,709,714,714,725,728,720,725,737,739,739,748,773,883,1214,1926,3083,4445,5685,6609,7238,7720,8141,8589,9120,9744,10485,11344,12324,13430,14601,15745,16860,17814,18539,18978,19122,18946,18565,18043,17430,16885,16407,16049,15818,15762,15829,16077,16496,17070,17816,18715,19769,20990,22302,23747,25240,26710,28119,29362,30365,31109,31499,31492,31168,30536,29626,28583,27344,26173,24998,23929,22951,22104,21370,20758,20276,19889,19597,19450,19358,19351,19475,19665,19937,20273,20699,21230,21776,22398,23065,23709,24334,24906,25373,25755,26014,26067,25947,25649,25185,24545,23838,23037,22174,21297,20450,19681,18981,18338,17773,17313,16909,16586,16338,16172,16073,16013,16032,16122,16283,16514,16811,17171,17598,18081,18661,19256,19904,20574,21317,22069,22785,23506,24203,24846,25437,26004,26421,26756,26989,27085,27102,27014,26801,26474,26078,25581,25025,24440,23806,23159,22506,21841,21226,20602,20015,19457,18964,18496,18089,17725,17394,17107,16842,16618,16405,16219,16018,15829,15640,15452,15324,15213,15112,15048,14970,14926,14903,14904,14923,14938,14963,15001,15038,15075,15116,15171,15183,15191,15205,15234,15233,15251,15243,15250,15197,15127,15089,15017,14923,14837,14696,14536,14363,14183,13973,13749,13514,13253,12991,12706,12418,12124,11831,11537,11266,11010,10763,10529,10254,9975,9645,9336,9059,8813,8613,8438,8285,8157,8058,7988,7910,7866,7797,7693,7560,7378,7228,7095,6980,6887,6814,6737,6695,6662,6637,6627,6605,6605,6628,6617,6453,6159,5718,5113,22.0,22.1,22.8,1568736,0.0,12.9,11.9,5.0,445,-1.00,-1.00,59.2553,-19.567535,0.000623,,,,,47 +SATSLF0720,2024246,18.513038,4.30,0.0603,0.1066,0.0209,0.00,16037,654,1,725,723,727,727,712,719,720,717,752,730,734,756,794,897,1206,1927,3073,4428,5664,6569,7221,7700,8111,8559,9075,9703,10434,11303,12281,13370,14544,15699,16789,17741,18455,18883,19016,18839,18482,17963,17364,16816,16345,15997,15772,15714,15793,16021,16448,17013,17771,18657,19716,20920,22235,23663,25134,26605,28017,29265,30244,30998,31381,31385,31057,30418,29499,28456,27260,26075,24930,23853,22855,22013,21285,20683,20210,19834,19557,19396,19296,19312,19415,19605,19861,20204,20633,21169,21721,22330,23005,23640,24255,24832,25308,25673,25941,25989,25858,25589,25112,24480,23771,22994,22101,21251,20405,19621,18935,18290,17744,17257,16848,16535,16298,16105,16023,15970,15988,16091,16260,16469,16776,17125,17547,18037,18606,19221,19846,20530,21252,21998,22745,23452,24137,24806,25376,25942,26357,26680,26922,27022,27042,26947,26747,26410,26024,25518,24956,24368,23729,23095,22450,21790,21167,20561,19968,19424,18921,18462,18054,17696,17378,17076,16811,16576,16388,16165,15967,15787,15593,15435,15302,15184,15089,15014,14949,14894,14889,14888,14891,14915,14930,14983,15000,15030,15086,15133,15156,15182,15186,15193,15209,15232,15232,15208,15163,15113,15034,14970,14877,14786,14657,14508,14325,14147,13941,13728,13488,13223,12950,12677,12375,12101,11805,11520,11269,11001,10769,10523,10247,9968,9629,9322,9040,8791,8601,8414,8265,8123,8045,7977,7898,7843,7791,7696,7557,7384,7222,7082,6976,6869,6787,6723,6660,6637,6618,6615,6609,6596,6609,6607,6461,6155,5723,5097,22.0,22.1,22.8,1568737,0.3,13.0,11.9,5.0,443,-1.00,-1.00,58.0494,-18.998415,0.000514,,,,,53 +SATSLF0720,2024246,18.513301,4.09,0.0573,0.1060,0.0203,0.00,16065,654,1,716,714,724,712,709,716,731,715,735,723,724,741,781,887,1201,1926,3074,4427,5660,6593,7241,7709,8137,8587,9110,9721,10464,11313,12302,13421,14589,15746,16859,17804,18522,18965,19093,18899,18534,17991,17408,16856,16384,16039,15793,15739,15810,16080,16489,17064,17803,18700,19773,20973,22291,23726,25194,26684,28074,29332,30317,31068,31454,31472,31144,30506,29585,28537,27319,26139,24983,23901,22912,22070,21330,20728,20257,19868,19584,19429,19322,19341,19445,19621,19897,20250,20675,21208,21757,22369,23050,23703,24317,24893,25369,25712,25993,26027,25917,25620,25155,24516,23794,23011,22139,21280,20424,19675,18958,18306,17751,17287,16893,16566,16317,16155,16056,16009,16029,16116,16280,16492,16797,17159,17588,18080,18654,19250,19872,20563,21280,22016,22757,23468,24176,24833,25400,25986,26405,26720,26960,27060,27085,26989,26774,26457,26075,25587,25014,24414,23789,23155,22499,21821,21198,20576,19991,19437,18938,18481,18078,17706,17403,17105,16832,16596,16388,16181,15997,15803,15626,15458,15305,15201,15101,15037,14959,14927,14904,14893,14912,14923,14953,14989,15041,15066,15117,15168,15176,15200,15197,15197,15225,15253,15252,15240,15193,15110,15054,14986,14903,14810,14684,14526,14365,14165,13952,13741,13484,13237,12974,12699,12411,12113,11805,11524,11253,11010,10765,10549,10273,9971,9653,9347,9056,8808,8608,8426,8268,8144,8055,7978,7908,7853,7788,7689,7554,7381,7224,7095,6987,6890,6807,6743,6685,6663,6628,6627,6615,6593,6615,6597,6455,6157,5720,5109,22.0,22.2,22.8,1568738,0.0,12.9,12.0,5.0,450,-1.00,-1.00,58.6426,-19.292318,0.000585,,,,,38 +SATSLF0720,2024246,18.513566,4.07,0.0570,0.1065,0.0209,0.00,16035,654,1,704,713,715,721,722,730,725,724,719,736,737,731,767,883,1215,1917,3071,4425,5653,6577,7223,7697,8128,8577,9091,9704,10446,11304,12285,13389,14547,15716,16817,17745,18472,18905,19032,18857,18478,17954,17367,16818,16365,15991,15768,15701,15782,16023,16434,17013,17761,18661,19714,20929,22230,23673,25147,26610,28023,29265,30234,30983,31382,31383,31085,30438,29524,28489,27273,26074,24931,23874,22877,22018,21287,20697,20205,19825,19549,19388,19298,19320,19409,19589,19858,20210,20636,21157,21718,22343,23005,23646,24251,24834,25305,25676,25929,25981,25861,25588,25125,24482,23767,22978,22112,21236,20413,19630,18933,18277,17728,17257,16845,16531,16283,16121,16010,15967,16004,16097,16244,16482,16774,17130,17547,18045,18624,19216,19842,20538,21245,21971,22729,23437,24130,24788,25393,25945,26358,26676,26939,27029,27037,26940,26721,26400,26018,25522,24960,24381,23755,23113,22446,21801,21165,20551,19959,19410,18925,18445,18037,17677,17357,17060,16797,16558,16375,16170,15973,15797,15609,15441,15300,15177,15089,15018,14942,14893,14871,14859,14867,14900,14934,14969,15003,15030,15095,15148,15155,15172,15182,15176,15208,15208,15219,15197,15151,15095,15034,14963,14881,14789,14637,14490,14329,14146,13928,13723,13477,13211,12948,12668,12378,12085,11785,11513,11245,10985,10745,10515,10256,9954,9629,9320,9027,8789,8585,8413,8269,8136,8043,7949,7878,7835,7765,7679,7545,7371,7213,7091,6970,6880,6785,6722,6678,6641,6601,6610,6585,6581,6593,6592,6427,6137,5713,5095,22.0,22.2,22.8,1568739,0.1,12.9,11.9,5.1,434,-1.00,-1.00,59.0037,-19.401111,0.000548,,,,,19 +SATSLF0720,2024246,18.513830,4.08,0.0571,0.1059,0.0201,0.00,16064,654,1,723,715,733,724,721,719,723,723,727,738,752,746,785,889,1203,1920,3082,4452,5681,6610,7251,7732,8157,8616,9129,9751,10499,11342,12346,13441,14618,15765,16860,17813,18549,18976,19109,18925,18546,18012,17424,16869,16412,16046,15832,15765,15828,16091,16490,17057,17803,18702,19767,20981,22281,23749,25205,26681,28100,29341,30343,31069,31491,31465,31152,30510,29598,28541,27306,26130,24970,23914,22925,22053,21337,20729,20241,19865,19593,19428,19323,19330,19449,19632,19904,20252,20676,21198,21768,22374,23039,23693,24294,24868,25350,25708,25990,26040,25909,25643,25159,24520,23802,23003,22139,21274,20442,19677,18977,18331,17765,17301,16893,16564,16292,16131,16034,16006,16025,16108,16282,16501,16785,17152,17579,18071,18628,19230,19853,20547,21274,22016,22754,23471,24157,24806,25393,25957,26374,26708,26953,27054,27067,26968,26753,26434,26034,25541,24995,24412,23773,23133,22475,21820,21173,20574,19984,19428,18939,18470,18077,17709,17379,17094,16810,16585,16381,16182,15994,15795,15622,15456,15329,15208,15100,15013,14946,14912,14882,14891,14890,14921,14945,14982,15024,15053,15094,15163,15177,15182,15193,15180,15200,15230,15218,15227,15169,15103,15059,15003,14906,14813,14659,14515,14345,14160,13949,13737,13499,13237,12981,12693,12399,12103,11816,11538,11250,11011,10764,10541,10256,9952,9622,9323,9042,8803,8599,8426,8272,8147,8042,7968,7894,7837,7781,7687,7533,7360,7213,7095,6991,6891,6818,6754,6695,6660,6621,6616,6605,6600,6619,6604,6458,6145,5719,5105,22.0,22.2,22.8,1568740,0.1,12.9,12.0,5.0,448,-1.00,-1.00,58.2279,-19.122218,0.000589,,,,,166 +SATSLF0720,2024246,18.514094,4.19,0.0586,0.1079,0.0212,0.00,15996,654,1,697,711,722,713,732,726,727,727,730,727,727,732,768,888,1205,1911,3065,4414,5637,6555,7194,7673,8086,8541,9045,9645,10399,11248,12233,13317,14491,15652,16740,17657,18395,18816,18952,18773,18418,17887,17305,16754,16295,15933,15701,15626,15717,15975,16374,16939,17687,18589,19641,20848,22157,23601,25038,26523,27925,29152,30139,30870,31275,31272,30944,30314,29404,28373,27142,25975,24838,23776,22791,21950,21221,20621,20139,19753,19477,19341,19237,19264,19353,19544,19801,20150,20595,21098,21659,22276,22947,23586,24194,24773,25233,25599,25872,25917,25798,25525,25058,24424,23708,22916,22059,21203,20356,19593,18901,18246,17676,17220,16809,16503,16245,16078,15985,15945,15954,16051,16213,16434,16751,17109,17537,18020,18586,19178,19814,20482,21195,21933,22666,23370,24085,24740,25317,25885,26297,26622,26856,26967,26975,26896,26661,26360,25954,25484,24914,24341,23696,23061,22398,21756,21120,20523,19922,19380,18886,18429,18014,17655,17326,17045,16773,16553,16341,16132,15933,15749,15573,15398,15257,15148,15065,14989,14908,14889,14848,14857,14858,14891,14903,14938,14978,15019,15059,15117,15126,15148,15165,15157,15173,15197,15198,15192,15150,15087,15022,14970,14864,14772,14629,14471,14303,14112,13908,13689,13461,13203,12934,12659,12368,12081,11785,11495,11229,10972,10736,10502,10228,9931,9624,9301,9019,8781,8564,8407,8261,8128,8043,7965,7886,7820,7775,7682,7538,7351,7208,7085,6966,6871,6785,6735,6664,6636,6610,6603,6596,6584,6592,6598,6440,6135,5710,5093,22.0,22.2,22.8,1568741,0.2,12.9,11.9,5.0,449,-1.00,-1.00,58.8286,-19.256413,0.000618,,,,,160 +SATSLF0720,2024246,18.514352,4.09,0.0572,0.1076,0.0211,0.00,16000,654,1,718,709,717,711,719,724,734,727,727,736,727,743,771,874,1203,1907,3050,4398,5641,6554,7206,7673,8093,8546,9050,9671,10405,11260,12245,13345,14492,15654,16747,17694,18413,18851,18966,18789,18432,17906,17325,16789,16330,15962,15750,15657,15733,15982,16393,16960,17693,18601,19652,20865,22165,23600,25069,26536,27925,29170,30163,30898,31288,31319,30997,30345,29445,28381,27182,26013,24856,23797,22798,21963,21252,20641,20154,19764,19481,19347,19253,19266,19364,19544,19819,20160,20590,21096,21673,22293,22953,23586,24197,24776,25237,25606,25856,25938,25813,25533,25073,24430,23723,22918,22051,21200,20355,19600,18889,18227,17668,17212,16812,16496,16256,16091,15988,15940,15978,16054,16222,16434,16727,17097,17513,17997,18569,19178,19803,20491,21201,21943,22689,23384,24087,24725,25317,25869,26292,26617,26859,26980,26988,26906,26684,26369,25972,25484,24908,24331,23709,23055,22407,21745,21111,20516,19921,19366,18878,18409,18009,17653,17312,17035,16778,16551,16362,16141,15930,15747,15575,15404,15257,15152,15056,14971,14892,14859,14842,14839,14845,14878,14908,14948,14982,15015,15070,15116,15125,15137,15154,15149,15186,15202,15201,15193,15154,15085,15025,14956,14863,14773,14634,14492,14314,14124,13921,13693,13465,13209,12950,12669,12368,12103,11785,11493,11227,10980,10738,10488,10236,9925,9607,9311,9048,8785,8583,8403,8259,8117,8017,7947,7876,7830,7769,7671,7530,7374,7208,7080,6965,6871,6790,6722,6661,6618,6606,6596,6575,6577,6593,6589,6435,6131,5709,5096,22.1,22.2,22.9,1568742,0.3,12.9,11.9,5.0,449,-1.00,-1.00,58.9473,-19.322873,0.000530,,,,,207 +SATSLF0720,2024246,18.514618,4.02,0.0564,0.1077,0.0208,0.00,16000,654,1,707,705,705,709,717,715,725,724,741,748,750,737,777,890,1201,1921,3060,4419,5640,6562,7213,7668,8099,8549,9054,9673,10414,11269,12252,13341,14515,15653,16757,17690,18411,18843,18979,18800,18418,17895,17316,16769,16298,15946,15713,15639,15724,15975,16391,16965,17693,18594,19657,20867,22157,23601,25058,26533,27937,29174,30145,30897,31301,31293,30976,30341,29437,28389,27173,26013,24861,23799,22819,21970,21241,20632,20148,19767,19491,19344,19249,19254,19363,19558,19801,20139,20584,21098,21661,22281,22947,23588,24200,24773,25264,25628,25885,25929,25810,25521,25056,24416,23716,22931,22057,21211,20348,19593,18906,18250,17702,17225,16831,16503,16257,16083,15979,15942,15964,16057,16219,16434,16727,17079,17529,18013,18570,19179,19825,20480,21216,21952,22681,23389,24074,24741,25313,25882,26299,26624,26871,26976,26976,26874,26667,26349,25957,25464,24914,24333,23694,23034,22400,21730,21110,20508,19942,19381,18891,18424,18020,17649,17318,17029,16758,16544,16329,16128,15965,15753,15587,15425,15282,15169,15058,14982,14900,14875,14857,14848,14862,14891,14908,14944,14977,15016,15061,15126,15130,15146,15156,15150,15187,15193,15192,15207,15141,15085,15035,14933,14853,14772,14651,14485,14326,14121,13927,13704,13467,13213,12933,12655,12364,12073,11795,11490,11223,10973,10747,10502,10235,9948,9628,9319,9037,8796,8578,8398,8241,8105,8019,7946,7878,7828,7763,7676,7533,7358,7206,7075,6953,6865,6785,6723,6669,6631,6615,6608,6593,6577,6588,6594,6437,6141,5706,5092,22.0,22.2,22.9,1568742,0.1,12.9,12.0,5.0,449,-1.00,-1.00,59.4290,-19.521141,0.000580,,,,,239 +SATSDF0720,2024246,18.759148,0.00,0.0000,0.0000,0.0000,0.00,653,0,1,637,632,633,627,618,625,627,621,629,626,643,622,647,636,639,633,642,637,640,631,648,641,653,672,661,663,659,660,663,680,669,663,669,673,661,659,653,654,659,664,657,666,668,669,649,659,663,650,659,654,658,659,662,666,665,659,648,659,659,656,651,653,650,650,647,650,659,645,653,658,663,656,665,669,671,657,671,660,667,667,660,658,657,654,665,656,665,661,666,663,657,659,651,659,649,653,653,654,653,653,649,663,672,653,655,653,653,656,645,657,656,663,657,651,659,668,664,664,653,653,651,647,648,648,649,642,649,641,641,653,661,677,657,662,644,643,636,641,645,653,657,665,662,663,653,662,654,643,648,653,656,648,656,661,660,652,655,662,657,646,659,639,656,648,652,653,657,659,656,640,654,648,648,660,647,653,645,649,650,655,660,656,657,647,643,652,645,651,647,650,651,651,664,653,656,653,649,650,642,660,657,654,659,653,657,653,647,667,653,647,637,643,645,655,649,654,653,649,647,658,656,661,660,653,647,652,647,657,653,648,653,649,656,654,653,645,654,651,645,655,649,642,652,641,647,646,659,661,660,657,656,659,652,647,646,466,0.0,0.0,0.0,1568741,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,55 +SATSLF0720,2024246,18.759703,3.84,0.0537,0.1012,0.0176,0.00,16183,653,1,712,700,710,694,715,694,712,722,729,723,734,734,773,886,1201,1927,3095,4471,5714,6656,7301,7785,8217,8652,9186,9809,10549,11429,12439,13546,14725,15894,17001,17954,18679,19143,19256,19083,18698,18173,17560,17024,16552,16185,15948,15873,15954,16189,16620,17202,17944,18866,19929,21149,22477,23920,25421,26912,28337,29597,30587,31357,31753,31755,31438,30777,29860,28796,27577,26378,25219,24124,23115,22259,21529,20929,20444,20058,19766,19606,19527,19537,19626,19829,20086,20435,20866,21387,21962,22580,23240,23885,24489,25080,25549,25920,26198,26225,26112,25822,25350,24711,23981,23182,22297,21434,20569,19812,19098,18451,17885,17401,17000,16680,16434,16261,16156,16109,16126,16214,16392,16614,16907,17284,17706,18210,18772,19386,20021,20710,21444,22173,22925,23641,24358,25001,25603,26185,26601,26918,27171,27271,27283,27177,26962,26632,26251,25753,25191,24596,23964,23309,22647,21975,21349,20733,20133,19587,19093,18611,18199,17829,17502,17216,16936,16699,16492,16293,16113,15907,15720,15550,15429,15312,15193,15127,15050,15015,14988,14980,14989,15021,15048,15078,15117,15136,15201,15258,15259,15267,15271,15288,15300,15322,15322,15325,15262,15215,15142,15077,14993,14896,14754,14608,14439,14253,14034,13818,13573,13301,13045,12740,12448,12157,11859,11584,11316,11054,10835,10596,10329,10014,9705,9384,9101,8847,8642,8468,8313,8179,8090,8013,7938,7890,7818,7743,7591,7406,7261,7120,7019,6923,6837,6771,6712,6671,6654,6649,6625,6621,6630,6633,6481,6169,5757,5133,21.8,21.9,22.4,1568743,0.3,12.9,12.0,5.0,567,-1.00,-1.00,59.1052,-19.651511,0.000595,,,,,75 +SATSLF0720,2024246,18.759893,3.84,0.0538,0.1009,0.0171,0.00,16200,653,1,700,709,694,710,711,706,705,721,717,723,743,733,771,885,1218,1933,3099,4478,5714,6663,7312,7792,8211,8674,9200,9825,10565,11443,12448,13550,14729,15913,17025,17976,18733,19182,19298,19106,18736,18196,17600,17018,16573,16198,15978,15902,15988,16233,16652,17220,17971,18886,19957,21197,22513,23968,25452,26948,28361,29624,30637,31394,31793,31789,31459,30810,29901,28852,27608,26425,25226,24163,23148,22299,21546,20938,20453,20076,19779,19645,19538,19557,19648,19830,20107,20437,20878,21403,21976,22592,23269,23924,24531,25110,25591,25954,26209,26263,26135,25865,25369,24745,24018,23213,22360,21470,20599,19835,19129,18449,17887,17422,17009,16691,16453,16276,16166,16127,16154,16237,16413,16634,16930,17302,17723,18219,18796,19386,20039,20742,21473,22217,22969,23668,24372,25029,25624,26197,26633,26953,27200,27314,27308,27227,27008,26660,26263,25758,25201,24610,23974,23331,22661,21990,21360,20757,20154,19594,19097,18621,18217,17858,17525,17237,16961,16707,16509,16304,16109,15921,15739,15570,15425,15331,15212,15133,15060,15031,15004,15012,15004,15041,15056,15094,15135,15164,15209,15265,15278,15277,15299,15286,15307,15345,15342,15337,15288,15228,15157,15078,14995,14896,14767,14626,14440,14245,14033,13824,13593,13321,13059,12778,12494,12193,11901,11608,11329,11058,10827,10577,10315,10013,9689,9387,9111,8870,8657,8488,8336,8208,8085,8014,7944,7883,7829,7730,7590,7398,7259,7132,7028,6925,6851,6778,6727,6692,6657,6647,6633,6625,6640,6643,6481,6171,5751,5134,21.9,21.9,22.4,1568743,0.0,12.9,11.9,5.0,463,-1.00,-1.00,58.8634,-19.575529,0.000546,,,,,9 +SATSLF0720,2024246,18.760158,3.95,0.0554,0.1018,0.0179,0.00,16168,653,1,704,703,701,707,709,696,709,691,703,708,719,745,772,875,1204,1949,3094,4467,5720,6634,7287,7773,8191,8655,9175,9803,10556,11415,12417,13537,14720,15890,16999,17965,18678,19117,19233,19059,18688,18144,17549,16993,16509,16160,15936,15866,15950,16194,16610,17195,17934,18835,19907,21125,22457,23896,25386,26890,28296,29549,30561,31316,31716,31721,31387,30749,29818,28774,27540,26342,25179,24100,23096,22235,21511,20901,20413,20027,19759,19581,19499,19501,19597,19801,20059,20417,20840,21376,21925,22553,23211,23857,24478,25058,25541,25897,26167,26227,26101,25835,25332,24699,23973,23182,22298,21409,20569,19793,19091,18425,17875,17397,16983,16650,16407,16243,16138,16089,16110,16204,16375,16612,16906,17278,17710,18189,18770,19349,19994,20683,21405,22151,22903,23612,24321,24982,25591,26149,26571,26885,27127,27239,27253,27150,26944,26624,26212,25731,25168,24573,23937,23285,22637,21963,21309,20723,20110,19572,19072,18583,18183,17827,17485,17185,16925,16685,16477,16280,16073,15895,15709,15536,15409,15287,15175,15111,15025,15001,14977,14978,14968,15006,15023,15087,15116,15150,15181,15241,15261,15261,15280,15284,15309,15317,15308,15289,15242,15190,15130,15063,14980,14885,14736,14582,14423,14237,14026,13815,13568,13312,13047,12752,12469,12161,11870,11587,11305,11057,10817,10581,10304,10003,9695,9377,9102,8851,8634,8466,8313,8178,8087,8002,7927,7873,7806,7717,7587,7398,7255,7131,7021,6913,6835,6767,6711,6691,6650,6651,6635,6618,6634,6631,6481,6157,5740,5114,21.9,21.9,22.5,1568744,0.1,13.0,11.9,5.0,455,-1.00,-1.00,58.6711,-19.449115,0.000540,,,,,13 +SATSLF0720,2024246,18.760420,4.03,0.0564,0.1019,0.0177,0.00,16175,653,1,698,709,705,712,719,723,726,722,728,725,730,741,779,893,1219,1940,3104,4479,5735,6665,7302,7776,8205,8662,9176,9795,10549,11425,12418,13538,14718,15897,16989,17955,18688,19117,19250,19063,18688,18148,17552,16990,16540,16180,15946,15874,15957,16199,16599,17193,17928,18843,19924,21154,22480,23921,25401,26888,28304,29552,30569,31309,31716,31738,31400,30746,29824,28768,27531,26361,25188,24113,23108,22244,21520,20906,20417,20023,19745,19582,19496,19522,19629,19810,20071,20429,20852,21373,21938,22553,23221,23861,24483,25065,25547,25912,26176,26225,26102,25826,25333,24695,23971,23154,22293,21423,20573,19805,19095,18444,17866,17402,17001,16669,16425,16249,16139,16102,16124,16217,16373,16601,16898,17272,17697,18181,18745,19380,20018,20692,21421,22176,22920,23633,24332,24995,25591,26160,26577,26908,27156,27265,27264,27163,26936,26604,26218,25729,25162,24576,23925,23298,22629,21965,21338,20725,20123,19563,19073,18597,18187,17824,17493,17205,16930,16693,16491,16281,16098,15915,15717,15559,15421,15289,15191,15124,15044,14999,14990,14981,14987,15013,15041,15065,15106,15134,15184,15240,15250,15259,15283,15271,15307,15327,15319,15322,15265,15214,15137,15075,14993,14889,14761,14621,14425,14234,14011,13807,13559,13307,13044,12754,12459,12183,11875,11588,11320,11065,10832,10601,10325,10030,9697,9381,9094,8845,8643,8475,8321,8186,8081,8005,7933,7889,7829,7738,7592,7417,7261,7122,7002,6897,6830,6761,6718,6678,6667,6656,6636,6632,6642,6642,6478,6160,5741,5120,21.9,21.9,22.5,1568745,0.2,13.0,11.9,5.0,454,-1.00,-1.00,58.2540,-19.279505,0.000546,,,,,38 +SATSLF0720,2024246,18.760679,3.98,0.0558,0.1030,0.0181,0.00,16148,653,1,711,701,707,697,700,706,734,713,732,741,746,757,772,878,1215,1921,3095,4458,5698,6628,7291,7768,8189,8638,9159,9784,10530,11396,12382,13504,14674,15849,16949,17907,18629,19056,19200,19031,18654,18125,17529,16974,16513,16144,15917,15845,15916,16162,16563,17141,17892,18808,19889,21109,22423,23863,25341,26824,28251,29494,30513,31249,31654,31666,31323,30696,29777,28716,27490,26302,25143,24069,23057,22202,21486,20873,20395,19993,19720,19565,19450,19468,19574,19769,20033,20381,20802,21314,21895,22512,23176,23830,24443,25024,25509,25858,26122,26194,26055,25764,25297,24649,23923,23132,22259,21401,20546,19760,19069,18416,17839,17376,16970,16644,16387,16234,16125,16087,16105,16198,16357,16576,16880,17244,17684,18170,18733,19335,19976,20649,21387,22118,22871,23585,24302,24938,25539,26114,26542,26866,27116,27210,27212,27132,26920,26583,26190,25704,25140,24546,23909,23237,22603,21928,21303,20686,20103,19537,19045,18565,18171,17786,17463,17175,16907,16662,16465,16276,16071,15883,15691,15524,15379,15272,15165,15101,15028,14978,14965,14973,14970,15008,15020,15059,15088,15125,15161,15217,15234,15237,15246,15256,15280,15301,15301,15303,15267,15191,15126,15061,14963,14861,14723,14577,14411,14210,14009,13799,13550,13291,13033,12745,12441,12151,11855,11573,11306,11059,10818,10577,10321,10013,9691,9365,9099,8853,8640,8471,8313,8189,8077,7996,7919,7876,7798,7715,7582,7403,7239,7127,7009,6902,6818,6754,6712,6673,6645,6647,6636,6620,6633,6643,6481,6181,5756,5125,21.9,21.9,22.6,1568746,0.1,12.9,12.0,5.0,453,-1.00,-1.00,58.5439,-19.363232,0.000530,,,,,54 +SATSLF0720,2024246,18.760939,4.14,0.0580,0.1030,0.0179,0.00,16138,653,1,701,721,714,715,713,694,695,708,711,720,731,730,775,892,1217,1929,3081,4453,5685,6623,7266,7746,8169,8627,9152,9757,10504,11379,12384,13490,14665,15822,16947,17902,18625,19048,19181,18987,18631,18099,17502,16954,16492,16114,15911,15833,15896,16149,16565,17152,17908,18797,19859,21082,22413,23864,25337,26826,28245,29500,30505,31237,31629,31629,31306,30677,29754,28709,27476,26293,25115,24059,23045,22201,21459,20843,20359,19982,19689,19541,19448,19447,19561,19755,20013,20362,20793,21320,21881,22501,23165,23815,24421,25015,25492,25845,26122,26154,26043,25760,25281,24645,23916,23127,22250,21383,20529,19756,19054,18404,17837,17366,16962,16641,16397,16201,16119,16059,16089,16177,16334,16567,16867,17238,17668,18155,18721,19327,19968,20656,21372,22119,22865,23595,24289,24953,25542,26104,26530,26843,27093,27206,27210,27109,26882,26573,26185,25678,25131,24548,23912,23254,22600,21940,21285,20678,20082,19514,19040,18564,18152,17785,17466,17169,16905,16667,16469,16251,16059,15872,15682,15515,15380,15253,15146,15087,15010,14976,14958,14969,14976,15001,15017,15048,15095,15117,15168,15218,15221,15240,15245,15258,15271,15299,15293,15281,15242,15173,15131,15053,14953,14847,14727,14554,14419,14218,14001,13797,13550,13282,13022,12730,12425,12155,11833,11555,11277,11043,10804,10573,10305,10007,9687,9362,9097,8836,8624,8458,8291,8171,8071,7991,7927,7856,7802,7721,7577,7395,7248,7123,7000,6917,6841,6757,6705,6658,6632,6627,6594,6599,6621,6630,6473,6176,5741,5121,21.9,21.9,22.6,1568747,0.1,12.9,12.0,5.0,453,-1.00,-1.00,58.3303,-19.266771,0.000542,,,,,72 +SATSLF0720,2024246,18.761200,3.91,0.0548,0.1035,0.0187,0.00,16123,653,1,704,693,708,712,718,703,713,719,720,731,725,717,767,881,1202,1933,3081,4453,5711,6628,7265,7747,8154,8592,9120,9737,10497,11365,12349,13478,14653,15824,16933,17888,18602,19040,19174,19001,18610,18083,17481,16919,16467,16100,15877,15814,15889,16132,16530,17139,17865,18777,19826,21047,22362,23813,25288,26778,28201,29464,30461,31208,31605,31609,31281,30632,29722,28657,27432,26245,25083,24014,23021,22166,21441,20825,20339,19953,19688,19522,19425,19432,19545,19719,19993,20349,20789,21293,21857,22484,23146,23774,24392,24981,25467,25822,26094,26151,26009,25741,25259,24626,23893,23092,22221,21349,20502,19736,19016,18365,17824,17338,16929,16618,16378,16189,16094,16045,16080,16161,16341,16563,16857,17221,17654,18141,18708,19332,19958,20630,21358,22099,22837,23540,24251,24923,25509,26077,26515,26842,27065,27174,27184,27098,26902,26557,26157,25666,25097,24503,23865,23226,22569,21907,21261,20660,20080,19517,19025,18535,18144,17777,17444,17142,16873,16650,16436,16247,16057,15869,15670,15514,15360,15255,15141,15073,14995,14966,14944,14945,14949,14981,15008,15037,15074,15105,15173,15225,15216,15229,15238,15239,15267,15290,15293,15277,15226,15172,15106,15029,14941,14851,14715,14567,14390,14205,14000,13786,13533,13292,13017,12733,12423,12123,11835,11557,11289,11037,10797,10564,10291,9988,9661,9342,9079,8829,8615,8452,8292,8154,8059,7988,7925,7873,7813,7721,7584,7401,7245,7118,6999,6893,6819,6759,6708,6666,6659,6648,6638,6632,6632,6631,6477,6171,5725,5119,21.9,21.9,22.6,1568748,0.1,12.9,12.0,5.0,445,-1.00,-1.00,59.0203,-19.527339,0.000591,,,,,72 +SATSLF0720,2024246,18.761464,4.13,0.0579,0.1027,0.0182,0.00,16147,653,1,715,702,706,700,709,714,699,715,732,739,748,755,789,885,1215,1950,3114,4473,5713,6629,7287,7768,8180,8635,9143,9787,10524,11395,12395,13510,14694,15853,16965,17921,18637,19073,19194,19019,18645,18098,17519,16957,16498,16141,15912,15849,15924,16163,16583,17148,17899,18812,19889,21097,22420,23869,25349,26849,28254,29520,30517,31264,31669,31638,31338,30697,29768,28705,27485,26292,25129,24061,23052,22193,21469,20865,20381,19982,19717,19564,19461,19455,19558,19744,20018,20346,20778,21309,21877,22504,23165,23819,24446,25029,25497,25863,26126,26173,26061,25783,25296,24657,23942,23130,22279,21393,20544,19781,19073,18402,17850,17378,16969,16642,16408,16229,16121,16071,16107,16192,16345,16571,16871,17245,17675,18162,18728,19332,19974,20654,21391,22136,22874,23592,24297,24948,25549,26115,26537,26857,27095,27217,27217,27117,26907,26580,26183,25681,25125,24544,23901,23257,22586,21926,21300,20681,20090,19523,19026,18557,18163,17796,17456,17178,16902,16664,16467,16269,16074,15885,15694,15534,15400,15277,15175,15105,15016,14995,14952,14966,14964,14981,15015,15040,15090,15120,15174,15220,15237,15237,15244,15268,15300,15313,15310,15309,15259,15185,15121,15027,14953,14853,14717,14576,14420,14224,14020,13814,13562,13298,13028,12742,12447,12148,11862,11572,11297,11063,10817,10581,10306,10001,9681,9368,9091,8854,8646,8466,8320,8166,8065,7996,7905,7871,7818,7729,7588,7407,7241,7138,7014,6925,6834,6775,6705,6687,6666,6645,6634,6621,6641,6625,6465,6163,5741,5117,21.9,22.0,22.6,1568749,0.0,12.9,12.0,5.0,450,-1.00,-1.00,58.1238,-19.189551,0.000567,,,,,202 +SATSLF0720,2024246,18.761727,4.14,0.0580,0.1053,0.0196,0.00,16082,653,1,697,702,717,721,725,727,741,724,727,730,721,736,774,886,1197,1934,3092,4446,5666,6593,7228,7707,8144,8581,9093,9721,10454,11328,12290,13407,14573,15731,16826,17772,18501,18936,19076,18900,18525,17998,17422,16855,16405,16041,15813,15737,15819,16069,16474,17064,17802,18701,19760,20966,22294,23740,25201,26679,28102,29341,30341,31077,31482,31488,31162,30513,29591,28549,27325,26157,25005,23932,22935,22080,21370,20759,20288,19889,19609,19456,19348,19381,19472,19668,19933,20273,20704,21227,21773,22415,23082,23717,24340,24925,25385,25752,26025,26055,25947,25662,25191,24554,23816,23046,22160,21299,20461,19693,18986,18341,17777,17310,16902,16590,16354,16170,16074,16018,16039,16131,16309,16521,16823,17186,17621,18098,18673,19277,19907,20599,21325,22068,22791,23508,24209,24853,25463,26032,26465,26773,27002,27120,27127,27029,26823,26490,26086,25602,25035,24449,23818,23162,22523,21853,21227,20616,20019,19470,18971,18505,18107,17749,17426,17118,16864,16621,16416,16214,16021,15824,15649,15472,15341,15217,15142,15057,14981,14939,14927,14928,14928,14940,14979,15010,15049,15081,15125,15165,15205,15216,15223,15239,15238,15263,15265,15256,15197,15147,15076,15011,14930,14829,14695,14549,14370,14195,13982,13766,13537,13261,12995,12711,12423,12115,11831,11541,11263,11013,10774,10546,10278,9984,9677,9360,9073,8822,8621,8437,8286,8157,8055,7972,7910,7853,7796,7713,7565,7395,7245,7117,6985,6905,6817,6763,6693,6654,6637,6617,6607,6588,6615,6603,6453,6145,5719,5109,21.9,22.0,22.7,1568750,0.5,13.0,11.9,5.0,442,-1.00,-1.00,58.7129,-19.329676,0.000558,,,,,129 +SATSLF0720,2024246,18.761992,3.98,0.0558,0.1037,0.0186,0.00,16123,653,1,699,696,695,704,717,717,722,721,729,727,736,739,773,891,1221,1933,3109,4459,5686,6609,7262,7729,8165,8621,9142,9769,10528,11381,12375,13495,14653,15828,16939,17909,18612,19036,19166,18994,18610,18081,17478,16925,16483,16101,15881,15803,15899,16134,16550,17121,17865,18766,19834,21052,22373,23805,25302,26780,28203,29465,30470,31217,31608,31607,31276,30625,29721,28658,27433,26253,25098,24006,23005,22156,21419,20812,20336,19957,19671,19509,19420,19426,19531,19722,19977,20316,20749,21274,21851,22474,23141,23805,24404,24998,25473,25817,26085,26129,26005,25730,25246,24617,23901,23112,22246,21362,20519,19741,19041,18386,17809,17349,16936,16630,16383,16206,16105,16055,16078,16173,16349,16567,16875,17221,17651,18134,18698,19297,19942,20624,21357,22106,22842,23559,24264,24917,25504,26067,26492,26811,27035,27163,27189,27093,26867,26549,26158,25670,25113,24508,23877,23232,22569,21909,21269,20667,20065,19502,19015,18533,18139,17773,17433,17139,16877,16650,16442,16245,16060,15875,15684,15524,15373,15265,15149,15067,14993,14961,14941,14935,14956,14976,14998,15033,15073,15106,15163,15209,15229,15229,15234,15251,15259,15276,15277,15272,15240,15166,15109,15025,14944,14842,14706,14567,14382,14203,13985,13777,13531,13276,13012,12733,12436,12145,11852,11565,11295,11035,10794,10562,10297,9984,9667,9363,9068,8824,8623,8455,8299,8169,8075,7985,7933,7861,7799,7703,7567,7386,7226,7099,6984,6904,6813,6741,6689,6661,6641,6629,6633,6609,6632,6629,6473,6177,5762,5133,21.9,22.0,22.7,1568751,0.3,12.9,11.9,5.0,450,-1.00,-1.00,58.8001,-19.437042,0.000578,,,,,244 +SATSLF0720,2024246,18.762257,3.98,0.0558,0.1043,0.0191,0.00,16107,653,1,700,707,702,713,718,713,718,711,717,712,739,729,792,904,1213,1929,3094,4446,5693,6600,7264,7745,8156,8599,9115,9747,10496,11371,12354,13463,14642,15798,16896,17844,18578,19021,19133,18957,18581,18041,17462,16899,16430,16089,15843,15779,15871,16112,16517,17091,17833,18737,19808,21018,22337,23787,25265,26756,28172,29424,30418,31176,31561,31565,31240,30583,29655,28614,27388,26209,25049,23995,22996,22140,21409,20802,20309,19920,19653,19485,19391,19410,19492,19696,19950,20311,20733,21260,21817,22457,23114,23771,24380,24949,25428,25792,26049,26113,26002,25725,25234,24594,23863,23070,22202,21324,20484,19720,19011,18348,17795,17325,16934,16611,16363,16184,16092,16056,16069,16157,16313,16549,16836,17214,17634,18120,18693,19305,19937,20609,21339,22093,22823,23527,24233,24902,25482,26050,26490,26796,27051,27160,27169,27073,26841,26534,26119,25624,25075,24485,23852,23209,22551,21874,21256,20637,20049,19497,19013,18537,18118,17756,17417,17140,16872,16619,16423,16231,16045,15861,15665,15502,15358,15239,15141,15073,14989,14946,14935,14932,14920,14979,14998,15026,15058,15095,15151,15210,15214,15210,15232,15242,15260,15281,15277,15261,15213,15157,15090,15012,14937,14850,14713,14555,14394,14205,14001,13773,13513,13275,13008,12739,12432,12139,11844,11558,11289,11041,10781,10565,10285,9992,9671,9360,9078,8835,8636,8465,8301,8161,8059,7984,7921,7849,7786,7686,7555,7377,7233,7109,6995,6903,6825,6743,6695,6667,6646,6623,6619,6605,6626,6617,6471,6166,5731,5117,21.9,22.1,22.7,1568752,0.0,12.9,11.9,5.0,433,-1.00,-1.00,58.9642,-19.477994,0.000647,,,,,112 +SATSLF0720,2024246,18.762519,4.00,0.0561,0.1048,0.0194,0.00,16096,653,1,719,724,724,716,720,723,721,731,730,743,746,754,793,894,1210,1928,3090,4452,5693,6619,7265,7744,8156,8597,9125,9742,10482,11346,12337,13440,14621,15783,16875,17835,18557,18981,19117,18938,18568,18044,17445,16881,16435,16061,15847,15777,15861,16090,16504,17085,17825,18729,19798,21000,22301,23753,25227,26693,28119,29366,30376,31117,31522,31517,31193,30557,29636,28593,27364,26192,25034,23961,22955,22105,21389,20785,20304,19901,19622,19466,19369,19373,19463,19674,19940,20279,20710,21256,21806,22435,23113,23744,24342,24921,25384,25776,26044,26101,25972,25681,25199,24563,23863,23049,22187,21337,20481,19716,19010,18345,17792,17324,16909,16588,16346,16181,16077,16029,16050,16148,16321,16536,16829,17205,17636,18105,18678,19277,19908,20593,21316,22056,22805,23518,24221,24891,25469,26037,26458,26769,27024,27132,27142,27041,26825,26506,26117,25625,25059,24497,23845,23189,22530,21866,21230,20618,20025,19464,18990,18504,18105,17734,17416,17130,16881,16637,16429,16221,16035,15844,15653,15481,15347,15234,15131,15063,14985,14951,14931,14922,14939,14957,14984,15002,15057,15085,15134,15203,15217,15223,15213,15241,15258,15275,15283,15269,15217,15147,15083,15021,14920,14833,14699,14545,14380,14188,13975,13778,13515,13259,13000,12725,12422,12133,11838,11565,11269,11040,10794,10558,10289,9982,9657,9342,9072,8826,8610,8446,8285,8159,8049,7970,7903,7866,7797,7706,7564,7383,7229,7105,6987,6907,6825,6757,6704,6679,6657,6642,6625,6630,6629,6629,6469,6155,5735,5119,21.9,22.1,22.8,1568753,0.1,13.0,12.0,5.0,448,-1.00,-1.00,58.7183,-19.353296,0.000476,,,,,84 +SATSLF0720,2024246,18.762779,3.90,0.0546,0.1061,0.0202,0.00,16049,653,1,721,721,717,714,718,712,735,724,726,728,733,733,771,872,1189,1919,3081,4441,5675,6596,7251,7725,8139,8589,9117,9708,10456,11316,12309,13416,14581,15741,16819,17783,18497,18950,19072,18897,18533,17989,17406,16848,16389,16027,15811,15733,15796,16051,16445,17031,17776,18667,19734,20954,22256,23694,25165,26642,28042,29299,30277,31027,31435,31429,31106,30464,29539,28509,27299,26107,24957,23892,22891,22059,21328,20709,20247,19849,19563,19406,19316,19326,19418,19620,19866,20220,20661,21179,21753,22369,23030,23680,24278,24848,25322,25689,25947,25985,25870,25610,25134,24505,23778,22997,22112,21255,20421,19658,18953,18305,17730,17271,16861,16542,16315,16137,16029,15985,16009,16106,16258,16489,16773,17143,17563,18046,18622,19230,19854,20540,21257,22003,22744,23453,24150,24808,25395,25949,26361,26682,26913,27026,27053,26952,26757,26443,26047,25557,24985,24397,23762,23101,22454,21797,21178,20560,19989,19429,18945,18482,18057,17694,17355,17083,16810,16582,16385,16171,15981,15790,15605,15441,15314,15179,15099,15018,14926,14891,14868,14870,14877,14899,14933,14981,15017,15050,15108,15158,15172,15186,15192,15194,15210,15234,15226,15217,15177,15092,15054,14972,14880,14791,14647,14522,14338,14146,13955,13745,13489,13243,12962,12674,12394,12098,11805,11533,11243,10999,10749,10519,10252,9965,9637,9334,9045,8797,8585,8416,8256,8125,8043,7974,7891,7828,7767,7699,7541,7367,7227,7077,6986,6867,6791,6735,6691,6653,6637,6621,6600,6598,6617,6609,6444,6135,5715,5115,21.9,22.1,22.8,1568754,0.0,12.9,11.9,5.0,450,-1.00,-1.00,59.0262,-19.428897,0.000555,,,,,149 +SATSLF0720,2024246,18.763039,4.10,0.0574,0.1065,0.0204,0.00,16039,653,1,717,721,718,717,721,713,717,726,727,721,743,745,777,887,1209,1924,3070,4429,5652,6554,7201,7676,8104,8549,9066,9680,10428,11298,12291,13405,14556,15720,16806,17762,18469,18904,19031,18858,18478,17970,17357,16821,16361,15986,15772,15689,15776,16019,16441,17024,17753,18672,19708,20931,22252,23669,25129,26603,28010,29252,30253,30989,31383,31400,31076,30434,29525,28468,27245,26085,24925,23866,22868,22013,21309,20674,20209,19825,19544,19403,19297,19317,19417,19591,19865,20206,20650,21176,21736,22356,23009,23669,24264,24848,25320,25675,25936,25990,25873,25597,25112,24494,23774,22973,22104,21240,20393,19623,18925,18273,17722,17249,16862,16541,16283,16133,16014,15986,16010,16091,16253,16477,16764,17127,17562,18045,18605,19219,19835,20535,21257,21997,22733,23443,24145,24782,25383,25942,26375,26704,26945,27052,27049,26957,26737,26413,26024,25533,24984,24393,23760,23112,22455,21792,21167,20567,19978,19416,18914,18467,18058,17693,17377,17085,16822,16586,16388,16182,15988,15784,15603,15437,15301,15177,15069,15005,14950,14908,14889,14894,14898,14931,14949,14969,15021,15041,15083,15141,15162,15177,15178,15191,15218,15237,15220,15225,15178,15108,15049,14979,14885,14792,14651,14493,14330,14144,13944,13731,13506,13241,12973,12695,12392,12097,11800,11522,11252,10993,10759,10529,10256,9965,9651,9344,9053,8800,8598,8413,8263,8129,8031,7953,7890,7832,7751,7677,7529,7360,7211,7087,6977,6880,6792,6735,6676,6641,6615,6601,6598,6581,6607,6587,6455,6144,5717,5113,21.9,22.1,22.8,1568755,0.1,12.9,12.0,5.0,447,-1.00,-1.00,58.8284,-19.326707,0.000585,,,,,255 +SATSLF0720,2024246,18.763300,4.10,0.0574,0.1064,0.0207,0.00,16025,653,1,709,700,701,697,717,721,715,736,749,737,731,743,779,884,1197,1925,3066,4427,5649,6583,7220,7688,8103,8548,9061,9688,10432,11288,12269,13381,14541,15688,16790,17730,18449,18892,19016,18843,18465,17931,17349,16802,16349,15982,15762,15696,15762,16023,16416,17009,17729,18637,19703,20918,22232,23663,25127,26601,28000,29239,30238,30976,31377,31361,31051,30435,29510,28462,27236,26068,24909,23860,22865,22012,21289,20683,20209,19834,19544,19385,19301,19298,19401,19581,19848,20201,20626,21148,21720,22345,23005,23638,24253,24832,25306,25657,25923,25974,25847,25562,25085,24464,23762,22969,22101,21231,20377,19627,18928,18267,17724,17246,16841,16528,16276,16125,16010,15953,15981,16082,16236,16458,16762,17127,17547,18022,18593,19208,19834,20499,21246,21977,22720,23421,24119,24772,25361,25913,26342,26657,26905,27009,27021,26918,26740,26394,26009,25514,24956,24361,23718,23082,22435,21787,21161,20549,19957,19389,18894,18431,18034,17677,17342,17062,16794,16571,16379,16161,15968,15780,15594,15418,15281,15171,15066,14995,14917,14888,14861,14870,14881,14901,14919,14953,14992,15023,15072,15113,15130,15137,15159,15177,15196,15209,15217,15197,15147,15095,15037,14969,14868,14769,14644,14485,14331,14136,13932,13719,13472,13217,12954,12666,12354,12069,11769,11505,11229,10989,10745,10516,10257,9944,9621,9337,9032,8795,8580,8413,8237,8123,8029,7953,7879,7831,7777,7681,7529,7355,7193,7079,6961,6887,6800,6728,6676,6626,6623,6589,6586,6577,6601,6589,6433,6124,5700,5081,21.9,22.1,22.8,1568756,0.1,12.9,12.0,5.0,441,-1.00,-1.00,59.0370,-19.405001,0.000585,,,,,21 +SATSLF0720,2024246,18.763561,4.10,0.0574,0.1061,0.0199,0.00,16052,653,1,711,714,705,712,721,721,722,735,733,742,749,752,785,900,1225,1939,3082,4441,5664,6587,7241,7716,8141,8574,9106,9714,10443,11309,12289,13399,14561,15729,16812,17746,18471,18899,19037,18864,18499,17980,17373,16825,16365,16002,15789,15713,15800,16038,16443,17032,17753,18651,19723,20941,22246,23687,25159,26632,28034,29282,30261,31006,31419,31416,31091,30455,29545,28506,27268,26107,24949,23877,22889,22037,21308,20701,20230,19830,19578,19418,19317,19336,19433,19628,19889,20232,20663,21192,21752,22357,23022,23660,24273,24855,25330,25700,25965,26009,25898,25614,25144,24509,23786,23011,22138,21280,20427,19659,18962,18301,17742,17283,16874,16546,16299,16132,16035,15986,16016,16104,16262,16484,16768,17152,17581,18057,18641,19245,19868,20570,21273,22023,22757,23460,24151,24813,25389,25971,26394,26718,26958,27057,27099,26973,26757,26437,26046,25550,25001,24413,23771,23111,22476,21817,21187,20570,19975,19429,18926,18457,18059,17698,17368,17077,16808,16590,16395,16180,15994,15788,15617,15453,15309,15205,15095,15031,14948,14921,14889,14881,14903,14930,14952,14977,15033,15062,15101,15154,15170,15178,15189,15195,15214,15251,15245,15222,15175,15115,15065,14986,14902,14801,14659,14523,14348,14149,13957,13729,13487,13236,12962,12680,12397,12114,11810,11521,11265,11009,10769,10532,10261,9968,9634,9340,9044,8817,8613,8439,8285,8141,8049,7957,7890,7837,7792,7690,7561,7389,7229,7108,6982,6882,6801,6731,6688,6644,6619,6608,6601,6607,6621,6609,6461,6162,5730,5106,21.9,22.1,22.8,1568757,0.3,13.0,12.0,5.0,448,-1.00,-1.00,58.9040,-19.371967,0.000537,,,,,83 +SATSLF0720,2024246,18.763819,4.13,0.0578,0.1052,0.0201,0.00,16069,653,1,699,701,710,721,725,732,734,743,737,732,737,743,785,889,1215,1941,3088,4439,5688,6605,7238,7716,8140,8592,9121,9724,10460,11329,12314,13421,14575,15747,16853,17806,18516,18944,19070,18897,18536,17995,17416,16865,16409,16046,15817,15754,15836,16071,16468,17047,17794,18693,19741,20960,22290,23718,25187,26664,28072,29335,30320,31072,31464,31469,31141,30500,29588,28534,27311,26124,24971,23915,22914,22072,21330,20743,20265,19866,19588,19455,19353,19356,19464,19656,19915,20248,20701,21192,21764,22377,23043,23697,24319,24882,25367,25718,25990,26027,25922,25632,25169,24528,23810,23021,22161,21285,20455,19677,18983,18322,17774,17298,16887,16564,16325,16148,16060,16020,16035,16113,16291,16509,16808,17164,17592,18064,18642,19261,19874,20567,21286,22021,22760,23467,24186,24834,25430,26004,26421,26744,26964,27069,27084,27005,26785,26469,26073,25579,25027,24446,23797,23146,22487,21828,21188,20597,20009,19445,18967,18485,18073,17731,17409,17104,16837,16589,16392,16194,15997,15815,15627,15473,15321,15211,15117,15041,14962,14925,14928,14912,14912,14936,14955,14986,15033,15050,15118,15164,15179,15198,15205,15203,15219,15246,15244,15229,15184,15120,15058,15000,14908,14817,14682,14524,14354,14161,13956,13729,13496,13250,12981,12695,12406,12120,11826,11540,11272,11007,10779,10545,10264,9961,9648,9332,9045,8820,8602,8443,8287,8148,8053,7973,7902,7859,7773,7695,7554,7375,7239,7100,6987,6907,6821,6750,6677,6647,6638,6610,6591,6611,6617,6615,6459,6178,5737,5117,21.9,22.2,22.8,1568758,0.0,12.9,11.9,5.0,451,-1.00,-1.00,58.3595,-19.171313,0.000536,,,,,56 +SATSLF0720,2024246,18.764083,4.19,0.0587,0.1061,0.0200,0.00,16053,653,1,708,711,709,711,709,711,737,726,733,728,728,735,767,883,1201,1918,3069,4429,5657,6573,7227,7706,8117,8571,9100,9709,10449,11313,12300,13388,14567,15718,16821,17769,18481,18921,19049,18867,18501,17970,17373,16837,16365,16005,15787,15725,15796,16051,16456,17033,17765,18675,19725,20946,22261,23696,25175,26647,28053,29277,30290,31013,31423,31428,31086,30456,29528,28487,27273,26110,24934,23883,22884,22021,21297,20704,20229,19841,19553,19415,19315,19323,19435,19616,19877,20220,20659,21185,21744,22386,23044,23686,24280,24861,25320,25703,25954,26012,25901,25611,25152,24493,23777,22994,22134,21269,20426,19665,18946,18314,17753,17285,16877,16552,16305,16144,16039,15988,16018,16101,16266,16475,16775,17137,17570,18056,18642,19237,19873,20563,21281,22020,22761,23463,24163,24814,25416,25962,26385,26722,26964,27059,27077,26962,26761,26440,26034,25545,24983,24397,23770,23110,22466,21816,21177,20569,19974,19431,18941,18472,18075,17700,17380,17085,16824,16585,16392,16176,15988,15786,15607,15464,15306,15195,15099,15025,14957,14905,14893,14891,14904,14932,14946,14986,15029,15038,15111,15170,15184,15205,15197,15204,15218,15253,15249,15238,15181,15117,15061,14990,14890,14792,14660,14518,14375,14184,13970,13756,13500,13246,12995,12689,12410,12109,11822,11513,11257,11007,10774,10533,10275,9976,9661,9344,9069,8818,8613,8437,8274,8149,8049,7969,7909,7856,7782,7693,7554,7379,7230,7098,6976,6883,6792,6717,6671,6633,6615,6623,6601,6601,6617,6605,6472,6150,5720,5115,21.9,22.2,22.9,1568759,0.1,13.0,11.9,5.0,440,-1.00,-1.00,58.3974,-19.163583,0.000575,,,,,41 +SATSLF0720,2024246,18.764344,3.99,0.0559,0.1069,0.0209,0.00,16023,653,1,688,715,709,716,728,724,722,738,737,740,737,745,778,890,1204,1921,3070,4439,5655,6583,7210,7693,8107,8567,9069,9677,10423,11293,12278,13382,14548,15705,16791,17747,18453,18885,19016,18840,18469,17925,17355,16797,16329,15970,15758,15681,15762,16011,16423,16983,17720,18625,19690,20898,22215,23657,25099,26592,27977,29225,30216,30957,31349,31360,31041,30401,29493,28437,27234,26059,24902,23843,22862,22009,21276,20656,20194,19801,19530,19370,19282,19303,19399,19582,19851,20188,20624,21134,21701,22326,22978,23635,24224,24805,25277,25645,25906,25961,25852,25560,25107,24461,23753,22945,22099,21234,20389,19614,18917,18268,17706,17234,16841,16526,16275,16103,16004,15960,15981,16080,16252,16469,16780,17129,17553,18025,18599,19200,19830,20507,21231,21979,22709,23420,24114,24769,25362,25930,26344,26683,26897,26998,27013,26929,26712,26393,26005,25505,24939,24352,23732,23082,22435,21777,21162,20538,19948,19401,18900,18430,18029,17668,17348,17053,16774,16555,16337,16159,15961,15773,15588,15447,15289,15178,15080,14993,14923,14881,14859,14859,14872,14901,14926,14965,14998,15029,15079,15129,15146,15150,15161,15175,15178,15204,15209,15213,15149,15101,15031,14980,14875,14775,14644,14492,14324,14141,13913,13712,13468,13224,12948,12673,12397,12096,11796,11511,11236,10987,10751,10502,10234,9944,9618,9314,9046,8793,8593,8421,8258,8124,8033,7959,7899,7835,7771,7693,7549,7368,7214,7085,6973,6869,6796,6721,6665,6635,6608,6600,6580,6580,6584,6575,6434,6145,5713,5101,21.9,22.2,22.9,1568759,0.5,12.9,12.0,5.0,448,-1.00,-1.00,59.3478,-19.523381,0.000575,,,,,210 +SATSLF0720,2024246,18.764603,3.95,0.0553,0.1079,0.0216,0.00,15992,653,1,710,710,719,723,727,717,731,746,736,734,734,740,765,893,1210,1927,3077,4430,5657,6573,7209,7671,8099,8548,9045,9658,10409,11269,12241,13343,14511,15659,16754,17690,18410,18857,18989,18807,18422,17901,17312,16757,16308,15933,15730,15658,15725,15979,16372,16956,17700,18585,19650,20862,22142,23579,25054,26502,27920,29163,30156,30884,31293,31301,30958,30327,29421,28379,27157,25989,24845,23790,22793,21953,21225,20618,20129,19760,19480,19328,19238,19249,19360,19545,19814,20149,20574,21096,21646,22273,22937,23573,24185,24750,25218,25586,25846,25900,25781,25516,25028,24410,23694,22917,22054,21177,20347,19572,18886,18226,17683,17216,16791,16505,16246,16072,15986,15918,15957,16040,16193,16425,16720,17089,17528,17998,18565,19161,19790,20469,21184,21908,22648,23362,24057,24706,25290,25869,26285,26605,26864,26957,26961,26871,26652,26336,25951,25450,24893,24293,23680,23029,22397,21738,21117,20501,19901,19371,18866,18407,17994,17632,17323,17029,16757,16535,16332,16122,15936,15744,15558,15401,15257,15145,15048,14973,14903,14872,14856,14853,14841,14874,14898,14953,14973,15004,15054,15098,15111,15127,15141,15133,15159,15181,15181,15187,15125,15057,15010,14928,14848,14769,14612,14472,14314,14134,13914,13712,13450,13183,12933,12650,12362,12065,11775,11495,11234,10985,10733,10509,10243,9937,9626,9314,9043,8781,8577,8415,8257,8119,8005,7944,7870,7818,7763,7669,7527,7349,7201,7072,6961,6868,6786,6714,6660,6626,6597,6588,6583,6582,6593,6587,6449,6125,5711,5102,21.9,22.2,22.9,1568760,0.2,12.9,12.0,5.0,446,-1.00,-1.00,59.3359,-19.474169,0.000588,,,,,222 +SATSDF0720,2024246,19.009138,0.00,0.0000,0.0000,0.0000,0.00,655,0,1,631,625,629,634,645,645,643,629,635,629,629,619,618,627,629,633,646,644,662,660,651,651,672,653,659,656,658,640,645,654,645,651,660,650,656,647,652,651,656,667,669,665,667,664,663,667,665,657,668,661,653,659,659,673,658,663,663,658,649,667,658,667,661,662,667,661,656,652,662,670,666,653,654,669,665,660,659,663,656,671,667,666,660,659,674,662,648,656,647,649,655,650,658,653,662,661,662,661,658,662,653,670,669,663,667,660,660,650,653,657,642,657,671,674,658,661,665,649,654,649,650,656,650,659,661,654,659,649,645,638,648,652,661,654,665,662,656,661,661,658,648,665,659,660,665,658,662,656,652,641,657,663,657,667,661,648,661,661,653,666,665,656,658,655,657,653,660,665,664,645,651,652,659,657,659,644,642,641,644,652,659,666,657,647,651,641,639,638,643,656,678,660,667,667,662,652,654,667,654,653,657,659,657,649,652,654,654,637,640,655,659,652,663,662,652,663,653,655,663,649,655,635,647,645,656,658,650,653,647,651,648,657,659,654,647,654,662,660,656,647,647,643,649,660,651,659,653,643,647,653,657,666,652,660,659,487,0.0,0.0,0.0,1568759,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,25 +SATSLF0720,2024246,19.009693,4.00,0.0561,0.1014,0.0175,0.00,16194,655,1,701,695,707,710,715,713,743,725,739,729,733,743,768,891,1207,1936,3096,4469,5705,6637,7290,7791,8218,8654,9182,9821,10574,11450,12457,13571,14754,15921,17045,17995,18721,19163,19281,19109,18725,18195,17593,17047,16573,16193,15971,15895,15965,16237,16645,17222,17972,18894,19973,21185,22507,23972,25444,26930,28338,29606,30613,31379,31777,31776,31453,30794,29890,28819,27579,26388,25221,24138,23147,22285,21563,20957,20456,20067,19786,19621,19520,19545,19643,19849,20093,20441,20885,21407,21978,22589,23256,23916,24514,25111,25588,25945,26204,26250,26136,25848,25365,24725,24003,23207,22330,21455,20593,19833,19107,18442,17895,17420,17012,16689,16445,16273,16168,16133,16140,16245,16413,16652,16928,17293,17732,18209,18770,19382,20012,20720,21447,22203,22938,23657,24360,25016,25618,26182,26609,26932,27185,27286,27280,27205,26998,26653,26261,25756,25205,24601,23966,23328,22657,21995,21358,20734,20143,19577,19090,18615,18204,17818,17499,17213,16957,16698,16514,16308,16119,15932,15741,15562,15425,15305,15197,15114,15031,15023,15002,15004,15011,15017,15040,15081,15126,15150,15202,15253,15277,15294,15293,15301,15321,15339,15325,15319,15261,15206,15148,15077,14981,14902,14746,14604,14430,14243,14035,13829,13572,13315,13041,12763,12461,12177,11881,11585,11330,11076,10820,10584,10307,10018,9706,9395,9116,8861,8666,8485,8330,8200,8084,8009,7942,7877,7825,7722,7591,7402,7263,7115,7012,6916,6833,6771,6721,6673,6653,6641,6638,6623,6647,6637,6477,6162,5755,5128,21.9,21.9,22.4,1568760,0.4,12.9,12.0,5.0,569,-1.00,-1.00,58.0495,-19.223836,0.000565,,,,,141 +SATSLF0720,2024246,19.009874,3.94,0.0552,0.1019,0.0176,0.00,16175,655,1,705,704,709,720,705,711,706,714,729,725,723,729,767,882,1205,1925,3089,4465,5712,6637,7300,7774,8193,8651,9173,9801,10563,11438,12442,13546,14738,15896,17011,17962,18682,19117,19243,19065,18685,18153,17572,17001,16539,16170,15943,15880,15942,16199,16614,17181,17943,18852,19922,21141,22458,23914,25398,26888,28320,29581,30577,31331,31725,31746,31415,30769,29832,28784,27541,26373,25198,24116,23125,22257,21524,20925,20434,20044,19745,19595,19498,19520,19629,19813,20078,20421,20864,21370,21941,22557,23225,23879,24487,25066,25555,25909,26186,26229,26116,25817,25339,24685,23975,23176,22304,21425,20571,19809,19096,18445,17877,17397,17003,16676,16433,16250,16151,16108,16117,16225,16381,16613,16912,17284,17705,18190,18741,19367,20010,20693,21422,22165,22912,23621,24334,25002,25589,26158,26581,26905,27152,27249,27252,27168,26944,26624,26213,25735,25177,24576,23941,23305,22631,21978,21336,20717,20129,19561,19066,18595,18197,17841,17513,17211,16934,16691,16497,16281,16097,15892,15709,15545,15408,15291,15177,15115,15038,15002,14973,14973,14985,15001,15035,15061,15109,15133,15179,15243,15264,15272,15272,15284,15297,15329,15317,15306,15271,15200,15144,15067,14984,14890,14744,14597,14432,14241,14032,13803,13566,13291,13025,12745,12457,12157,11859,11581,11312,11058,10816,10593,10321,10023,9690,9374,9095,8851,8644,8454,8306,8180,8080,8002,7921,7865,7813,7725,7580,7411,7257,7124,7007,6911,6817,6771,6714,6686,6654,6655,6633,6617,6628,6628,6485,6173,5737,5123,21.9,21.9,22.4,1568761,0.0,12.9,12.0,5.0,470,-1.00,-1.00,58.7985,-19.511344,0.000545,,,,,131 +SATSLF0720,2024246,19.010130,3.93,0.0550,0.1022,0.0178,0.00,16170,655,1,691,699,712,709,729,717,736,729,733,733,732,746,769,884,1207,1943,3093,4475,5717,6639,7289,7767,8204,8641,9175,9785,10553,11415,12427,13534,14714,15877,16993,17952,18677,19114,19254,19066,18698,18152,17569,16991,16536,16158,15940,15873,15945,16214,16605,17203,17934,18843,19922,21141,22440,23904,25381,26860,28291,29548,30537,31289,31706,31713,31398,30734,29819,28763,27531,26356,25192,24122,23101,22258,21509,20909,20423,20018,19737,19576,19486,19497,19608,19805,20076,20409,20838,21365,21927,22545,23226,23865,24468,25052,25533,25905,26157,26215,26089,25823,25333,24693,23959,23165,22282,21406,20554,19797,19095,18427,17865,17399,16981,16657,16416,16256,16137,16108,16141,16217,16391,16613,16906,17272,17693,18199,18756,19368,20011,20681,21410,22162,22902,23618,24326,24982,25586,26148,26579,26898,27137,27248,27258,27179,26937,26613,26228,25732,25172,24573,23929,23291,22625,21965,21319,20725,20118,19560,19069,18594,18190,17817,17492,17202,16933,16697,16485,16285,16091,15886,15700,15556,15398,15285,15188,15114,15037,15003,14957,14971,14976,15009,15017,15053,15096,15142,15197,15253,15265,15285,15285,15286,15291,15317,15301,15313,15269,15193,15138,15064,14973,14877,14739,14613,14421,14244,14018,13803,13549,13279,13012,12740,12431,12163,11861,11575,11300,11059,10829,10585,10321,10024,9697,9377,9082,8843,8644,8469,8313,8194,8089,8016,7949,7885,7817,7723,7562,7415,7259,7126,7013,6914,6835,6765,6699,6677,6642,6647,6637,6637,6636,6630,6481,6180,5738,5130,21.9,21.9,22.5,1568762,0.0,13.0,12.0,5.0,456,-1.00,-1.00,58.4241,-19.341305,0.000462,,,,,216 +SATSLF0720,2024246,19.010383,3.88,0.0544,0.1020,0.0174,0.00,16170,655,1,712,709,706,713,729,718,739,730,741,729,722,735,765,887,1218,1931,3095,4464,5722,6644,7289,7761,8191,8647,9162,9793,10549,11405,12413,13534,14697,15874,16994,17957,18685,19106,19241,19049,18695,18149,17569,16986,16525,16161,15914,15863,15946,16203,16599,17175,17936,18827,19920,21141,22471,23898,25381,26877,28285,29538,30550,31309,31719,31717,31398,30748,29831,28769,27543,26359,25189,24098,23099,22237,21494,20881,20405,20022,19732,19579,19493,19517,19609,19802,20058,20415,20848,21362,21938,22548,23213,23861,24475,25061,25521,25883,26151,26210,26098,25808,25329,24694,23970,23173,22297,21418,20567,19799,19078,18431,17861,17401,16992,16662,16409,16235,16144,16100,16110,16213,16372,16592,16891,17282,17689,18197,18760,19373,20020,20690,21419,22163,22914,23622,24326,24989,25575,26128,26573,26898,27137,27232,27260,27162,26949,26629,26224,25740,25146,24567,23917,23288,22629,21965,21330,20723,20122,19558,19068,18594,18188,17829,17486,17201,16935,16685,16473,16281,16078,15902,15698,15543,15401,15297,15181,15114,15045,15011,14985,14985,14984,15010,15026,15060,15107,15139,15189,15253,15257,15267,15273,15283,15291,15302,15311,15297,15262,15205,15150,15064,14982,14889,14756,14598,14426,14232,14026,13817,13579,13316,13042,12764,12461,12171,11881,11587,11302,11061,10814,10589,10308,10023,9690,9379,9092,8845,8647,8462,8310,8171,8075,7998,7940,7869,7811,7737,7591,7409,7265,7130,7025,6929,6840,6777,6723,6669,6655,6642,6631,6625,6629,6635,6490,6179,5759,5134,21.9,21.9,22.6,1568763,0.2,12.9,12.0,5.0,445,-1.00,-1.00,59.0019,-19.586350,0.000535,,,,,198 +SATSLF0720,2024246,19.010642,3.97,0.0556,0.1024,0.0177,0.00,16164,655,1,691,697,711,721,729,710,709,710,721,726,730,733,779,897,1217,1939,3097,4469,5715,6638,7282,7771,8186,8640,9177,9786,10543,11412,12404,13535,14720,15884,16988,17946,18666,19110,19232,19056,18684,18134,17559,16980,16512,16160,15931,15868,15949,16202,16609,17176,17930,18825,19915,21129,22449,23884,25391,26857,28295,29541,30554,31272,31683,31700,31377,30738,29814,28759,27537,26337,25160,24080,23082,22243,21509,20890,20407,20017,19717,19575,19478,19499,19594,19789,20061,20389,20836,21357,21923,22536,23208,23860,24460,25049,25524,25899,26158,26203,26083,25793,25317,24673,23962,23152,22277,21404,20545,19787,19072,18426,17873,17390,16983,16674,16414,16235,16132,16103,16114,16203,16371,16605,16900,17261,17694,18192,18762,19365,20005,20693,21401,22146,22886,23610,24321,24973,25566,26138,26561,26883,27143,27245,27257,27162,26929,26622,26221,25722,25168,24582,23936,23280,22614,21956,21317,20702,20114,19557,19062,18582,18189,17821,17485,17186,16933,16694,16481,16270,16092,15888,15697,15540,15377,15265,15185,15104,15030,14990,14979,14986,14986,15009,15036,15072,15104,15147,15196,15234,15261,15255,15264,15287,15297,15319,15309,15304,15251,15204,15139,15071,14992,14886,14742,14602,14436,14243,14029,13798,13551,13301,13033,12743,12453,12162,11869,11584,11310,11051,10827,10584,10299,10019,9682,9367,9085,8849,8638,8475,8304,8171,8098,8011,7943,7885,7818,7717,7571,7400,7253,7124,7008,6913,6833,6756,6700,6669,6648,6641,6617,6625,6629,6630,6470,6167,5744,5109,21.9,21.9,22.6,1568764,0.0,12.9,11.9,5.0,452,-1.00,-1.00,58.5096,-19.372967,0.000495,,,,,20 +SATSLF0720,2024246,19.010898,4.03,0.0564,0.1035,0.0189,0.00,16128,655,1,700,698,707,709,710,700,711,715,729,725,729,737,772,877,1207,1922,3077,4435,5687,6621,7267,7754,8178,8634,9165,9788,10517,11380,12387,13496,14665,15824,16935,17903,18628,19062,19199,19013,18647,18110,17509,16953,16487,16128,15904,15821,15916,16141,16545,17139,17882,18800,19872,21083,22418,23852,25335,26832,28237,29483,30489,31233,31649,31642,31296,30651,29721,28677,27447,26274,25117,24045,23048,22194,21452,20856,20374,19973,19697,19526,19431,19441,19539,19739,20001,20362,20791,21306,21878,22506,23165,23813,24428,24988,25476,25842,26094,26158,26030,25751,25290,24645,23939,23121,22241,21354,20505,19739,19038,18388,17829,17351,16949,16633,16377,16206,16109,16054,16091,16167,16328,16560,16857,17222,17657,18125,18711,19310,19958,20645,21362,22104,22841,23553,24270,24914,25515,26073,26490,26819,27056,27166,27191,27095,26882,26549,26138,25654,25080,24491,23860,23209,22566,21898,21272,20663,20061,19518,19017,18545,18130,17770,17436,17144,16882,16637,16440,16247,16039,15850,15673,15515,15369,15233,15139,15067,14995,14966,14941,14929,14931,14985,14989,15016,15069,15095,15157,15205,15221,15226,15236,15243,15265,15280,15280,15264,15225,15158,15101,15029,14936,14837,14703,14557,14393,14209,13986,13767,13531,13268,12996,12714,12418,12147,11850,11545,11275,11030,10789,10553,10284,9995,9662,9367,9069,8838,8610,8453,8289,8160,8066,7988,7914,7877,7810,7721,7564,7394,7238,7120,6997,6914,6824,6753,6693,6650,6631,6633,6600,6605,6614,6611,6469,6160,5738,5124,21.9,22.0,22.6,1568765,0.2,12.9,12.0,5.0,446,-1.00,-1.00,58.3060,-19.246031,0.000654,,,,,60 +SATSLF0720,2024246,19.011153,4.12,0.0577,0.1040,0.0188,0.00,16115,655,1,705,704,693,701,717,705,719,717,737,725,724,737,769,886,1195,1918,3079,4450,5698,6617,7266,7737,8157,8615,9121,9747,10512,11381,12374,13486,14663,15819,16948,17869,18603,19042,19160,18976,18598,18066,17490,16917,16452,16104,15889,15818,15898,16141,16555,17133,17878,18770,19842,21052,22378,23813,25291,26770,28198,29444,30438,31197,31588,31593,31261,30616,29709,28667,27438,26250,25110,24009,23023,22181,21429,20821,20339,19958,19674,19502,19409,19441,19528,19719,19978,20345,20777,21282,21854,22455,23133,23775,24384,24963,25442,25802,26077,26137,26002,25739,25241,24612,23880,23076,22215,21347,20499,19736,19021,18373,17803,17324,16923,16615,16362,16183,16103,16061,16077,16160,16344,16553,16837,17207,17627,18112,18685,19292,19949,20621,21361,22085,22822,23538,24241,24890,25497,26071,26486,26809,27045,27163,27165,27075,26852,26528,26144,25633,25066,24491,23853,23208,22551,21883,21261,20645,20058,19501,19010,18537,18141,17761,17442,17140,16869,16624,16430,16236,16037,15855,15657,15485,15349,15235,15143,15072,15003,14957,14942,14942,14947,14971,14985,15019,15068,15077,15133,15188,15203,15209,15224,15232,15258,15275,15276,15265,15201,15147,15104,15021,14922,14846,14697,14546,14375,14190,13972,13755,13528,13255,12997,12717,12425,12141,11829,11539,11275,11040,10792,10566,10295,9997,9675,9357,9081,8817,8610,8448,8284,8157,8060,7988,7897,7859,7793,7705,7573,7393,7233,7117,6993,6898,6818,6753,6696,6673,6645,6632,6609,6607,6630,6609,6467,6150,5737,5117,21.9,22.0,22.6,1568766,0.2,13.0,11.9,5.0,451,-1.00,-1.00,58.2563,-19.205315,0.000476,,,,,44 +SATSLF0720,2024246,19.011409,4.09,0.0573,0.1044,0.0187,0.00,16111,655,1,709,697,727,727,727,731,734,729,724,728,733,739,781,896,1223,1932,3089,4448,5680,6597,7259,7736,8149,8601,9131,9729,10489,11354,12342,13451,14623,15795,16891,17847,18577,19008,19140,18954,18585,18053,17465,16898,16433,16079,15864,15788,15876,16122,16528,17088,17838,18762,19813,21041,22355,23794,25277,26768,28164,29430,30420,31160,31575,31568,31237,30580,29678,28621,27399,26228,25074,23992,23006,22144,21415,20807,20329,19935,19656,19497,19392,19398,19510,19694,19971,20317,20756,21285,21840,22471,23127,23773,24381,24968,25433,25808,26066,26113,26000,25729,25237,24597,23886,23085,22216,21341,20505,19714,19018,18365,17809,17338,16928,16611,16365,16193,16087,16043,16059,16151,16317,16541,16832,17207,17653,18126,18700,19317,19933,20608,21351,22093,22824,23544,24245,24901,25490,26065,26475,26813,27053,27137,27157,27067,26857,26535,26144,25641,25083,24480,23865,23217,22541,21875,21247,20648,20053,19509,19008,18537,18144,17780,17445,17144,16885,16637,16439,16225,16034,15851,15668,15505,15369,15259,15165,15075,15005,14945,14936,14948,14941,14980,14997,15021,15067,15104,15149,15203,15213,15220,15224,15253,15265,15285,15289,15282,15218,15168,15107,15034,14939,14852,14705,14556,14379,14187,13973,13786,13533,13275,13010,12722,12433,12136,11834,11536,11265,11039,10791,10555,10291,9988,9672,9357,9077,8825,8617,8450,8298,8151,8065,7973,7908,7865,7801,7709,7575,7401,7239,7122,7006,6913,6822,6750,6707,6660,6647,6629,6615,6597,6627,6634,6473,6179,5739,5119,21.9,22.0,22.7,1568767,0.2,12.9,12.0,5.0,435,-1.00,-1.00,58.6189,-19.338530,0.000587,,,,,18 +SATSLF0720,2024246,19.011666,3.98,0.0557,0.1042,0.0192,0.00,16102,655,1,705,713,731,722,718,731,722,704,724,729,727,743,795,901,1219,1925,3081,4439,5679,6604,7245,7732,8151,8598,9128,9749,10494,11337,12346,13456,14630,15779,16891,17841,18560,18990,19117,18955,18586,18036,17459,16888,16438,16076,15844,15784,15863,16105,16505,17085,17826,18730,19799,21009,22332,23757,25243,26724,28142,29398,30392,31133,31553,31546,31214,30578,29659,28606,27374,26199,25045,23963,22992,22125,21389,20791,20316,19923,19645,19484,19398,19415,19493,19697,19957,20297,20733,21260,21826,22439,23110,23749,24374,24952,25414,25792,26050,26099,25992,25693,25211,24587,23872,23074,22197,21335,20489,19717,19008,18356,17798,17325,16916,16608,16347,16165,16069,16027,16066,16141,16320,16533,16824,17195,17629,18107,18674,19287,19922,20626,21341,22073,22820,23531,24244,24899,25469,26043,26469,26782,27028,27138,27152,27063,26839,26509,26129,25639,25069,24481,23841,23193,22546,21884,21243,20656,20050,19507,19006,18537,18124,17771,17424,17143,16877,16629,16427,16218,16043,15835,15643,15489,15345,15226,15140,15053,14989,14949,14944,14922,14947,14970,14996,15033,15061,15099,15139,15193,15201,15215,15229,15221,15247,15271,15270,15264,15209,15158,15091,15017,14933,14841,14704,14557,14381,14193,13972,13764,13513,13256,12998,12724,12425,12135,11838,11561,11282,11024,10784,10546,10279,9984,9659,9361,9080,8834,8633,8445,8289,8162,8062,7986,7905,7863,7805,7724,7576,7401,7250,7117,7006,6906,6821,6748,6717,6677,6644,6633,6622,6629,6626,6634,6469,6174,5741,5125,21.9,22.0,22.7,1568768,0.2,12.9,12.0,5.0,443,-1.00,-1.00,58.9606,-19.464529,0.000549,,,,,239 +SATSLF0720,2024246,19.011921,3.86,0.0541,0.1040,0.0188,0.00,16112,655,1,708,697,711,722,723,722,715,722,722,727,729,735,770,886,1200,1931,3081,4455,5675,6599,7262,7733,8157,8598,9116,9725,10483,11357,12352,13465,14646,15806,16909,17861,18576,19009,19150,18961,18582,18050,17461,16909,16444,16084,15850,15784,15866,16113,16516,17106,17837,18739,19797,21029,22338,23787,25265,26742,28161,29431,30416,31179,31589,31593,31257,30616,29684,28637,27413,26218,25049,23985,22990,22142,21410,20814,20313,19927,19654,19507,19408,19427,19513,19719,19970,20328,20762,21290,21845,22459,23115,23763,24366,24955,25433,25802,26057,26107,26001,25722,25239,24608,23891,23085,22215,21349,20498,19731,19020,18368,17815,17351,16930,16617,16346,16196,16084,16047,16080,16164,16339,16557,16859,17210,17642,18121,18685,19290,19942,20622,21357,22094,22845,23548,24254,24910,25499,26062,26499,26804,27047,27145,27149,27075,26846,26538,26133,25648,25077,24497,23863,23220,22554,21888,21257,20646,20059,19498,19009,18543,18133,17762,17432,17153,16893,16650,16441,16253,16043,15857,15669,15489,15345,15221,15134,15069,14986,14967,14950,14945,14954,14976,14992,15021,15067,15101,15144,15189,15203,15233,15249,15245,15248,15273,15281,15257,15216,15157,15103,15030,14934,14841,14711,14561,14389,14198,13997,13782,13550,13281,13011,12712,12427,12143,11841,11557,11289,11042,10790,10563,10286,9995,9684,9346,9063,8836,8609,8434,8283,8155,8058,7975,7903,7856,7805,7698,7563,7422,7246,7113,6999,6906,6824,6760,6699,6657,6644,6632,6613,6598,6634,6618,6472,6176,5748,5139,21.9,22.1,22.7,1568769,0.1,12.9,12.0,5.0,452,-1.00,-1.00,59.6297,-19.762511,0.000604,,,,,31 +SATSLF0720,2024246,19.012177,3.96,0.0555,0.1048,0.0195,0.00,16095,655,1,708,702,698,698,701,705,701,715,723,718,723,747,784,889,1201,1931,3083,4453,5676,6615,7260,7737,8143,8600,9121,9737,10483,11330,12327,13434,14613,15782,16878,17842,18567,18995,19133,18964,18578,18037,17454,16872,16434,16061,15859,15761,15863,16105,16515,17097,17835,18740,19809,21000,22318,23764,25248,26731,28136,29398,30374,31133,31533,31546,31227,30573,29664,28601,27379,26199,25044,23972,22976,22123,21381,20789,20299,19916,19638,19476,19371,19395,19500,19693,19948,20293,20739,21261,21824,22449,23090,23751,24349,24938,25397,25776,26053,26093,25973,25694,25204,24576,23864,23048,22195,21328,20485,19705,19011,18349,17795,17317,16917,16593,16345,16175,16061,16023,16055,16136,16309,16529,16822,17190,17614,18115,18701,19280,19918,20608,21325,22071,22812,23538,24217,24883,25461,26048,26465,26772,27002,27133,27141,27045,26827,26501,26112,25617,25045,24460,23832,23189,22537,21877,21232,20632,20050,19477,18994,18513,18109,17740,17413,17120,16854,16618,16418,16206,16021,15837,15648,15474,15339,15229,15136,15056,14987,14940,14909,14917,14932,14953,14981,15025,15061,15102,15133,15182,15206,15206,15215,15217,15236,15263,15261,15245,15201,15143,15080,15018,14924,14825,14701,14549,14385,14192,13976,13755,13528,13265,12986,12707,12407,12117,11829,11528,11280,11024,10791,10541,10285,9973,9643,9351,9068,8813,8619,8447,8283,8152,8061,7977,7917,7845,7803,7686,7556,7386,7232,7116,6981,6889,6823,6749,6691,6652,6633,6631,6626,6601,6626,6615,6479,6169,5737,5119,21.9,22.1,22.7,1568770,0.1,12.9,12.0,5.0,448,-1.00,-1.00,59.0130,-19.486118,0.000566,,,,,120 +SATSLF0720,2024246,19.012431,4.10,0.0574,0.1062,0.0204,0.00,16057,655,1,698,695,719,721,730,728,730,743,738,740,733,745,774,885,1198,1919,3065,4439,5669,6594,7229,7705,8117,8549,9062,9690,10429,11283,12280,13387,14565,15712,16821,17773,18489,18928,19044,18865,18487,17966,17373,16830,16365,16007,15805,15720,15812,16051,16452,17019,17761,18674,19733,20940,22257,23687,25178,26648,28057,29297,30292,31033,31433,31433,31112,30472,29563,28512,27291,26121,24956,23911,22909,22065,21334,20716,20255,19859,19581,19422,19312,19334,19437,19630,19885,20247,20681,21201,21764,22391,23038,23683,24296,24874,25341,25707,25976,26012,25920,25634,25152,24524,23800,23005,22124,21271,20443,19664,18966,18325,17749,17277,16877,16570,16304,16133,16038,15998,16014,16110,16263,16503,16802,17176,17602,18091,18647,19250,19885,20557,21280,22021,22753,23465,24170,24828,25410,25981,26402,26718,26965,27079,27089,26993,26784,26458,26059,25559,25009,24410,23787,23133,22490,21821,21201,20597,20000,19450,18961,18482,18073,17690,17368,17095,16829,16598,16377,16182,15992,15812,15633,15477,15334,15211,15116,15030,14954,14899,14900,14902,14900,14940,14965,14985,15041,15053,15101,15170,15176,15189,15198,15200,15224,15248,15238,15239,15187,15113,15050,14976,14884,14797,14657,14520,14362,14158,13949,13755,13497,13249,12973,12706,12405,12110,11810,11526,11261,11018,10764,10525,10271,9955,9630,9323,9039,8797,8599,8435,8277,8150,8046,7962,7905,7858,7793,7701,7548,7367,7225,7087,6970,6881,6794,6743,6686,6656,6632,6611,6597,6583,6603,6599,6448,6152,5705,5103,21.9,22.1,22.8,1568771,0.1,12.9,12.0,5.0,450,-1.00,-1.00,59.0852,-19.457220,0.000567,,,,,126 +SATSLF0720,2024246,19.012683,4.08,0.0571,0.1047,0.0191,0.00,16093,655,1,719,714,706,701,705,709,713,725,734,733,739,747,786,877,1201,1913,3079,4440,5681,6611,7259,7733,8158,8597,9126,9746,10492,11356,12336,13454,14628,15779,16885,17837,18542,18983,19109,18945,18556,18032,17452,16885,16424,16059,15835,15778,15858,16093,16509,17079,17820,18731,19790,21001,22321,23760,25239,26714,28129,29357,30347,31111,31529,31513,31202,30542,29639,28570,27357,26187,25020,23952,22958,22113,21383,20758,20299,19898,19617,19466,19377,19387,19496,19673,19936,20288,20717,21238,21799,22423,23081,23741,24345,24916,25404,25777,26033,26087,25965,25683,25211,24558,23843,23050,22173,21322,20457,19709,19016,18349,17796,17325,16919,16588,16357,16182,16085,16030,16053,16145,16320,16524,16827,17189,17627,18125,18683,19294,19929,20604,21336,22068,22818,23521,24219,24871,25466,26029,26442,26768,27011,27122,27144,27041,26825,26501,26098,25611,25045,24452,23826,23185,22528,21857,21224,20617,20034,19476,18969,18512,18107,17747,17416,17126,16867,16629,16426,16217,16030,15837,15656,15480,15357,15242,15143,15068,14978,14934,14913,14921,14920,14952,14969,15013,15059,15093,15146,15175,15181,15197,15205,15219,15240,15271,15277,15273,15213,15155,15093,15004,14918,14831,14677,14537,14362,14178,13987,13773,13533,13271,13018,12725,12433,12133,11840,11544,11287,11028,10792,10555,10282,9987,9671,9349,9077,8834,8629,8458,8293,8163,8059,7979,7907,7857,7784,7710,7561,7399,7246,7119,6999,6898,6823,6750,6700,6658,6637,6617,6620,6610,6633,6622,6482,6161,5728,5114,21.9,22.1,22.8,1568772,0.0,12.9,11.9,5.0,452,-1.00,-1.00,58.4823,-19.251983,0.000519,,,,,24 +SATSLF0720,2024246,19.012938,4.10,0.0574,0.1055,0.0196,0.00,16078,655,1,713,727,710,722,713,709,731,721,737,737,753,744,772,885,1195,1928,3090,4453,5673,6606,7262,7725,8154,8592,9107,9737,10490,11341,12339,13453,14610,15752,16859,17815,18538,18977,19101,18923,18542,18010,17413,16865,16400,16054,15825,15753,15843,16091,16491,17065,17805,18708,19783,20973,22297,23731,25209,26693,28107,29338,30352,31084,31472,31479,31161,30502,29586,28535,27335,26161,24993,23943,22932,22102,21349,20755,20273,19875,19600,19438,19344,19360,19461,19669,19920,20274,20711,21213,21783,22385,23048,23708,24330,24906,25374,25750,25993,26048,25929,25654,25190,24557,23844,23037,22167,21290,20451,19675,18996,18325,17768,17294,16894,16581,16322,16154,16065,16020,16048,16129,16295,16519,16805,17169,17605,18073,18663,19257,19912,20590,21292,22041,22782,23494,24187,24844,25437,26013,26427,26747,26981,27091,27098,27009,26790,26469,26081,25587,25041,24437,23808,23157,22500,21849,21206,20597,20020,19462,18952,18483,18091,17726,17390,17114,16838,16609,16405,16205,16011,15817,15633,15471,15326,15209,15106,15043,14972,14933,14913,14925,14918,14944,14961,14984,15037,15071,15121,15189,15205,15209,15218,15227,15244,15264,15260,15257,15214,15131,15078,15005,14914,14829,14692,14536,14368,14177,13963,13755,13502,13251,12986,12697,12408,12128,11821,11536,11275,11017,10786,10541,10269,9977,9645,9355,9053,8819,8613,8436,8288,8156,8056,7968,7905,7849,7797,7701,7568,7386,7232,7119,6993,6899,6810,6744,6689,6649,6635,6619,6615,6609,6629,6622,6481,6173,5737,5123,21.9,22.1,22.8,1568772,0.0,12.9,12.0,5.0,441,-1.00,-1.00,58.3834,-19.191021,0.000547,,,,,98 +SATSLF0720,2024246,19.013195,4.15,0.0582,0.1061,0.0202,0.00,16056,655,1,706,722,717,717,726,712,724,723,736,730,755,741,779,888,1216,1914,3072,4410,5659,6578,7224,7696,8119,8571,9078,9703,10435,11300,12296,13401,14554,15727,16829,17777,18485,18928,19046,18869,18491,17955,17380,16825,16363,16013,15799,15721,15802,16057,16453,17029,17768,18677,19733,20942,22244,23674,25143,26621,28033,29273,30260,31029,31402,31408,31092,30437,29547,28503,27275,26091,24948,23877,22888,22059,21313,20720,20240,19854,19577,19414,19317,19340,19435,19621,19888,20234,20675,21185,21761,22364,23036,23668,24282,24858,25332,25705,25962,26026,25888,25629,25145,24509,23809,23009,22140,21276,20434,19654,18957,18306,17741,17283,16869,16555,16309,16150,16037,15993,16025,16103,16270,16498,16789,17175,17596,18077,18634,19240,19875,20549,21277,22015,22754,23476,24177,24835,25437,25981,26401,26727,26967,27066,27077,26985,26768,26425,26056,25568,24996,24423,23802,23137,22483,21824,21182,20589,19989,19437,18949,18487,18081,17720,17386,17098,16838,16593,16375,16182,15990,15797,15621,15457,15320,15211,15114,15049,14970,14933,14903,14904,14913,14928,14949,14979,15036,15057,15107,15158,15170,15192,15201,15213,15221,15246,15242,15234,15181,15117,15058,14998,14912,14808,14677,14518,14355,14170,13944,13749,13500,13243,12983,12695,12404,12103,11815,11529,11251,11015,10770,10528,10268,9963,9653,9337,9061,8813,8613,8435,8285,8147,8059,7977,7896,7842,7777,7701,7546,7377,7218,7090,6980,6883,6795,6737,6674,6651,6623,6623,6600,6599,6617,6612,6450,6149,5714,5102,21.9,22.1,22.8,1568773,0.2,12.9,12.0,5.0,449,-1.00,-1.00,58.4790,-19.191424,0.000491,,,,,14 +SATSLF0720,2024246,19.013446,4.09,0.0573,0.1060,0.0201,0.00,16058,655,1,705,699,717,710,717,707,724,721,734,738,740,745,775,882,1190,1913,3067,4425,5661,6578,7234,7723,8145,8595,9100,9709,10454,11306,12300,13411,14574,15747,16840,17783,18523,18934,19056,18873,18500,17984,17389,16831,16380,16022,15781,15725,15805,16039,16464,17034,17769,18661,19731,20941,22260,23683,25183,26661,28081,29298,30327,31045,31437,31430,31101,30466,29542,28500,27277,26112,24960,23897,22901,22069,21329,20725,20245,19849,19573,19397,19321,19331,19429,19636,19880,20226,20668,21178,21762,22365,23033,23685,24297,24870,25367,25725,25969,26033,25912,25625,25157,24505,23802,22995,22139,21285,20424,19672,18962,18322,17758,17280,16896,16573,16314,16128,16038,15998,16013,16116,16278,16495,16793,17152,17584,18086,18651,19248,19883,20564,21287,22016,22755,23474,24168,24829,25417,25965,26395,26725,26971,27059,27072,26979,26768,26453,26048,25556,24981,24404,23765,23133,22501,21833,21206,20592,19991,19447,18958,18474,18080,17701,17379,17093,16823,16580,16392,16174,15985,15813,15621,15459,15309,15199,15109,15025,14976,14933,14902,14897,14889,14909,14933,14965,15031,15062,15106,15163,15175,15178,15201,15209,15217,15240,15225,15239,15180,15121,15060,14986,14914,14809,14669,14523,14337,14155,13947,13742,13489,13240,12970,12685,12393,12125,11812,11526,11270,11013,10789,10538,10265,9969,9653,9346,9041,8815,8592,8425,8258,8144,8052,7982,7917,7865,7797,7717,7565,7374,7235,7099,6979,6885,6814,6741,6685,6651,6632,6611,6598,6599,6609,6605,6457,6150,5716,5110,21.9,22.1,22.8,1568774,0.3,12.9,11.9,5.0,450,-1.00,-1.00,58.8265,-19.347771,0.000660,,,,,1 +SATSLF0720,2024246,19.013703,3.91,0.0548,0.1060,0.0199,0.00,16047,655,1,708,709,717,711,722,721,723,715,729,717,739,735,779,899,1213,1929,3081,4429,5669,6581,7221,7696,8114,8567,9061,9697,10432,11299,12295,13383,14555,15708,16817,17745,18471,18901,19040,18861,18488,17956,17355,16811,16350,16000,15762,15699,15786,16030,16441,17002,17750,18633,19694,20914,22238,23674,25134,26618,28021,29256,30252,31004,31406,31409,31083,30438,29540,28498,27276,26084,24942,23861,22857,22016,21285,20688,20203,19840,19545,19419,19321,19330,19429,19621,19865,20223,20647,21172,21738,22363,23029,23666,24287,24848,25335,25694,25950,26008,25892,25607,25128,24497,23789,23005,22137,21274,20425,19665,18956,18305,17747,17269,16884,16557,16311,16125,16027,16000,16010,16114,16269,16497,16781,17146,17571,18065,18628,19238,19880,20565,21273,22015,22745,23457,24158,24811,25389,25963,26384,26716,26957,27048,27072,26980,26750,26429,26042,25538,24996,24396,23755,23122,22477,21824,21173,20571,19981,19411,18934,18461,18071,17699,17369,17066,16823,16596,16377,16183,16000,15797,15621,15441,15319,15181,15098,15026,14941,14924,14902,14886,14896,14905,14928,14973,15006,15041,15099,15163,15176,15189,15195,15195,15223,15229,15221,15237,15174,15110,15068,14988,14899,14800,14665,14521,14360,14162,13953,13746,13504,13241,12981,12701,12412,12110,11820,11545,11257,11016,10777,10533,10262,9963,9642,9319,9040,8799,8601,8430,8277,8148,8045,7969,7898,7846,7776,7680,7543,7373,7230,7092,6976,6891,6808,6741,6681,6641,6618,6620,6597,6598,6610,6608,6457,6146,5716,5108,21.9,22.2,22.8,1568775,0.0,12.9,11.9,5.0,447,-1.00,-1.00,59.8152,-19.742035,0.000586,,,,,51 +SATSLF0720,2024246,19.013956,4.06,0.0568,0.1060,0.0203,0.00,16059,655,1,711,718,726,717,732,725,746,730,728,735,730,747,782,894,1218,1925,3073,4432,5661,6602,7236,7725,8151,8589,9110,9731,10465,11333,12313,13408,14595,15745,16845,17796,18519,18944,19067,18900,18521,17984,17409,16845,16389,16027,15811,15725,15808,16050,16457,17045,17764,18682,19742,20960,22281,23714,25180,26667,28069,29312,30306,31042,31445,31445,31104,30474,29561,28518,27285,26116,24964,23909,22893,22066,21330,20712,20231,19853,19561,19431,19320,19339,19453,19644,19900,20244,20678,21196,21760,22373,23036,23684,24297,24882,25353,25709,25979,26032,25902,25649,25172,24521,23802,22999,22130,21259,20425,19661,18967,18313,17763,17289,16880,16556,16308,16137,16027,16004,16004,16087,16257,16489,16788,17156,17578,18065,18650,19249,19873,20556,21275,22002,22738,23440,24166,24813,25401,25960,26395,26693,26955,27053,27080,26981,26786,26449,26049,25557,24994,24388,23778,23133,22473,21808,21192,20586,19982,19441,18928,18467,18053,17699,17380,17090,16834,16593,16385,16180,15995,15798,15619,15445,15312,15192,15101,15020,14953,14921,14900,14902,14898,14930,14958,15000,15029,15062,15112,15170,15185,15176,15182,15205,15219,15241,15256,15229,15197,15114,15055,14992,14903,14807,14675,14504,14347,14149,13936,13763,13518,13249,12974,12698,12405,12114,11816,11527,11265,11007,10762,10528,10253,9957,9633,9338,9061,8806,8593,8437,8268,8133,8039,7963,7888,7837,7787,7696,7563,7383,7235,7108,6987,6885,6805,6729,6679,6654,6634,6613,6611,6593,6605,6603,6447,6147,5728,5109,21.9,22.2,22.9,1568776,0.3,12.9,11.9,5.0,448,-1.00,-1.00,58.7027,-19.301121,0.000621,,,,,44 +SATSLF0720,2024246,19.014207,4.07,0.0570,0.1064,0.0203,0.00,16040,655,1,711,719,711,705,717,723,723,728,733,727,733,758,788,900,1229,1917,3076,4430,5665,6585,7218,7708,8126,8567,9077,9701,10445,11308,12299,13392,14554,15707,16807,17766,18472,18918,19045,18860,18490,17963,17376,16817,16363,16007,15774,15717,15781,16020,16443,17017,17767,18670,19739,20929,22242,23672,25129,26608,28011,29257,30252,30993,31392,31392,31064,30443,29526,28477,27264,26087,24944,23873,22873,22014,21284,20697,20205,19831,19541,19392,19304,19321,19419,19613,19870,20225,20669,21161,21735,22349,23016,23650,24264,24832,25316,25674,25930,25988,25875,25600,25118,24499,23789,22977,22119,21242,20415,19645,18944,18305,17754,17280,16870,16549,16281,16120,16014,15972,15994,16087,16265,16501,16777,17138,17578,18060,18616,19224,19850,20533,21249,21995,22728,23433,24122,24802,25366,25953,26357,26685,26922,27024,27037,26933,26723,26408,26000,25513,24960,24379,23741,23122,22457,21801,21170,20553,19962,19413,18917,18443,18039,17678,17366,17068,16804,16568,16375,16174,15977,15794,15597,15433,15307,15173,15095,15005,14926,14893,14867,14875,14883,14913,14938,14982,15005,15045,15101,15144,15163,15166,15184,15179,15203,15230,15218,15213,15171,15105,15052,14984,14895,14794,14658,14503,14339,14141,13937,13721,13490,13221,12957,12689,12372,12086,11793,11511,11254,11001,10761,10528,10248,9973,9634,9322,9044,8795,8573,8411,8269,8135,8027,7961,7900,7840,7787,7704,7556,7370,7228,7097,6977,6869,6789,6721,6674,6649,6619,6639,6615,6609,6613,6607,6446,6142,5731,5104,21.9,22.2,22.9,1568777,0.3,13.0,11.9,5.0,449,-1.00,-1.00,58.7812,-19.308004,0.000533,,,,,104 +SATSLF0720,2024246,19.014463,4.09,0.0573,0.1071,0.0206,0.00,16018,655,1,706,726,725,710,727,722,722,731,731,716,729,734,772,885,1200,1923,3065,4416,5645,6555,7219,7683,8118,8562,9067,9703,10412,11289,12277,13357,14536,15689,16796,17736,18449,18868,19008,18817,18456,17927,17338,16776,16323,15966,15752,15686,15777,16010,16416,16987,17731,18615,19680,20883,22185,23628,25085,26561,27950,29205,30186,30940,31335,31334,31027,30384,29484,28430,27195,26051,24882,23815,22836,21977,21245,20649,20174,19793,19509,19349,19275,19278,19381,19568,19835,20193,20622,21144,21701,22315,22978,23616,24233,24802,25285,25650,25895,25956,25848,25553,25084,24439,23716,22923,22066,21207,20371,19635,18922,18289,17722,17246,16833,16518,16263,16099,16003,15947,15984,16082,16230,16448,16759,17111,17544,18032,18589,19189,19817,20502,21210,21970,22706,23406,24124,24768,25362,25901,26327,26667,26900,26994,27028,26922,26710,26390,25994,25490,24933,24339,23722,23068,22429,21755,21126,20519,19934,19397,18898,18437,18013,17660,17342,17038,16784,16557,16357,16146,15959,15769,15581,15416,15279,15163,15081,15000,14914,14891,14869,14871,14882,14890,14917,14961,14993,15019,15075,15130,15141,15160,15172,15175,15205,15205,15211,15202,15144,15083,15043,14968,14877,14778,14643,14498,14320,14142,13926,13725,13489,13222,12949,12661,12386,12077,11791,11507,11233,11003,10757,10505,10237,9950,9624,9323,9041,8789,8599,8400,8259,8131,8047,7971,7905,7834,7779,7684,7544,7360,7213,7083,6974,6881,6799,6743,6690,6640,6615,6610,6598,6582,6611,6600,6428,6139,5709,5107,22.0,22.2,22.9,1568778,0.0,12.9,11.9,5.0,449,-1.00,-1.00,58.9360,-19.338621,0.000488,,,,,24 +SATSDF0720,2024246,19.259139,0.00,0.0000,0.0000,0.0000,0.00,653,0,1,645,633,642,639,642,633,630,627,629,621,626,620,636,634,630,637,632,634,642,646,637,634,632,660,665,660,660,660,662,653,655,657,647,645,647,649,659,661,662,664,674,678,673,671,664,661,673,650,663,673,661,677,661,663,666,669,657,655,644,654,665,663,668,668,666,654,659,651,663,660,657,659,647,655,655,660,651,649,653,659,647,657,657,652,663,663,668,649,649,644,645,646,653,652,658,652,650,644,657,653,657,665,667,673,660,655,657,654,651,658,666,658,656,653,661,665,649,647,647,645,640,633,643,645,645,657,648,651,655,667,660,664,658,650,645,637,645,647,644,646,651,641,661,646,651,653,667,664,661,651,648,661,644,649,646,642,643,657,645,653,657,659,641,651,630,639,646,645,659,662,658,659,650,658,650,661,657,660,659,657,654,653,649,649,669,657,666,660,653,648,647,649,646,642,649,647,641,637,639,647,647,658,653,642,639,645,638,639,649,649,650,663,660,649,648,654,643,635,643,637,653,657,653,665,660,664,669,661,665,652,653,657,665,661,656,653,657,659,656,654,650,657,649,656,657,657,641,648,641,655,651,679,676,670,657,487,0.0,0.0,0.0,1568777,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,70 +SATSLF0720,2024246,19.259690,3.78,0.0529,0.1017,0.0178,0.00,16179,653,1,701,696,695,705,712,709,719,715,732,728,729,725,758,867,1190,1912,3077,4479,5714,6655,7320,7785,8203,8664,9172,9803,10562,11448,12449,13554,14734,15925,17025,17982,18718,19153,19299,19112,18733,18183,17595,17035,16562,16194,15953,15886,15980,16218,16616,17205,17960,18874,19936,21170,22491,23954,25433,26897,28335,29602,30605,31366,31754,31771,31428,30784,29860,28804,27571,26393,25225,24141,23141,22273,21536,20932,20437,20061,19771,19626,19506,19529,19633,19821,20078,20433,20856,21387,21950,22569,23238,23885,24507,25082,25571,25933,26185,26238,26116,25841,25348,24699,24000,23192,22320,21444,20586,19815,19098,18442,17874,17408,17009,16674,16429,16261,16152,16110,16127,16215,16385,16608,16898,17271,17706,18194,18781,19380,20021,20709,21436,22165,22918,23634,24330,24987,25587,26158,26593,26926,27146,27270,27285,27200,26969,26635,26237,25731,25161,24576,23917,23281,22629,21949,21332,20736,20125,19571,19083,18596,18193,17833,17508,17205,16921,16689,16478,16274,16086,15895,15694,15547,15398,15290,15186,15123,15040,14990,14988,14961,14983,15014,15028,15063,15091,15122,15173,15236,15233,15251,15265,15277,15294,15310,15309,15307,15260,15190,15136,15050,14963,14882,14743,14581,14419,14237,14016,13811,13557,13300,13018,12751,12458,12167,11865,11570,11305,11042,10813,10574,10311,10009,9689,9381,9095,8848,8634,8467,8320,8177,8080,7991,7925,7861,7802,7720,7577,7404,7241,7117,7001,6903,6827,6769,6705,6663,6637,6635,6618,6608,6639,6622,6476,6173,5733,5132,21.8,21.9,22.4,1568778,0.0,13.0,11.9,5.0,567,-1.00,-1.00,58.7987,-19.527399,0.000575,,,,,10 +SATSLF0720,2024246,19.259872,3.86,0.0541,0.1026,0.0180,0.00,16166,653,1,692,691,699,710,719,727,721,711,722,726,725,749,790,899,1213,1927,3087,4465,5715,6633,7303,7773,8202,8643,9164,9793,10544,11420,12420,13544,14713,15880,16986,17965,18682,19105,19249,19073,18693,18165,17562,16993,16541,16165,15941,15860,15956,16192,16601,17184,17931,18843,19902,21116,22455,23914,25366,26849,28281,29537,30549,31296,31703,31707,31382,30730,29817,28759,27534,26345,25181,24099,23109,22233,21509,20896,20421,20043,19728,19584,19468,19504,19586,19795,20057,20406,20840,21359,21926,22549,23201,23859,24458,25041,25524,25885,26158,26208,26082,25810,25305,24697,23958,23168,22294,21413,20557,19784,19081,18416,17861,17394,16977,16659,16403,16244,16137,16101,16105,16206,16378,16589,16882,17258,17691,18185,18757,19366,20005,20690,21424,22161,22886,23607,24325,24982,25575,26123,26567,26893,27133,27239,27246,27154,26931,26615,26226,25722,25164,24573,23937,23276,22609,21957,21322,20706,20105,19563,19085,18601,18197,17817,17491,17198,16925,16680,16492,16276,16083,15895,15709,15541,15398,15291,15193,15121,15041,14990,14984,14972,14976,14998,15014,15061,15107,15142,15184,15239,15253,15264,15276,15271,15298,15322,15314,15300,15264,15194,15129,15068,14970,14873,14740,14585,14404,14231,14016,13805,13575,13312,13043,12752,12451,12159,11867,11575,11288,11047,10816,10581,10295,10011,9688,9394,9092,8856,8663,8469,8318,8168,8075,7992,7923,7875,7813,7740,7587,7412,7250,7122,7010,6909,6835,6766,6722,6685,6653,6643,6627,6619,6635,6645,6478,6172,5746,5125,21.8,21.9,22.6,1568779,0.0,12.9,12.0,5.0,460,-1.00,-1.00,58.6128,-19.417733,0.000481,,,,,235 +SATSLF0720,2024246,19.260130,3.95,0.0553,0.1088,0.0227,0.00,15961,653,1,702,702,721,709,725,711,723,713,714,721,726,744,772,892,1197,1923,3045,4403,5626,6550,7197,7675,8105,8549,9058,9677,10406,11278,12246,13341,14517,15674,16782,17701,18426,18845,18986,18800,18426,17893,17307,16752,16282,15922,15693,15639,15717,15964,16381,16941,17680,18573,19637,20828,22145,23569,25015,26500,27894,29128,30116,30844,31245,31253,30910,30295,29373,28345,27126,25954,24820,23749,22785,21929,21211,20605,20133,19752,19472,19310,19201,19229,19322,19521,19780,20118,20547,21073,21641,22244,22905,23536,24146,24713,25189,25554,25800,25853,25725,25446,24966,24350,23624,22849,21989,21120,20284,19501,18811,18162,17614,17155,16745,16439,16195,16022,15929,15901,15921,16005,16160,16391,16689,17060,17466,17943,18509,19121,19747,20420,21149,21886,22617,23322,24022,24661,25255,25813,26240,26556,26787,26893,26909,26817,26605,26276,25883,25395,24843,24261,23629,22988,22340,21679,21048,20458,19862,19317,18820,18353,17969,17590,17275,16985,16729,16506,16306,16098,15905,15724,15532,15365,15207,15107,14993,14931,14845,14814,14798,14800,14818,14848,14864,14894,14947,14968,15005,15067,15073,15096,15108,15110,15121,15133,15137,15133,15070,15017,14971,14898,14817,14716,14596,14436,14258,14071,13859,13646,13418,13161,12894,12627,12310,12043,11733,11455,11187,10957,10702,10457,10197,9902,9586,9269,8999,8768,8548,8388,8221,8087,7997,7907,7856,7797,7728,7645,7513,7329,7183,7057,6945,6849,6770,6696,6637,6601,6593,6582,6553,6551,6581,6585,6435,6136,5718,5077,21.9,21.9,22.6,1568780,0.2,13.0,11.9,5.0,454,-1.00,-1.00,59.0346,-19.326111,0.000612,,,,,48 +SATSLF0720,2024246,19.260383,3.96,0.0554,0.1026,0.0181,0.00,16153,653,1,719,717,717,721,731,714,720,710,718,721,725,722,765,875,1190,1924,3089,4449,5687,6631,7266,7748,8182,8617,9153,9781,10523,11398,12386,13514,14690,15861,16957,17915,18651,19088,19218,19021,18647,18101,17526,16960,16504,16136,15901,15846,15909,16167,16579,17153,17918,18820,19877,21095,22416,23857,25344,26829,28247,29506,30512,31257,31646,31657,31333,30686,29780,28712,27486,26308,25146,24078,23073,22208,21490,20853,20393,20014,19724,19560,19468,19479,19589,19766,20034,20386,20809,21337,21896,22517,23186,23840,24453,25040,25513,25888,26149,26185,26067,25793,25301,24650,23939,23140,22280,21404,20540,19766,19073,18418,17841,17386,16981,16648,16404,16233,16133,16098,16109,16203,16353,16567,16890,17261,17677,18167,18728,19341,19971,20675,21397,22139,22890,23597,24322,24974,25568,26122,26557,26872,27128,27222,27250,27159,26926,26607,26197,25701,25132,24539,23906,23263,22594,21948,21316,20706,20112,19564,19073,18586,18170,17815,17457,17181,16918,16685,16469,16272,16075,15879,15700,15536,15393,15280,15187,15106,15016,14987,14981,14969,14971,15013,15022,15057,15113,15140,15178,15232,15252,15237,15255,15261,15285,15303,15301,15302,15248,15194,15124,15055,14979,14881,14743,14605,14423,14231,14021,13805,13558,13283,13027,12734,12452,12163,11866,11582,11320,11055,10813,10590,10306,9989,9675,9371,9092,8857,8650,8464,8315,8179,8072,8002,7937,7868,7812,7725,7582,7418,7259,7127,7008,6918,6825,6767,6713,6685,6651,6639,6639,6634,6633,6621,6477,6166,5739,5119,21.9,21.9,22.6,1568781,0.1,12.9,11.9,5.0,452,-1.00,-1.00,58.6678,-19.415047,0.000530,,,,,72 +SATSLF0720,2024246,19.260634,4.05,0.0567,0.1043,0.0211,0.00,16076,653,1,719,727,718,709,709,699,707,708,711,715,722,727,750,873,1191,1903,3073,4425,5665,6599,7253,7727,8157,8605,9125,9757,10496,11358,12353,13469,14643,15796,16893,17863,18577,19018,19146,18963,18574,18045,17466,16898,16448,16090,15864,15799,15866,16133,16529,17114,17851,18746,19821,21026,22334,23787,25257,26743,28165,29410,30411,31171,31546,31565,31249,30576,29667,28627,27397,26237,25085,23996,22999,22144,21402,20797,20315,19939,19633,19479,19393,19409,19499,19701,19965,20297,20743,21260,21826,22438,23107,23751,24346,24927,25403,25781,26036,26095,25966,25683,25206,24573,23830,23054,22178,21299,20459,19701,18997,18343,17785,17309,16913,16584,16325,16167,16058,16003,16029,16129,16294,16501,16807,17169,17595,18069,18644,19265,19890,20565,21289,22037,22778,23492,24181,24842,25422,26003,26402,26735,26966,27072,27108,26993,26797,26465,26059,25572,24997,24404,23777,23138,22473,21819,21189,20587,20012,19437,18941,18471,18074,17702,17375,17086,16820,16580,16363,16169,15974,15787,15608,15449,15306,15184,15089,15013,14937,14876,14870,14873,14882,14900,14920,14961,15001,15022,15082,15141,15141,15170,15170,15185,15208,15213,15207,15203,15157,15092,15024,14944,14871,14773,14649,14490,14330,14138,13920,13707,13477,13221,12944,12669,12378,12066,11778,11502,11217,10974,10744,10500,10240,9937,9611,9307,9024,8789,8574,8421,8253,8118,8029,7941,7873,7834,7757,7673,7524,7371,7210,7081,6957,6868,6786,6721,6661,6633,6605,6608,6580,6564,6593,6593,6439,6136,5715,5098,21.9,21.9,22.6,1568782,0.0,12.9,12.0,5.0,453,-1.00,-1.00,58.5535,-19.309616,0.000485,,,,,216 +SATSLF0720,2024246,19.260889,4.25,0.0595,0.1032,0.0183,0.00,16135,653,1,695,694,699,705,709,707,727,729,737,729,720,743,769,882,1202,1925,3068,4446,5684,6603,7249,7735,8169,8618,9136,9749,10505,11368,12365,13492,14660,15829,16948,17882,18600,19040,19169,18990,18610,18070,17480,16920,16474,16114,15890,15829,15912,16157,16560,17141,17879,18800,19864,21079,22390,23840,25335,26813,28225,29492,30489,31251,31633,31634,31309,30661,29733,28673,27449,26272,25117,24033,23040,22182,21463,20851,20366,19963,19699,19529,19441,19447,19554,19750,20005,20365,20797,21328,21878,22511,23173,23835,24433,25015,25491,25861,26106,26171,26051,25785,25286,24652,23936,23133,22263,21373,20533,19768,19072,18397,17841,17371,16967,16645,16394,16228,16124,16081,16107,16179,16347,16573,16858,17229,17665,18166,18728,19335,19971,20653,21385,22113,22863,23582,24269,24924,25534,26093,26525,26853,27077,27188,27211,27124,26901,26577,26172,25675,25121,24517,23896,23245,22589,21922,21289,20673,20100,19522,19029,18562,18148,17780,17463,17169,16901,16658,16453,16258,16065,15864,15687,15501,15368,15266,15168,15081,15012,14980,14961,14954,14963,14987,15008,15049,15080,15099,15161,15219,15225,15228,15249,15260,15272,15287,15302,15293,15237,15172,15117,15037,14953,14854,14726,14581,14417,14218,14009,13802,13556,13294,13012,12724,12435,12142,11840,11557,11280,11031,10802,10557,10295,9998,9672,9363,9080,8830,8631,8462,8293,8166,8066,7987,7917,7866,7804,7709,7567,7388,7233,7106,6992,6909,6818,6756,6698,6669,6644,6632,6618,6613,6635,6631,6482,6169,5734,5111,21.9,21.9,22.7,1568783,0.3,12.9,12.0,5.0,454,-1.00,-1.00,58.0540,-19.143579,0.000585,,,,,21 +SATSLF0720,2024246,19.261142,3.98,0.0557,0.1035,0.0184,0.00,16133,653,1,705,705,719,721,720,722,739,725,743,729,743,737,765,887,1195,1923,3079,4442,5685,6606,7275,7752,8175,8623,9150,9773,10532,11377,12374,13485,14660,15827,16932,17884,18610,19038,19175,18993,18611,18097,17490,16939,16477,16105,15871,15815,15893,16136,16538,17132,17874,18778,19843,21056,22382,23819,25319,26797,28221,29480,30478,31221,31612,31611,31278,30630,29728,28672,27441,26269,25121,24037,23040,22177,21457,20836,20355,19969,19689,19528,19426,19456,19543,19723,20006,20352,20797,21306,21861,22507,23162,23816,24427,24992,25483,25837,26104,26144,26035,25760,25274,24633,23923,23117,22258,21378,20525,19757,19045,18394,17831,17356,16961,16640,16388,16219,16106,16055,16087,16173,16335,16562,16856,17234,17676,18153,18718,19335,19970,20653,21393,22142,22857,23579,24285,24926,25527,26077,26519,26837,27095,27197,27194,27111,26872,26561,26169,25668,25108,24515,23889,23230,22570,21899,21284,20677,20084,19513,19033,18560,18153,17783,17445,17163,16909,16677,16466,16272,16058,15858,15673,15508,15361,15245,15149,15083,15019,14977,14957,14950,14955,14987,15008,15041,15088,15121,15166,15233,15238,15233,15250,15266,15281,15296,15306,15273,15240,15174,15115,15044,14964,14857,14725,14574,14411,14218,14019,13797,13557,13294,13025,12730,12444,12141,11840,11558,11284,11034,10803,10565,10297,10004,9666,9356,9092,8840,8630,8460,8285,8183,8061,7987,7927,7877,7805,7720,7578,7411,7258,7123,7016,6905,6829,6766,6714,6677,6652,6638,6615,6604,6615,6619,6473,6182,5755,5129,21.9,21.9,22.7,1568784,0.1,12.9,12.0,5.0,451,-1.00,-1.00,58.8465,-19.462738,0.000593,,,,,227 +SATSLF0720,2024246,19.261398,3.93,0.0551,0.1049,0.0195,0.00,16086,653,1,711,712,721,715,711,725,718,715,726,731,739,763,778,903,1206,1934,3080,4425,5667,6584,7230,7701,8133,8567,9094,9716,10455,11328,12311,13413,14591,15746,16859,17805,18528,18976,19093,18912,18542,18009,17416,16845,16403,16043,15824,15758,15835,16078,16477,17050,17801,18699,19784,20978,22308,23753,25221,26693,28126,29344,30349,31106,31497,31517,31189,30544,29627,28581,27357,26180,25038,23950,22970,22120,21392,20761,20295,19900,19617,19467,19366,19380,19477,19676,19950,20311,20722,21256,21812,22436,23083,23715,24331,24904,25392,25761,26008,26059,25941,25677,25189,24549,23837,23037,22182,21309,20481,19717,19010,18346,17795,17305,16902,16587,16341,16166,16082,16023,16042,16139,16317,16538,16817,17195,17622,18106,18657,19273,19904,20600,21333,22069,22809,23517,24205,24865,25449,26017,26449,26765,27005,27093,27127,27053,26829,26491,26088,25611,25053,24448,23819,23164,22523,21867,21237,20633,20038,19492,18993,18520,18123,17740,17407,17128,16848,16613,16423,16232,16021,15845,15649,15492,15348,15220,15122,15050,14970,14939,14917,14912,14932,14941,14976,15002,15035,15085,15133,15185,15193,15195,15214,15235,15238,15259,15246,15249,15203,15139,15077,15003,14913,14838,14701,14549,14363,14179,13985,13751,13527,13241,12983,12704,12417,12128,11830,11555,11288,11030,10797,10551,10272,9969,9646,9336,9054,8818,8603,8443,8288,8148,8055,7987,7913,7857,7790,7699,7547,7381,7223,7127,7001,6889,6820,6745,6693,6663,6642,6615,6614,6605,6621,6613,6462,6152,5732,5115,21.9,22.0,22.7,1568785,0.2,12.9,12.0,5.0,450,-1.00,-1.00,59.6122,-19.718967,0.000597,,,,,164 +SATSLF0720,2024246,19.261653,4.09,0.0573,0.1039,0.0185,0.00,16105,653,1,710,720,717,708,717,715,704,724,722,733,725,735,771,880,1206,1929,3077,4446,5677,6608,7260,7726,8153,8595,9107,9757,10487,11358,12354,13453,14631,15787,16883,17839,18562,18986,19131,18954,18586,18045,17465,16904,16441,16089,15858,15782,15851,16123,16508,17107,17841,18752,19797,21030,22341,23781,25263,26744,28160,29411,30409,31160,31557,31538,31236,30581,29668,28616,27397,26211,25066,23981,22989,22141,21400,20792,20322,19928,19665,19494,19408,19410,19507,19713,19960,20323,20745,21275,21834,22442,23109,23754,24367,24942,25429,25787,26058,26117,25989,25708,25232,24581,23868,23072,22187,21328,20489,19725,19014,18359,17808,17323,16939,16614,16362,16192,16080,16045,16065,16159,16314,16542,16839,17219,17640,18135,18688,19287,19933,20609,21332,22069,22826,23549,24232,24893,25473,26046,26493,26797,27033,27138,27156,27061,26841,26529,26129,25625,25067,24473,23847,23211,22553,21889,21255,20645,20059,19498,19004,18522,18129,17754,17434,17133,16865,16625,16433,16237,16041,15857,15659,15498,15353,15236,15134,15053,14988,14948,14947,14932,14938,14969,14993,15019,15067,15097,15148,15204,15197,15215,15222,15227,15261,15277,15281,15276,15238,15157,15111,15029,14945,14839,14703,14555,14376,14196,13975,13755,13523,13256,13001,12713,12442,12140,11829,11547,11280,11020,10789,10557,10284,9991,9669,9361,9079,8841,8626,8455,8289,8148,8058,7971,7919,7865,7794,7708,7569,7387,7242,7121,6986,6883,6789,6727,6667,6649,6618,6619,6624,6610,6638,6636,6475,6172,5739,5120,21.9,22.0,22.8,1568786,0.3,12.9,12.0,5.0,451,-1.00,-1.00,58.5361,-19.298355,0.000538,,,,,206 +SATSLF0720,2024246,19.261905,4.01,0.0561,0.1038,0.0191,0.00,16122,653,1,696,690,691,703,697,710,721,718,722,722,722,738,769,877,1212,1921,3090,4440,5693,6600,7259,7741,8164,8608,9131,9760,10504,11392,12373,13495,14658,15825,16921,17857,18587,19037,19158,18977,18614,18077,17476,16935,16457,16099,15885,15796,15883,16131,16521,17119,17872,18777,19838,21065,22378,23816,25307,26793,28206,29453,30440,31186,31586,31601,31268,30619,29715,28670,27432,26257,25085,24016,23015,22145,21428,20809,20350,19952,19671,19521,19415,19429,19526,19717,19977,20328,20773,21286,21866,22481,23143,23774,24388,24971,25462,25825,26078,26146,26005,25739,25261,24629,23905,23101,22241,21358,20516,19754,19025,18381,17824,17345,16935,16634,16378,16193,16109,16066,16074,16145,16336,16545,16841,17211,17641,18118,18699,19309,19945,20634,21369,22103,22845,23560,24256,24913,25509,26075,26501,26833,27074,27168,27193,27090,26878,26545,26163,25667,25105,24506,23867,23234,22575,21911,21280,20654,20069,19511,19010,18544,18139,17764,17435,17155,16891,16653,16441,16240,16038,15863,15656,15495,15359,15242,15158,15074,14990,14971,14953,14945,14960,14978,14999,15034,15070,15098,15142,15189,15209,15223,15252,15250,15277,15277,15291,15276,15222,15153,15093,15025,14947,14861,14709,14564,14398,14210,13998,13765,13548,13270,13008,12727,12433,12146,11853,11566,11301,11049,10805,10577,10293,9989,9675,9360,9069,8829,8619,8453,8296,8176,8089,7993,7925,7873,7809,7709,7568,7382,7239,7113,6995,6895,6825,6765,6718,6677,6638,6643,6610,6606,6640,6628,6469,6168,5725,5103,21.9,22.0,22.8,1568787,0.2,13.0,12.0,5.0,449,-1.00,-1.00,58.7973,-19.433926,0.000573,,,,,236 +SATSLF0720,2024246,19.262161,4.00,0.0560,0.1048,0.0193,0.00,16090,653,1,701,701,709,698,709,707,721,724,726,718,737,745,779,885,1204,1921,3080,4429,5667,6593,7249,7740,8149,8603,9107,9736,10474,11329,12322,13431,14620,15769,16872,17818,18547,18992,19117,18936,18548,18019,17446,16885,16414,16059,15829,15781,15845,16081,16491,17077,17821,18721,19782,21005,22312,23740,25218,26708,28129,29373,30386,31120,31522,31509,31184,30551,29636,28581,27337,26174,25013,23942,22946,22103,21390,20782,20301,19905,19638,19459,19373,19373,19473,19675,19929,20290,20717,21259,21812,22433,23114,23751,24364,24930,25413,25753,26028,26080,25955,25688,25201,24590,23853,23063,22205,21317,20475,19704,18994,18346,17801,17324,16905,16593,16345,16171,16082,16034,16056,16137,16294,16517,16828,17202,17611,18099,18668,19277,19906,20599,21309,22069,22808,23521,24229,24861,25469,26026,26451,26784,27024,27114,27131,27029,26819,26505,26122,25609,25044,24475,23820,23183,22526,21873,21229,20631,20033,19478,18982,18507,18110,17739,17415,17129,16862,16616,16394,16206,16018,15838,15652,15482,15341,15219,15129,15055,14994,14940,14920,14920,14920,14938,14971,14994,15051,15065,15123,15179,15200,15211,15233,15221,15243,15268,15249,15236,15206,15129,15085,15012,14931,14834,14711,14553,14379,14180,13984,13753,13525,13265,12982,12712,12420,12131,11835,11541,11273,11020,10781,10537,10285,9964,9647,9355,9065,8830,8615,8441,8296,8153,8057,7982,7902,7854,7787,7691,7562,7387,7230,7108,6994,6887,6797,6741,6677,6650,6629,6625,6609,6619,6618,6619,6465,6164,5725,5101,21.9,22.0,22.8,1568788,0.2,13.0,11.9,5.0,449,-1.00,-1.00,58.8290,-19.395603,0.000602,,,,,191 +SATSLF0720,2024246,19.262415,4.01,0.0562,0.1048,0.0193,0.00,16097,653,1,702,717,701,705,733,725,733,721,729,733,741,738,775,885,1203,1943,3074,4451,5689,6611,7258,7725,8165,8589,9115,9737,10488,11346,12333,13421,14615,15770,16868,17816,18554,18990,19124,18941,18567,18037,17444,16889,16416,16059,15841,15766,15865,16109,16488,17089,17826,18720,19779,21002,22322,23762,25243,26738,28140,29395,30380,31125,31523,31530,31189,30555,29648,28592,27362,26187,25042,23960,22982,22115,21387,20793,20312,19909,19635,19492,19369,19400,19500,19687,19953,20296,20738,21249,21818,22437,23097,23745,24337,24935,25408,25783,26026,26081,25977,25684,25213,24570,23861,23069,22190,21313,20480,19712,19005,18359,17815,17346,16935,16613,16360,16193,16077,16037,16057,16137,16299,16522,16833,17201,17626,18104,18689,19275,19923,20604,21333,22057,22800,23527,24230,24882,25466,26033,26442,26759,27019,27128,27138,27049,26827,26498,26122,25623,25066,24477,23824,23179,22530,21867,21228,20618,20040,19482,18994,18506,18115,17745,17425,17137,16852,16631,16442,16229,16041,15840,15662,15500,15351,15236,15121,15048,14970,14938,14920,14934,14942,14961,14987,15031,15064,15097,15139,15185,15213,15211,15234,15241,15265,15264,15270,15262,15225,15153,15084,15005,14940,14840,14708,14548,14369,14196,13975,13764,13527,13262,12995,12722,12417,12119,11830,11540,11268,11037,10789,10550,10283,9985,9681,9357,9068,8835,8615,8451,8292,8155,8058,7985,7914,7867,7812,7712,7553,7394,7221,7107,6992,6911,6824,6753,6693,6663,6633,6623,6625,6602,6621,6617,6462,6151,5735,5109,21.9,22.1,22.8,1568789,0.3,12.9,12.0,5.0,449,-1.00,-1.00,58.8133,-19.396971,0.000594,,,,,126 +SATSLF0720,2024246,19.262667,4.07,0.0570,0.1058,0.0204,0.00,16056,653,1,722,705,715,706,716,735,725,731,732,739,725,747,773,893,1198,1925,3073,4419,5663,6593,7238,7703,8129,8567,9075,9705,10442,11319,12296,13422,14586,15745,16841,17781,18497,18934,19061,18881,18502,17963,17402,16843,16394,16033,15800,15722,15808,16045,16453,17037,17772,18681,19742,20946,22263,23693,25166,26637,28032,29303,30302,31045,31436,31431,31111,30474,29554,28515,27287,26119,24964,23893,22899,22053,21317,20719,20241,19845,19556,19415,19329,19333,19451,19634,19902,20245,20672,21211,21750,22372,23015,23687,24299,24865,25348,25702,25977,26026,25897,25633,25137,24515,23804,23005,22139,21280,20436,19666,18964,18295,17727,17277,16868,16570,16315,16144,16043,16002,16027,16109,16279,16485,16788,17154,17592,18071,18634,19236,19861,20539,21269,22005,22747,23467,24177,24832,25425,25979,26389,26711,26965,27049,27058,26976,26753,26432,26037,25565,24993,24400,23780,23129,22481,21816,21196,20570,19971,19428,18933,18453,18055,17693,17377,17084,16820,16584,16388,16197,15993,15799,15617,15451,15305,15195,15090,15028,14946,14915,14893,14897,14903,14925,14939,14977,15015,15047,15102,15154,15173,15179,15200,15202,15213,15246,15230,15239,15181,15119,15048,14981,14885,14800,14665,14513,14344,14167,13962,13749,13499,13243,12972,12693,12400,12104,11813,11529,11248,10998,10772,10534,10249,9972,9637,9346,9053,8813,8589,8431,8266,8140,8039,7961,7905,7853,7788,7696,7552,7383,7212,7090,6986,6877,6811,6737,6685,6644,6632,6616,6619,6603,6609,6619,6449,6173,5726,5109,21.9,22.1,22.8,1568789,0.0,12.9,12.0,5.0,437,-1.00,-1.00,58.7853,-19.332819,0.000537,,,,,0 +SATSLF0720,2024246,19.262926,4.18,0.0585,0.1060,0.0201,0.00,16056,653,1,724,710,706,712,721,721,726,733,727,738,737,754,771,891,1217,1917,3071,4432,5670,6578,7232,7698,8135,8581,9108,9712,10446,11307,12310,13405,14572,15730,16832,17779,18505,18935,19066,18880,18509,17973,17399,16833,16384,16032,15805,15725,15806,16061,16471,17051,17773,18690,19738,20963,22278,23712,25174,26664,28045,29297,30305,31044,31444,31446,31109,30465,29563,28532,27286,26119,24973,23892,22893,22053,21318,20724,20230,19840,19580,19414,19318,19347,19433,19629,19891,20238,20666,21173,21757,22365,23042,23680,24297,24869,25342,25700,25966,26005,25895,25616,25155,24526,23789,23005,22139,21278,20423,19667,18970,18317,17754,17287,16887,16553,16307,16127,16036,15997,16025,16112,16266,16503,16797,17166,17577,18060,18627,19235,19866,20569,21281,22020,22763,23471,24165,24817,25402,25958,26390,26707,26944,27063,27076,26981,26775,26436,26040,25539,24987,24423,23770,23127,22474,21809,21191,20587,19981,19431,18944,18464,18070,17696,17380,17094,16835,16594,16393,16181,15979,15799,15614,15447,15302,15181,15093,15021,14947,14909,14898,14904,14921,14925,14955,14994,15015,15043,15098,15162,15162,15187,15193,15206,15216,15242,15225,15234,15185,15117,15059,14990,14889,14800,14664,14526,14345,14151,13952,13733,13493,13220,12962,12690,12407,12098,11808,11533,11237,11001,10765,10534,10276,9976,9649,9344,9058,8815,8604,8421,8275,8146,8060,7966,7903,7841,7776,7680,7546,7373,7209,7095,6981,6883,6802,6735,6681,6645,6623,6617,6592,6595,6610,6602,6458,6147,5724,5125,21.9,22.1,22.9,1568790,0.1,12.9,12.0,5.0,448,-1.00,-1.00,58.3890,-19.172300,0.000544,,,,,67 +SATSLF0720,2024246,19.263180,4.15,0.0581,0.1054,0.0189,0.00,16074,653,1,706,706,708,702,719,709,710,714,718,720,725,739,770,880,1205,1923,3074,4436,5672,6597,7229,7719,8130,8580,9089,9712,10451,11330,12314,13417,14601,15734,16833,17781,18507,18929,19076,18885,18517,17994,17408,16853,16394,16033,15825,15736,15819,16061,16471,17053,17792,18695,19770,20952,22278,23708,25174,26650,28061,29312,30316,31072,31467,31474,31144,30491,29589,28534,27304,26128,24980,23921,22930,22075,21353,20738,20264,19853,19592,19450,19347,19357,19458,19641,19909,20245,20695,21208,21781,22393,23072,23714,24316,24899,25382,25734,26013,26056,25941,25646,25171,24522,23816,23025,22158,21298,20468,19685,18977,18325,17781,17296,16905,16578,16343,16160,16069,16018,16036,16130,16290,16512,16804,17165,17609,18094,18667,19275,19921,20589,21313,22067,22789,23497,24196,24860,25447,25994,26435,26762,27002,27101,27109,27028,26809,26478,26078,25585,25019,24432,23811,23150,22506,21840,21189,20592,20003,19457,18965,18504,18100,17741,17421,17109,16851,16596,16411,16200,16014,15813,15627,15467,15333,15209,15122,15041,14965,14910,14916,14910,14914,14956,14965,14997,15042,15089,15124,15176,15195,15224,15223,15221,15237,15250,15242,15248,15185,15140,15097,15001,14905,14817,14689,14530,14369,14173,13975,13756,13520,13258,12993,12711,12417,12126,11832,11536,11269,11012,10782,10539,10279,9979,9659,9356,9065,8820,8611,8445,8285,8160,8074,7982,7922,7861,7797,7698,7557,7390,7232,7109,6997,6885,6813,6740,6681,6652,6637,6625,6617,6613,6625,6614,6461,6157,5711,5103,21.9,22.1,22.9,1568791,0.0,13.0,12.0,5.0,448,-1.00,-1.00,58.5089,-19.231922,0.000520,,,,,165 +SATSLF0720,2024246,19.263431,3.98,0.0558,0.1060,0.0197,0.00,16059,653,1,709,721,720,703,723,709,714,725,729,727,733,730,767,884,1211,1917,3063,4424,5654,6573,7227,7714,8121,8567,9080,9702,10442,11306,12292,13398,14571,15735,16828,17804,18509,18935,19064,18884,18496,17981,17398,16842,16379,16011,15793,15729,15810,16037,16446,17024,17776,18661,19739,20939,22249,23688,25166,26635,28054,29291,30298,31054,31453,31437,31113,30468,29552,28508,27281,26102,24969,23901,22901,22067,21303,20711,20249,19849,19577,19424,19320,19341,19439,19624,19885,20243,20665,21191,21753,22384,23041,23683,24285,24869,25352,25722,25988,26039,25917,25636,25161,24510,23790,23015,22138,21282,20433,19666,18958,18330,17757,17301,16878,16583,16315,16146,16045,15994,16012,16101,16289,16493,16793,17172,17589,18058,18641,19237,19878,20553,21284,22021,22755,23458,24165,24827,25422,25982,26406,26716,26967,27078,27085,26984,26781,26461,26057,25558,24998,24410,23790,23140,22491,21824,21198,20585,20000,19441,18958,18477,18074,17716,17373,17100,16817,16598,16405,16192,16006,15824,15637,15465,15330,15205,15107,15017,14964,14910,14897,14889,14905,14935,14966,14982,15027,15073,15101,15163,15191,15201,15197,15203,15222,15241,15231,15231,15202,15137,15073,15006,14913,14810,14680,14541,14361,14154,13959,13737,13515,13241,12985,12702,12400,12113,11810,11522,11254,11009,10761,10519,10246,9959,9647,9328,9055,8810,8598,8435,8272,8142,8037,7965,7889,7847,7793,7685,7543,7371,7222,7095,6989,6884,6803,6738,6694,6651,6633,6613,6597,6598,6621,6606,6453,6146,5711,5105,21.9,22.1,22.9,1568792,0.2,12.9,11.9,5.0,450,-1.00,-1.00,59.1353,-19.476516,0.000618,,,,,115 +SATSLF0720,2024246,19.263688,3.94,0.0551,0.1056,0.0199,0.00,16065,653,1,718,722,713,717,717,714,715,717,713,715,722,727,779,893,1212,1927,3089,4433,5671,6594,7240,7725,8136,8588,9114,9722,10445,11300,12302,13410,14581,15741,16850,17803,18517,18960,19089,18905,18516,17973,17412,16852,16386,16035,15809,15734,15814,16054,16467,17038,17773,18683,19748,20957,22269,23714,25191,26670,28085,29316,30309,31050,31453,31453,31144,30496,29575,28524,27302,26137,24982,23924,22921,22064,21350,20733,20257,19865,19586,19429,19338,19351,19445,19642,19907,20247,20689,21194,21763,22381,23052,23690,24302,24890,25365,25728,25984,26045,25916,25650,25179,24538,23818,23038,22158,21281,20439,19677,18970,18299,17751,17284,16882,16577,16325,16169,16058,16008,16019,16121,16276,16507,16794,17163,17611,18081,18653,19260,19889,20573,21287,22029,22758,23488,24174,24826,25415,25986,26417,26727,26969,27073,27085,27002,26777,26464,26069,25576,25008,24422,23784,23137,22477,21827,21198,20581,20014,19450,18966,18482,18082,17722,17381,17099,16840,16595,16389,16185,15997,15809,15626,15441,15317,15194,15115,15033,14954,14925,14898,14912,14914,14926,14959,14994,15029,15059,15105,15154,15176,15169,15207,15194,15218,15245,15245,15241,15181,15131,15065,14995,14917,14818,14675,14528,14346,14157,13949,13741,13484,13255,12969,12698,12400,12115,11824,11533,11257,11017,10766,10539,10272,9957,9635,9339,9054,8794,8603,8449,8277,8144,8067,7973,7901,7843,7774,7676,7550,7365,7209,7082,6979,6880,6806,6743,6682,6647,6627,6624,6603,6601,6601,6615,6452,6145,5720,5092,21.9,22.1,22.9,1568793,0.2,12.9,12.0,5.0,450,-1.00,-1.00,59.2248,-19.527632,0.000605,,,,,237 +SATSLF0720,2024246,19.263942,3.91,0.0547,0.1076,0.0219,0.00,16003,653,1,709,697,706,697,723,716,720,731,731,749,746,757,785,893,1216,1913,3072,4425,5633,6563,7209,7704,8118,8563,9072,9690,10435,11292,12269,13364,14529,15681,16787,17719,18439,18880,19008,18841,18445,17909,17336,16785,16310,15955,15722,15662,15736,15983,16401,16977,17713,18618,19667,20873,22178,23605,25063,26531,27924,29184,30172,30914,31307,31316,30993,30356,29448,28407,27181,25997,24856,23796,22820,21953,21239,20629,20152,19771,19503,19349,19251,19255,19384,19562,19798,20147,20604,21109,21674,22297,22957,23588,24210,24771,25255,25618,25876,25912,25796,25529,25057,24425,23699,22933,22057,21205,20359,19600,18903,18264,17684,17235,16829,16498,16253,16085,15970,15939,15956,16052,16202,16455,16742,17097,17522,18007,18571,19157,19799,20479,21203,21958,22677,23374,24088,24732,25323,25889,26299,26619,26870,26984,26986,26893,26677,26357,25952,25460,24906,24338,23690,23045,22404,21745,21102,20498,19917,19381,18894,18428,18009,17648,17330,17041,16761,16536,16321,16130,15941,15748,15565,15406,15256,15159,15049,14983,14900,14873,14850,14853,14858,14872,14891,14944,14977,15010,15073,15115,15134,15160,15164,15166,15178,15191,15191,15178,15126,15059,15000,14936,14848,14762,14637,14484,14327,14124,13905,13703,13460,13192,12939,12647,12369,12058,11777,11493,11231,10980,10742,10513,10244,9942,9629,9321,9038,8797,8588,8405,8269,8125,8026,7939,7865,7822,7757,7664,7530,7354,7201,7069,6961,6863,6784,6726,6673,6637,6612,6601,6586,6584,6593,6599,6441,6130,5713,5094,21.9,22.2,22.9,1568794,0.0,12.9,11.9,5.0,440,-1.00,-1.00,59.3222,-19.482720,0.000610,,,,,190 +SATSLF0720,2024246,19.264195,4.12,0.0578,0.1070,0.0210,0.00,16029,653,1,726,721,728,720,737,729,730,729,730,727,732,724,769,886,1209,1922,3071,4423,5659,6581,7204,7696,8109,8536,9075,9686,10427,11281,12279,13384,14552,15712,16814,17746,18459,18882,19019,18828,18474,17938,17353,16805,16349,15977,15758,15702,15777,16012,16409,16995,17739,18641,19697,20905,22209,23649,25120,26589,27995,29229,30228,30960,31368,31392,31056,30398,29495,28437,27226,26050,24904,23829,22838,21995,21266,20663,20197,19820,19533,19380,19276,19307,19413,19597,19863,20200,20647,21161,21704,22318,22987,23645,24243,24818,25291,25658,25908,25971,25844,25579,25107,24483,23772,22967,22123,21238,20397,19629,18930,18269,17719,17252,16856,16542,16283,16119,16017,15971,15996,16087,16244,16458,16751,17114,17539,18026,18592,19194,19835,20503,21248,21977,22716,23437,24117,24776,25368,25917,26363,26688,26912,27017,27033,26949,26721,26397,26008,25522,24940,24365,23722,23099,22440,21781,21145,20539,19959,19410,18919,18442,18041,17675,17341,17074,16809,16564,16371,16167,15984,15782,15588,15424,15297,15173,15072,15003,14935,14899,14876,14881,14885,14902,14925,14953,14997,15026,15076,15131,15150,15161,15165,15171,15189,15219,15221,15210,15156,15096,15027,14975,14888,14794,14649,14493,14339,14162,13941,13725,13481,13232,12945,12675,12382,12098,11785,11502,11243,10998,10751,10520,10248,9952,9625,9329,9029,8807,8605,8427,8265,8140,8043,7979,7924,7853,7780,7695,7550,7370,7220,7084,6971,6866,6785,6709,6677,6649,6627,6615,6597,6586,6598,6604,6452,6134,5719,5107,21.9,22.2,22.9,1568795,0.2,12.9,11.9,5.0,447,-1.00,-1.00,58.7491,-19.277483,0.000582,,,,,108 +SATSLF0720,2024246,19.264451,4.09,0.0573,0.1079,0.0213,0.00,15997,653,1,697,704,704,699,707,717,721,723,741,742,739,750,779,894,1204,1921,3049,4410,5621,6540,7182,7659,8103,8541,9050,9661,10397,11260,12249,13336,14491,15645,16733,17681,18387,18837,18970,18785,18418,17893,17314,16755,16307,15941,15717,15648,15741,15976,16390,16956,17687,18594,19657,20843,22155,23573,25035,26510,27912,29164,30161,30886,31289,31290,30973,30333,29417,28375,27169,25986,24845,23787,22807,21969,21236,20637,20167,19776,19490,19337,19238,19250,19354,19541,19805,20160,20590,21105,21657,22280,22962,23590,24200,24764,25244,25605,25857,25912,25789,25518,25041,24427,23715,22926,22062,21194,20351,19593,18891,18245,17688,17219,16803,16499,16242,16081,15990,15941,15965,16061,16225,16442,16734,17086,17524,18012,18560,19178,19802,20477,21200,21953,22673,23394,24073,24741,25319,25882,26305,26617,26868,26958,26971,26896,26674,26356,25957,25481,24908,24320,23698,23062,22410,21749,21125,20521,19932,19381,18893,18426,18026,17653,17323,17043,16774,16548,16336,16145,15958,15756,15569,15394,15259,15147,15037,14971,14909,14865,14846,14837,14847,14878,14907,14938,14981,15001,15054,15112,15125,15142,15162,15160,15193,15197,15198,15193,15140,15073,15017,14934,14854,14773,14629,14478,14320,14119,13921,13698,13457,13200,12923,12663,12354,12077,11766,11491,11227,10974,10749,10503,10239,9932,9625,9305,9032,8789,8581,8422,8261,8130,8030,7944,7882,7828,7771,7671,7521,7347,7204,7076,6963,6869,6787,6731,6676,6641,6613,6602,6577,6562,6599,6596,6441,6142,5721,5100,21.9,22.2,22.9,1568796,0.1,12.9,11.9,5.0,451,-1.00,-1.00,59.0223,-19.344389,0.000527,,,,,254 +SATSDF0720,2024246,19.509138,0.00,0.0000,0.0000,0.0000,0.00,655,0,1,648,628,632,627,618,618,612,633,630,637,635,624,632,625,631,632,650,637,639,647,637,639,666,641,662,648,647,643,642,663,661,676,678,677,681,665,675,669,660,649,655,659,653,652,649,652,658,655,654,654,650,653,651,659,645,655,662,653,667,661,653,661,661,653,653,662,657,656,659,671,667,658,664,661,655,662,662,659,662,662,669,658,655,662,662,654,662,653,647,658,661,656,663,661,669,660,658,650,659,653,665,658,668,640,655,659,656,659,645,665,657,676,657,663,652,653,652,656,658,642,647,653,661,655,656,661,667,658,648,665,654,653,654,656,655,669,660,664,654,651,657,654,651,654,652,658,655,645,653,653,653,650,655,668,661,666,653,649,660,657,649,653,658,651,641,667,663,659,669,666,655,658,656,641,663,658,652,659,654,648,661,645,655,651,641,646,656,660,661,658,662,649,663,661,648,645,651,645,656,652,653,661,658,656,663,657,659,659,656,653,658,664,657,645,651,637,644,644,646,659,653,670,662,669,644,655,658,650,643,658,667,665,645,679,657,653,652,649,657,659,681,666,666,660,658,651,653,654,650,657,661,669,660,676,664,501,0.0,0.0,0.0,1568795,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,37 +SATSLF0720,2024246,19.509693,3.93,0.0550,0.1012,0.0176,0.00,16184,655,1,690,715,706,706,705,695,699,711,724,713,724,734,772,881,1193,1920,3082,4452,5709,6628,7293,7773,8205,8649,9165,9800,10544,11435,12427,13557,14740,15904,17011,17984,18709,19150,19283,19097,18701,18176,17580,17014,16545,16180,15957,15885,15972,16215,16621,17229,17952,18866,19944,21158,22487,23944,25437,26915,28345,29601,30602,31349,31746,31754,31429,30770,29843,28795,27578,26389,25229,24137,23122,22273,21537,20927,20445,20045,19766,19616,19528,19523,19609,19809,20065,20423,20860,21401,21962,22592,23248,23901,24500,25085,25577,25934,26206,26252,26140,25849,25342,24713,23989,23165,22305,21428,20595,19817,19101,18458,17886,17408,17017,16697,16440,16252,16163,16109,16139,16236,16398,16625,16924,17292,17714,18208,18791,19400,20036,20721,21445,22199,22936,23651,24345,25003,25599,26160,26597,26921,27159,27270,27280,27195,26981,26626,26259,25760,25176,24593,23965,23298,22647,21986,21340,20716,20130,19577,19081,18610,18203,17833,17507,17222,16957,16704,16506,16304,16101,15913,15716,15566,15404,15300,15187,15129,15053,15013,15002,14996,14998,15032,15046,15085,15108,15143,15212,15253,15262,15284,15285,15299,15312,15317,15327,15309,15249,15200,15143,15069,14978,14890,14742,14603,14437,14247,14027,13799,13577,13309,13047,12762,12473,12169,11877,11594,11306,11060,10829,10584,10327,10013,9693,9379,9092,8854,8641,8454,8311,8184,8089,8000,7936,7877,7817,7722,7581,7409,7254,7126,7010,6919,6837,6766,6706,6667,6653,6643,6625,6615,6626,6630,6477,6172,5732,5127,21.8,21.8,22.4,1568796,0.0,12.9,11.9,5.0,570,-1.00,-1.00,58.5013,-19.400171,0.000572,,,,,103 +SATSLF0720,2024246,19.509875,3.85,0.0539,0.1012,0.0172,0.00,16199,655,1,712,711,714,713,724,711,715,727,734,730,729,740,775,887,1208,1934,3090,4465,5731,6661,7315,7793,8230,8674,9179,9818,10576,11443,12451,13568,14752,15927,17039,17997,18731,19164,19308,19127,18739,18187,17606,17037,16586,16210,15968,15912,15981,16235,16643,17221,17984,18873,19959,21188,22510,23957,25443,26945,28366,29613,30643,31384,31787,31784,31460,30806,29894,28823,27595,26416,25226,24152,23158,22309,21554,20961,20474,20074,19796,19621,19527,19532,19637,19835,20103,20461,20890,21412,21986,22600,23274,23914,24541,25109,25577,25952,26187,26247,26123,25867,25397,24746,24033,23219,22349,21471,20616,19824,19131,18437,17889,17424,17015,16695,16456,16276,16166,16143,16148,16236,16407,16629,16927,17296,17725,18217,18784,19387,20018,20715,21442,22199,22937,23658,24365,25040,25617,26186,26623,26934,27181,27285,27298,27212,26989,26640,26279,25773,25206,24605,23979,23322,22669,21989,21358,20748,20143,19584,19098,18617,18204,17833,17510,17224,16957,16720,16513,16309,16116,15921,15733,15554,15411,15302,15207,15125,15069,15027,15014,15011,15002,15033,15063,15092,15129,15145,15205,15262,15268,15283,15298,15297,15317,15334,15346,15337,15274,15223,15156,15083,15014,14901,14772,14609,14449,14253,14037,13814,13579,13309,13055,12774,12474,12177,11896,11612,11333,11075,10837,10603,10329,10024,9719,9389,9109,8865,8651,8467,8315,8182,8097,8016,7945,7880,7843,7743,7594,7434,7273,7133,7008,6910,6842,6763,6717,6685,6672,6636,6626,6615,6643,6635,6497,6182,5755,5133,21.9,21.9,22.5,1568797,0.0,12.9,11.9,5.0,471,-1.00,-1.00,58.5828,-19.451990,0.000546,,,,,254 +SATSLF0720,2024246,19.510130,4.01,0.0562,0.1023,0.0182,0.00,16160,655,1,699,697,715,712,718,721,714,714,725,717,712,739,765,870,1196,1925,3081,4478,5710,6636,7309,7778,8200,8645,9161,9790,10548,11402,12423,13533,14709,15862,16989,17942,18676,19093,19221,19041,18675,18139,17552,16998,16540,16170,15939,15845,15931,16194,16590,17171,17937,18817,19907,21133,22443,23892,25381,26854,28291,29529,30565,31301,31704,31702,31387,30730,29805,28741,27525,26333,25194,24104,23094,22240,21496,20888,20392,20008,19735,19565,19481,19488,19611,19784,20043,20403,20836,21352,21930,22545,23216,23858,24461,25036,25523,25880,26153,26197,26075,25794,25309,24691,23949,23147,22293,21394,20576,19782,19075,18424,17853,17393,16986,16667,16403,16238,16139,16096,16109,16203,16372,16585,16887,17261,17684,18169,18746,19344,19983,20673,21404,22141,22885,23607,24304,24969,25557,26112,26547,26861,27123,27221,27251,27169,26930,26605,26208,25704,25134,24546,23909,23281,22611,21949,21312,20712,20117,19544,19056,18576,18176,17805,17465,17189,16909,16672,16461,16277,16074,15883,15701,15534,15385,15274,15166,15094,15009,14973,14955,14974,14986,15013,15035,15066,15108,15122,15181,15220,15229,15259,15269,15277,15285,15317,15317,15299,15241,15191,15124,15044,14967,14872,14738,14598,14394,14217,14010,13792,13559,13296,13029,12749,12450,12165,11864,11573,11287,11048,10807,10583,10305,10009,9682,9379,9078,8841,8630,8453,8298,8193,8070,8000,7934,7869,7805,7723,7581,7406,7261,7124,7015,6909,6819,6758,6701,6673,6648,6635,6626,6605,6633,6628,6482,6187,5745,5133,21.9,21.9,22.5,1568798,0.2,12.9,11.9,5.0,456,-1.00,-1.00,58.4117,-19.330890,0.000559,,,,,20 +SATSLF0720,2024246,19.510383,3.93,0.0551,0.1035,0.0181,0.00,16129,655,1,703,701,683,699,694,702,707,716,712,729,720,729,771,872,1185,1906,3051,4423,5655,6602,7246,7733,8166,8613,9117,9752,10494,11375,12365,13469,14645,15794,16921,17869,18580,19028,19146,18973,18615,18078,17472,16928,16456,16090,15873,15801,15881,16126,16545,17101,17855,18757,19821,21042,22368,23821,25301,26792,28205,29454,30445,31214,31600,31597,31280,30633,29718,28666,27435,26250,25092,24014,23031,22185,21453,20848,20339,19973,19680,19523,19431,19447,19537,19726,20008,20341,20787,21306,21869,22499,23162,23811,24426,25001,25490,25837,26093,26150,26038,25760,25280,24646,23909,23114,22233,21371,20519,19749,19052,18391,17829,17358,16947,16632,16382,16215,16109,16071,16105,16197,16342,16565,16869,17233,17667,18155,18716,19321,19969,20649,21378,22117,22861,23575,24299,24949,25547,26098,26531,26849,27088,27182,27200,27106,26889,26565,26178,25675,25115,24532,23885,23252,22597,21929,21286,20694,20081,19530,19028,18569,18161,17783,17458,17166,16897,16673,16456,16256,16055,15859,15681,15515,15360,15259,15166,15088,15025,14962,14963,14946,14959,14983,15020,15041,15085,15101,15165,15209,15240,15245,15258,15269,15285,15297,15297,15287,15235,15171,15127,15042,14962,14856,14734,14572,14400,14205,14001,13787,13553,13279,13018,12733,12437,12155,11853,11569,11292,11032,10807,10579,10297,10010,9685,9363,9079,8837,8621,8462,8298,8168,8078,7985,7918,7872,7803,7716,7577,7394,7242,7121,7019,6910,6829,6757,6717,6666,6645,6636,6606,6611,6630,6629,6480,6184,5736,5119,21.9,21.9,22.6,1568799,0.1,12.9,12.0,5.0,446,-1.00,-1.00,59.3205,-19.651333,0.000614,,,,,7 +SATSLF0720,2024246,19.510637,4.00,0.0561,0.1028,0.0183,0.00,16141,655,1,711,711,713,712,711,709,715,717,717,720,725,725,746,866,1181,1919,3079,4449,5689,6617,7272,7745,8171,8613,9133,9767,10512,11383,12386,13489,14654,15830,16949,17885,18609,19047,19182,19019,18633,18097,17498,16939,16482,16109,15874,15815,15891,16149,16568,17158,17897,18806,19874,21093,22412,23849,25344,26812,28233,29486,30487,31226,31640,31655,31314,30685,29768,28706,27472,26302,25127,24055,23051,22197,21471,20857,20367,19977,19707,19550,19459,19470,19563,19757,20013,20353,20783,21319,21882,22499,23172,23827,24442,25025,25490,25857,26133,26181,26057,25777,25299,24651,23938,23132,22277,21389,20537,19773,19061,18405,17842,17374,16961,16640,16398,16236,16125,16097,16105,16189,16352,16571,16871,17236,17674,18165,18725,19334,19979,20669,21379,22121,22862,23581,24279,24956,25533,26107,26538,26869,27115,27216,27233,27141,26912,26583,26190,25685,25130,24521,23914,23257,22602,21929,21299,20689,20101,19533,19053,18568,18165,17799,17463,17174,16907,16662,16474,16257,16070,15882,15693,15522,15385,15266,15163,15094,15019,14974,14971,14953,14958,14982,15008,15045,15085,15131,15173,15246,15241,15241,15255,15258,15281,15312,15306,15282,15240,15174,15120,15042,14955,14856,14738,14578,14409,14215,14009,13792,13554,13285,13025,12734,12435,12151,11853,11553,11291,11045,10820,10592,10305,10005,9677,9360,9085,8839,8626,8456,8304,8165,8072,7984,7915,7865,7800,7717,7572,7391,7246,7098,6992,6897,6824,6749,6716,6669,6653,6629,6623,6619,6630,6618,6461,6163,5733,5109,21.9,21.9,22.6,1568800,0.3,12.9,11.9,5.0,455,-1.00,-1.00,59.0135,-19.551230,0.000581,,,,,242 +SATSLF0720,2024246,19.510892,3.78,0.0529,0.1031,0.0184,0.00,16143,655,1,715,719,716,711,712,717,715,712,713,710,720,738,766,887,1210,1929,3090,4461,5701,6628,7282,7756,8194,8621,9157,9774,10521,11383,12404,13498,14674,15853,16949,17909,18633,19078,19213,19022,18657,18118,17530,16961,16497,16141,15910,15825,15898,16147,16547,17133,17893,18794,19878,21099,22421,23857,25338,26820,28228,29478,30487,31227,31654,31644,31329,30678,29768,28712,27465,26303,25142,24062,23064,22205,21474,20862,20369,19991,19697,19555,19446,19455,19560,19744,19998,20375,20804,21329,21888,22512,23174,23817,24452,25017,25485,25854,26130,26178,26058,25782,25288,24643,23933,23137,22253,21393,20532,19780,19069,18420,17861,17365,16967,16642,16397,16213,16120,16075,16099,16199,16356,16565,16871,17245,17664,18164,18725,19333,19977,20662,21387,22138,22886,23597,24276,24951,25545,26108,26540,26864,27108,27206,27221,27114,26910,26582,26184,25690,25120,24537,23900,23257,22597,21916,21281,20675,20090,19533,19042,18570,18149,17794,17474,17184,16906,16665,16450,16249,16053,15863,15677,15509,15365,15255,15149,15095,15025,14987,14960,14960,14972,14993,15001,15030,15067,15101,15163,15219,15229,15249,15266,15266,15287,15309,15316,15289,15239,15177,15116,15050,14949,14855,14739,14573,14391,14197,13991,13786,13555,13299,13027,12761,12453,12165,11857,11561,11313,11056,10813,10574,10308,10005,9691,9369,9089,8845,8625,8456,8296,8159,8059,7991,7929,7879,7815,7718,7575,7399,7249,7113,7005,6908,6834,6753,6701,6657,6643,6633,6606,6596,6631,6634,6473,6174,5755,5130,21.9,21.9,22.6,1568801,0.2,12.9,12.0,5.0,451,-1.00,-1.00,59.2837,-19.662344,0.000596,,,,,164 +SATSLF0720,2024246,19.511145,3.99,0.0558,0.1038,0.0183,0.00,16122,655,1,700,707,699,711,712,713,714,723,729,733,750,754,793,894,1209,1923,3081,4446,5684,6614,7256,7726,8159,8626,9144,9765,10509,11382,12382,13482,14664,15833,16908,17883,18594,19038,19153,18983,18585,18071,17484,16933,16456,16092,15871,15797,15884,16124,16541,17121,17867,18780,19834,21049,22366,23810,25286,26765,28184,29437,30434,31192,31586,31595,31269,30641,29717,28654,27427,26244,25088,24007,23016,22138,21433,20821,20320,19943,19668,19504,19414,19425,19536,19725,19977,20343,20781,21284,21851,22476,23141,23788,24402,24962,25435,25821,26090,26149,26029,25725,25257,24621,23906,23082,22225,21349,20501,19742,19025,18377,17805,17342,16933,16630,16370,16203,16115,16069,16077,16175,16331,16555,16863,17225,17650,18137,18708,19327,19953,20630,21367,22106,22856,23563,24279,24930,25514,26069,26497,26825,27060,27187,27181,27099,26888,26545,26151,25661,25098,24517,23877,23240,22576,21900,21264,20652,20043,19507,19004,18549,18146,17766,17438,17150,16882,16635,16427,16240,16048,15849,15664,15511,15361,15270,15160,15093,15005,14966,14956,14942,14950,14973,15003,15037,15073,15106,15153,15210,15215,15227,15241,15239,15275,15302,15308,15302,15242,15178,15121,15030,14947,14857,14722,14557,14400,14216,14001,13783,13540,13287,13005,12729,12426,12135,11847,11573,11284,11053,10793,10567,10285,9984,9671,9357,9079,8828,8627,8445,8297,8162,8068,7988,7917,7877,7803,7719,7589,7403,7241,7123,7005,6918,6834,6753,6695,6675,6643,6635,6615,6600,6628,6621,6455,6159,5728,5123,21.9,21.9,22.6,1568802,0.2,12.9,11.9,5.0,453,-1.00,-1.00,58.9062,-19.473972,0.000538,,,,,131 +SATSLF0720,2024246,19.511401,3.98,0.0557,0.1039,0.0190,0.00,16117,655,1,709,718,712,715,717,718,725,714,727,739,733,745,761,885,1197,1921,3082,4461,5690,6621,7280,7755,8166,8618,9144,9743,10499,11372,12366,13457,14660,15814,16923,17875,18610,19033,19166,18965,18610,18065,17488,16920,16469,16095,15873,15809,15885,16125,16537,17101,17852,18752,19817,21053,22369,23810,25283,26784,28214,29450,30441,31194,31573,31570,31249,30602,29693,28652,27421,26241,25084,24017,23016,22157,21420,20813,20336,19937,19680,19520,19413,19431,19529,19714,19997,20345,20761,21293,21865,22473,23127,23783,24397,24970,25462,25833,26082,26124,26013,25737,25269,24617,23898,23096,22218,21350,20484,19726,19035,18381,17814,17347,16936,16609,16359,16192,16090,16059,16073,16165,16334,16561,16854,17232,17650,18137,18690,19305,19940,20632,21351,22085,22834,23549,24247,24912,25493,26069,26489,26809,27041,27153,27174,27076,26867,26544,26148,25661,25086,24488,23860,23213,22557,21897,21256,20640,20058,19497,19012,18542,18128,17757,17431,17143,16875,16631,16438,16233,16039,15851,15669,15498,15365,15232,15143,15076,15001,14950,14939,14926,14929,14951,14984,15030,15061,15097,15153,15206,15219,15236,15245,15226,15255,15270,15275,15252,15227,15156,15097,15031,14941,14849,14717,14555,14379,14197,13972,13762,13518,13257,13001,12709,12433,12141,11846,11541,11281,11037,10792,10561,10290,9990,9672,9355,9073,8826,8616,8445,8307,8160,8061,7982,7901,7847,7801,7702,7566,7389,7238,7101,7004,6909,6833,6754,6692,6657,6643,6635,6612,6608,6629,6616,6468,6157,5739,5107,21.9,22.0,22.6,1568803,0.2,12.9,11.9,5.0,452,-1.00,-1.00,58.7635,-19.409433,0.000599,,,,,116 +SATSLF0720,2024246,19.511655,3.99,0.0560,0.1064,0.0203,0.00,16048,655,1,708,704,721,711,713,710,725,714,725,717,715,735,765,881,1197,1912,3053,4411,5640,6553,7190,7677,8102,8562,9065,9691,10421,11274,12273,13369,14533,15688,16794,17741,18449,18878,19019,18856,18469,17947,17363,16806,16359,15990,15763,15702,15778,16028,16428,17013,17753,18646,19708,20898,22226,23648,25128,26595,28013,29265,30253,31001,31398,31400,31089,30461,29543,28484,27275,26097,24937,23891,22888,22037,21305,20698,20228,19837,19569,19410,19304,19319,19435,19616,19869,20221,20657,21173,21745,22354,23021,23667,24269,24852,25325,25706,25960,26013,25898,25609,25138,24499,23783,22993,22122,21253,20426,19654,18954,18298,17759,17289,16874,16551,16311,16141,16032,15987,16009,16108,16264,16485,16779,17152,17582,18070,18637,19239,19890,20556,21286,22013,22749,23462,24169,24826,25405,25973,26417,26707,26951,27060,27078,26982,26760,26440,26056,25565,25006,24436,23802,23138,22497,21826,21186,20580,19992,19437,18946,18493,18087,17720,17393,17104,16832,16598,16384,16192,16001,15789,15612,15433,15304,15189,15103,15033,14960,14923,14898,14890,14900,14926,14946,14978,15025,15042,15097,15152,15184,15201,15197,15193,15231,15238,15234,15224,15169,15121,15053,14983,14913,14810,14679,14528,14355,14155,13932,13735,13493,13226,12957,12699,12400,12113,11805,11517,11259,10998,10770,10529,10256,9961,9650,9340,9071,8814,8612,8437,8268,8145,8033,7968,7899,7847,7781,7696,7549,7383,7232,7106,6983,6891,6809,6738,6686,6657,6626,6617,6585,6587,6606,6590,6447,6147,5721,5115,21.9,22.0,22.7,1568804,0.1,12.9,11.9,5.0,453,-1.00,-1.00,59.7183,-19.701560,0.000504,,,,,254 +SATSLF0720,2024246,19.511907,4.04,0.0566,0.1031,0.0190,0.00,16131,655,1,709,697,696,711,709,711,716,729,711,731,721,721,772,885,1205,1909,3086,4445,5672,6603,7261,7745,8167,8626,9143,9751,10504,11373,12377,13479,14659,15835,16942,17885,18610,19045,19179,19000,18628,18089,17507,16936,16477,16101,15883,15814,15881,16126,16540,17138,17881,18801,19858,21086,22405,23851,25312,26807,28221,29466,30471,31210,31622,31626,31292,30653,29710,28672,27444,26256,25109,24048,23050,22181,21451,20852,20357,19968,19677,19526,19445,19450,19546,19735,19992,20349,20780,21309,21869,22493,23153,23806,24404,24985,25458,25824,26101,26159,26033,25762,25285,24631,23937,23130,22248,21376,20538,19749,19059,18405,17838,17376,16963,16635,16397,16219,16113,16070,16094,16184,16349,16576,16884,17249,17682,18161,18738,19338,19980,20640,21376,22109,22835,23557,24279,24937,25533,26091,26519,26837,27091,27190,27216,27097,26893,26565,26172,25673,25114,24513,23868,23227,22574,21917,21273,20669,20069,19527,19029,18545,18163,17781,17459,17168,16890,16647,16437,16243,16045,15858,15665,15495,15382,15253,15139,15074,15001,14965,14951,14937,14949,14980,14994,15041,15077,15102,15160,15214,15227,15239,15248,15260,15295,15289,15305,15265,15225,15159,15098,15031,14951,14856,14717,14577,14392,14224,14013,13772,13552,13282,13013,12731,12440,12145,11852,11563,11283,11037,10790,10571,10304,9995,9675,9361,9075,8822,8620,8433,8292,8174,8074,7988,7923,7883,7808,7717,7576,7389,7246,7101,6994,6891,6812,6754,6713,6662,6649,6624,6613,6606,6615,6618,6466,6164,5747,5126,21.9,22.0,22.7,1568805,0.0,12.9,12.0,5.0,447,-1.00,-1.00,58.5297,-19.331891,0.000658,,,,,41 +SATSLF0720,2024246,19.512163,3.93,0.0551,0.1041,0.0190,0.00,16113,655,1,697,699,698,713,717,706,706,723,717,728,732,741,784,885,1207,1925,3081,4467,5689,6625,7264,7739,8165,8617,9131,9755,10504,11372,12371,13462,14658,15824,16938,17882,18602,19035,19162,18974,18595,18051,17475,16913,16453,16085,15882,15794,15891,16124,16531,17098,17848,18760,19802,21037,22346,23797,25287,26761,28178,29431,30433,31188,31569,31575,31248,30602,29691,28650,27405,26221,25066,23994,23013,22153,21414,20807,20331,19949,19661,19494,19403,19424,19525,19706,19971,20314,20745,21273,21824,22464,23133,23786,24399,24972,25434,25803,26058,26120,25996,25712,25237,24592,23878,23083,22213,21346,20496,19729,19016,18376,17811,17335,16933,16617,16355,16190,16093,16049,16073,16161,16320,16544,16842,17193,17635,18133,18704,19305,19934,20619,21354,22090,22827,23543,24245,24898,25474,26050,26470,26797,27048,27144,27174,27078,26871,26540,26137,25646,25078,24487,23848,23200,22564,21882,21253,20637,20050,19497,18997,18533,18125,17763,17425,17146,16874,16643,16446,16237,16055,15859,15665,15506,15360,15251,15152,15083,14997,14952,14931,14936,14936,14974,14984,15028,15075,15097,15150,15203,15197,15218,15241,15233,15253,15277,15282,15275,15221,15154,15098,15033,14928,14831,14709,14564,14380,14195,13985,13774,13532,13278,13011,12729,12425,12133,11850,11557,11271,11038,10802,10551,10295,9989,9667,9352,9078,8818,8592,8435,8298,8157,8070,7987,7919,7866,7811,7705,7567,7395,7245,7111,7000,6900,6823,6750,6705,6661,6636,6624,6615,6603,6637,6617,6467,6151,5745,5137,21.9,22.0,22.8,1568806,0.2,12.9,12.0,5.0,451,-1.00,-1.00,58.9467,-19.479536,0.000599,,,,,44 +SATSLF0720,2024246,19.512417,4.02,0.0562,0.1061,0.0202,0.00,16054,655,1,705,709,716,721,727,712,722,729,717,733,729,741,782,896,1218,1930,3074,4428,5671,6578,7226,7703,8117,8553,9087,9702,10435,11315,12298,13405,14561,15719,16834,17774,18490,18932,19052,18880,18507,17973,17387,16818,16363,16001,15795,15716,15795,16039,16450,17032,17758,18676,19738,20949,22262,23697,25147,26636,28050,29283,30302,31026,31434,31437,31104,30462,29540,28516,27282,26105,24955,23880,22895,22056,21332,20725,20247,19866,19581,19421,19316,19336,19439,19624,19890,20245,20673,21191,21771,22378,23041,23683,24290,24869,25341,25716,25968,26021,25916,25637,25162,24509,23794,23003,22128,21276,20425,19656,18953,18289,17751,17291,16877,16569,16317,16139,16037,15986,16010,16106,16276,16512,16800,17145,17588,18062,18635,19232,19869,20553,21277,22013,22754,23462,24170,24826,25406,25973,26400,26714,26972,27053,27090,26993,26776,26453,26037,25562,24992,24410,23780,23136,22482,21816,21190,20585,19990,19429,18945,18461,18071,17712,17378,17095,16827,16584,16384,16179,15966,15779,15610,15446,15307,15197,15112,15028,14970,14921,14891,14894,14895,14917,14940,14963,15017,15046,15118,15165,15181,15189,15196,15200,15220,15243,15226,15225,15161,15093,15057,14985,14894,14797,14675,14513,14349,14162,13956,13725,13483,13226,12961,12683,12403,12117,11820,11521,11259,11004,10755,10532,10248,9946,9639,9345,9054,8804,8596,8421,8276,8134,8049,7960,7890,7845,7769,7686,7545,7374,7229,7098,6986,6881,6804,6740,6680,6652,6622,6618,6604,6581,6603,6602,6453,6161,5716,5101,21.9,22.1,22.8,1568807,0.1,12.9,11.9,5.0,454,-1.00,-1.00,59.1885,-19.495675,0.000615,,,,,81 +SATSLF0720,2024246,19.512669,4.14,0.0580,0.1058,0.0198,0.00,16061,655,1,702,715,721,730,737,737,734,738,749,738,747,743,775,877,1204,1914,3066,4427,5655,6583,7238,7717,8139,8578,9103,9718,10446,11308,12309,13405,14579,15723,16829,17772,18475,18902,19059,18877,18522,17968,17381,16841,16384,16023,15792,15721,15812,16061,16458,17030,17775,18682,19745,20941,22253,23685,25153,26629,28048,29291,30284,31047,31437,31437,31114,30469,29559,28517,27277,26111,24967,23909,22905,22048,21333,20717,20241,19858,19573,19410,19329,19340,19439,19625,19907,20245,20682,21207,21768,22374,23027,23687,24296,24866,25346,25717,25993,26029,25917,25642,25165,24523,23797,23023,22146,21273,20427,19662,18955,18324,17757,17286,16887,16577,16320,16136,16025,15995,16020,16112,16270,16514,16802,17170,17602,18080,18649,19255,19879,20573,21298,22034,22772,23484,24181,24836,25432,25973,26407,26722,26950,27064,27085,26997,26772,26443,26056,25559,24998,24411,23779,23138,22485,21821,21200,20592,19988,19451,18951,18471,18080,17707,17384,17089,16824,16593,16394,16174,16007,15806,15636,15459,15325,15215,15109,15025,14960,14923,14906,14901,14916,14934,14965,14993,15042,15074,15118,15162,15187,15194,15194,15194,15217,15232,15245,15245,15191,15123,15070,14992,14902,14811,14689,14551,14377,14178,13969,13733,13499,13236,12989,12693,12405,12117,11812,11529,11270,11004,10782,10552,10272,9973,9648,9332,9052,8805,8603,8443,8281,8140,8049,7978,7901,7854,7791,7698,7549,7379,7229,7094,6976,6876,6799,6743,6683,6649,6627,6627,6608,6602,6615,6612,6456,6161,5725,5103,21.9,22.1,22.8,1568807,0.4,12.9,12.0,5.0,440,-1.00,-1.00,58.6315,-19.265868,0.000516,,,,,233 +SATSLF0720,2024246,19.512925,3.88,0.0544,0.1057,0.0197,0.00,16060,655,1,702,711,718,710,710,713,709,715,737,739,729,739,778,885,1201,1935,3075,4421,5671,6590,7230,7717,8122,8569,9095,9704,10429,11313,12296,13397,14564,15731,16828,17774,18498,18938,19077,18886,18516,17974,17405,16837,16385,16013,15787,15717,15801,16032,16449,17031,17765,18681,19745,20943,22261,23699,25158,26623,28048,29294,30305,31041,31443,31444,31117,30478,29564,28516,27287,26110,24964,23904,22912,22061,21335,20717,20248,19857,19577,19425,19333,19349,19434,19637,19911,20246,20678,21211,21761,22382,23037,23690,24297,24881,25346,25721,25980,26026,25922,25627,25160,24521,23808,23008,22152,21280,20427,19661,18980,18314,17741,17274,16864,16548,16313,16134,16036,15994,16032,16116,16270,16500,16794,17149,17578,18061,18627,19252,19893,20561,21284,22021,22768,23477,24170,24833,25403,25982,26405,26724,26968,27073,27095,26985,26765,26439,26062,25558,25019,24429,23790,23140,22477,21827,21197,20580,19993,19432,18955,18490,18081,17709,17397,17100,16828,16593,16400,16181,15993,15813,15618,15447,15319,15207,15108,15031,14949,14919,14893,14889,14913,14941,14957,14999,15026,15059,15113,15167,15177,15192,15201,15211,15208,15231,15239,15236,15193,15137,15073,15009,14914,14829,14696,14533,14350,14158,13959,13730,13506,13244,12976,12688,12395,12114,11803,11526,11257,11005,10772,10537,10269,9977,9648,9345,9058,8817,8612,8425,8273,8147,8044,7965,7902,7845,7781,7703,7549,7371,7220,7093,6979,6875,6789,6732,6669,6655,6620,6623,6605,6611,6617,6620,6461,6156,5724,5121,21.9,22.1,22.8,1568808,0.2,12.9,12.0,5.0,441,-1.00,-1.00,59.5381,-19.645270,0.000622,,,,,76 +SATSLF0720,2024246,19.513181,4.16,0.0583,0.1055,0.0203,0.00,16066,655,1,699,705,699,705,706,722,714,727,725,724,713,733,761,881,1202,1915,3084,4441,5659,6595,7220,7703,8131,8578,9099,9733,10473,11337,12333,13430,14597,15738,16871,17813,18517,18949,19080,18897,18523,18001,17405,16857,16410,16042,15822,15736,15827,16077,16481,17057,17792,18704,19765,20985,22289,23729,25202,26674,28096,29338,30314,31063,31474,31469,31145,30507,29589,28549,27322,26146,24989,23919,22931,22074,21346,20734,20257,19872,19600,19437,19342,19355,19457,19642,19904,20256,20682,21207,21757,22373,23047,23697,24309,24889,25373,25737,25994,26061,25930,25650,25171,24525,23816,23018,22156,21286,20427,19676,18961,18331,17773,17298,16893,16575,16313,16163,16056,16009,16025,16129,16292,16517,16793,17175,17590,18087,18640,19247,19873,20557,21281,22022,22760,23477,24182,24834,25417,25981,26403,26739,26965,27075,27090,26984,26784,26457,26050,25564,25000,24403,23778,23124,22478,21821,21198,20589,19990,19441,18965,18484,18091,17709,17386,17096,16821,16590,16385,16185,15994,15799,15613,15450,15326,15191,15101,15019,14951,14921,14893,14897,14907,14936,14961,14981,15029,15063,15102,15153,15182,15202,15201,15201,15220,15239,15218,15216,15164,15116,15052,14994,14912,14829,14685,14530,14365,14168,13954,13745,13497,13239,12985,12692,12397,12101,11807,11537,11253,11005,10765,10541,10265,9971,9628,9340,9053,8806,8600,8427,8278,8142,8053,7970,7905,7853,7773,7679,7551,7378,7220,7081,6967,6870,6794,6737,6688,6649,6627,6631,6613,6592,6608,6587,6441,6137,5722,5112,21.9,22.1,22.8,1568809,0.0,12.9,11.9,5.0,451,-1.00,-1.00,58.4383,-19.209280,0.000524,,,,,41 +SATSLF0720,2024246,19.513434,3.98,0.0558,0.1064,0.0207,0.00,16033,655,1,705,701,711,710,718,717,731,717,735,739,729,731,771,878,1196,1918,3073,4425,5661,6581,7223,7720,8125,8572,9090,9701,10455,11309,12289,13413,14587,15729,16838,17782,18496,18933,19049,18867,18505,17970,17383,16836,16373,15997,15787,15716,15798,16042,16435,17010,17767,18666,19721,20934,22255,23691,25157,26619,28034,29269,30256,31009,31407,31417,31102,30455,29546,28507,27261,26089,24934,23881,22885,22037,21310,20680,20219,19829,19563,19400,19304,19332,19405,19603,19875,20210,20640,21181,21725,22342,23008,23651,24269,24834,25317,25666,25931,25987,25863,25590,25107,24477,23761,22974,22106,21246,20395,19633,18933,18278,17725,17247,16848,16552,16285,16116,16009,15972,15991,16082,16261,16473,16762,17133,17565,18034,18610,19205,19825,20522,21237,21977,22720,23430,24128,24781,25372,25925,26356,26657,26892,27006,27019,26942,26733,26401,25995,25509,24960,24365,23738,23095,22438,21765,21131,20529,19943,19402,18905,18438,18037,17676,17352,17076,16808,16566,16361,16155,15961,15771,15578,15427,15281,15169,15074,14996,14921,14881,14852,14867,14869,14900,14922,14968,14989,15030,15073,15113,15122,15144,15157,15151,15195,15209,15201,15194,15154,15095,15041,14962,14875,14779,14640,14498,14301,14129,13913,13693,13467,13205,12939,12669,12369,12083,11784,11502,11237,10989,10738,10505,10241,9941,9617,9294,9023,8784,8572,8403,8259,8144,8030,7961,7896,7836,7773,7684,7539,7368,7220,7070,6971,6851,6779,6731,6663,6631,6599,6595,6593,6580,6581,6592,6448,6147,5716,5102,21.9,22.1,22.9,1568810,0.2,12.9,11.9,5.0,448,-1.00,-1.00,59.1168,-19.456700,0.000586,,,,,34 +SATSLF0720,2024246,19.513689,4.06,0.0569,0.1053,0.0201,0.00,16079,655,1,710,719,725,714,713,715,717,729,733,737,736,753,787,896,1214,1930,3081,4448,5683,6617,7253,7736,8163,8599,9117,9743,10488,11341,12337,13441,14615,15769,16877,17825,18544,18974,19100,18919,18550,18013,17422,16881,16413,16058,15831,15745,15839,16085,16488,17063,17804,18711,19778,20993,22304,23744,25213,26693,28114,29361,30352,31106,31498,31489,31169,30530,29616,28549,27329,26165,24997,23929,22944,22089,21365,20760,20290,19888,19604,19441,19352,19367,19465,19665,19923,20268,20702,21230,21802,22423,23089,23733,24333,24913,25380,25744,26023,26073,25936,25683,25199,24555,23843,23056,22173,21316,20453,19702,18999,18341,17776,17318,16901,16585,16336,16158,16063,16025,16025,16122,16280,16510,16813,17184,17620,18094,18663,19269,19897,20587,21301,22040,22768,23495,24186,24848,25439,25994,26408,26739,26987,27100,27114,27021,26784,26483,26071,25581,25027,24429,23782,23159,22493,21848,21204,20594,20002,19466,18958,18496,18108,17738,17420,17114,16844,16594,16402,16196,16005,15805,15616,15459,15322,15197,15106,15028,14966,14922,14907,14895,14912,14942,14961,14980,15031,15064,15113,15169,15178,15200,15213,15210,15217,15249,15238,15245,15196,15118,15061,15001,14909,14833,14688,14533,14365,14162,13959,13757,13505,13249,12984,12697,12407,12115,11833,11542,11263,11008,10766,10535,10266,9954,9651,9335,9061,8820,8613,8442,8273,8165,8037,7979,7901,7851,7795,7680,7559,7387,7237,7109,6993,6893,6801,6739,6691,6643,6623,6608,6608,6592,6603,6619,6460,6149,5717,5095,21.9,22.1,22.9,1568811,0.1,12.9,11.9,5.0,449,-1.00,-1.00,58.6461,-19.307749,0.000583,,,,,54 +SATSLF0720,2024246,19.513943,3.96,0.0554,0.1063,0.0205,0.00,16042,655,1,714,713,726,717,723,723,731,741,745,737,740,747,789,893,1212,1927,3080,4449,5685,6597,7255,7729,8147,8593,9113,9729,10458,11338,12315,13421,14587,15755,16861,17781,18507,18935,19085,18896,18521,17970,17399,16853,16389,16035,15790,15731,15812,16054,16445,17022,17769,18673,19710,20938,22241,23687,25139,26615,28035,29290,30280,31014,31401,31402,31091,30440,29540,28497,27257,26080,24930,23865,22878,22025,21315,20701,20221,19829,19553,19390,19309,19329,19421,19609,19869,20207,20644,21161,21721,22336,23008,23669,24269,24851,25310,25690,25943,25989,25872,25602,25122,24499,23768,22985,22117,21249,20407,19627,18935,18284,17716,17255,16855,16545,16311,16145,16033,15990,16010,16101,16253,16468,16764,17129,17539,18028,18609,19205,19847,20522,21255,21989,22727,23427,24138,24791,25376,25937,26354,26670,26906,27018,27042,26949,26733,26405,26016,25524,24954,24375,23748,23097,22449,21788,21152,20549,19963,19417,18921,18458,18045,17688,17364,17058,16786,16555,16355,16160,15982,15777,15601,15421,15298,15184,15085,15008,14939,14897,14876,14870,14865,14897,14923,14968,15018,15056,15094,15137,15158,15160,15164,15171,15190,15208,15218,15211,15161,15107,15046,14971,14892,14795,14645,14506,14325,14140,13933,13717,13497,13225,12957,12680,12371,12090,11805,11525,11249,11006,10764,10526,10273,9945,9631,9333,9040,8797,8597,8421,8260,8151,8053,7958,7905,7845,7779,7681,7529,7373,7205,7084,6970,6886,6796,6734,6679,6647,6614,6611,6596,6589,6590,6583,6440,6135,5729,5100,21.9,22.2,22.9,1568812,0.2,12.9,12.0,5.0,446,-1.00,-1.00,58.5980,-19.236927,0.000559,,,,,10 +SATSLF0720,2024246,19.514194,4.04,0.0566,0.1093,0.0221,0.00,15956,655,1,707,708,714,717,727,726,732,730,735,733,747,746,777,891,1189,1899,3040,4394,5610,6529,7177,7641,8058,8510,9029,9617,10352,11218,12192,13289,14441,15590,16686,17632,18357,18784,18906,18722,18376,17841,17245,16701,16245,15871,15663,15597,15672,15925,16338,16896,17639,18546,19589,20790,22071,23491,24971,26437,27830,29067,30059,30802,31185,31198,30880,30233,29326,28288,27076,25904,24766,23715,22736,21896,21173,20579,20098,19704,19431,19269,19179,19203,19293,19489,19755,20107,20525,21056,21612,22222,22889,23513,24125,24694,25170,25530,25789,25850,25729,25452,24989,24365,23663,22874,21993,21142,20293,19528,18824,18193,17633,17165,16759,16445,16203,16037,15945,15902,15928,16025,16181,16400,16682,17063,17480,17949,18521,19121,19744,20414,21152,21893,22628,23334,24051,24682,25283,25826,26253,26555,26793,26885,26896,26811,26595,26280,25881,25403,24858,24261,23639,22993,22347,21696,21065,20469,19867,19342,18849,18375,17979,17610,17281,17006,16744,16517,16297,16086,15897,15708,15537,15360,15225,15114,15016,14947,14872,14838,14829,14829,14837,14860,14882,14909,14937,14967,15019,15077,15088,15123,15133,15129,15159,15168,15176,15164,15112,15049,14995,14929,14830,14739,14606,14458,14280,14082,13883,13676,13441,13180,12916,12618,12345,12050,11748,11467,11206,10973,10726,10501,10238,9926,9594,9306,9013,8777,8566,8399,8235,8107,8006,7932,7866,7813,7760,7664,7518,7354,7190,7070,6951,6859,6783,6720,6669,6637,6607,6586,6577,6556,6571,6583,6421,6118,5696,5093,21.9,22.2,22.9,1568813,0.2,13.0,12.0,5.0,449,-1.00,-1.00,59.5198,-19.492352,0.000612,,,,,169 +SATSLF0720,2024246,19.514449,4.11,0.0576,0.1084,0.0222,0.00,15966,655,1,706,721,722,724,731,721,733,729,725,730,730,736,771,886,1212,1909,3050,4400,5618,6533,7175,7659,8063,8527,9029,9637,10364,11238,12221,13317,14473,15619,16732,17667,18385,18798,18921,18754,18365,17849,17257,16722,16279,15915,15688,15617,15688,15946,16341,16920,17658,18561,19610,20817,22124,23533,25003,26464,27874,29100,30086,30832,31213,31227,30915,30281,29397,28322,27117,25938,24800,23737,22743,21888,21175,20580,20109,19720,19451,19289,19217,19226,19324,19506,19758,20115,20549,21056,21621,22245,22906,23536,24135,24722,25194,25560,25817,25865,25756,25483,25011,24386,23671,22882,22017,21163,20323,19549,18861,18210,17653,17189,16788,16483,16234,16050,15941,15911,15940,16031,16185,16416,16701,17067,17488,17973,18525,19126,19758,20439,21155,21896,22626,23340,24039,24682,25272,25828,26240,26569,26802,26919,26932,26825,26615,26298,25906,25409,24850,24256,23655,23005,22354,21700,21078,20466,19903,19329,18832,18365,17980,17606,17291,17019,16741,16515,16314,16097,15907,15724,15533,15365,15255,15125,15028,14953,14871,14844,14820,14823,14829,14857,14872,14903,14955,14985,15021,15081,15101,15106,15138,15131,15144,15177,15156,15159,15089,15033,14989,14901,14829,14734,14598,14459,14290,14097,13877,13674,13436,13172,12916,12627,12347,12045,11763,11482,11201,10963,10721,10486,10219,9924,9600,9294,9011,8762,8567,8392,8240,8106,8013,7938,7857,7809,7751,7646,7523,7364,7192,7067,6955,6848,6774,6709,6647,6620,6594,6599,6574,6575,6594,6582,6421,6115,5695,5081,21.9,22.2,22.9,1568814,0.1,12.9,11.9,5.0,445,-1.00,-1.00,59.3455,-19.444930,0.000565,,,,,108 +SATSDF0720,2024246,19.759139,0.00,0.0000,0.0000,0.0000,0.00,655,0,1,660,638,631,626,632,613,631,613,631,629,643,640,635,645,647,637,646,649,637,640,645,662,669,666,661,659,661,654,658,667,670,668,675,668,676,665,649,659,649,655,661,660,674,669,669,653,663,645,663,657,657,664,661,649,657,663,665,663,673,663,672,673,670,662,657,648,650,653,651,671,661,668,666,650,667,661,662,657,658,650,661,662,661,665,665,667,651,662,648,657,662,658,650,647,641,659,654,645,653,642,651,649,666,668,669,674,672,669,661,668,645,659,665,657,647,637,633,643,645,660,645,660,672,649,663,658,656,653,643,655,659,663,670,668,661,663,642,627,639,640,653,645,659,657,655,677,657,667,658,658,656,660,661,661,648,655,661,653,657,652,665,665,656,656,655,666,656,672,658,645,647,654,661,661,656,669,658,671,664,657,649,645,636,651,642,651,657,656,647,663,665,650,655,646,655,643,647,658,663,652,645,647,656,653,642,649,645,652,657,655,671,658,653,660,649,653,664,650,654,665,668,664,650,648,656,664,645,643,650,644,645,645,654,651,643,662,661,663,661,661,653,653,663,658,652,649,649,658,648,656,657,657,665,664,660,491,0.0,0.0,0.0,1568813,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,44 +SATSLF0720,2024246,19.759693,4.06,0.0569,0.1018,0.0183,0.00,16164,655,1,717,694,707,707,709,723,725,733,734,725,747,746,770,873,1204,1909,3067,4439,5687,6617,7277,7751,8185,8628,9159,9797,10536,11403,12407,13522,14704,15864,16987,17933,18668,19097,19237,19049,18682,18148,17558,16981,16537,16169,15938,15875,15948,16181,16599,17191,17937,18849,19909,21123,22469,23906,25408,26884,28312,29573,30565,31313,31705,31719,31386,30731,29820,28772,27542,26348,25191,24116,23109,22259,21529,20929,20437,20045,19770,19601,19502,19513,19610,19793,20064,20419,20842,21370,21936,22568,23234,23873,24485,25054,25546,25901,26168,26231,26106,25826,25337,24709,23979,23176,22294,21418,20563,19789,19096,18421,17867,17402,16984,16672,16409,16249,16145,16102,16138,16216,16375,16600,16881,17252,17685,18176,18752,19358,20001,20697,21433,22160,22914,23609,24333,24989,25577,26139,26556,26868,27128,27216,27235,27147,26929,26597,26217,25716,25154,24573,23924,23285,22610,21954,21306,20708,20101,19555,19060,18589,18180,17827,17488,17182,16924,16669,16468,16277,16072,15893,15698,15522,15386,15283,15174,15111,15028,14989,14974,14961,14963,15000,15012,15037,15084,15109,15170,15230,15236,15243,15257,15266,15276,15298,15304,15296,15240,15178,15121,15052,14953,14875,14730,14578,14407,14226,14005,13787,13554,13270,13011,12740,12452,12152,11859,11563,11308,11057,10813,10573,10289,10002,9674,9367,9087,8826,8624,8453,8309,8178,8078,8003,7930,7879,7816,7721,7574,7399,7245,7116,7001,6904,6829,6770,6712,6667,6645,6627,6614,6594,6634,6621,6484,6166,5745,5124,22.0,21.9,22.5,1568814,0.2,12.9,12.0,5.0,567,-1.00,-1.00,58.3271,-19.305980,0.000556,,,,,215 +SATSLF0720,2024246,19.759875,4.04,0.0566,0.1020,0.0173,0.00,16176,655,1,697,721,721,706,727,706,717,718,730,725,722,731,775,884,1188,1929,3077,4434,5693,6641,7294,7765,8199,8652,9165,9789,10537,11424,12429,13541,14737,15909,17005,17960,18690,19111,19245,19055,18689,18161,17561,17012,16538,16187,15954,15892,15957,16203,16611,17194,17942,18856,19921,21133,22457,23906,25401,26890,28304,29550,30561,31309,31719,31709,31406,30761,29840,28778,27548,26352,25186,24112,23104,22257,21526,20915,20421,20037,19757,19586,19492,19508,19611,19794,20066,20419,20849,21376,21959,22546,23239,23883,24500,25076,25547,25917,26179,26233,26119,25832,25341,24698,23984,23164,22315,21412,20580,19801,19095,18444,17876,17408,17002,16670,16435,16257,16154,16109,16121,16205,16391,16621,16906,17273,17705,18185,18760,19378,20004,20695,21427,22177,22921,23634,24327,24998,25585,26161,26580,26908,27154,27255,27287,27182,26957,26631,26236,25726,25161,24576,23943,23286,22641,21961,21330,20712,20120,19561,19068,18600,18186,17818,17488,17208,16936,16691,16493,16277,16080,15911,15700,15533,15408,15296,15199,15116,15029,14991,14983,14985,14994,15005,15036,15069,15118,15139,15203,15249,15255,15267,15272,15280,15310,15329,15325,15325,15258,15216,15152,15083,15001,14897,14757,14589,14416,14241,14028,13811,13579,13307,13050,12761,12453,12173,11878,11581,11314,11061,10831,10597,10328,10023,9706,9385,9100,8857,8627,8462,8321,8179,8083,7989,7931,7880,7821,7725,7601,7422,7266,7140,7019,6920,6839,6775,6717,6668,6667,6653,6633,6628,6648,6636,6491,6178,5751,5127,22.0,22.0,22.6,1568815,0.2,12.9,11.9,5.0,468,-1.00,-1.00,58.1338,-19.228582,0.000450,,,,,68 +SATSLF0720,2024246,19.760131,4.01,0.0562,0.1043,0.0198,0.00,16090,655,1,703,686,712,700,701,715,710,718,726,733,732,739,770,877,1188,1897,3051,4417,5650,6598,7236,7731,8149,8597,9118,9735,10487,11353,12336,13437,14621,15773,16889,17844,18577,19001,19126,18952,18568,18050,17453,16895,16448,16085,15844,15791,15852,16113,16509,17090,17830,18742,19793,21021,22338,23773,25248,26721,28149,29401,30385,31142,31553,31548,31211,30575,29645,28609,27377,26213,25054,23984,22969,22125,21398,20803,20324,19918,19649,19506,19393,19409,19515,19693,19949,20289,20721,21256,21818,22443,23095,23761,24369,24941,25425,25788,26021,26091,25969,25675,25195,24576,23840,23048,22184,21302,20475,19701,18998,18356,17793,17323,16916,16586,16350,16161,16059,16027,16039,16128,16291,16520,16813,17171,17605,18101,18676,19286,19924,20604,21323,22066,22817,23518,24225,24886,25474,26025,26445,26776,27012,27121,27142,27051,26834,26481,26102,25604,25037,24442,23808,23170,22529,21861,21232,20611,20029,19458,18983,18500,18094,17733,17397,17122,16849,16620,16416,16197,16017,15821,15629,15458,15329,15202,15115,15040,14979,14945,14930,14916,14918,14937,14963,14993,15029,15061,15123,15169,15191,15204,15206,15209,15242,15261,15252,15233,15203,15143,15069,15008,14915,14833,14681,14535,14362,14165,13959,13749,13506,13246,12969,12694,12398,12115,11812,11530,11245,11003,10777,10531,10270,9978,9652,9344,9048,8823,8609,8433,8287,8148,8049,7968,7909,7853,7765,7683,7554,7373,7220,7102,6981,6880,6806,6755,6698,6653,6632,6629,6599,6594,6604,6594,6437,6150,5721,5106,22.0,22.0,22.6,1568816,0.1,12.9,11.9,5.0,456,-1.00,-1.00,58.7593,-19.382340,0.000534,,,,,137 +SATSLF0720,2024246,19.760384,3.92,0.0549,0.1026,0.0174,0.00,16163,655,1,692,690,695,699,708,711,721,713,719,726,726,733,765,883,1194,1914,3077,4446,5676,6618,7286,7771,8190,8641,9158,9799,10536,11414,12401,13510,14704,15877,16981,17949,18678,19125,19245,19057,18673,18135,17558,16981,16514,16159,15940,15872,15942,16189,16613,17182,17920,18828,19904,21125,22451,23894,25368,26866,28293,29554,30549,31300,31683,31702,31378,30733,29788,28749,27525,26342,25172,24096,23101,22244,21493,20882,20396,20001,19709,19563,19470,19500,19593,19780,20049,20416,20840,21374,21933,22547,23226,23860,24467,25056,25520,25893,26158,26201,26074,25804,25320,24678,23971,23165,22292,21434,20577,19803,19089,18435,17874,17385,16978,16669,16405,16244,16139,16091,16128,16210,16373,16608,16890,17269,17669,18176,18750,19365,20001,20695,21413,22154,22900,23609,24309,24969,25569,26129,26570,26888,27121,27225,27229,27159,26926,26623,26210,25715,25140,24547,23922,23277,22619,21946,21323,20714,20105,19552,19054,18590,18176,17820,17494,17198,16920,16669,16475,16290,16093,15889,15708,15529,15400,15289,15179,15105,15043,14999,14988,14965,14987,14997,15017,15069,15117,15132,15186,15234,15254,15261,15265,15264,15292,15314,15308,15319,15258,15203,15150,15058,14970,14885,14741,14592,14417,14231,14011,13799,13562,13301,13037,12743,12470,12161,11859,11575,11303,11049,10816,10579,10315,10000,9693,9365,9089,8853,8622,8475,8309,8157,8075,7990,7925,7873,7802,7715,7573,7400,7247,7119,7009,6917,6846,6768,6726,6688,6654,6651,6625,6619,6633,6605,6472,6161,5746,5121,22.0,22.0,22.7,1568817,0.4,12.9,12.0,5.0,452,-1.00,-1.00,58.5711,-19.396714,0.000543,,,,,0 +SATSLF0720,2024246,19.760635,3.99,0.0559,0.1032,0.0183,0.00,16137,655,1,710,700,697,703,713,716,727,713,726,725,731,741,779,883,1208,1921,3067,4430,5677,6614,7261,7746,8169,8620,9149,9773,10513,11375,12376,13470,14649,15815,16930,17894,18612,19043,19174,18999,18614,18087,17494,16948,16476,16123,15893,15819,15897,16142,16554,17138,17882,18789,19850,21064,22374,23827,25311,26792,28201,29459,30474,31235,31632,31626,31297,30644,29728,28680,27463,26278,25117,24036,23038,22194,21456,20847,20359,19972,19685,19536,19443,19466,19566,19753,20021,20376,20793,21317,21873,22514,23175,23817,24426,25009,25490,25856,26117,26170,26050,25765,25286,24656,23929,23121,22249,21362,20515,19746,19048,18397,17837,17377,16967,16648,16401,16227,16145,16078,16104,16194,16355,16571,16883,17249,17685,18161,18717,19335,19970,20661,21377,22129,22858,23581,24283,24936,25534,26105,26528,26841,27079,27203,27221,27116,26902,26576,26194,25690,25123,24533,23888,23239,22581,21911,21277,20666,20085,19540,19044,18576,18163,17799,17467,17175,16909,16674,16460,16273,16058,15873,15692,15529,15377,15260,15161,15099,15026,14977,14963,14973,14984,14985,15005,15031,15067,15092,15155,15213,15235,15249,15254,15257,15280,15306,15307,15293,15237,15186,15120,15045,14959,14859,14723,14576,14404,14235,14013,13799,13558,13299,13022,12725,12430,12153,11851,11565,11290,11045,10818,10573,10304,9998,9664,9351,9087,8835,8626,8464,8309,8169,8083,7997,7917,7862,7805,7713,7567,7392,7241,7119,7013,6915,6813,6767,6707,6676,6658,6629,6629,6617,6638,6637,6481,6173,5735,5115,22.0,22.0,22.7,1568818,0.2,12.9,12.0,5.0,452,-1.00,-1.00,58.8094,-19.450539,0.000499,,,,,210 +SATSLF0720,2024246,19.760890,3.92,0.0549,0.1032,0.0186,0.00,16133,655,1,709,718,714,726,716,713,729,727,731,737,728,742,774,895,1202,1921,3065,4429,5670,6614,7251,7744,8174,8628,9145,9756,10507,11375,12374,13489,14665,15820,16919,17884,18603,19037,19173,18996,18609,18081,17497,16935,16461,16101,15879,15815,15885,16128,16539,17101,17867,18778,19861,21072,22401,23846,25322,26769,28211,29457,30451,31218,31602,31602,31287,30638,29747,28688,27457,26268,25106,24040,23048,22178,21448,20825,20349,19971,19706,19538,19441,19459,19555,19754,20009,20353,20773,21298,21861,22484,23162,23792,24419,24994,25468,25841,26105,26149,26033,25749,25273,24633,23916,23122,22242,21370,20535,19753,19049,18397,17830,17383,16962,16640,16392,16213,16112,16058,16081,16187,16355,16578,16874,17230,17666,18149,18717,19319,19953,20656,21381,22117,22858,23579,24281,24929,25527,26087,26531,26839,27094,27201,27212,27101,26896,26565,26157,25662,25105,24530,23889,23252,22580,21927,21297,20690,20078,19514,19029,18553,18149,17783,17440,17158,16899,16669,16470,16259,16067,15863,15686,15521,15384,15275,15173,15089,15009,14977,14967,14962,14968,14991,15008,15058,15090,15121,15179,15209,15230,15250,15258,15252,15278,15297,15285,15283,15235,15181,15111,15056,14954,14860,14716,14569,14397,14199,13990,13782,13543,13283,13021,12729,12427,12152,11865,11573,11292,11057,10816,10581,10317,10004,9672,9354,9075,8839,8625,8462,8307,8180,8076,7999,7917,7876,7810,7707,7571,7399,7243,7112,6994,6901,6823,6753,6712,6669,6651,6644,6630,6620,6643,6618,6466,6152,5738,5127,22.0,22.0,22.7,1568819,0.3,12.9,11.9,5.0,443,-1.00,-1.00,59.2643,-19.636963,0.000600,,,,,188 +SATSLF0720,2024246,19.761145,3.94,0.0552,0.1034,0.0182,0.00,16127,655,1,716,713,714,717,713,714,714,727,724,731,739,746,777,898,1209,1921,3053,4411,5671,6584,7239,7717,8151,8602,9108,9731,10487,11370,12366,13465,14656,15808,16919,17870,18595,19011,19158,18988,18596,18064,17474,16915,16439,16083,15869,15785,15886,16117,16537,17120,17863,18760,19818,21041,22361,23808,25290,26762,28181,29428,30437,31189,31582,31596,31275,30625,29709,28648,27425,26248,25093,24013,23017,22157,21426,20827,20349,19957,19682,19522,19434,19442,19549,19737,19988,20350,20769,21297,21874,22496,23156,23801,24412,24995,25464,25822,26084,26141,26035,25763,25274,24637,23906,23112,22251,21358,20521,19748,19049,18378,17830,17351,16936,16631,16383,16220,16110,16055,16099,16185,16347,16557,16856,17221,17663,18141,18722,19329,19976,20659,21387,22117,22864,23578,24286,24930,25512,26075,26523,26833,27091,27191,27207,27114,26891,26553,26158,25670,25095,24517,23885,23233,22566,21907,21271,20656,20058,19506,19025,18567,18157,17781,17461,17161,16903,16648,16454,16244,16059,15863,15694,15513,15386,15261,15158,15090,15010,14971,14954,14954,14965,14979,15015,15037,15075,15098,15168,15211,15227,15250,15260,15258,15277,15300,15301,15304,15248,15178,15123,15048,14963,14858,14725,14571,14411,14213,14009,13801,13538,13292,13031,12761,12449,12161,11859,11552,11301,11038,10800,10554,10307,10000,9685,9382,9097,8853,8630,8456,8290,8163,8071,7997,7917,7867,7806,7703,7565,7402,7245,7122,7005,6915,6843,6764,6717,6677,6642,6627,6619,6608,6621,6630,6467,6164,5746,5122,22.0,22.1,22.8,1568820,0.1,12.9,12.0,5.0,453,-1.00,-1.00,59.2390,-19.610337,0.000568,,,,,93 +SATSLF0720,2024246,19.761402,4.17,0.0583,0.1047,0.0193,0.00,16091,655,1,706,709,710,709,711,711,717,724,738,734,742,757,773,897,1207,1919,3057,4416,5655,6595,7229,7726,8147,8588,9122,9737,10466,11341,12328,13441,14618,15782,16882,17825,18537,18964,19112,18920,18556,18026,17428,16866,16411,16055,15835,15766,15842,16106,16506,17094,17836,18733,19789,20997,22324,23749,25240,26704,28125,29376,30373,31124,31512,31517,31195,30549,29645,28601,27353,26192,25018,23937,22960,22113,21389,20785,20314,19909,19628,19461,19379,19389,19482,19668,19945,20289,20721,21256,21802,22419,23090,23738,24349,24925,25410,25778,26037,26073,25963,25682,25216,24576,23855,23061,22209,21325,20482,19705,19001,18343,17792,17320,16904,16599,16353,16161,16075,16045,16055,16150,16296,16519,16811,17176,17605,18104,18666,19290,19912,20624,21325,22073,22805,23515,24224,24875,25460,26030,26437,26779,27037,27131,27141,27051,26829,26503,26107,25623,25069,24470,23824,23172,22518,21864,21234,20630,20032,19488,18992,18517,18114,17745,17401,17118,16845,16608,16427,16213,16025,15826,15654,15484,15348,15233,15141,15071,14973,14951,14928,14915,14918,14950,14969,15009,15040,15085,15134,15191,15196,15227,15226,15235,15253,15260,15259,15253,15203,15144,15087,15014,14917,14838,14688,14552,14384,14185,13979,13766,13526,13266,12989,12704,12417,12115,11822,11533,11265,11025,10782,10548,10272,9981,9661,9349,9069,8824,8616,8443,8285,8138,8051,7975,7907,7867,7780,7715,7570,7399,7237,7098,6989,6898,6798,6747,6699,6661,6629,6630,6608,6601,6609,6597,6451,6144,5722,5107,22.0,22.1,22.8,1568821,0.2,13.0,12.0,5.0,450,-1.00,-1.00,58.5337,-19.277362,0.000515,,,,,109 +SATSLF0720,2024246,19.761657,4.00,0.0561,0.1045,0.0192,0.00,16094,655,1,706,705,713,713,721,717,712,722,717,723,717,732,770,869,1187,1891,3050,4421,5659,6594,7237,7723,8129,8583,9111,9733,10474,11325,12326,13431,14593,15772,16876,17829,18545,18992,19116,18914,18557,18032,17425,16873,16420,16053,15841,15761,15848,16091,16493,17089,17817,18721,19793,21002,22302,23742,25211,26700,28121,29386,30374,31129,31521,31521,31198,30561,29633,28590,27349,26173,25025,23959,22962,22118,21384,20769,20302,19917,19638,19484,19387,19405,19501,19681,19947,20293,20715,21254,21816,22443,23104,23749,24373,24945,25432,25781,26037,26080,25975,25691,25210,24578,23853,23061,22193,21318,20464,19709,19001,18348,17802,17329,16913,16602,16354,16181,16072,16033,16050,16149,16309,16529,16829,17194,17616,18106,18670,19285,19924,20604,21323,22069,22808,23528,24243,24901,25485,26048,26457,26784,27021,27133,27145,27045,26843,26516,26113,25621,25082,24468,23845,23190,22546,21877,21235,20635,20044,19477,18987,18513,18123,17733,17424,17128,16861,16636,16420,16220,16036,15828,15651,15493,15359,15239,15138,15076,14988,14940,14929,14917,14919,14941,14966,15003,15063,15084,15143,15200,15227,15218,15223,15224,15248,15259,15249,15251,15217,15137,15091,15012,14928,14846,14696,14555,14377,14201,13986,13757,13532,13252,12993,12718,12416,12136,11820,11553,11285,11033,10790,10556,10276,9981,9658,9351,9050,8812,8610,8424,8283,8156,8059,7991,7923,7871,7797,7715,7565,7397,7241,7097,6982,6900,6817,6757,6698,6661,6637,6625,6621,6608,6640,6621,6469,6157,5732,5108,22.1,22.1,22.8,1568822,0.0,12.9,11.9,5.0,450,-1.00,-1.00,58.9924,-19.464820,0.000589,,,,,190 +SATSLF0720,2024246,19.761909,4.09,0.0572,0.1053,0.0191,0.00,16073,655,1,697,699,707,709,710,729,729,723,717,731,721,735,761,885,1207,1909,3067,4416,5650,6576,7209,7707,8136,8592,9098,9714,10477,11328,12315,13427,14597,15741,16840,17794,18514,18947,19083,18902,18538,18001,17414,16866,16402,16041,15808,15736,15826,16084,16480,17064,17808,18701,19768,20966,22283,23723,25199,26677,28096,29339,30330,31088,31472,31476,31153,30528,29594,28548,27334,26150,25001,23921,22928,22078,21347,20741,20268,19883,19592,19445,19350,19361,19452,19652,19940,20261,20693,21217,21795,22421,23077,23722,24323,24909,25373,25735,26003,26053,25939,25658,25182,24555,23841,23041,22182,21301,20449,19683,18973,18321,17765,17287,16890,16597,16341,16165,16064,16011,16039,16126,16288,16510,16797,17175,17597,18072,18647,19266,19906,20588,21317,22051,22794,23498,24209,24868,25430,25990,26409,26745,26993,27083,27104,27024,26810,26473,26088,25581,25028,24437,23797,23164,22497,21835,21227,20593,20007,19465,18969,18488,18075,17723,17399,17095,16835,16605,16406,16195,16006,15811,15632,15469,15329,15216,15109,15042,14964,14933,14894,14916,14909,14936,14973,15004,15037,15063,15127,15172,15184,15190,15198,15213,15222,15233,15245,15243,15190,15139,15093,15013,14918,14831,14690,14536,14357,14174,13954,13731,13495,13252,12982,12701,12398,12117,11813,11532,11262,11017,10765,10543,10277,9973,9664,9349,9058,8808,8605,8417,8278,8126,8045,7973,7889,7842,7789,7692,7570,7396,7233,7109,6985,6891,6800,6735,6675,6653,6637,6617,6597,6591,6601,6599,6460,6158,5725,5113,22.1,22.1,22.8,1568823,0.1,12.9,12.0,5.0,452,-1.00,-1.00,58.7857,-19.357458,0.000527,,,,,12 +SATSLF0720,2024246,19.762164,4.07,0.0570,0.1051,0.0188,0.00,16085,655,1,712,714,727,721,720,722,714,722,725,731,728,739,784,889,1205,1912,3065,4413,5650,6592,7232,7709,8144,8592,9109,9719,10475,11342,12324,13433,14588,15755,16876,17824,18533,18977,19099,18910,18549,18009,17422,16857,16401,16048,15824,15763,15836,16085,16493,17057,17808,18716,19782,20993,22305,23741,25227,26690,28097,29345,30355,31086,31498,31498,31176,30525,29611,28564,27342,26162,25005,23947,22949,22113,21364,20740,20283,19891,19588,19451,19361,19365,19459,19668,19938,20293,20729,21240,21797,22418,23083,23735,24353,24914,25399,25742,26011,26058,25949,25661,25204,24553,23845,23044,22181,21313,20480,19705,18996,18343,17782,17302,16904,16596,16338,16171,16083,16036,16048,16145,16306,16521,16820,17181,17586,18094,18661,19260,19906,20590,21320,22057,22793,23527,24218,24875,25467,26018,26438,26758,26997,27109,27112,27019,26811,26491,26104,25618,25047,24442,23833,23189,22536,21878,21224,20618,20024,19470,18971,18505,18113,17734,17408,17114,16845,16624,16414,16221,16024,15839,15653,15485,15345,15226,15136,15045,14976,14946,14922,14929,14926,14949,14967,15015,15056,15082,15129,15179,15205,15210,15208,15221,15241,15255,15261,15254,15194,15140,15103,15012,14933,14843,14701,14542,14368,14180,13968,13767,13525,13272,13001,12717,12417,12137,11818,11529,11255,11012,10780,10551,10285,9989,9668,9360,9078,8820,8618,8446,8297,8151,8069,7988,7914,7861,7794,7696,7558,7382,7232,7106,6974,6887,6811,6742,6702,6660,6633,6615,6604,6603,6630,6617,6468,6150,5721,5115,22.1,22.1,22.8,1568824,0.2,12.9,12.0,5.0,442,-1.00,-1.00,58.7463,-19.350227,0.000564,,,,,167 +SATSLF0720,2024246,19.762421,4.06,0.0568,0.1046,0.0194,0.00,16079,655,1,699,705,718,709,725,717,720,731,729,729,730,754,782,892,1203,1907,3048,4409,5660,6580,7227,7714,8138,8573,9103,9721,10445,11322,12317,13417,14593,15754,16867,17813,18524,18957,19094,18904,18518,17985,17397,16846,16384,16036,15820,15741,15833,16077,16473,17065,17801,18698,19765,20971,22293,23722,25197,26666,28078,29314,30338,31061,31463,31463,31170,30504,29595,28555,27337,26153,25001,23912,22914,22067,21336,20741,20256,19891,19605,19454,19380,19381,19477,19659,19917,20281,20711,21225,21786,22409,23077,23717,24322,24907,25380,25748,26010,26073,25938,25667,25191,24548,23827,23033,22176,21293,20442,19687,18986,18337,17782,17321,16903,16574,16327,16162,16057,16034,16050,16146,16301,16535,16829,17200,17610,18091,18662,19261,19898,20571,21312,22049,22798,23509,24206,24877,25453,26011,26426,26755,27003,27113,27112,27033,26805,26496,26097,25598,25029,24430,23805,23161,22502,21852,21221,20620,20019,19462,18972,18494,18098,17730,17401,17115,16867,16628,16409,16204,16029,15826,15642,15470,15324,15218,15127,15059,14976,14938,14932,14922,14926,14955,14966,15005,15038,15074,15120,15174,15203,15209,15221,15227,15252,15254,15245,15254,15202,15136,15082,15010,14933,14829,14694,14530,14368,14189,13973,13757,13527,13267,12997,12713,12418,12118,11835,11548,11274,11026,10788,10556,10284,9973,9656,9353,9073,8818,8621,8445,8291,8161,8061,7988,7907,7860,7787,7706,7567,7373,7235,7095,6999,6881,6819,6747,6685,6657,6643,6637,6610,6613,6618,6613,6464,6138,5727,5106,22.1,22.1,22.9,1568825,0.1,12.9,12.0,5.0,450,-1.00,-1.00,58.9719,-19.432756,0.000520,,,,,140 +SATSLF0720,2024246,19.762673,3.91,0.0548,0.1057,0.0199,0.00,16057,655,1,711,698,724,710,721,712,715,727,737,737,743,737,786,897,1202,1907,3061,4404,5645,6579,7233,7697,8121,8575,9086,9701,10437,11309,12296,13397,14569,15722,16833,17772,18486,18942,19061,18874,18499,17982,17396,16845,16365,16021,15797,15725,15809,16050,16454,17016,17751,18673,19731,20928,22247,23677,25142,26637,28044,29297,30273,31018,31416,31426,31090,30475,29557,28509,27287,26108,24956,23881,22903,22049,21313,20723,20234,19868,19573,19426,19336,19341,19435,19624,19905,20240,20672,21200,21765,22391,23049,23686,24298,24869,25346,25708,25976,26022,25905,25611,25144,24501,23806,23018,22150,21275,20441,19674,18976,18315,17748,17281,16867,16548,16314,16141,16033,15982,16013,16107,16270,16498,16795,17168,17584,18081,18647,19240,19876,20567,21298,22032,22769,23469,24154,24825,25419,25977,26398,26713,26962,27046,27090,26985,26768,26452,26064,25573,25012,24417,23785,23142,22488,21830,21190,20584,19991,19442,18944,18482,18065,17709,17394,17098,16825,16599,16396,16192,16005,15797,15628,15445,15315,15197,15100,15013,14945,14914,14900,14897,14916,14937,14952,14996,15040,15050,15109,15153,15166,15181,15187,15199,15218,15236,15243,15237,15189,15131,15067,14997,14901,14811,14680,14529,14344,14149,13940,13735,13496,13234,12978,12701,12400,12109,11821,11532,11258,11014,10779,10546,10272,9957,9632,9337,9050,8805,8609,8436,8264,8142,8051,7968,7908,7850,7780,7690,7555,7358,7215,7090,6977,6872,6792,6725,6694,6654,6633,6618,6610,6593,6608,6606,6434,6141,5718,5110,22.1,22.1,22.9,1568825,0.2,12.9,12.0,5.0,445,-1.00,-1.00,59.3155,-19.545411,0.000532,,,,,18 +SATSLF0720,2024246,19.762929,4.13,0.0579,0.1058,0.0201,0.00,16044,655,1,709,713,697,705,703,705,721,731,733,733,737,731,764,881,1200,1904,3033,4401,5641,6561,7214,7697,8113,8555,9073,9701,10432,11292,12289,13396,14553,15715,16813,17768,18478,18913,19041,18852,18487,17957,17370,16825,16362,16013,15781,15716,15796,16041,16445,17034,17761,18670,19730,20944,22241,23654,25140,26602,28028,29261,30265,31005,31408,31413,31100,30445,29533,28480,27280,26098,24933,23875,22881,22034,21305,20703,20229,19840,19565,19418,19330,19352,19425,19619,19869,20225,20645,21169,21729,22352,23013,23651,24294,24857,25326,25696,25952,26010,25877,25598,25133,24489,23773,22993,22126,21264,20418,19661,18952,18306,17725,17267,16860,16552,16295,16126,16039,15989,16009,16110,16276,16499,16788,17155,17580,18074,18628,19232,19861,20553,21278,22001,22746,23462,24153,24823,25412,25956,26385,26691,26951,27049,27054,26974,26758,26427,26034,25538,24987,24402,23765,23098,22464,21816,21178,20573,19981,19425,18940,18456,18068,17685,17365,17073,16818,16577,16387,16181,15990,15792,15617,15442,15308,15197,15084,15017,14940,14896,14880,14881,14890,14918,14931,14963,15008,15028,15089,15137,15160,15173,15184,15191,15213,15219,15223,15214,15163,15101,15059,14970,14876,14797,14658,14509,14347,14157,13952,13720,13499,13232,12953,12678,12386,12096,11800,11508,11249,10987,10764,10521,10242,9949,9645,9330,9044,8806,8603,8422,8260,8138,8033,7951,7891,7838,7787,7683,7552,7364,7201,7069,6971,6877,6786,6730,6676,6631,6615,6603,6589,6581,6595,6596,6435,6142,5718,5100,22.1,22.2,22.9,1568826,0.1,12.9,12.0,5.0,451,-1.00,-1.00,58.7271,-19.292391,0.000480,,,,,98 +SATSLF0720,2024246,19.763184,4.03,0.0565,0.1057,0.0200,0.00,16054,655,1,694,703,715,707,711,717,722,720,728,727,737,749,769,887,1194,1901,3051,4411,5659,6578,7231,7706,8131,8582,9095,9703,10451,11308,12295,13395,14568,15726,16841,17780,18499,18948,19064,18890,18505,17984,17397,16835,16391,16045,15801,15740,15816,16057,16469,17037,17769,18664,19732,20942,22250,23689,25164,26642,28057,29287,30306,31041,31433,31432,31116,30459,29555,28505,27283,26114,24960,23893,22905,22055,21321,20713,20247,19845,19584,19420,19336,19337,19433,19618,19893,20238,20676,21191,21751,22376,23041,23677,24288,24868,25338,25701,25969,26016,25906,25617,25156,24507,23799,23006,22137,21269,20442,19671,18962,18318,17767,17284,16881,16560,16311,16139,16038,16003,16018,16105,16274,16497,16797,17153,17593,18070,18630,19229,19859,20552,21271,22016,22760,23485,24153,24821,25397,25973,26381,26713,26951,27065,27063,26987,26766,26445,26049,25556,24993,24410,23781,23117,22477,21805,21174,20572,19981,19429,18955,18496,18094,17713,17371,17082,16813,16579,16390,16174,15992,15809,15601,15451,15315,15189,15097,15022,14942,14898,14886,14884,14893,14921,14946,14996,15021,15054,15100,15157,15164,15175,15184,15192,15217,15228,15241,15242,15174,15113,15064,14978,14898,14801,14665,14512,14347,14149,13949,13736,13497,13234,12961,12699,12389,12097,11812,11524,11243,10997,10757,10529,10261,9959,9637,9332,9049,8803,8605,8424,8279,8166,8054,7970,7897,7851,7778,7700,7536,7373,7229,7093,6968,6877,6801,6733,6673,6632,6615,6607,6592,6593,6604,6601,6450,6144,5720,5096,22.1,22.2,22.9,1568827,0.1,12.9,12.0,5.0,449,-1.00,-1.00,58.6927,-19.290559,0.000538,,,,,232 +SATSLF0720,2024246,19.763435,4.04,0.0566,0.1061,0.0202,0.00,16058,655,1,716,708,725,715,711,707,707,711,717,713,737,753,788,883,1211,1921,3057,4418,5651,6597,7229,7709,8130,8571,9082,9704,10449,11305,12304,13398,14577,15739,16850,17814,18514,18944,19080,18893,18517,17977,17393,16845,16388,16039,15804,15733,15803,16066,16464,17048,17786,18681,19730,20945,22276,23712,25177,26645,28064,29297,30274,31032,31421,31441,31118,30475,29589,28505,27299,26117,24978,23909,22902,22056,21327,20715,20247,19859,19594,19414,19316,19339,19442,19641,19892,20232,20679,21192,21755,22385,23041,23685,24301,24870,25357,25729,25970,26033,25896,25625,25149,24514,23809,23011,22138,21281,20431,19666,18964,18317,17751,17292,16874,16567,16314,16150,16045,15991,16027,16116,16281,16494,16789,17158,17580,18068,18624,19227,19866,20544,21277,22021,22754,23462,24161,24829,25393,25981,26389,26720,26956,27042,27091,26989,26778,26456,26053,25565,25006,24414,23786,23153,22481,21805,21179,20582,19993,19445,18941,18483,18078,17719,17388,17097,16826,16587,16378,16180,15986,15812,15629,15441,15315,15209,15105,15025,14953,14915,14894,14901,14900,14928,14964,14984,15018,15043,15095,15149,15177,15188,15211,15209,15223,15237,15250,15230,15188,15125,15056,14981,14900,14789,14679,14526,14358,14174,13977,13745,13510,13245,12980,12683,12391,12105,11815,11521,11247,11007,10765,10537,10269,9961,9659,9346,9049,8809,8589,8430,8273,8139,8043,7963,7893,7841,7781,7670,7536,7380,7220,7102,6989,6898,6817,6747,6677,6641,6615,6600,6589,6587,6601,6600,6449,6160,5731,5119,22.1,22.2,22.9,1568828,0.1,12.9,11.9,5.0,451,-1.00,-1.00,58.7317,-19.311670,0.000526,,,,,1 +SATSLF0720,2024246,19.763691,4.19,0.0588,0.1067,0.0205,0.00,16028,655,1,711,722,725,714,731,730,731,734,741,730,727,731,771,873,1199,1911,3061,4411,5650,6583,7221,7702,8124,8563,9087,9696,10430,11303,12273,13370,14552,15701,16791,17744,18454,18889,19010,18817,18451,17931,17349,16800,16357,15986,15764,15691,15784,16022,16420,17001,17741,18633,19703,20914,22212,23649,25109,26586,27992,29226,30206,30957,31365,31365,31041,30405,29489,28446,27238,26068,24918,23853,22852,22001,21281,20685,20200,19808,19534,19393,19290,19297,19403,19600,19856,20206,20626,21163,21714,22324,22982,23629,24229,24821,25288,25675,25924,25963,25843,25573,25088,24460,23747,22962,22107,21240,20394,19634,18934,18289,17736,17257,16862,16538,16283,16114,16008,15969,16001,16077,16242,16474,16765,17120,17543,18025,18597,19201,19845,20506,21249,21977,22705,23428,24129,24780,25370,25933,26349,26670,26917,27008,27027,26922,26706,26395,25984,25505,24954,24357,23736,23090,22441,21769,21163,20546,19954,19411,18912,18446,18045,17681,17348,17075,16801,16565,16353,16160,15963,15771,15593,15436,15290,15177,15078,15006,14933,14894,14868,14868,14871,14913,14933,14979,15006,15031,15081,15145,15138,15164,15178,15173,15197,15213,15202,15211,15153,15092,15047,14978,14880,14791,14657,14510,14332,14137,13936,13718,13490,13228,12961,12681,12390,12089,11792,11507,11242,10994,10749,10519,10245,9956,9641,9325,9055,8808,8585,8412,8258,8128,8029,7950,7893,7835,7774,7680,7532,7366,7214,7081,6967,6880,6797,6740,6680,6647,6625,6615,6586,6592,6615,6615,6442,6143,5723,5110,22.1,22.2,23.0,1568829,0.4,12.9,11.9,5.0,448,-1.00,-1.00,58.5768,-19.204514,0.000482,,,,,137 +SATSLF0720,2024246,19.763944,4.14,0.0579,0.1069,0.0204,0.00,16030,655,1,721,722,740,714,729,736,729,735,743,743,741,746,772,898,1210,1921,3061,4408,5633,6560,7205,7685,8097,8557,9060,9669,10438,11289,12270,13367,14555,15698,16790,17734,18450,18872,19015,18825,18453,17907,17351,16801,16330,15986,15777,15684,15772,16027,16404,16993,17733,18633,19689,20882,22201,23621,25087,26587,27994,29241,30218,30976,31365,31363,31041,30401,29482,28433,27219,26057,24898,23825,22841,22005,21261,20678,20201,19821,19529,19382,19284,19293,19404,19586,19851,20197,20627,21133,21701,22331,22989,23630,24233,24816,25298,25673,25928,25985,25858,25576,25105,24465,23747,22960,22096,21226,20395,19641,18930,18285,17738,17256,16860,16537,16278,16117,16010,15973,15989,16103,16253,16477,16768,17138,17557,18033,18609,19197,19840,20510,21239,21998,22724,23413,24120,24772,25348,25920,26349,26661,26921,27017,27018,26933,26726,26406,25992,25513,24967,24377,23729,23097,22457,21801,21170,20560,19964,19420,18914,18433,18050,17682,17353,17057,16793,16559,16370,16167,15998,15786,15604,15445,15300,15175,15074,15014,14930,14885,14855,14869,14885,14906,14938,14968,15012,15026,15093,15157,15166,15178,15194,15196,15213,15229,15221,15221,15173,15113,15050,14987,14884,14790,14666,14509,14334,14150,13934,13733,13488,13223,12956,12680,12377,12085,11802,11519,11253,10993,10754,10535,10269,9962,9651,9325,9043,8797,8582,8407,8263,8139,8054,7967,7898,7855,7774,7685,7541,7364,7206,7084,6977,6877,6803,6742,6685,6653,6634,6612,6602,6597,6618,6595,6448,6153,5728,5111,22.1,22.2,23.0,1568830,0.0,12.9,12.0,5.0,443,-1.00,-1.00,58.8641,-19.319918,0.000562,,,,,255 +SATSLF0720,2024246,19.764196,4.08,0.0571,0.1068,0.0205,0.00,16025,655,1,719,711,709,709,727,717,729,731,724,727,729,745,780,893,1197,1906,3045,4403,5650,6565,7190,7687,8101,8554,9074,9682,10434,11304,12277,13393,14564,15713,16817,17744,18459,18888,19027,18846,18471,17949,17352,16795,16341,15973,15755,15691,15759,16022,16433,17006,17753,18647,19684,20885,22217,23636,25112,26578,27980,29235,30216,30968,31353,31367,31034,30386,29478,28444,27214,26059,24922,23846,22867,22007,21291,20685,20204,19812,19518,19386,19285,19292,19411,19584,19856,20194,20626,21133,21705,22325,22998,23641,24256,24825,25305,25657,25913,25961,25844,25570,25104,24480,23764,22978,22108,21245,20391,19630,18926,18267,17705,17237,16845,16522,16293,16113,16005,15954,15985,16080,16247,16461,16765,17113,17547,18028,18589,19192,19819,20503,21236,21981,22722,23420,24129,24749,25355,25917,26345,26660,26901,27013,27042,26941,26724,26397,25997,25500,24950,24359,23725,23078,22425,21777,21145,20542,19960,19397,18907,18425,18037,17660,17342,17057,16793,16570,16343,16157,15978,15773,15597,15409,15285,15175,15070,14997,14921,14865,14859,14854,14866,14900,14906,14945,15011,15033,15088,15138,15159,15173,15170,15165,15188,15209,15202,15207,15160,15093,15047,14968,14881,14778,14651,14484,14331,14137,13936,13715,13473,13207,12946,12667,12387,12103,11789,11516,11245,10981,10749,10504,10254,9938,9635,9324,9037,8793,8584,8412,8257,8139,8037,7975,7905,7829,7779,7689,7547,7365,7211,7079,6957,6871,6784,6711,6664,6629,6605,6585,6590,6581,6601,6605,6437,6140,5721,5101,22.1,22.3,23.1,1568831,0.0,12.9,12.0,5.0,449,-1.00,-1.00,58.7652,-19.278017,0.000560,,,,,1 +SATSLF0720,2024246,19.764451,4.08,0.0572,0.1075,0.0212,0.00,16010,655,1,707,713,714,725,714,711,727,710,726,731,731,731,765,891,1201,1912,3053,4398,5625,6547,7191,7679,8093,8528,9041,9659,10403,11256,12252,13350,14516,15657,16761,17699,18408,18855,18987,18810,18437,17911,17317,16764,16303,15961,15735,15666,15750,16001,16420,16984,17721,18605,19682,20872,22169,23598,25067,26529,27940,29175,30169,30914,31310,31319,31018,30368,29459,28432,27200,26029,24892,23817,22818,21969,21246,20644,20162,19786,19503,19353,19257,19284,19373,19563,19821,20155,20599,21111,21688,22306,22967,23609,24212,24780,25268,25634,25902,25938,25829,25541,25077,24442,23720,22933,22074,21214,20374,19617,18915,18258,17702,17239,16846,16513,16279,16105,15992,15957,15977,16066,16219,16453,16744,17106,17530,18006,18586,19201,19827,20519,21225,21968,22701,23398,24093,24752,25341,25898,26333,26646,26890,26988,27000,26917,26700,26377,25984,25505,24930,24343,23710,23067,22409,21745,21120,20523,19942,19381,18888,18425,18013,17666,17324,17035,16780,16540,16334,16139,15958,15767,15592,15426,15285,15176,15074,14996,14923,14884,14883,14858,14873,14883,14922,14959,14987,15032,15077,15132,15137,15155,15169,15160,15179,15217,15213,15205,15149,15104,15025,14964,14866,14773,14634,14482,14329,14126,13922,13707,13471,13206,12944,12669,12377,12085,11796,11505,11232,10987,10732,10510,10236,9946,9617,9319,9034,8786,8577,8409,8258,8128,8047,7948,7891,7836,7767,7678,7517,7338,7200,7068,6960,6865,6791,6733,6679,6644,6610,6604,6594,6596,6602,6606,6441,6140,5717,5095,22.1,22.2,23.1,1568832,0.2,12.9,12.0,5.0,446,-1.00,-1.00,59.1757,-19.428704,0.000465,,,,,61 +SATSDF0720,2024246,20.009138,0.00,0.0000,0.0000,0.0000,0.00,655,0,1,637,633,634,629,634,638,629,631,637,627,619,623,631,621,626,636,629,630,632,631,639,642,645,670,666,660,661,647,665,673,674,665,652,659,659,661,669,658,673,652,660,658,666,670,667,665,666,665,661,661,647,657,659,659,659,665,655,663,669,672,671,674,677,670,659,659,672,670,660,654,648,654,641,657,648,651,663,646,657,669,660,655,659,653,665,658,646,661,665,661,663,653,667,659,675,658,663,676,665,650,643,659,661,658,660,661,653,671,658,652,647,659,663,659,659,663,649,649,653,645,647,645,659,651,659,665,661,656,653,653,649,662,648,658,653,652,643,647,655,653,649,647,650,653,652,666,667,665,664,656,663,658,663,673,659,649,654,649,645,659,657,658,673,643,654,646,645,647,663,660,660,657,653,665,668,658,660,661,666,674,650,659,649,657,662,661,657,661,651,650,651,649,654,645,639,651,643,635,629,647,645,654,646,668,669,672,672,661,663,647,647,653,643,657,646,654,656,657,648,656,651,658,664,664,660,661,667,663,670,663,673,654,654,659,659,643,651,659,660,649,653,661,639,647,640,642,655,664,663,663,665,649,671,657,646,481,0.0,0.0,0.0,1568831,0.4,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,22 +SATSLF0720,2024246,20.009693,3.91,0.0548,0.1019,0.0177,0.00,16168,655,1,709,706,712,719,713,727,725,713,737,738,740,741,770,882,1188,1907,3065,4436,5699,6609,7267,7756,8188,8644,9168,9795,10545,11429,12429,13538,14718,15877,16998,17941,18666,19109,19240,19051,18690,18134,17554,16993,16528,16172,15930,15877,15950,16192,16581,17195,17921,18832,19900,21117,22433,23899,25381,26873,28288,29547,30550,31297,31708,31704,31376,30728,29812,28768,27523,26344,25171,24106,23105,22237,21503,20893,20408,20025,19750,19596,19498,19504,19611,19796,20053,20416,20853,21360,21937,22560,23220,23857,24470,25062,25531,25895,26166,26220,26103,25818,25329,24699,23984,23181,22307,21425,20566,19787,19074,18417,17857,17389,16985,16664,16425,16253,16149,16110,16130,16213,16373,16600,16881,17259,17694,18188,18773,19392,20011,20704,21422,22180,22922,23626,24352,24989,25575,26146,26571,26893,27133,27255,27277,27177,26965,26621,26222,25737,25162,24571,23949,23290,22630,21963,21315,20709,20109,19563,19065,18589,18186,17824,17499,17207,16937,16697,16492,16291,16101,15894,15703,15534,15398,15293,15176,15106,15029,14992,14971,14970,14985,15018,15040,15087,15128,15156,15188,15239,15236,15260,15269,15270,15293,15313,15303,15307,15255,15196,15139,15064,14981,14875,14745,14596,14428,14236,14030,13809,13553,13295,13035,12745,12469,12165,11861,11575,11303,11053,10817,10569,10301,10002,9677,9373,9093,8840,8625,8444,8299,8183,8087,7989,7936,7873,7817,7712,7579,7404,7241,7126,7004,6911,6829,6765,6706,6670,6652,6648,6629,6629,6629,6643,6485,6185,5737,5115,22.0,22.0,22.6,1568832,0.3,12.9,11.9,5.0,567,-1.00,-1.00,58.6876,-19.447677,0.000521,,,,,191 +SATSLF0720,2024246,20.009874,3.97,0.0556,0.1016,0.0175,0.00,16190,655,1,706,701,707,714,717,711,715,724,721,727,736,741,767,884,1196,1920,3075,4448,5700,6649,7302,7781,8192,8647,9175,9786,10555,11422,12427,13550,14734,15895,17011,17962,18688,19142,19269,19093,18706,18170,17581,17016,16554,16184,15956,15886,15956,16208,16635,17205,17947,18883,19949,21159,22483,23922,25438,26909,28352,29590,30592,31333,31747,31748,31442,30784,29841,28792,27566,26374,25218,24150,23138,22275,21533,20921,20438,20041,19768,19597,19512,19528,19634,19828,20078,20432,20862,21389,21953,22568,23222,23895,24505,25084,25582,25938,26211,26259,26134,25856,25365,24731,24013,23209,22333,21456,20602,19833,19115,18448,17890,17418,17017,16695,16448,16281,16170,16126,16154,16227,16407,16621,16917,17293,17721,18212,18786,19402,20036,20722,21458,22192,22951,23661,24378,25029,25600,26185,26615,26930,27168,27276,27281,27211,26986,26642,26236,25757,25186,24599,23973,23325,22674,21993,21369,20745,20154,19588,19090,18605,18203,17848,17506,17211,16953,16718,16507,16310,16119,15930,15730,15563,15426,15304,15211,15133,15051,15013,14997,14996,15005,15023,15047,15081,15126,15152,15206,15258,15281,15292,15301,15294,15312,15330,15332,15328,15266,15211,15147,15071,14992,14901,14762,14611,14436,14251,14042,13818,13584,13329,13049,12760,12471,12174,11890,11597,11328,11078,10838,10615,10329,10033,9712,9394,9116,8853,8637,8477,8312,8162,8067,8003,7934,7898,7833,7755,7610,7415,7275,7153,7026,6911,6839,6774,6716,6671,6663,6645,6635,6621,6653,6640,6499,6180,5761,5130,22.0,22.1,22.7,1568833,0.2,12.9,12.0,5.0,469,-1.00,-1.00,58.3566,-19.337367,0.000573,,,,,136 +SATSLF0720,2024246,20.010130,3.95,0.0553,0.1019,0.0176,0.00,16183,655,1,702,699,710,709,722,718,727,714,734,728,740,749,773,899,1206,1928,3072,4437,5687,6642,7282,7771,8194,8663,9187,9802,10555,11434,12441,13544,14721,15885,17003,17958,18698,19137,19265,19091,18714,18165,17572,17004,16539,16176,15948,15888,15976,16213,16621,17216,17946,18856,19925,21141,22484,23913,25397,26885,28326,29598,30592,31336,31739,31741,31406,30757,29848,28781,27543,26357,25202,24129,23117,22260,21527,20933,20433,20043,19765,19600,19497,19514,19623,19813,20074,20431,20852,21390,21971,22581,23250,23894,24521,25106,25558,25924,26195,26235,26128,25848,25369,24730,23997,23192,22310,21443,20594,19825,19113,18445,17894,17421,17008,16695,16449,16276,16168,16106,16130,16218,16384,16624,16918,17278,17718,18213,18787,19397,20022,20701,21433,22186,22937,23648,24349,25018,25594,26171,26607,26922,27159,27271,27296,27188,26969,26645,26246,25754,25186,24592,23955,23328,22652,21989,21346,20736,20133,19585,19076,18614,18189,17819,17486,17185,16929,16696,16497,16297,16107,15910,15724,15551,15421,15287,15193,15112,15041,14997,14983,14986,14993,15027,15053,15065,15106,15144,15198,15254,15272,15276,15287,15297,15297,15332,15332,15319,15262,15195,15143,15080,14981,14893,14754,14608,14420,14241,14025,13813,13569,13303,13040,12759,12461,12173,11868,11595,11322,11074,10823,10598,10329,10026,9696,9397,9117,8849,8646,8455,8303,8181,8080,8001,7947,7902,7833,7733,7581,7421,7244,7127,7013,6914,6825,6768,6709,6670,6650,6644,6630,6624,6645,6641,6482,6169,5743,5115,22.1,22.1,22.7,1568834,0.2,12.9,11.9,5.0,459,-1.00,-1.00,58.2952,-19.302549,0.000558,,,,,242 +SATSLF0720,2024246,20.010383,3.93,0.0551,0.1034,0.0184,0.00,16140,655,1,693,702,701,699,708,713,725,721,732,718,722,730,768,875,1176,1899,3061,4425,5671,6601,7255,7733,8164,8620,9132,9761,10515,11369,12365,13477,14659,15812,16940,17894,18608,19056,19202,19021,18637,18089,17502,16947,16461,16119,15886,15814,15896,16141,16555,17149,17889,18803,19860,21079,22409,23853,25321,26793,28224,29473,30488,31233,31623,31645,31307,30670,29741,28680,27459,26275,25120,24052,23045,22196,21470,20855,20385,19976,19707,19544,19434,19462,19558,19748,20018,20365,20808,21341,21898,22522,23190,23840,24456,25021,25490,25853,26118,26168,26067,25766,25294,24656,23925,23131,22259,21394,20528,19761,19057,18404,17856,17380,16966,16650,16400,16229,16121,16069,16099,16176,16354,16590,16874,17246,17669,18153,18714,19334,19974,20646,21367,22137,22877,23601,24285,24965,25540,26135,26538,26874,27100,27216,27205,27141,26914,26592,26185,25689,25121,24518,23891,23264,22600,21937,21312,20696,20100,19537,19045,18566,18158,17789,17449,17170,16896,16648,16460,16270,16069,15882,15703,15529,15390,15277,15173,15089,15015,14970,14963,14961,14947,14983,15019,15048,15085,15106,15170,15209,15239,15250,15271,15264,15301,15298,15308,15282,15254,15182,15117,15050,14968,14868,14732,14585,14405,14229,14010,13792,13553,13290,13021,12747,12444,12145,11847,11567,11290,11035,10792,10573,10304,9998,9674,9362,9079,8840,8622,8468,8289,8167,8075,7991,7923,7867,7805,7726,7579,7411,7264,7121,6992,6896,6820,6743,6699,6661,6643,6640,6617,6621,6622,6626,6464,6167,5749,5122,22.1,22.1,22.8,1568835,0.2,12.9,12.0,5.0,445,-1.00,-1.00,58.9321,-19.507325,0.000620,,,,,97 +SATSLF0720,2024246,20.010643,3.87,0.0542,0.1029,0.0182,0.00,16145,655,1,707,713,713,721,725,723,725,718,731,726,739,747,772,872,1197,1917,3069,4433,5687,6627,7282,7757,8171,8620,9144,9770,10520,11393,12385,13506,14685,15845,16947,17901,18624,19060,19195,19031,18642,18097,17515,16970,16484,16133,15906,15820,15901,16147,16553,17145,17892,18797,19872,21085,22411,23856,25340,26818,28234,29491,30503,31253,31656,31645,31334,30685,29769,28693,27493,26302,25139,24059,23057,22195,21458,20867,20378,19993,19709,19550,19455,19479,19574,19749,20011,20365,20800,21341,21884,22517,23189,23821,24429,25025,25489,25869,26128,26176,26064,25793,25298,24650,23922,23136,22266,21381,20539,19773,19063,18413,17849,17374,16969,16642,16400,16223,16122,16077,16119,16197,16362,16592,16884,17242,17674,18156,18732,19344,19972,20654,21383,22137,22886,23597,24296,24957,25554,26121,26549,26866,27109,27213,27230,27113,26910,26589,26176,25715,25137,24536,23913,23260,22595,21937,21292,20678,20075,19527,19034,18576,18165,17801,17466,17178,16908,16676,16469,16266,16065,15866,15689,15528,15376,15278,15172,15104,15006,14983,14958,14951,14967,15002,15005,15063,15101,15123,15162,15209,15225,15239,15245,15244,15276,15301,15299,15293,15253,15194,15122,15068,14970,14878,14725,14578,14388,14208,13990,13779,13550,13280,13024,12737,12448,12158,11860,11569,11292,11048,10817,10578,10308,10009,9675,9369,9079,8830,8631,8467,8293,8175,8082,8007,7924,7869,7794,7715,7570,7399,7246,7118,6999,6908,6850,6774,6709,6672,6651,6645,6629,6621,6637,6631,6471,6179,5757,5121,22.1,22.1,22.8,1568836,0.0,12.9,11.9,5.0,453,-1.00,-1.00,59.2742,-19.661761,0.000581,,,,,184 +SATSLF0720,2024246,20.010898,3.93,0.0551,0.1023,0.0176,0.00,16162,655,1,703,707,716,717,713,712,713,726,718,729,728,748,781,905,1209,1931,3082,4443,5690,6626,7277,7772,8186,8639,9155,9795,10534,11417,12404,13529,14707,15862,16973,17932,18657,19092,19213,19045,18666,18131,17542,16981,16505,16146,15933,15853,15927,16175,16579,17175,17917,18816,19892,21107,22441,23883,25362,26841,28267,29506,30519,31281,31687,31696,31372,30725,29800,28734,27506,26317,25154,24082,23085,22219,21491,20886,20400,20029,19729,19569,19483,19474,19601,19766,20041,20389,20816,21332,21916,22539,23213,23861,24471,25049,25525,25890,26140,26193,26076,25806,25317,24679,23963,23174,22281,21400,20561,19789,19073,18419,17853,17403,16993,16674,16434,16249,16146,16099,16119,16210,16369,16594,16892,17251,17686,18190,18739,19363,20001,20683,21415,22146,22893,23613,24311,24985,25568,26135,26579,26891,27121,27232,27237,27154,26926,26613,26217,25713,25153,24567,23921,23282,22629,21961,21330,20706,20109,19561,19056,18592,18180,17815,17486,17197,16928,16689,16483,16275,16087,15899,15697,15529,15396,15286,15171,15119,15047,14997,14980,14969,14968,14993,15018,15058,15097,15136,15181,15238,15249,15261,15261,15273,15286,15310,15305,15303,15269,15198,15142,15069,14981,14896,14749,14599,14429,14226,14018,13800,13545,13295,13028,12759,12461,12187,11885,11577,11320,11058,10822,10594,10321,10021,9683,9390,9100,8855,8645,8473,8308,8177,8085,7985,7943,7896,7815,7728,7584,7401,7263,7137,7013,6923,6846,6760,6722,6688,6660,6629,6631,6605,6628,6632,6493,6177,5760,5146,22.1,22.1,22.8,1568837,0.2,12.8,11.9,5.0,449,-1.00,-1.00,58.7700,-19.470223,0.000535,,,,,224 +SATSLF0720,2024246,20.011153,4.07,0.0571,0.1040,0.0187,0.00,16117,655,1,705,705,701,708,710,714,728,729,730,739,746,738,781,881,1203,1905,3073,4426,5662,6615,7267,7741,8173,8613,9121,9758,10501,11361,12345,13459,14659,15806,16913,17864,18584,19017,19144,18963,18605,18057,17467,16915,16457,16090,15871,15794,15881,16128,16528,17113,17860,18761,19835,21048,22377,23803,25283,26756,28168,29420,30423,31173,31581,31590,31264,30612,29707,28648,27409,26234,25083,23994,23021,22149,21427,20833,20338,19944,19661,19504,19408,19433,19516,19716,19985,20339,20761,21290,21853,22481,23147,23799,24393,24985,25457,25806,26074,26125,25997,25719,25250,24602,23893,23090,22224,21365,20500,19739,19030,18373,17818,17355,16930,16617,16372,16189,16105,16050,16075,16176,16337,16554,16849,17214,17650,18131,18706,19301,19937,20651,21360,22109,22852,23549,24266,24909,25501,26058,26482,26809,27044,27173,27174,27088,26873,26551,26147,25651,25070,24486,23862,23206,22551,21888,21265,20656,20062,19521,19021,18557,18148,17773,17430,17141,16868,16635,16433,16223,16040,15851,15676,15516,15374,15249,15155,15069,15005,14980,14941,14926,14939,14967,14985,15035,15068,15097,15141,15203,15210,15226,15234,15251,15250,15288,15281,15274,15234,15163,15106,15047,14941,14839,14711,14558,14377,14197,13986,13765,13544,13269,13003,12725,12431,12145,11838,11549,11292,11025,10791,10553,10304,10004,9669,9359,9083,8835,8632,8458,8309,8161,8067,7991,7921,7876,7789,7707,7581,7396,7236,7127,7001,6908,6825,6759,6709,6675,6654,6628,6625,6601,6619,6618,6469,6170,5742,5132,22.1,22.1,22.8,1568838,0.1,12.9,12.0,5.0,454,-1.00,-1.00,58.6102,-19.343963,0.000525,,,,,132 +SATSLF0720,2024246,20.011410,4.02,0.0563,0.1041,0.0192,0.00,16107,655,1,715,710,727,709,715,722,706,711,738,730,748,738,773,885,1204,1901,3049,4427,5656,6602,7234,7740,8160,8593,9122,9741,10482,11354,12357,13461,14626,15796,16904,17853,18580,19002,19141,18965,18572,18053,17473,16899,16439,16077,15854,15787,15872,16121,16521,17093,17847,18741,19808,21025,22341,23765,25245,26738,28157,29408,30401,31150,31537,31552,31228,30577,29670,28608,27385,26212,25058,23980,22981,22140,21413,20800,20320,19937,19646,19495,19402,19415,19506,19704,19963,20307,20738,21273,21838,22461,23122,23779,24388,24968,25451,25801,26064,26097,25992,25716,25213,24599,23863,23066,22213,21328,20489,19714,19017,18359,17803,17329,16911,16624,16358,16195,16101,16052,16085,16161,16328,16549,16827,17209,17632,18115,18696,19284,19927,20616,21344,22085,22829,23539,24261,24905,25489,26057,26485,26812,27045,27152,27169,27077,26852,26528,26127,25637,25088,24488,23842,23195,22539,21884,21253,20642,20054,19488,19015,18529,18132,17764,17417,17137,16873,16646,16418,16227,16048,15853,15658,15497,15368,15238,15142,15070,14995,14960,14941,14938,14944,14962,14977,15025,15066,15099,15144,15203,15217,15240,15245,15238,15245,15274,15277,15262,15212,15145,15089,15032,14949,14848,14714,14549,14386,14194,13988,13749,13525,13271,13012,12715,12418,12144,11835,11563,11284,11034,10808,10553,10292,9991,9682,9342,9071,8821,8619,8433,8279,8160,8061,7981,7905,7850,7809,7709,7562,7397,7240,7117,6989,6903,6805,6739,6685,6656,6637,6629,6626,6610,6634,6621,6463,6155,5729,5115,22.1,22.1,22.8,1568839,0.1,12.9,11.9,5.0,443,-1.00,-1.00,58.6339,-19.334073,0.000516,,,,,111 +SATSLF0720,2024246,20.011664,3.97,0.0556,0.1047,0.0195,0.00,16088,655,1,712,697,703,710,717,706,730,709,726,726,723,733,770,880,1191,1898,3061,4411,5653,6593,7241,7721,8148,8592,9109,9723,10457,11333,12337,13428,14611,15781,16872,17841,18549,18977,19111,18925,18550,18007,17421,16867,16418,16052,15837,15769,15837,16097,16473,17066,17802,18708,19781,20994,22309,23757,25242,26706,28133,29382,30361,31107,31499,31508,31202,30547,29638,28590,27356,26186,25026,23963,22961,22121,21369,20758,20278,19896,19612,19464,19379,19381,19483,19698,19943,20295,20733,21234,21815,22422,23098,23738,24346,24933,25411,25773,26036,26087,25962,25675,25201,24576,23846,23049,22179,21307,20482,19705,18997,18341,17793,17316,16905,16595,16338,16182,16065,16033,16053,16150,16313,16519,16821,17192,17603,18084,18669,19272,19905,20589,21328,22074,22816,23525,24224,24866,25463,26037,26453,26773,27015,27107,27136,27040,26838,26504,26116,25627,25068,24475,23837,23190,22530,21857,21228,20608,20032,19468,18985,18515,18117,17754,17410,17129,16853,16625,16404,16210,16013,15822,15637,15473,15345,15221,15125,15044,14970,14937,14914,14908,14939,14952,14972,14999,15047,15072,15128,15195,15196,15205,15220,15230,15248,15260,15268,15243,15195,15133,15080,15005,14920,14817,14688,14540,14377,14184,13966,13750,13511,13238,12983,12693,12412,12113,11827,11531,11271,11014,10775,10554,10285,9979,9664,9364,9065,8822,8617,8440,8277,8138,8043,7969,7906,7856,7797,7700,7560,7379,7234,7088,6977,6884,6811,6745,6677,6653,6629,6599,6604,6609,6621,6611,6469,6149,5723,5120,22.1,22.1,22.9,1568840,0.0,12.9,12.0,5.0,449,-1.00,-1.00,59.3206,-19.600930,0.000600,,,,,123 +SATSLF0720,2024246,20.011917,4.02,0.0562,0.1044,0.0189,0.00,16105,655,1,717,702,705,709,704,717,725,721,729,729,739,728,767,891,1200,1902,3046,4405,5675,6596,7248,7728,8165,8613,9116,9747,10481,11350,12347,13452,14621,15782,16881,17843,18564,19006,19133,18956,18583,18049,17460,16882,16432,16071,15857,15781,15863,16115,16540,17105,17841,18740,19794,21012,22336,23778,25269,26750,28153,29398,30396,31143,31555,31540,31236,30578,29675,28613,27390,26217,25058,23986,22982,22144,21405,20805,20309,19938,19645,19486,19392,19402,19493,19693,19957,20316,20740,21261,21826,22459,23131,23766,24375,24938,25426,25792,26064,26104,25987,25719,25241,24599,23882,23073,22203,21352,20509,19712,19024,18366,17801,17325,16916,16603,16353,16194,16094,16040,16066,16167,16320,16536,16842,17197,17623,18126,18694,19313,19959,20629,21354,22085,22826,23546,24234,24899,25485,26054,26477,26792,27044,27162,27165,27078,26873,26528,26122,25643,25075,24483,23838,23200,22548,21873,21259,20637,20041,19496,19009,18518,18125,17749,17431,17146,16881,16634,16418,16219,16029,15833,15656,15494,15354,15240,15144,15068,14996,14951,14939,14940,14944,14979,15008,15033,15077,15095,15151,15193,15202,15221,15212,15233,15242,15261,15277,15278,15232,15162,15100,15035,14931,14840,14689,14546,14377,14188,14001,13777,13537,13277,13008,12730,12436,12145,11846,11554,11286,11014,10779,10544,10285,9980,9671,9361,9065,8832,8619,8445,8292,8149,8059,7996,7908,7866,7812,7722,7569,7389,7228,7111,6991,6901,6802,6744,6695,6649,6619,6610,6608,6605,6625,6634,6473,6168,5738,5115,22.1,22.2,22.9,1568841,0.2,12.8,12.0,5.0,448,-1.00,-1.00,58.8262,-19.416075,0.000543,,,,,113 +SATSLF0720,2024246,20.012173,4.11,0.0576,0.1044,0.0194,0.00,16108,655,1,712,708,716,705,743,741,735,742,736,727,729,731,764,876,1190,1911,3072,4434,5668,6600,7254,7745,8153,8611,9125,9750,10489,11353,12349,13465,14624,15811,16904,17847,18585,19014,19143,18953,18571,18034,17449,16884,16435,16085,15854,15786,15877,16129,16525,17107,17841,18754,19813,21009,22339,23790,25273,26738,28164,29415,30405,31161,31556,31554,31229,30589,29664,28625,27383,26210,25059,23976,22980,22139,21397,20797,20308,19922,19636,19485,19392,19404,19513,19696,19972,20301,20746,21272,21825,22459,23104,23755,24378,24954,25424,25802,26064,26115,25992,25705,25225,24597,23873,23090,22220,21352,20492,19725,19031,18381,17829,17345,16938,16609,16347,16185,16105,16053,16087,16178,16334,16558,16842,17213,17644,18130,18697,19299,19939,20629,21349,22084,22819,23531,24234,24892,25461,26045,26461,26801,27043,27160,27157,27079,26856,26542,26145,25657,25077,24481,23861,23209,22538,21879,21235,20640,20037,19482,19002,18536,18130,17764,17432,17142,16864,16621,16427,16217,16016,15851,15662,15501,15358,15248,15157,15060,15003,14950,14931,14939,14929,14960,14973,15019,15070,15093,15144,15195,15229,15221,15242,15247,15254,15282,15271,15259,15206,15141,15083,15015,14934,14851,14712,14562,14385,14199,13975,13766,13534,13278,13001,12711,12425,12136,11831,11544,11276,11038,10801,10565,10286,9989,9671,9357,9059,8824,8615,8449,8297,8162,8065,7983,7903,7871,7808,7728,7578,7403,7255,7125,7000,6901,6818,6754,6694,6663,6653,6633,6614,6601,6624,6633,6470,6164,5730,5113,22.1,22.2,22.9,1568842,0.3,12.9,11.9,5.0,449,-1.00,-1.00,58.4844,-19.276238,0.000572,,,,,169 +SATSLF0720,2024246,20.012427,4.14,0.0580,0.1054,0.0203,0.00,16069,655,1,728,720,716,728,741,734,740,725,743,726,743,737,777,889,1205,1907,3069,4421,5642,6576,7228,7709,8138,8581,9093,9721,10453,11335,12326,13420,14592,15735,16839,17800,18506,18932,19073,18896,18525,18002,17401,16855,16405,16026,15812,15748,15816,16059,16470,17046,17789,18698,19764,20985,22293,23730,25174,26653,28084,29325,30301,31042,31458,31465,31124,30499,29584,28534,27311,26148,24980,23901,22919,22065,21332,20736,20260,19872,19594,19430,19346,19350,19455,19651,19914,20265,20697,21210,21778,22397,23070,23707,24313,24891,25352,25728,25990,26043,25922,25634,25178,24529,23806,23019,22161,21289,20459,19689,18985,18322,17767,17299,16915,16588,16343,16151,16051,16013,16028,16120,16293,16509,16800,17152,17595,18073,18637,19254,19885,20574,21297,22029,22774,23484,24194,24841,25433,25991,26421,26738,26976,27085,27097,27002,26791,26457,26070,25568,25003,24441,23800,23145,22499,21842,21218,20594,20004,19442,18961,18493,18092,17718,17407,17120,16852,16601,16400,16204,16008,15810,15611,15459,15309,15207,15104,15047,14972,14931,14915,14912,14905,14934,14940,14999,15033,15062,15111,15162,15173,15192,15201,15217,15234,15242,15240,15219,15179,15113,15054,14987,14902,14814,14688,14537,14363,14179,13970,13744,13516,13237,12973,12684,12404,12106,11807,11525,11259,11000,10787,10540,10266,9953,9651,9332,9063,8816,8604,8427,8276,8141,8051,7969,7890,7848,7772,7697,7560,7392,7237,7109,6988,6894,6809,6732,6686,6654,6622,6631,6617,6603,6625,6623,6447,6147,5713,5099,22.1,22.2,22.9,1568843,0.0,12.9,11.9,5.0,450,-1.00,-1.00,58.5339,-19.242212,0.000520,,,,,210 +SATSLF0720,2024246,20.012678,4.09,0.0573,0.1054,0.0194,0.00,16068,655,1,709,701,702,711,718,714,732,734,737,753,741,748,777,887,1196,1899,3045,4395,5644,6578,7221,7706,8146,8586,9104,9722,10461,11313,12309,13408,14580,15735,16841,17793,18499,18943,19088,18889,18512,17985,17400,16849,16398,16042,15812,15746,15814,16065,16469,17057,17789,18700,19757,20973,22290,23713,25179,26645,28057,29312,30310,31061,31449,31472,31141,30497,29591,28541,27313,26137,24984,23910,22922,22058,21339,20737,20254,19879,19593,19453,19349,19377,19465,19655,19929,20260,20701,21201,21761,22387,23058,23701,24320,24890,25346,25725,25990,26034,25929,25653,25166,24541,23818,23020,22151,21282,20439,19657,18944,18307,17762,17296,16905,16589,16345,16161,16059,16009,16039,16122,16278,16502,16789,17160,17606,18090,18650,19255,19880,20574,21288,22021,22754,23489,24181,24845,25428,26013,26429,26747,26993,27086,27092,27016,26792,26464,26062,25575,25029,24433,23784,23156,22502,21837,21197,20595,19990,19450,18964,18482,18089,17726,17401,17116,16841,16613,16397,16194,16005,15814,15616,15451,15321,15212,15120,15050,14977,14922,14903,14893,14920,14926,14947,14988,15034,15050,15097,15165,15173,15197,15205,15202,15235,15234,15249,15238,15190,15136,15085,15005,14913,14817,14693,14528,14357,14170,13964,13741,13496,13234,12977,12695,12410,12133,11824,11543,11272,11019,10792,10541,10275,9970,9653,9333,9059,8806,8603,8440,8290,8145,8068,7986,7918,7852,7785,7684,7556,7386,7217,7096,6995,6877,6808,6743,6695,6658,6634,6621,6593,6587,6608,6594,6451,6150,5731,5104,22.1,22.2,23.0,1568843,0.2,12.8,11.9,5.0,452,-1.00,-1.00,58.7250,-19.321570,0.000501,,,,,80 +SATSLF0720,2024246,20.012935,4.14,0.0579,0.1062,0.0204,0.00,16048,655,1,709,703,698,697,702,698,723,725,720,731,738,734,779,883,1205,1921,3038,4403,5629,6549,7209,7678,8101,8548,9079,9690,10421,11287,12263,13383,14540,15686,16778,17743,18450,18896,19025,18838,18472,17942,17344,16803,16341,15984,15767,15704,15797,16026,16435,17006,17757,18646,19699,20918,22226,23666,25128,26611,28017,29250,30250,31000,31402,31386,31066,30430,29522,28470,27256,26081,24949,23873,22895,22029,21307,20699,20217,19827,19553,19404,19311,19325,19437,19625,19879,20225,20659,21164,21733,22337,23029,23671,24292,24860,25338,25698,25952,25994,25875,25610,25148,24509,23786,23010,22137,21249,20427,19661,18944,18302,17753,17293,16887,16565,16314,16147,16048,15991,16016,16110,16273,16501,16781,17150,17585,18071,18645,19250,19864,20541,21278,22010,22747,23447,24157,24826,25413,25969,26389,26726,26966,27076,27089,26985,26770,26432,26051,25565,25010,24416,23777,23129,22479,21814,21174,20579,19977,19434,18960,18474,18089,17708,17397,17101,16833,16585,16391,16181,15998,15829,15628,15453,15332,15197,15095,15030,14953,14908,14890,14897,14914,14929,14947,14984,15029,15064,15105,15163,15169,15184,15202,15197,15223,15229,15249,15238,15187,15115,15049,14983,14915,14793,14679,14520,14353,14157,13954,13737,13504,13241,12978,12688,12401,12101,11802,11507,11259,11002,10775,10546,10273,9973,9649,9337,9050,8821,8599,8426,8257,8135,8057,7970,7889,7835,7771,7699,7552,7378,7220,7106,6977,6892,6811,6733,6683,6645,6623,6615,6609,6597,6605,6597,6446,6147,5730,5113,22.1,22.2,23.0,1568844,0.1,12.9,12.0,5.0,449,-1.00,-1.00,59.0016,-19.397199,0.000561,,,,,251 +SATSLF0720,2024246,20.013189,4.05,0.0568,0.1062,0.0206,0.00,16046,655,1,687,717,718,727,729,731,729,727,739,747,746,746,773,898,1190,1903,3042,4397,5635,6562,7213,7694,8123,8563,9090,9717,10436,11287,12289,13379,14557,15707,16801,17765,18485,18913,19041,18867,18496,17960,17383,16820,16362,15989,15770,15698,15804,16041,16439,17020,17765,18655,19723,20941,22229,23671,25146,26625,28032,29280,30242,31003,31393,31406,31085,30449,29537,28477,27260,26094,24937,23866,22876,22026,21309,20696,20219,19846,19568,19406,19314,19341,19437,19616,19867,20227,20645,21175,21737,22357,23021,23661,24284,24864,25336,25691,25949,25997,25892,25600,25132,24501,23778,22996,22131,21264,20429,19637,18943,18299,17733,17271,16859,16563,16296,16127,16047,15996,16006,16100,16257,16473,16768,17143,17562,18059,18632,19242,19865,20563,21274,22009,22747,23463,24162,24805,25401,25970,26384,26702,26927,27047,27060,26970,26768,26429,26059,25558,24989,24403,23770,23116,22475,21801,21170,20566,19973,19421,18920,18467,18074,17690,17363,17074,16823,16569,16382,16180,15993,15786,15611,15445,15303,15207,15097,15028,14945,14915,14892,14903,14902,14923,14933,14976,15019,15049,15111,15153,15186,15189,15197,15190,15218,15224,15222,15225,15168,15109,15043,14973,14877,14811,14663,14506,14332,14151,13943,13737,13501,13241,12964,12694,12394,12096,11801,11506,11248,11001,10761,10518,10247,9957,9637,9341,9044,8812,8597,8434,8264,8145,8037,7981,7892,7847,7776,7703,7546,7372,7222,7086,6965,6871,6790,6725,6675,6637,6629,6613,6592,6593,6604,6596,6445,6143,5718,5096,22.1,22.2,23.0,1568845,0.2,12.9,12.0,5.0,447,-1.00,-1.00,58.9687,-19.390339,0.000569,,,,,254 +SATSLF0720,2024246,20.013441,4.01,0.0561,0.1060,0.0202,0.00,16055,655,1,702,705,704,723,725,729,729,713,731,733,728,744,774,895,1205,1899,3059,4404,5640,6569,7220,7694,8123,8579,9089,9708,10461,11316,12317,13412,14581,15727,16840,17773,18497,18937,19068,18894,18518,17986,17389,16833,16389,16018,15801,15709,15814,16056,16445,17031,17768,18673,19727,20950,22273,23701,25175,26656,28050,29295,30296,31048,31436,31437,31107,30481,29549,28503,27282,26103,24961,23901,22889,22039,21315,20709,20230,19823,19563,19400,19321,19344,19457,19642,19898,20232,20672,21192,21760,22362,23027,23682,24274,24855,25344,25709,25973,26029,25906,25629,25134,24503,23803,23002,22144,21257,20434,19661,18957,18302,17763,17286,16882,16561,16313,16142,16038,15995,16023,16105,16268,16498,16792,17153,17591,18074,18635,19240,19866,20555,21285,22017,22757,23458,24161,24825,25417,25970,26392,26724,26947,27063,27056,26971,26769,26450,26045,25549,24996,24397,23769,23110,22482,21801,21169,20567,19989,19418,18939,18482,18084,17713,17381,17086,16838,16581,16384,16166,15972,15780,15612,15452,15317,15194,15105,15025,14957,14913,14904,14902,14909,14924,14951,15005,15034,15047,15095,15145,15162,15174,15189,15192,15213,15248,15242,15243,15169,15115,15058,14985,14901,14795,14661,14524,14349,14163,13943,13729,13498,13233,12972,12697,12392,12119,11817,11524,11258,11005,10773,10530,10268,9961,9636,9328,9051,8806,8599,8444,8277,8163,8055,7966,7898,7841,7777,7687,7560,7381,7220,7096,6977,6876,6790,6744,6686,6641,6631,6628,6601,6584,6615,6613,6461,6150,5726,5109,22.1,22.3,23.0,1568846,0.0,12.8,12.0,5.0,452,-1.00,-1.00,58.9537,-19.400374,0.000640,,,,,87 +SATSLF0720,2024246,20.013696,4.14,0.0581,0.1077,0.0215,0.00,16009,655,1,724,714,722,723,730,723,737,731,736,732,735,745,787,891,1195,1918,3063,4395,5623,6551,7197,7664,8101,8536,9050,9666,10407,11269,12256,13363,14525,15662,16768,17710,18435,18853,18976,18802,18435,17905,17320,16765,16317,15942,15732,15661,15750,15992,16417,16973,17719,18601,19653,20857,22167,23597,25061,26535,27944,29189,30176,30922,31306,31314,30986,30349,29431,28399,27172,26018,24861,23808,22807,21971,21242,20646,20168,19785,19506,19346,19247,19266,19368,19568,19817,20173,20608,21120,21681,22301,22973,23601,24205,24788,25259,25629,25895,25949,25830,25549,25073,24444,23736,22938,22077,21217,20376,19605,18909,18263,17709,17234,16827,16513,16277,16120,15993,15979,15981,16075,16242,16442,16749,17112,17542,18014,18589,19197,19830,20509,21231,21963,22691,23399,24100,24762,25333,25898,26321,26643,26887,26997,27003,26913,26698,26365,25987,25469,24929,24346,23713,23073,22424,21761,21130,20529,19941,19378,18901,18439,18021,17658,17340,17042,16786,16553,16350,16151,15960,15760,15591,15420,15272,15169,15067,14988,14925,14888,14854,14857,14869,14881,14917,14940,14989,15021,15080,15129,15149,15156,15158,15175,15189,15194,15207,15188,15137,15085,15013,14954,14868,14772,14634,14485,14325,14124,13910,13696,13440,13199,12930,12646,12365,12073,11761,11511,11243,10994,10765,10502,10239,9947,9616,9317,9032,8800,8573,8407,8251,8120,8020,7953,7878,7824,7771,7685,7542,7370,7218,7082,6965,6871,6793,6721,6658,6627,6594,6599,6580,6578,6594,6598,6453,6155,5730,5109,22.1,22.3,23.1,1568847,0.1,12.9,11.9,5.0,448,-1.00,-1.00,58.8097,-19.268014,0.000539,,,,,231 +SATSLF0720,2024246,20.013949,4.12,0.0578,0.1058,0.0198,0.00,16059,655,1,716,730,732,737,744,736,734,737,744,738,754,759,777,895,1215,1912,3056,4411,5640,6573,7229,7700,8121,8576,9088,9710,10464,11324,12315,13415,14569,15731,16824,17784,18494,18934,19058,18881,18498,17979,17402,16840,16390,16017,15786,15723,15791,16055,16462,17042,17788,18692,19736,20946,22257,23688,25160,26632,28045,29301,30273,31020,31417,31419,31101,30450,29542,28509,27281,26109,24955,23895,22894,22048,21328,20710,20238,19853,19577,19425,19328,19333,19449,19631,19888,20244,20674,21184,21730,22364,23040,23697,24306,24875,25341,25719,25961,26009,25896,25613,25145,24518,23818,23014,22149,21293,20429,19667,18962,18334,17761,17291,16879,16569,16326,16140,16042,15992,16017,16117,16273,16491,16795,17161,17592,18085,18646,19254,19869,20562,21273,22025,22756,23473,24169,24840,25422,25986,26401,26717,26969,27065,27081,26982,26773,26445,26057,25552,24997,24410,23780,23142,22469,21828,21189,20604,20002,19444,18953,18485,18072,17701,17375,17086,16823,16586,16387,16189,15994,15806,15608,15458,15313,15194,15095,15016,14945,14909,14906,14899,14905,14938,14932,14983,15017,15060,15118,15175,15181,15205,15186,15197,15230,15253,15245,15251,15177,15123,15069,14997,14896,14811,14661,14521,14363,14162,13953,13738,13497,13243,12973,12705,12404,12106,11816,11529,11257,11009,10766,10526,10266,9968,9640,9332,9061,8820,8616,8433,8270,8147,8061,7967,7906,7849,7789,7705,7556,7383,7234,7096,6971,6885,6803,6745,6692,6646,6639,6619,6614,6597,6624,6618,6454,6153,5719,5101,22.1,22.3,23.1,1568848,0.2,12.9,12.0,5.0,449,-1.00,-1.00,58.4335,-19.178842,0.000516,,,,,4 +SATSLF0720,2024246,20.014200,4.02,0.0563,0.1075,0.0216,0.00,16017,655,1,714,717,731,718,721,726,735,732,737,741,738,741,780,883,1199,1913,3049,4406,5652,6581,7221,7689,8109,8561,9088,9685,10428,11295,12277,13366,14522,15689,16785,17728,18450,18884,19024,18832,18464,17925,17358,16793,16325,15970,15741,15678,15761,16009,16409,16999,17729,18618,19688,20885,22197,23621,25084,26564,27968,29210,30196,30945,31319,31328,31016,30358,29466,28426,27201,26034,24873,23825,22829,21992,21237,20649,20174,19770,19511,19362,19259,19283,19392,19570,19841,20170,20603,21125,21685,22315,22977,23616,24229,24797,25270,25625,25891,25958,25829,25557,25085,24449,23748,22946,22082,21236,20370,19614,18910,18269,17706,17228,16830,16533,16277,16106,16001,15949,15977,16066,16245,16453,16744,17122,17553,18024,18595,19195,19821,20512,21220,21971,22703,23408,24109,24765,25352,25900,26317,26658,26886,26992,27018,26920,26707,26381,25988,25501,24934,24354,23700,23065,22429,21772,21138,20538,19962,19394,18919,18437,18038,17671,17351,17052,16795,16554,16346,16153,15976,15784,15570,15416,15288,15166,15077,14978,14919,14877,14864,14873,14877,14900,14919,14962,15004,15025,15057,15115,15135,15146,15162,15169,15179,15207,15205,15177,15133,15077,15011,14957,14866,14785,14660,14505,14328,14155,13930,13713,13483,13221,12951,12673,12369,12083,11775,11505,11221,10971,10753,10500,10239,9949,9636,9325,9026,8810,8594,8407,8246,8118,8029,7952,7882,7843,7763,7683,7529,7365,7213,7084,6959,6883,6793,6728,6680,6636,6625,6617,6590,6593,6619,6597,6453,6147,5715,5103,22.2,22.3,23.1,1568849,0.0,12.8,11.9,5.0,451,-1.00,-1.00,58.8825,-19.312863,0.000551,,,,,2 +SATSLF0720,2024246,20.014456,4.09,0.0573,0.1075,0.0216,0.00,15996,655,1,724,713,726,715,721,725,726,713,737,736,733,741,777,885,1198,1893,3047,4387,5617,6548,7185,7673,8090,8534,9045,9659,10385,11263,12250,13341,14516,15654,16758,17699,18422,18852,18967,18791,18417,17897,17300,16749,16304,15933,15707,15651,15734,15981,16385,16971,17718,18613,19650,20848,22146,23584,25052,26513,27913,29165,30165,30896,31300,31293,30968,30331,29435,28393,27177,25993,24848,23778,22792,21960,21226,20626,20147,19753,19470,19343,19258,19256,19365,19541,19805,20142,20588,21113,21670,22284,22940,23589,24200,24772,25239,25611,25879,25920,25797,25531,25049,24429,23732,22933,22064,21205,20349,19586,18898,18245,17682,17222,16813,16512,16261,16087,15979,15937,15968,16055,16211,16434,16727,17083,17511,17998,18569,19179,19805,20491,21201,21942,22679,23399,24085,24724,25305,25868,26295,26618,26875,26968,26989,26886,26679,26357,25954,25469,24909,24312,23680,23027,22393,21729,21100,20494,19911,19369,18874,18417,18026,17636,17332,17030,16756,16526,16326,16132,15949,15762,15574,15406,15259,15155,15063,14984,14906,14871,14855,14853,14854,14869,14896,14925,14973,15001,15045,15097,15125,15141,15141,15150,15173,15191,15193,15195,15140,15091,15012,14935,14860,14760,14622,14468,14306,14129,13912,13709,13453,13201,12948,12662,12359,12070,11757,11483,11228,10973,10745,10515,10250,9942,9627,9307,9031,8785,8557,8391,8249,8113,8025,7946,7876,7816,7755,7668,7529,7354,7194,7076,6955,6871,6786,6721,6660,6619,6597,6599,6581,6581,6584,6595,6437,6133,5703,5089,22.1,22.4,23.1,1568850,0.1,12.9,12.0,5.0,441,-1.00,-1.00,59.1946,-19.419857,0.000562,,,,,179 +SATSDF0720,2024246,20.259138,0.00,0.0000,0.0000,0.0000,0.00,658,0,1,651,648,638,645,634,652,637,619,625,630,633,610,621,625,631,633,640,647,645,641,647,648,663,660,657,651,665,666,663,658,667,665,659,665,656,655,660,663,665,675,666,679,677,667,669,653,651,657,669,669,676,660,659,674,664,664,656,667,662,669,657,667,657,671,666,657,653,656,656,672,661,664,664,658,651,656,657,664,662,679,673,667,678,658,663,655,661,666,661,657,667,680,665,658,654,663,662,662,665,665,650,668,660,664,665,660,660,661,663,650,669,660,669,654,658,661,656,673,663,665,651,663,654,672,668,665,662,661,661,659,661,660,645,661,653,667,651,666,659,661,664,657,656,659,662,657,662,664,653,666,653,659,657,654,658,660,650,656,655,661,657,660,654,656,649,653,649,659,661,657,663,652,647,647,658,650,647,648,649,667,664,653,666,664,660,669,659,659,654,656,661,654,659,653,648,652,663,658,657,643,653,657,665,674,670,670,656,649,647,641,640,656,655,655,659,655,667,660,658,651,670,647,667,661,657,653,647,651,652,637,647,651,649,667,679,660,667,656,667,674,668,679,665,669,663,647,649,651,659,654,663,658,658,658,646,483,0.0,0.0,0.0,1568849,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,192 +SATSLF0720,2024246,20.259693,3.81,0.0533,0.1015,0.0178,0.00,16191,658,1,694,697,713,694,713,698,705,708,714,716,713,733,775,877,1204,1901,3054,4429,5683,6631,7289,7765,8221,8667,9192,9814,10554,11431,12420,13539,14731,15905,17009,17984,18709,19159,19286,19101,18721,18172,17575,17005,16545,16173,15950,15882,15966,16225,16617,17227,17957,18877,19940,21166,22494,23933,25425,26916,28344,29601,30597,31357,31764,31754,31440,30793,29869,28806,27585,26393,25216,24148,23136,22283,21536,20926,20450,20058,19781,19621,19517,19532,19640,19837,20085,20439,20873,21411,21981,22586,23261,23906,24521,25091,25579,25941,26215,26260,26136,25856,25379,24742,24005,23223,22326,21460,20600,19826,19117,18462,17897,17427,17016,16699,16453,16264,16151,16113,16128,16234,16396,16634,16929,17296,17728,18220,18791,19402,20033,20727,21460,22213,22946,23656,24352,25021,25603,26184,26617,26934,27185,27297,27309,27214,27003,26664,26270,25781,25208,24613,23979,23333,22663,22009,21378,20763,20153,19598,19092,18615,18198,17834,17509,17209,16949,16718,16494,16299,16114,15927,15725,15566,15426,15306,15193,15141,15061,15009,14995,14996,15000,15045,15052,15091,15122,15158,15207,15261,15270,15277,15293,15303,15308,15347,15336,15322,15280,15206,15138,15074,14996,14897,14765,14612,14434,14229,14027,13815,13573,13310,13047,12775,12486,12195,11888,11592,11317,11070,10820,10589,10333,10025,9698,9378,9104,8865,8645,8484,8321,8192,8077,8007,7943,7882,7815,7738,7591,7406,7245,7106,7007,6897,6824,6757,6711,6668,6672,6653,6634,6629,6645,6635,6472,6171,5746,5123,22.1,22.1,22.6,1568850,0.0,12.9,11.9,5.0,566,-1.00,-1.00,59.1415,-19.669412,0.000590,,,,,74 +SATSLF0720,2024246,20.259875,3.80,0.0533,0.1020,0.0179,0.00,16179,658,1,713,709,708,712,713,729,723,721,728,727,743,742,783,874,1194,1912,3069,4438,5694,6635,7301,7776,8203,8665,9191,9813,10565,11441,12457,13561,14747,15910,17024,17977,18707,19152,19283,19094,18715,18183,17589,17025,16557,16188,15961,15890,15973,16213,16613,17197,17935,18871,19947,21165,22493,23941,25414,26913,28331,29571,30587,31337,31719,31749,31430,30777,29864,28805,27564,26387,25211,24141,23122,22265,21541,20911,20431,20027,19752,19592,19499,19521,19622,19813,20092,20434,20869,21378,21941,22571,23234,23878,24489,25089,25556,25920,26187,26244,26106,25829,25349,24720,23982,23174,22305,21438,20568,19811,19101,18441,17890,17405,16995,16676,16424,16242,16155,16115,16127,16218,16384,16605,16902,17275,17716,18197,18763,19371,20023,20706,21433,22177,22909,23624,24325,25006,25593,26162,26589,26908,27155,27256,27270,27183,26978,26637,26222,25746,25152,24572,23929,23303,22637,21954,21333,20729,20119,19563,19076,18603,18193,17831,17501,17200,16938,16693,16477,16291,16089,15891,15707,15562,15418,15298,15186,15117,15048,15009,14970,14979,14985,15008,15018,15085,15106,15129,15182,15229,15250,15253,15261,15262,15282,15320,15304,15298,15255,15210,15137,15061,14966,14869,14740,14590,14420,14234,14025,13809,13564,13306,13039,12764,12476,12179,11862,11595,11318,11054,10826,10585,10322,10004,9691,9368,9092,8846,8639,8471,8317,8183,8092,8014,7937,7879,7808,7733,7574,7392,7246,7133,7021,6924,6854,6786,6728,6698,6657,6651,6628,6615,6641,6621,6487,6173,5747,5131,22.1,22.1,22.8,1568851,0.1,12.9,11.9,5.0,472,-1.00,-1.00,58.8342,-19.533131,0.000537,,,,,57 +SATSLF0720,2024246,20.260130,4.08,0.0571,0.1024,0.0180,0.00,16154,658,1,714,716,705,715,714,713,731,723,737,742,737,753,790,887,1206,1920,3053,4427,5668,6613,7261,7738,8166,8614,9142,9794,10537,11412,12404,13518,14693,15860,16957,17920,18646,19068,19194,19031,18648,18115,17523,16954,16508,16133,15910,15847,15921,16164,16565,17160,17901,18822,19880,21114,22441,23869,25351,26841,28259,29509,30509,31253,31659,31662,31330,30685,29783,28722,27489,26301,25138,24080,23065,22205,21469,20861,20395,20004,19731,19568,19479,19473,19585,19762,20048,20378,20807,21331,21918,22533,23191,23842,24452,25037,25513,25869,26155,26189,26081,25794,25316,24672,23945,23132,22286,21413,20562,19792,19090,18432,17868,17395,16982,16644,16398,16233,16133,16096,16109,16195,16369,16585,16889,17255,17688,18177,18756,19355,20004,20682,21416,22169,22897,23608,24309,24970,25567,26136,26557,26882,27120,27226,27242,27142,26921,26614,26217,25708,25157,24554,23914,23272,22605,21941,21314,20698,20107,19557,19065,18587,18173,17798,17467,17186,16901,16667,16477,16272,16083,15902,15712,15545,15397,15272,15185,15104,15033,14994,14969,14955,14984,15005,15026,15063,15097,15125,15189,15224,15257,15253,15266,15269,15278,15306,15307,15282,15233,15186,15132,15053,14976,14882,14733,14590,14406,14217,13995,13784,13554,13297,13028,12752,12446,12149,11874,11571,11302,11053,10824,10594,10309,10008,9676,9379,9089,8845,8637,8461,8308,8173,8082,8007,7933,7870,7805,7713,7575,7403,7245,7109,6996,6899,6843,6781,6710,6683,6656,6629,6615,6615,6625,6639,6483,6178,5753,5116,22.1,22.1,22.8,1568852,0.1,13.0,12.0,5.0,453,-1.00,-1.00,58.4100,-19.307274,0.000558,,,,,54 +SATSLF0720,2024246,20.260383,3.92,0.0549,0.1026,0.0180,0.00,16158,658,1,698,707,711,724,720,725,718,714,731,737,733,746,777,881,1197,1898,3062,4427,5669,6621,7265,7752,8182,8634,9139,9787,10529,11404,12388,13506,14693,15853,16965,17927,18649,19089,19229,19045,18662,18122,17526,16969,16505,16153,15917,15857,15934,16189,16581,17173,17904,18828,19885,21099,22422,23864,25351,26836,28261,29499,30503,31272,31669,31675,31349,30705,29796,28737,27501,26306,25143,24089,23081,22217,21480,20875,20400,20005,19730,19570,19469,19494,19593,19766,20029,20377,20821,21332,21891,22527,23193,23854,24461,25037,25511,25880,26152,26192,26070,25785,25303,24674,23949,23149,22280,21405,20553,19797,19090,18426,17857,17388,16979,16658,16409,16234,16136,16102,16113,16219,16365,16601,16896,17253,17689,18189,18752,19364,19991,20681,21414,22152,22894,23622,24316,24993,25573,26144,26558,26896,27125,27229,27230,27147,26937,26610,26219,25725,25152,24565,23915,23279,22621,21953,21307,20707,20092,19551,19052,18576,18189,17810,17498,17214,16923,16677,16466,16255,16059,15865,15688,15544,15400,15299,15189,15115,15032,15005,14973,14967,14976,14993,15022,15069,15101,15127,15191,15241,15254,15268,15266,15280,15302,15325,15323,15310,15257,15201,15134,15061,14957,14880,14744,14600,14414,14247,14016,13799,13565,13282,13031,12741,12457,12157,11866,11578,11302,11069,10830,10581,10325,10017,9691,9376,9093,8849,8633,8440,8291,8169,8083,8009,7937,7893,7837,7723,7585,7412,7251,7117,7013,6901,6824,6762,6712,6673,6656,6645,6629,6614,6641,6628,6477,6179,5750,5133,22.1,22.1,22.8,1568853,0.3,12.9,12.0,5.0,452,-1.00,-1.00,58.7069,-19.435068,0.000492,,,,,7 +SATSLF0720,2024246,20.260634,3.95,0.0553,0.1023,0.0178,0.00,16162,658,1,711,708,713,709,721,722,722,717,725,725,734,743,766,876,1192,1910,3064,4439,5684,6619,7270,7755,8167,8628,9153,9773,10525,11404,12397,13515,14683,15873,16971,17927,18651,19091,19222,19030,18670,18113,17524,16968,16512,16144,15897,15848,15925,16171,16589,17168,17924,18825,19888,21108,22423,23878,25365,26837,28288,29528,30547,31276,31687,31691,31373,30712,29786,28749,27501,26313,25154,24093,23079,22228,21501,20890,20405,20009,19725,19577,19486,19495,19595,19797,20053,20400,20840,21352,21928,22549,23210,23846,24471,25043,25520,25889,26153,26217,26089,25816,25320,24693,23963,23161,22281,21408,20562,19787,19088,18429,17872,17400,16974,16664,16406,16247,16149,16104,16135,16222,16374,16592,16887,17252,17693,18176,18762,19371,20005,20682,21401,22154,22896,23613,24324,24994,25573,26146,26576,26911,27134,27248,27259,27160,26932,26619,26203,25728,25162,24557,23939,23290,22633,21945,21323,20702,20114,19584,19061,18604,18190,17819,17479,17203,16920,16676,16469,16274,16086,15893,15714,15540,15408,15281,15194,15127,15041,14996,14978,14986,14992,14996,15027,15057,15097,15127,15189,15241,15254,15262,15282,15283,15312,15329,15321,15307,15249,15201,15138,15067,14967,14871,14758,14592,14419,14233,14013,13815,13561,13298,13029,12747,12449,12165,11861,11573,11299,11048,10810,10579,10313,10012,9689,9369,9083,8851,8630,8459,8304,8177,8080,8001,7946,7890,7824,7733,7585,7419,7253,7122,7002,6893,6825,6769,6718,6677,6654,6647,6628,6621,6640,6631,6477,6174,5742,5120,22.2,22.1,22.8,1568854,0.1,12.9,12.0,5.0,453,-1.00,-1.00,58.9538,-19.545553,0.000611,,,,,32 +SATSLF0720,2024246,20.260889,4.02,0.0564,0.1032,0.0188,0.00,16133,658,1,710,712,714,723,714,709,728,725,728,731,730,744,772,877,1186,1902,3050,4418,5679,6610,7275,7757,8170,8610,9138,9758,10509,11369,12376,13477,14653,15828,16937,17896,18612,19050,19165,19000,18610,18080,17485,16922,16476,16110,15866,15813,15894,16149,16549,17141,17869,18773,19850,21061,22385,23829,25288,26785,28215,29457,30461,31203,31625,31624,31281,30654,29716,28675,27429,26241,25111,24021,23023,22174,21448,20841,20355,19976,19682,19527,19445,19439,19536,19737,20003,20359,20789,21321,21881,22518,23168,23821,24419,24993,25469,25832,26117,26173,26043,25758,25285,24640,23912,23113,22250,21358,20531,19754,19056,18402,17842,17361,16961,16637,16384,16210,16135,16072,16093,16182,16358,16578,16872,17237,17661,18145,18717,19325,19963,20648,21369,22115,22870,23577,24286,24941,25537,26098,26519,26838,27095,27193,27222,27117,26914,26579,26170,25696,25130,24533,23889,23242,22581,21909,21291,20665,20079,19534,19053,18573,18164,17799,17466,17170,16901,16661,16454,16250,16064,15874,15690,15522,15374,15271,15163,15086,15005,14957,14968,14949,14967,14976,15000,15034,15070,15106,15149,15217,15240,15245,15265,15259,15284,15294,15284,15287,15244,15161,15105,15027,14937,14859,14714,14569,14397,14206,13999,13773,13548,13286,13022,12741,12444,12152,11848,11560,11277,11036,10790,10567,10309,10002,9680,9369,9101,8834,8636,8462,8290,8155,8071,7987,7922,7870,7801,7717,7577,7403,7245,7113,6996,6903,6810,6759,6706,6664,6652,6653,6628,6626,6644,6641,6481,6176,5741,5120,22.2,22.2,22.9,1568855,0.0,12.9,12.0,5.0,451,-1.00,-1.00,58.6873,-19.390008,0.000604,,,,,72 +SATSLF0720,2024246,20.261141,4.01,0.0561,0.1033,0.0182,0.00,16137,658,1,717,717,717,705,709,713,723,723,743,741,739,751,770,879,1197,1897,3058,4429,5668,6602,7263,7754,8181,8625,9146,9770,10517,11393,12363,13488,14672,15825,16929,17877,18606,19050,19188,18986,18620,18084,17492,16931,16471,16118,15897,15825,15892,16145,16550,17128,17861,18771,19847,21076,22397,23841,25318,26776,28221,29456,30464,31225,31617,31610,31297,30651,29721,28671,27437,26252,25092,24036,23033,22176,21445,20843,20341,19965,19688,19527,19441,19445,19541,19742,20005,20354,20802,21317,21892,22512,23177,23826,24429,25006,25497,25847,26105,26162,26058,25752,25291,24651,23918,23131,22255,21389,20538,19755,19048,18400,17844,17360,16947,16641,16376,16227,16113,16067,16099,16197,16353,16582,16866,17239,17661,18154,18724,19325,19975,20656,21380,22132,22868,23585,24301,24950,25549,26112,26522,26838,27089,27185,27223,27124,26901,26586,26185,25696,25123,24535,23885,23264,22589,21912,21285,20670,20085,19530,19037,18564,18151,17795,17457,17171,16903,16662,16471,16269,16073,15883,15688,15517,15369,15261,15168,15091,15013,14974,14988,14965,14976,15000,15021,15052,15087,15127,15174,15229,15229,15251,15255,15258,15282,15312,15314,15284,15254,15188,15125,15045,14964,14864,14721,14580,14407,14217,13995,13793,13545,13273,13027,12741,12452,12154,11863,11577,11309,11045,10811,10570,10306,10018,9690,9357,9082,8839,8647,8461,8314,8165,8067,7995,7915,7871,7814,7734,7582,7408,7254,7124,7005,6923,6834,6761,6713,6674,6646,6649,6621,6619,6633,6617,6464,6172,5744,5133,22.2,22.2,22.9,1568856,0.2,12.9,12.0,5.0,450,-1.00,-1.00,58.6629,-19.382515,0.000608,,,,,62 +SATSLF0720,2024246,20.261398,3.98,0.0558,0.1036,0.0181,0.00,16138,658,1,705,711,736,720,721,723,730,734,737,737,737,746,773,903,1212,1925,3061,4431,5671,6610,7260,7735,8177,8621,9128,9750,10492,11368,12349,13482,14666,15818,16928,17875,18601,19038,19170,18989,18609,18083,17513,16937,16486,16117,15883,15817,15893,16142,16547,17125,17888,18775,19846,21062,22386,23821,25298,26788,28202,29452,30457,31217,31601,31621,31290,30638,29728,28679,27457,26268,25114,24033,23037,22176,21436,20822,20357,19965,19678,19541,19426,19453,19549,19755,20001,20355,20797,21316,21860,22481,23163,23798,24433,25014,25488,25843,26116,26160,26042,25745,25271,24648,23936,23124,22261,21379,20540,19767,19050,18406,17850,17373,16962,16646,16393,16229,16130,16080,16104,16184,16337,16573,16864,17245,17669,18154,18731,19334,19979,20648,21389,22116,22870,23574,24291,24949,25526,26091,26526,26838,27081,27193,27218,27122,26901,26589,26187,25689,25112,24547,23885,23242,22598,21913,21289,20686,20089,19534,19036,18576,18167,17797,17460,17173,16891,16665,16462,16267,16073,15873,15670,15507,15380,15265,15174,15101,15018,14981,14951,14963,14969,15001,15032,15048,15087,15120,15177,15224,15255,15259,15268,15268,15287,15301,15291,15300,15264,15178,15131,15050,14953,14859,14731,14586,14416,14233,14025,13801,13557,13288,13041,12750,12459,12168,11851,11575,11307,11064,10802,10569,10300,10006,9694,9389,9108,8862,8642,8461,8299,8179,8076,7997,7935,7867,7815,7719,7579,7414,7261,7134,7027,6906,6831,6757,6710,6669,6645,6645,6617,6615,6643,6633,6482,6153,5742,5120,22.2,22.2,22.9,1568857,0.1,12.9,11.9,5.0,434,-1.00,-1.00,58.8361,-19.454719,0.000494,,,,,2 +SATSLF0720,2024246,20.261655,3.90,0.0547,0.1035,0.0192,0.00,16111,658,1,714,714,728,725,718,721,717,729,729,735,749,745,768,894,1186,1907,3078,4434,5681,6597,7249,7737,8146,8615,9130,9758,10494,11363,12362,13466,14643,15821,16909,17866,18584,19014,19150,18969,18577,18053,17467,16921,16448,16085,15854,15785,15868,16103,16520,17113,17847,18758,19829,21033,22343,23789,25256,26723,28158,29416,30418,31176,31573,31564,31248,30613,29689,28625,27417,26233,25057,23993,22980,22139,21412,20813,20329,19936,19649,19505,19432,19429,19528,19723,19985,20325,20755,21277,21834,22457,23121,23760,24367,24952,25421,25795,26058,26118,26009,25717,25235,24606,23876,23086,22205,21347,20492,19732,19022,18375,17794,17355,16938,16621,16370,16199,16113,16055,16074,16157,16322,16537,16843,17211,17639,18129,18700,19317,19946,20629,21345,22089,22828,23552,24242,24896,25492,26057,26477,26800,27044,27144,27165,27074,26866,26517,26140,25629,25063,24497,23846,23192,22550,21878,21252,20637,20048,19504,19009,18522,18119,17765,17448,17144,16871,16634,16426,16228,16029,15843,15653,15494,15366,15242,15148,15074,14997,14961,14940,14951,14944,14966,15001,15017,15045,15087,15130,15207,15205,15232,15230,15256,15256,15281,15281,15269,15217,15143,15092,15013,14935,14853,14701,14582,14396,14199,13994,13773,13537,13264,12997,12717,12419,12123,11832,11559,11287,11043,10796,10560,10293,9989,9662,9362,9077,8837,8614,8459,8292,8180,8061,7991,7913,7862,7797,7707,7565,7389,7233,7117,6986,6893,6813,6751,6688,6656,6640,6630,6620,6625,6622,6622,6466,6160,5735,5113,22.2,22.2,22.9,1568858,0.0,12.9,12.0,5.0,449,-1.00,-1.00,59.3305,-19.634407,0.000542,,,,,19 +SATSLF0720,2024246,20.261907,3.95,0.0554,0.1043,0.0193,0.00,16098,658,1,709,711,717,719,724,727,732,733,729,723,725,727,769,874,1203,1911,3057,4404,5657,6583,7243,7726,8143,8585,9104,9728,10473,11338,12332,13426,14621,15763,16880,17825,18564,18988,19124,18938,18555,18034,17434,16885,16436,16057,15826,15757,15828,16093,16486,17084,17835,18738,19799,21013,22328,23765,25226,26705,28128,29380,30374,31114,31511,31511,31201,30552,29645,28593,27368,26201,25032,23953,22961,22116,21370,20769,20291,19909,19626,19463,19399,19400,19499,19691,19946,20293,20737,21266,21829,22428,23105,23742,24363,24954,25417,25786,26041,26093,25982,25698,25225,24582,23878,23077,22213,21350,20498,19712,19002,18366,17796,17325,16931,16614,16345,16182,16091,16041,16077,16155,16315,16544,16828,17205,17642,18114,18696,19297,19937,20614,21338,22089,22829,23530,24237,24896,25474,26041,26480,26784,27027,27145,27149,27057,26845,26510,26108,25623,25061,24470,23831,23201,22548,21872,21243,20643,20052,19501,19014,18525,18120,17751,17425,17116,16855,16628,16433,16226,16050,15842,15675,15499,15351,15238,15144,15077,14995,14941,14935,14934,14937,14952,14978,15016,15053,15083,15132,15201,15214,15223,15230,15236,15252,15266,15262,15249,15205,15147,15091,15025,14945,14840,14710,14566,14377,14183,13984,13758,13529,13274,13000,12727,12429,12120,11824,11537,11269,11029,10782,10547,10290,9988,9674,9349,9071,8824,8608,8441,8280,8150,8047,7971,7913,7867,7805,7717,7579,7397,7243,7115,7002,6901,6816,6743,6695,6663,6642,6622,6624,6614,6624,6632,6467,6151,5723,5119,22.2,22.2,23.0,1568859,0.2,12.9,12.0,5.0,447,-1.00,-1.00,59.2179,-19.561003,0.000582,,,,,181 +SATSLF0720,2024246,20.262163,4.03,0.0564,0.1046,0.0191,0.00,16091,658,1,720,725,724,719,728,721,719,720,733,723,745,741,768,882,1193,1895,3047,4410,5657,6580,7244,7740,8152,8595,9116,9711,10448,11335,12314,13438,14614,15782,16882,17837,18549,18981,19113,18933,18560,18028,17432,16866,16411,16048,15828,15757,15835,16097,16499,17085,17825,18724,19801,21008,22315,23763,25234,26713,28128,29362,30354,31106,31506,31504,31184,30558,29645,28585,27360,26186,25021,23950,22952,22100,21371,20777,20301,19909,19630,19466,19383,19403,19482,19677,19924,20276,20716,21241,21796,22443,23108,23752,24365,24940,25408,25777,26025,26083,25949,25680,25192,24563,23849,23060,22174,21315,20478,19693,18995,18352,17790,17318,16921,16608,16339,16183,16081,16030,16048,16149,16292,16547,16821,17206,17617,18100,18673,19285,19917,20602,21329,22067,22794,23522,24216,24873,25461,26032,26448,26775,27007,27123,27152,27049,26841,26514,26121,25625,25060,24462,23826,23171,22527,21868,21230,20610,20023,19465,18987,18515,18103,17757,17415,17131,16870,16629,16426,16224,16032,15837,15651,15477,15333,15203,15110,15047,14981,14954,14928,14935,14931,14951,14972,15012,15058,15085,15133,15200,15189,15204,15211,15215,15250,15263,15248,15253,15221,15154,15097,15026,14937,14843,14702,14555,14371,14182,13973,13763,13531,13262,12999,12714,12417,12125,11847,11554,11278,11036,10777,10545,10267,9970,9652,9349,9069,8835,8625,8448,8287,8165,8066,7971,7909,7862,7793,7700,7557,7387,7226,7103,6990,6887,6818,6742,6691,6650,6645,6626,6613,6602,6627,6617,6457,6167,5727,5110,22.2,22.2,23.0,1568860,0.2,12.9,11.9,5.0,449,-1.00,-1.00,58.9768,-19.456559,0.000566,,,,,199 +SATSLF0720,2024246,20.262417,4.14,0.0580,0.1054,0.0192,0.00,16081,658,1,722,713,703,711,703,725,725,735,727,748,742,727,771,865,1191,1883,3043,4409,5649,6587,7234,7723,8137,8589,9101,9730,10484,11334,12329,13437,14615,15774,16873,17830,18539,18974,19101,18919,18535,17986,17408,16864,16398,16040,15827,15762,15845,16087,16485,17069,17805,18711,19770,20983,22298,23738,25216,26694,28116,29352,30347,31083,31483,31488,31157,30513,29600,28548,27325,26157,25008,23941,22953,22087,21375,20765,20284,19882,19603,19456,19350,19379,19479,19673,19935,20285,20712,21218,21785,22393,23056,23713,24330,24918,25401,25754,26027,26077,25942,25672,25204,24558,23842,23042,22177,21305,20461,19701,18990,18324,17793,17301,16912,16577,16343,16179,16077,16018,16049,16149,16301,16522,16837,17177,17619,18081,18663,19270,19910,20592,21317,22036,22795,23504,24205,24858,25448,26018,26442,26759,27013,27125,27133,27025,26813,26481,26078,25595,25028,24433,23799,23159,22506,21838,21213,20602,20021,19461,18978,18516,18096,17725,17414,17128,16857,16624,16410,16199,16023,15818,15634,15474,15325,15207,15121,15044,14980,14934,14925,14920,14917,14947,14965,15005,15049,15070,15109,15184,15185,15198,15201,15204,15231,15264,15257,15272,15205,15146,15093,15001,14916,14829,14688,14541,14366,14190,13965,13738,13517,13249,12984,12707,12407,12127,11822,11536,11275,11018,10787,10541,10283,9979,9657,9350,9061,8808,8607,8427,8292,8148,8048,7973,7899,7846,7786,7694,7540,7386,7226,7110,6985,6889,6805,6754,6694,6656,6631,6631,6602,6600,6619,6605,6447,6147,5734,5121,22.2,22.3,23.0,1568861,0.1,12.9,11.9,5.0,451,-1.00,-1.00,58.4675,-19.226915,0.000592,,,,,120 +SATSLF0720,2024246,20.262669,3.97,0.0556,0.1053,0.0197,0.00,16074,658,1,720,724,727,723,725,729,730,730,724,743,737,746,786,885,1194,1913,3060,4410,5649,6573,7232,7714,8151,8585,9101,9723,10465,11330,12316,13414,14599,15761,16845,17794,18521,18950,19085,18902,18535,18011,17429,16868,16385,16029,15805,15733,15822,16061,16461,17047,17799,18705,19761,20968,22284,23721,25201,26667,28081,29333,30333,31062,31471,31469,31144,30491,29587,28537,27321,26154,24986,23927,22924,22075,21339,20746,20266,19877,19605,19446,19353,19383,19458,19645,19920,20259,20693,21229,21789,22416,23080,23718,24336,24905,25381,25724,25992,26041,25931,25660,25182,24558,23844,23045,22173,21303,20467,19692,18980,18334,17778,17304,16903,16579,16331,16161,16061,16027,16039,16136,16297,16515,16811,17190,17609,18084,18660,19261,19893,20567,21288,22048,22772,23481,24189,24831,25440,25990,26421,26741,26981,27088,27100,27018,26816,26475,26086,25586,25029,24437,23808,23165,22498,21831,21207,20603,20005,19445,18973,18501,18105,17733,17413,17106,16839,16616,16402,16195,16025,15822,15638,15469,15321,15206,15108,15029,14957,14926,14923,14913,14921,14944,14962,14997,15037,15070,15111,15165,15198,15201,15197,15201,15225,15255,15244,15242,15199,15134,15077,15010,14908,14821,14683,14519,14349,14180,13957,13753,13500,13245,12978,12700,12422,12124,11818,11544,11272,11011,10789,10557,10268,9965,9660,9342,9059,8829,8610,8438,8286,8142,8050,7975,7913,7840,7794,7692,7565,7400,7241,7101,6988,6907,6813,6753,6702,6658,6644,6624,6598,6596,6620,6604,6453,6141,5720,5115,22.2,22.3,23.1,1568861,0.1,12.9,11.9,5.0,451,-1.00,-1.00,59.1844,-19.515291,0.000594,,,,,183 +SATSLF0720,2024246,20.262926,4.03,0.0565,0.1064,0.0202,0.00,16044,658,1,712,715,728,721,710,719,715,727,737,738,744,749,781,885,1189,1898,3042,4401,5629,6575,7233,7697,8123,8570,9086,9700,10430,11301,12296,13397,14581,15722,16829,17757,18485,18919,19043,18846,18485,17961,17373,16832,16363,16009,15790,15709,15796,16036,16428,17017,17744,18657,19719,20925,22242,23674,25137,26610,28014,29269,30266,31002,31397,31407,31077,30432,29514,28481,27262,26105,24933,23874,22862,22039,21291,20681,20219,19827,19563,19404,19308,19323,19408,19617,19879,20224,20659,21189,21742,22349,23027,23665,24289,24857,25327,25687,25948,25984,25882,25607,25148,24521,23790,23000,22129,21248,20395,19639,18954,18305,17741,17273,16860,16548,16305,16139,16040,15981,16011,16101,16259,16482,16778,17142,17565,18050,18625,19235,19863,20528,21247,22000,22741,23456,24129,24802,25385,25962,26374,26708,26941,27046,27058,26960,26756,26432,26022,25534,24969,24381,23739,23089,22450,21795,21174,20558,19974,19427,18922,18468,18050,17689,17366,17074,16805,16586,16384,16181,15986,15795,15606,15452,15316,15198,15092,15027,14945,14909,14888,14887,14886,14907,14937,14966,15011,15041,15096,15142,15163,15182,15181,15203,15209,15221,15221,15201,15152,15102,15059,14970,14888,14805,14664,14502,14335,14155,13941,13738,13477,13239,12965,12678,12401,12105,11810,11529,11255,11010,10762,10525,10247,9950,9630,9328,9037,8818,8592,8432,8274,8154,8045,7985,7889,7819,7771,7693,7554,7377,7227,7096,6979,6878,6794,6733,6677,6639,6626,6608,6595,6583,6601,6605,6455,6152,5730,5113,22.2,22.3,23.1,1568862,0.1,12.9,11.9,5.0,447,-1.00,-1.00,59.0557,-19.422391,0.000539,,,,,40 +SATSLF0720,2024246,20.263180,4.09,0.0574,0.1063,0.0206,0.00,16046,658,1,720,724,717,735,717,731,727,719,729,721,731,742,770,887,1197,1895,3034,4405,5646,6571,7208,7697,8109,8570,9086,9706,10461,11289,12295,13398,14580,15729,16819,17778,18496,18938,19045,18872,18501,17963,17383,16834,16365,16017,15793,15716,15794,16039,16441,17024,17762,18688,19734,20949,22249,23691,25157,26627,28029,29261,30273,30994,31409,31399,31078,30449,29533,28491,27269,26090,24935,23890,22877,22037,21301,20700,20231,19830,19559,19405,19312,19335,19435,19622,19877,20230,20674,21177,21735,22365,23012,23671,24277,24859,25336,25677,25962,26006,25880,25623,25137,24503,23783,22992,22117,21250,20418,19640,18941,18310,17741,17269,16870,16550,16311,16141,16026,16006,16013,16101,16263,16473,16782,17138,17569,18054,18616,19226,19858,20539,21248,22008,22745,23444,24145,24806,25409,25973,26373,26701,26939,27040,27051,26960,26747,26423,26029,25526,24974,24385,23761,23125,22461,21811,21175,20555,19975,19422,18932,18465,18057,17694,17365,17067,16795,16573,16383,16167,15975,15793,15616,15446,15320,15189,15095,15028,14954,14918,14900,14891,14888,14913,14923,14977,15017,15047,15087,15142,15161,15177,15185,15194,15208,15225,15234,15227,15170,15105,15046,14978,14893,14785,14663,14505,14335,14150,13945,13741,13505,13218,12971,12678,12389,12093,11796,11522,11242,11007,10757,10533,10260,9959,9625,9329,9045,8788,8589,8418,8270,8130,8029,7954,7883,7845,7770,7686,7555,7380,7225,7098,6974,6881,6788,6733,6675,6648,6625,6625,6597,6585,6608,6605,6445,6135,5720,5114,22.2,22.4,23.1,1568863,0.0,12.9,11.9,5.0,448,-1.00,-1.00,58.6038,-19.238933,0.000565,,,,,9 +SATSLF0720,2024246,20.263431,4.02,0.0564,0.1057,0.0203,0.00,16070,658,1,714,708,713,720,720,725,724,715,727,729,730,743,775,889,1200,1904,3049,4405,5647,6581,7225,7713,8134,8591,9117,9730,10481,11351,12324,13426,14597,15737,16857,17792,18531,18953,19081,18919,18533,18009,17413,16854,16389,16032,15809,15741,15835,16069,16482,17061,17799,18696,19752,20963,22295,23730,25194,26667,28087,29316,30315,31051,31463,31463,31146,30517,29589,28552,27320,26137,24986,23907,22904,22064,21351,20734,20260,19879,19593,19429,19335,19353,19458,19654,19924,20269,20690,21211,21781,22405,23069,23709,24329,24902,25370,25736,25993,26051,25952,25653,25181,24546,23828,23035,22169,21297,20464,19689,18997,18336,17787,17314,16909,16589,16320,16155,16047,16013,16042,16131,16282,16517,16813,17165,17593,18087,18637,19255,19887,20564,21294,22042,22798,23494,24192,24852,25444,26000,26413,26733,26982,27082,27092,26992,26795,26491,26085,25600,25037,24441,23804,23144,22487,21818,21191,20581,19994,19455,18965,18493,18096,17717,17395,17093,16843,16576,16391,16189,16000,15813,15627,15451,15312,15203,15095,15040,14963,14921,14896,14896,14909,14925,14953,14984,15033,15057,15112,15161,15187,15209,15220,15215,15221,15235,15230,15227,15178,15137,15057,14999,14915,14812,14679,14523,14344,14166,13941,13743,13492,13235,12975,12690,12404,12105,11825,11530,11262,11024,10781,10542,10269,9953,9639,9336,9053,8800,8598,8437,8281,8146,8054,7964,7897,7854,7789,7696,7553,7381,7225,7089,6978,6887,6818,6748,6693,6653,6634,6625,6604,6593,6608,6607,6458,6152,5723,5117,22.2,22.4,23.1,1568864,0.4,12.9,12.0,5.0,450,-1.00,-1.00,58.8885,-19.391615,0.000542,,,,,48 +SATSLF0720,2024246,20.263687,4.12,0.0578,0.1070,0.0212,0.00,16028,658,1,724,718,716,713,706,711,724,717,735,739,742,749,777,889,1205,1900,3040,4393,5639,6572,7215,7695,8109,8567,9077,9689,10441,11289,12276,13376,14555,15704,16809,17757,18450,18902,19025,18832,18477,17940,17347,16815,16351,15996,15772,15698,15783,16020,16423,17001,17739,18647,19698,20907,22220,23657,25115,26599,27994,29249,30237,30973,31373,31369,31061,30394,29491,28439,27241,26054,24907,23857,22846,22015,21270,20691,20213,19840,19536,19383,19282,19313,19409,19614,19861,20200,20642,21142,21722,22326,22993,23624,24248,24821,25293,25653,25910,25986,25873,25591,25140,24500,23778,22986,22121,21242,20401,19627,18921,18282,17736,17261,16854,16526,16276,16105,16009,15944,15991,16078,16253,16484,16761,17128,17543,18038,18602,19211,19857,20520,21245,21969,22712,23412,24109,24762,25363,25934,26358,26676,26909,27015,27035,26939,26731,26400,26007,25515,24958,24361,23714,23087,22437,21772,21146,20547,19967,19418,18923,18455,18037,17674,17353,17054,16795,16554,16350,16157,15965,15774,15584,15422,15283,15173,15067,15001,14930,14906,14870,14878,14886,14891,14917,14950,14993,15023,15079,15139,15152,15144,15169,15175,15201,15217,15193,15195,15145,15102,15028,14967,14864,14787,14639,14491,14327,14129,13933,13717,13477,13218,12957,12672,12369,12082,11804,11509,11243,10990,10754,10509,10257,9936,9628,9324,9021,8791,8586,8426,8261,8125,8029,7946,7892,7840,7778,7685,7543,7353,7206,7083,6971,6878,6802,6741,6677,6635,6605,6613,6585,6583,6598,6603,6437,6139,5734,5101,22.2,22.4,23.1,1568865,0.1,12.9,11.9,5.0,448,-1.00,-1.00,58.6631,-19.240673,0.000576,,,,,48 +SATSLF0720,2024246,20.263940,4.04,0.0566,0.1068,0.0205,0.00,16036,658,1,704,709,719,720,731,737,730,737,744,744,741,747,779,894,1198,1910,3062,4401,5642,6574,7216,7691,8131,8561,9083,9707,10458,11305,12289,13393,14558,15705,16810,17757,18471,18913,19031,18852,18485,17949,17367,16821,16373,16013,15777,15723,15789,16035,16435,17015,17753,18636,19696,20919,22213,23658,25115,26599,28004,29245,30235,30984,31389,31382,31049,30417,29513,28470,27245,26085,24932,23845,22864,22002,21287,20695,20220,19841,19533,19385,19288,19297,19409,19597,19874,20213,20657,21154,21731,22344,23012,23653,24253,24835,25297,25668,25930,25984,25866,25602,25129,24484,23779,22966,22110,21248,20413,19635,18951,18288,17743,17258,16855,16537,16299,16147,16041,15990,16007,16084,16249,16476,16770,17124,17559,18046,18610,19207,19851,20533,21255,21995,22731,23435,24123,24797,25377,25927,26357,26670,26917,27026,27041,26952,26733,26406,26011,25530,24957,24373,23748,23082,22439,21778,21160,20541,19946,19406,18919,18437,18040,17691,17362,17074,16809,16569,16370,16160,15976,15784,15606,15448,15300,15197,15092,15012,14944,14892,14865,14862,14880,14907,14922,14955,14999,15047,15078,15139,15150,15145,15157,15166,15189,15213,15218,15224,15161,15117,15050,14989,14880,14794,14653,14503,14342,14145,13939,13726,13476,13227,12957,12680,12373,12096,11813,11525,11245,10993,10754,10523,10247,9959,9640,9331,9038,8795,8596,8405,8256,8137,8042,7956,7899,7838,7782,7686,7538,7371,7226,7093,6981,6874,6789,6736,6693,6645,6632,6618,6594,6577,6602,6586,6424,6133,5705,5097,22.2,22.4,23.1,1568866,0.2,12.9,12.0,5.0,447,-1.00,-1.00,58.8150,-19.310925,0.000475,,,,,244 +SATSLF0720,2024246,20.264191,4.16,0.0582,0.1067,0.0209,0.00,16033,658,1,714,717,723,737,723,731,728,739,738,734,740,749,785,897,1203,1914,3053,4417,5641,6565,7229,7692,8112,8571,9075,9700,10453,11300,12294,13393,14561,15718,16821,17765,18477,18909,19038,18853,18480,17936,17377,16821,16342,16001,15774,15709,15786,16041,16445,17015,17767,18661,19701,20920,22212,23667,25107,26593,28010,29242,30222,30976,31389,31378,31052,30406,29499,28461,27233,26069,24921,23841,22862,21997,21308,20680,20215,19821,19544,19399,19293,19313,19406,19600,19868,20213,20628,21146,21712,22336,23002,23641,24272,24837,25293,25667,25932,25984,25876,25597,25131,24484,23765,22983,22112,21239,20395,19636,18926,18279,17725,17253,16860,16542,16293,16121,16023,15956,15991,16086,16237,16469,16777,17146,17570,18053,18613,19194,19840,20518,21242,21974,22713,23419,24123,24777,25365,25921,26341,26672,26914,27018,27032,26932,26743,26393,26005,25508,24950,24369,23722,23079,22433,21769,21159,20554,19954,19403,18922,18449,18053,17681,17353,17057,16809,16577,16364,16161,15977,15786,15588,15429,15281,15171,15077,15001,14931,14886,14887,14877,14876,14900,14932,14964,14999,15037,15081,15141,15149,15158,15152,15175,15197,15220,15218,15206,15159,15095,15036,14960,14865,14772,14645,14503,14339,14152,13938,13733,13493,13221,12951,12670,12386,12080,11783,11499,11238,10997,10757,10521,10257,9958,9622,9311,9046,8796,8599,8424,8280,8137,8046,7965,7899,7852,7787,7685,7531,7364,7224,7093,6985,6878,6817,6746,6701,6647,6634,6615,6586,6583,6585,6595,6452,6148,5713,5106,22.2,22.4,23.2,1568867,0.1,12.9,11.9,5.0,448,-1.00,-1.00,58.3343,-19.107465,0.000506,,,,,19 +SATSLF0720,2024246,20.264447,4.24,0.0594,0.1070,0.0210,0.00,16021,658,1,713,721,722,722,725,712,737,737,732,723,730,749,790,881,1201,1906,3045,4402,5626,6563,7216,7696,8117,8563,9086,9692,10427,11287,12275,13381,14549,15697,16781,17723,18450,18884,19016,18825,18460,17931,17338,16780,16340,15965,15763,15693,15770,16036,16444,17009,17737,18631,19674,20883,22201,23633,25102,26565,27974,29194,30191,30941,31338,31332,31010,30374,29458,28417,27208,26030,24887,23831,22841,21970,21253,20652,20181,19784,19521,19355,19281,19293,19388,19578,19844,20194,20625,21138,21697,22323,22982,23635,24236,24804,25280,25661,25914,25961,25845,25574,25098,24452,23736,22942,22087,21230,20387,19623,18918,18275,17716,17251,16856,16544,16278,16113,16007,15962,15989,16065,16231,16450,16755,17109,17545,18033,18592,19208,19834,20505,21228,21963,22722,23406,24118,24761,25347,25912,26338,26642,26890,27016,27031,26935,26725,26391,26009,25493,24955,24354,23725,23081,22429,21749,21133,20539,19940,19383,18897,18426,18039,17664,17350,17075,16791,16564,16363,16146,15952,15777,15593,15418,15297,15161,15079,15001,14937,14882,14872,14876,14874,14905,14912,14956,14995,15005,15085,15128,15154,15173,15173,15175,15200,15217,15222,15198,15149,15101,15032,14953,14873,14775,14649,14494,14335,14141,13926,13709,13460,13217,12945,12649,12380,12091,11803,11522,11251,10988,10764,10525,10238,9943,9629,9315,9035,8791,8583,8417,8269,8133,8039,7951,7879,7831,7771,7680,7543,7371,7209,7083,6966,6873,6801,6742,6683,6647,6633,6612,6598,6589,6602,6596,6446,6136,5707,5093,22.2,22.4,23.2,1568868,0.0,12.9,12.0,5.0,449,-1.00,-1.00,58.0145,-18.951141,0.000511,,,,,119 +SATSDF0720,2024246,20.509138,0.00,0.0000,0.0000,0.0000,0.00,657,0,1,652,638,631,631,642,638,644,636,637,642,643,637,641,624,633,637,641,647,649,652,646,646,640,663,685,678,669,674,670,665,673,649,663,657,653,671,667,676,669,658,653,647,656,663,648,667,672,675,677,663,657,650,663,653,657,665,658,663,665,666,660,655,660,654,663,659,673,659,683,669,663,656,661,657,658,647,656,662,658,662,667,663,661,658,665,665,673,668,676,660,675,665,667,658,641,663,650,643,659,662,667,673,680,677,666,653,651,649,638,653,657,659,675,674,666,657,661,659,655,658,661,657,668,663,664,663,646,649,649,651,646,651,659,659,658,656,679,661,670,668,669,661,662,649,654,649,652,647,651,657,653,665,657,658,655,651,670,657,653,657,664,663,659,665,660,661,656,667,655,647,653,647,653,645,643,647,646,638,651,662,661,657,661,658,653,633,647,641,664,648,660,665,677,668,665,663,648,653,645,648,647,644,648,651,659,653,661,660,658,656,663,656,654,661,665,653,657,653,643,632,642,647,648,654,663,654,664,670,663,655,671,648,667,661,661,657,666,657,662,671,654,653,658,641,655,649,643,659,656,676,675,677,666,651,651,491,0.0,0.0,0.0,1568867,0.4,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,214 +SATSLF0720,2024246,20.509693,3.98,0.0557,0.1011,0.0171,0.00,16189,657,1,698,693,715,721,714,708,723,720,723,739,730,745,768,880,1198,1915,3062,4441,5681,6627,7277,7771,8193,8641,9190,9801,10561,11432,12425,13546,14732,15898,17017,17973,18709,19141,19266,19081,18714,18177,17572,17025,16551,16186,15959,15872,15963,16213,16634,17210,17953,18863,19940,21160,22499,23952,25438,26934,28348,29601,30612,31366,31749,31765,31437,30773,29854,28803,27575,26386,25236,24148,23152,22281,21555,20928,20447,20065,19776,19626,19537,19540,19635,19835,20096,20449,20878,21397,21963,22582,23261,23902,24517,25090,25566,25938,26212,26265,26141,25861,25379,24734,24012,23205,22317,21447,20588,19825,19108,18477,17906,17430,17030,16689,16441,16273,16161,16119,16137,16239,16400,16627,16921,17277,17719,18201,18776,19386,20029,20711,21441,22197,22936,23654,24369,25036,25637,26193,26616,26936,27187,27284,27292,27189,26989,26663,26261,25783,25201,24629,23970,23329,22660,21989,21355,20743,20137,19582,19074,18619,18222,17832,17495,17207,16930,16695,16496,16309,16104,15920,15733,15558,15416,15307,15201,15120,15076,15020,14995,15010,15013,15010,15035,15062,15099,15121,15195,15256,15268,15281,15299,15300,15321,15342,15336,15330,15270,15209,15163,15074,14987,14901,14765,14610,14426,14247,14029,13817,13568,13307,13051,12744,12480,12170,11881,11585,11323,11078,10825,10581,10313,10012,9703,9381,9096,8845,8644,8472,8315,8187,8077,8011,7926,7895,7830,7737,7585,7411,7258,7123,7025,6913,6833,6761,6711,6681,6658,6642,6643,6627,6645,6624,6482,6169,5740,5127,22.1,22.1,22.6,1568868,0.5,12.9,12.0,5.0,567,-1.00,-1.00,58.5402,-19.418568,0.000610,,,,,114 +SATSLF0720,2024246,20.509874,3.98,0.0558,0.1013,0.0176,0.00,16185,657,1,715,713,699,708,729,721,735,728,747,745,738,745,780,888,1205,1915,3086,4466,5714,6642,7297,7784,8213,8643,9185,9806,10548,11436,12437,13556,14738,15919,17021,17989,18704,19153,19269,19080,18722,18172,17582,17019,16565,16205,15975,15897,15969,16228,16637,17210,17947,18856,19929,21162,22460,23934,25416,26914,28352,29604,30612,31342,31760,31734,31409,30775,29833,28793,27553,26380,25204,24133,23108,22263,21531,20940,20449,20071,19785,19623,19528,19525,19627,19819,20084,20426,20880,21381,21937,22581,23244,23904,24507,25085,25577,25940,26193,26242,26120,25830,25344,24709,23991,23186,22320,21442,20581,19813,19119,18449,17899,17418,17016,16684,16446,16265,16166,16114,16120,16209,16381,16612,16917,17261,17715,18205,18769,19389,20017,20703,21435,22173,22932,23643,24342,25003,25591,26179,26594,26914,27156,27261,27269,27185,26976,26645,26238,25751,25171,24588,23947,23281,22642,21958,21339,20729,20133,19573,19081,18612,18189,17826,17497,17216,16955,16688,16491,16295,16085,15889,15717,15545,15403,15304,15202,15125,15051,15018,14990,14992,14987,15024,15026,15073,15116,15143,15190,15242,15262,15285,15271,15291,15312,15344,15344,15317,15287,15209,15144,15059,14975,14887,14752,14596,14434,14236,14028,13819,13577,13321,13057,12757,12459,12167,11866,11581,11309,11066,10835,10585,10323,10030,9697,9373,9110,8853,8645,8461,8317,8189,8091,8008,7935,7872,7814,7730,7568,7423,7273,7149,7019,6923,6835,6772,6709,6663,6655,6646,6626,6639,6645,6656,6485,6191,5751,5132,22.1,22.1,22.6,1568869,0.2,12.8,12.0,5.0,475,-1.00,-1.00,58.0497,-19.205573,0.000550,,,,,2 +SATSLF0720,2024246,20.510130,3.93,0.0550,0.1023,0.0177,0.00,16169,657,1,706,695,727,705,721,708,723,717,721,728,731,756,766,891,1208,1910,3071,4447,5690,6632,7296,7777,8193,8644,9160,9795,10542,11405,12413,13525,14729,15893,16996,17963,18678,19115,19251,19053,18669,18148,17549,16979,16525,16157,15925,15865,15929,16183,16585,17186,17913,18833,19920,21121,22467,23894,25378,26869,28304,29554,30550,31300,31700,31716,31380,30736,29792,28748,27506,26328,25179,24078,23105,22249,21505,20910,20409,20024,19738,19592,19485,19495,19603,19803,20055,20420,20849,21381,21925,22548,23213,23864,24482,25068,25537,25912,26173,26209,26099,25802,25338,24677,23963,23171,22295,21425,20564,19800,19088,18421,17867,17409,16992,16677,16435,16253,16145,16109,16129,16214,16381,16597,16885,17257,17684,18176,18769,19368,20011,20701,21433,22169,22916,23619,24326,24987,25577,26152,26569,26884,27131,27236,27267,27173,26955,26623,26243,25751,25172,24575,23933,23288,22632,21961,21324,20707,20125,19562,19064,18593,18180,17810,17485,17204,16936,16697,16486,16295,16096,15890,15702,15536,15400,15282,15191,15117,15042,15009,14989,14987,14987,15010,15034,15061,15098,15121,15175,15240,15269,15266,15283,15275,15299,15335,15305,15309,15268,15201,15141,15064,14966,14882,14737,14594,14434,14227,14019,13811,13561,13304,13052,12754,12479,12178,11881,11589,11323,11054,10820,10589,10312,10018,9699,9377,9102,8856,8638,8465,8302,8167,8071,8000,7933,7885,7818,7749,7589,7401,7264,7113,7008,6913,6826,6763,6711,6653,6655,6646,6623,6619,6641,6628,6485,6180,5746,5133,22.1,22.1,22.7,1568870,0.1,12.9,11.9,5.0,455,-1.00,-1.00,58.6795,-19.440994,0.000653,,,,,7 +SATSLF0720,2024246,20.510383,4.03,0.0564,0.1028,0.0184,0.00,16143,657,1,715,721,709,718,718,722,724,720,725,723,722,723,775,873,1199,1907,3074,4436,5693,6617,7270,7749,8163,8617,9147,9771,10515,11385,12385,13494,14672,15832,16939,17908,18626,19059,19195,19005,18644,18103,17506,16956,16469,16124,15898,15845,15909,16153,16564,17145,17894,18791,19872,21090,22398,23855,25328,26809,28232,29491,30490,31248,31656,31645,31323,30654,29743,28688,27468,26282,25138,24055,23058,22202,21476,20856,20380,19994,19709,19543,19460,19472,19581,19782,20033,20389,20813,21344,21907,22530,23188,23829,24443,25033,25494,25868,26133,26190,26041,25799,25289,24656,23939,23136,22266,21384,20540,19749,19057,18420,17853,17378,16968,16641,16394,16226,16118,16068,16104,16182,16355,16578,16866,17223,17664,18149,18727,19340,19978,20669,21390,22141,22873,23589,24295,24964,25545,26122,26553,26858,27115,27204,27200,27115,26914,26569,26181,25693,25124,24540,23897,23243,22592,21910,21285,20693,20086,19533,19045,18580,18169,17806,17475,17181,16921,16673,16461,16263,16061,15864,15686,15521,15371,15255,15171,15084,15023,14973,14963,14951,14961,14978,15008,15041,15089,15125,15170,15237,15245,15249,15254,15267,15273,15301,15303,15302,15253,15187,15119,15047,14966,14853,14722,14560,14400,14220,14008,13799,13569,13293,13024,12737,12440,12129,11841,11553,11285,11034,10807,10573,10313,10018,9683,9378,9093,8841,8641,8450,8293,8159,8067,7985,7927,7856,7815,7717,7569,7399,7245,7121,7002,6905,6829,6769,6724,6683,6665,6646,6624,6603,6627,6628,6477,6173,5744,5121,22.1,22.1,22.8,1568871,0.2,12.9,12.0,5.0,445,-1.00,-1.00,58.5562,-19.354244,0.000579,,,,,1 +SATSLF0720,2024246,20.510637,3.93,0.0551,0.1032,0.0191,0.00,16131,657,1,707,712,717,705,709,712,723,721,722,719,730,737,776,885,1197,1914,3059,4427,5675,6625,7272,7750,8169,8610,9127,9768,10515,11378,12363,13492,14656,15832,16931,17878,18618,19040,19188,19000,18634,18089,17506,16944,16475,16119,15889,15814,15898,16157,16549,17133,17877,18788,19836,21067,22384,23819,25323,26800,28203,29469,30464,31228,31610,31613,31296,30653,29734,28674,27447,26282,25118,24023,23041,22189,21456,20829,20354,19957,19687,19536,19442,19464,19562,19752,20010,20353,20792,21310,21884,22505,23165,23802,24423,25006,25475,25850,26112,26157,26043,25754,25281,24641,23930,23114,22236,21375,20514,19757,19046,18379,17828,17353,16962,16640,16378,16199,16108,16061,16085,16176,16343,16567,16883,17238,17677,18166,18730,19333,19965,20645,21365,22097,22841,23572,24283,24938,25531,26101,26532,26864,27092,27202,27201,27093,26889,26553,26153,25659,25105,24522,23892,23233,22572,21913,21274,20668,20071,19517,19037,18555,18153,17785,17445,17166,16903,16661,16453,16251,16057,15846,15662,15513,15359,15255,15159,15078,15005,14969,14957,14938,14954,14977,15005,15040,15074,15099,15169,15217,15234,15238,15261,15247,15267,15296,15298,15277,15215,15167,15094,15031,14951,14852,14726,14571,14394,14213,14001,13777,13523,13279,13012,12722,12448,12157,11854,11557,11285,11029,10797,10566,10287,9991,9674,9368,9089,8846,8629,8445,8305,8179,8082,7998,7918,7873,7804,7705,7554,7394,7240,7122,6997,6902,6830,6763,6699,6673,6653,6627,6610,6607,6622,6620,6475,6166,5745,5125,22.1,22.1,22.8,1568872,0.0,13.0,12.0,5.0,444,-1.00,-1.00,58.9137,-19.490773,0.000523,,,,,69 +SATSLF0720,2024246,20.510894,4.02,0.0563,0.1045,0.0197,0.00,16095,657,1,709,705,697,715,717,722,721,708,719,721,725,735,781,884,1207,1933,3062,4427,5675,6601,7249,7735,8138,8593,9113,9732,10485,11341,12352,13444,14615,15782,16888,17857,18569,18999,19116,18940,18570,18048,17453,16885,16445,16077,15850,15785,15857,16091,16523,17092,17833,18741,19795,21002,22327,23772,25238,26709,28130,29378,30376,31136,31528,31554,31222,30566,29653,28602,27374,26194,25030,23976,22992,22138,21395,20791,20310,19930,19645,19485,19389,19410,19512,19698,19958,20315,20741,21260,21818,22450,23120,23750,24356,24933,25411,25778,26040,26096,25977,25693,25220,24587,23878,23075,22201,21326,20479,19715,19002,18329,17797,17318,16909,16609,16361,16186,16084,16046,16065,16149,16305,16526,16826,17197,17625,18109,18676,19290,19925,20616,21322,22071,22807,23513,24225,24869,25467,26026,26460,26786,27012,27123,27143,27026,26833,26501,26107,25627,25074,24474,23832,23178,22516,21861,21220,20609,20026,19474,18992,18516,18109,17736,17399,17119,16837,16606,16400,16197,16019,15831,15646,15476,15336,15223,15128,15056,14981,14939,14906,14919,14929,14929,14969,15009,15058,15085,15136,15181,15194,15191,15199,15219,15238,15254,15245,15257,15208,15138,15076,15004,14932,14830,14694,14553,14380,14202,13970,13773,13520,13258,12984,12698,12407,12122,11826,11543,11277,11025,10793,10564,10281,9983,9665,9348,9053,8819,8597,8433,8283,8149,8057,7981,7914,7863,7805,7717,7568,7389,7229,7095,6983,6889,6799,6745,6687,6653,6617,6619,6604,6600,6621,6612,6464,6163,5739,5117,22.1,22.1,22.8,1568873,0.3,12.9,11.9,5.0,451,-1.00,-1.00,58.7357,-19.366511,0.000518,,,,,26 +SATSLF0720,2024246,20.511147,4.15,0.0582,0.1050,0.0201,0.00,16075,657,1,713,708,709,724,714,704,732,722,717,723,727,752,778,893,1209,1897,3051,4413,5645,6571,7238,7706,8135,8572,9102,9724,10452,11316,12310,13420,14586,15746,16856,17790,18506,18945,19066,18899,18521,17972,17399,16840,16385,16028,15812,15746,15824,16082,16473,17065,17796,18709,19761,20970,22285,23730,25196,26660,28085,29335,30336,31073,31464,31478,31153,30504,29601,28554,27331,26160,24998,23926,22925,22089,21361,20763,20284,19896,19612,19475,19366,19365,19457,19642,19904,20263,20709,21240,21793,22411,23082,23735,24333,24913,25390,25761,26018,26069,25955,25668,25194,24557,23836,23044,22170,21301,20453,19697,18993,18329,17767,17298,16888,16579,16330,16165,16065,16029,16049,16126,16297,16509,16807,17179,17603,18093,18648,19259,19898,20595,21312,22044,22794,23493,24190,24851,25436,25993,26413,26748,26993,27099,27117,27016,26801,26485,26090,25600,25028,24437,23805,23154,22500,21829,21217,20610,20020,19450,18973,18496,18095,17719,17384,17111,16845,16593,16386,16200,16014,15813,15629,15467,15338,15218,15117,15053,14969,14930,14905,14914,14923,14942,14960,14984,15035,15070,15111,15171,15193,15190,15213,15214,15239,15252,15258,15248,15197,15141,15061,15011,14914,14830,14692,14537,14357,14176,13965,13738,13517,13242,12983,12695,12407,12117,11821,11528,11257,11005,10769,10543,10278,9987,9669,9353,9072,8825,8615,8451,8282,8154,8054,7973,7913,7861,7798,7700,7549,7375,7231,7106,6986,6899,6804,6743,6679,6646,6626,6612,6595,6603,6613,6609,6450,6141,5727,5113,22.1,22.2,22.8,1568874,0.2,12.9,12.0,5.0,453,-1.00,-1.00,58.8714,-19.391340,0.000513,,,,,117 +SATSLF0720,2024246,20.511403,3.88,0.0543,0.1038,0.0186,0.00,16121,657,1,715,699,711,716,721,736,729,735,752,754,750,754,775,886,1197,1917,3077,4442,5673,6621,7273,7747,8173,8626,9149,9769,10518,11372,12370,13479,14656,15820,16932,17893,18614,19048,19186,19008,18622,18084,17501,16940,16477,16097,15882,15798,15872,16125,16533,17125,17877,18777,19842,21068,22373,23810,25287,26768,28192,29437,30423,31176,31569,31589,31254,30606,29707,28651,27419,26235,25099,24009,23010,22171,21431,20816,20331,19955,19669,19514,19418,19441,19530,19721,19987,20346,20765,21301,21848,22471,23143,23782,24410,24987,25461,25822,26091,26132,26027,25744,25256,24623,23899,23116,22229,21357,20520,19757,19042,18391,17826,17363,16946,16631,16379,16214,16109,16061,16083,16177,16329,16546,16851,17232,17640,18147,18702,19307,19945,20628,21353,22109,22832,23555,24269,24909,25510,26072,26493,26825,27030,27159,27159,27075,26862,26521,26131,25655,25089,24499,23874,23225,22552,21889,21250,20657,20057,19489,18996,18531,18125,17758,17431,17146,16887,16642,16448,16237,16037,15837,15663,15501,15357,15251,15150,15075,14992,14962,14929,14933,14933,14960,14989,15035,15070,15105,15162,15216,15229,15229,15234,15237,15253,15273,15266,15258,15220,15155,15111,15025,14933,14854,14717,14558,14408,14198,13983,13768,13541,13276,13001,12736,12436,12143,11853,11560,11282,11027,10799,10561,10293,10006,9682,9368,9088,8845,8628,8445,8293,8157,8056,7977,7902,7859,7812,7717,7568,7402,7243,7115,7000,6908,6821,6747,6689,6661,6653,6634,6613,6610,6632,6621,6476,6166,5739,5120,22.1,22.2,22.8,1568875,0.1,12.9,11.9,5.0,450,-1.00,-1.00,58.7136,-19.386660,0.000578,,,,,31 +SATSLF0720,2024246,20.511658,4.20,0.0588,0.1044,0.0192,0.00,16100,657,1,714,714,720,725,722,712,731,729,723,727,745,738,773,877,1197,1911,3071,4433,5680,6601,7245,7733,8155,8604,9125,9747,10486,11357,12357,13453,14634,15781,16889,17833,18555,18993,19104,18926,18560,18027,17449,16897,16439,16080,15854,15792,15866,16090,16516,17082,17827,18738,19801,21027,22327,23783,25253,26734,28162,29396,30381,31147,31530,31534,31220,30573,29660,28590,27384,26189,25050,23975,22977,22125,21392,20797,20315,19915,19641,19485,19393,19415,19498,19700,19961,20305,20731,21256,21824,22450,23114,23761,24380,24961,25421,25797,26049,26120,25981,25707,25213,24594,23866,23072,22197,21340,20474,19719,19017,18362,17805,17337,16912,16603,16338,16180,16084,16033,16071,16141,16321,16530,16839,17206,17638,18109,18693,19280,19921,20601,21327,22057,22809,23525,24220,24891,25468,26043,26466,26787,27035,27124,27136,27045,26833,26513,26109,25623,25075,24481,23847,23202,22539,21869,21251,20624,20024,19473,18989,18512,18111,17754,17420,17133,16875,16618,16421,16227,16039,15840,15644,15484,15330,15227,15125,15058,14976,14949,14926,14933,14946,14958,14975,15035,15069,15089,15140,15192,15207,15205,15215,15228,15256,15274,15269,15249,15195,15155,15092,15009,14935,14837,14696,14543,14375,14194,13984,13762,13531,13266,12993,12705,12410,12125,11825,11538,11272,11042,10780,10544,10295,9984,9655,9341,9068,8817,8613,8452,8284,8157,8057,7986,7929,7862,7785,7711,7572,7393,7223,7099,6989,6897,6805,6767,6701,6663,6639,6630,6619,6608,6631,6613,6459,6166,5738,5126,22.1,22.2,22.9,1568876,0.0,13.0,12.0,5.0,450,-1.00,-1.00,58.2831,-19.181651,0.000567,,,,,135 +SATSLF0720,2024246,20.511910,4.09,0.0573,0.1054,0.0203,0.00,16071,657,1,700,715,718,718,722,722,718,723,729,720,726,725,767,881,1197,1897,3053,4416,5653,6591,7237,7717,8140,8581,9105,9711,10469,11337,12325,13433,14597,15767,16866,17803,18516,18958,19091,18910,18553,18001,17433,16866,16410,16045,15817,15751,15838,16071,16484,17081,17818,18721,19762,20981,22282,23735,25212,26674,28089,29344,30346,31089,31482,31488,31172,30517,29613,28554,27328,26156,25005,23933,22949,22082,21367,20754,20266,19893,19611,19453,19347,19371,19477,19660,19930,20273,20709,21212,21789,22413,23066,23718,24333,24919,25393,25757,26001,26055,25943,25664,25173,24541,23837,23040,22166,21294,20465,19689,18978,18322,17767,17290,16885,16564,16329,16160,16057,16021,16040,16126,16292,16519,16802,17168,17605,18092,18649,19242,19885,20570,21283,22029,22760,23483,24177,24837,25429,25988,26420,26726,26977,27095,27078,27017,26805,26469,26079,25584,25031,24440,23801,23146,22481,21817,21197,20596,20000,19442,18948,18485,18082,17704,17385,17104,16844,16585,16397,16205,16011,15817,15634,15469,15325,15204,15108,15031,14953,14913,14899,14893,14889,14919,14935,14989,15020,15056,15114,15157,15169,15181,15194,15190,15223,15229,15239,15233,15174,15113,15056,14987,14893,14802,14673,14519,14347,14163,13953,13747,13499,13245,12974,12689,12405,12109,11814,11528,11256,11004,10768,10539,10268,9966,9650,9338,9056,8813,8596,8441,8269,8147,8049,7972,7890,7834,7776,7696,7556,7373,7214,7092,6982,6872,6793,6733,6693,6646,6621,6615,6603,6589,6616,6607,6452,6144,5722,5111,22.1,22.2,22.9,1568877,0.1,12.9,11.9,5.0,449,-1.00,-1.00,58.6368,-19.297960,0.000538,,,,,24 +SATSLF0720,2024246,20.512166,4.06,0.0569,0.1051,0.0196,0.00,16081,657,1,709,707,721,717,713,704,715,717,720,737,717,735,759,873,1195,1905,3058,4413,5673,6594,7254,7741,8154,8603,9128,9735,10485,11346,12317,13428,14599,15764,16875,17816,18544,18969,19091,18935,18551,18025,17429,16878,16421,16054,15831,15749,15833,16082,16487,17075,17805,18704,19784,20997,22309,23748,25227,26700,28109,29354,30359,31082,31481,31484,31163,30517,29609,28564,27336,26173,25013,23954,22948,22101,21367,20753,20275,19901,19609,19461,19363,19389,19493,19675,19946,20284,20721,21237,21809,22416,23083,23734,24338,24912,25408,25769,26021,26071,25958,25681,25202,24562,23848,23041,22182,21303,20463,19691,18993,18337,17783,17314,16896,16578,16351,16165,16075,16040,16063,16141,16307,16534,16813,17177,17601,18085,18661,19272,19898,20577,21309,22050,22789,23489,24193,24861,25446,26008,26434,26760,27001,27097,27120,27021,26804,26487,26086,25589,25040,24442,23818,23162,22528,21854,21213,20612,20023,19462,18968,18484,18076,17719,17389,17104,16851,16604,16412,16199,16000,15803,15644,15464,15329,15211,15106,15040,14969,14932,14912,14925,14922,14933,14958,14993,15027,15066,15113,15175,15185,15211,15218,15220,15238,15258,15251,15255,15197,15143,15078,15009,14915,14813,14674,14528,14360,14177,13978,13750,13515,13258,12985,12694,12405,12123,11825,11534,11264,11015,10775,10539,10258,9957,9650,9337,9051,8818,8610,8435,8279,8157,8045,7975,7908,7864,7786,7704,7572,7382,7213,7094,6964,6874,6800,6753,6690,6652,6631,6628,6613,6601,6616,6612,6461,6157,5733,5112,22.1,22.2,22.9,1568878,0.1,12.9,12.0,5.0,441,-1.00,-1.00,58.6016,-19.287550,0.000559,,,,,141 +SATSLF0720,2024246,20.512423,4.02,0.0563,0.1053,0.0201,0.00,16068,657,1,722,721,717,724,725,724,751,729,743,743,741,746,771,887,1198,1913,3065,4405,5655,6592,7242,7722,8132,8582,9088,9725,10455,11326,12316,13425,14594,15749,16838,17798,18513,18946,19062,18905,18526,17997,17398,16851,16389,16022,15792,15735,15817,16066,16473,17047,17795,18692,19753,20952,22262,23713,25170,26658,28064,29301,30309,31037,31458,31448,31127,30491,29562,28534,27322,26128,24969,23901,22901,22067,21337,20736,20269,19886,19602,19464,19352,19367,19481,19650,19904,20251,20678,21204,21774,22391,23045,23697,24322,24884,25371,25738,25995,26061,25929,25657,25174,24539,23811,23019,22157,21290,20442,19680,18962,18327,17777,17297,16891,16579,16325,16155,16055,16007,16025,16107,16271,16499,16797,17178,17586,18087,18659,19268,19881,20560,21281,22029,22777,23484,24189,24843,25426,25969,26410,26718,26966,27066,27101,26986,26788,26471,26080,25577,25012,24425,23797,23143,22481,21828,21205,20597,19994,19455,18964,18498,18101,17726,17399,17106,16838,16599,16394,16208,16010,15810,15637,15466,15318,15208,15116,15031,14965,14913,14907,14921,14914,14949,14965,14995,15032,15068,15109,15175,15205,15209,15221,15219,15225,15245,15245,15234,15170,15123,15061,15002,14908,14805,14683,14529,14361,14169,13973,13757,13510,13252,12995,12710,12426,12118,11821,11519,11250,10996,10765,10539,10270,9990,9666,9347,9069,8813,8594,8436,8265,8141,8041,7959,7892,7846,7783,7700,7557,7373,7227,7107,6989,6885,6807,6746,6688,6649,6635,6622,6593,6587,6605,6597,6444,6149,5725,5119,22.1,22.2,22.9,1568879,0.1,12.9,12.0,5.0,449,-1.00,-1.00,58.9662,-19.415200,0.000517,,,,,215 +SATSLF0720,2024246,20.512675,4.26,0.0597,0.1055,0.0204,0.00,16059,657,1,720,704,711,715,717,717,728,733,730,739,748,749,768,881,1199,1911,3051,4409,5652,6580,7233,7703,8123,8582,9106,9716,10475,11325,12317,13421,14581,15732,16845,17785,18493,18922,19059,18893,18512,17971,17401,16836,16389,16026,15801,15733,15802,16056,16484,17061,17812,18688,19736,20953,22253,23712,25178,26644,28049,29300,30290,31045,31434,31440,31129,30469,29558,28517,27266,26115,24968,23900,22906,22066,21337,20729,20227,19866,19584,19426,19346,19353,19449,19643,19902,20229,20673,21194,21764,22381,23038,23677,24299,24893,25364,25736,25993,26036,25906,25645,25158,24515,23804,23009,22140,21288,20426,19673,18978,18320,17760,17301,16893,16584,16320,16151,16045,15993,16019,16095,16262,16492,16782,17157,17578,18058,18638,19232,19885,20545,21274,22017,22746,23457,24173,24825,25408,25968,26389,26709,26963,27057,27072,26985,26761,26437,26056,25557,25015,24418,23777,23116,22483,21830,21189,20565,19992,19435,18957,18474,18075,17707,17380,17082,16821,16593,16378,16183,15982,15779,15611,15447,15323,15200,15104,15021,14941,14907,14888,14889,14884,14914,14938,14982,15028,15051,15109,15165,15178,15186,15199,15199,15227,15261,15241,15233,15190,15117,15053,14977,14882,14809,14669,14518,14344,14151,13953,13751,13505,13255,12986,12686,12405,12105,11805,11518,11242,10999,10763,10546,10262,9978,9634,9331,9051,8805,8597,8424,8286,8141,8045,7952,7910,7853,7787,7701,7569,7385,7230,7097,6968,6887,6802,6737,6693,6666,6634,6626,6612,6597,6604,6593,6450,6145,5713,5117,22.2,22.2,22.9,1568879,0.1,12.9,12.0,5.0,445,-1.00,-1.00,58.0073,-19.007798,0.000543,,,,,246 +SATSLF0720,2024246,20.512932,4.12,0.0577,0.1075,0.0207,0.00,16007,657,1,716,721,721,735,728,737,747,733,731,734,733,733,770,873,1188,1898,3048,4389,5623,6541,7180,7666,8109,8529,9051,9668,10394,11255,12219,13335,14489,15644,16745,17678,18378,18820,18950,18766,18409,17884,17306,16738,16283,15931,15713,15642,15735,15965,16386,16966,17689,18599,19634,20858,22162,23593,25037,26494,27914,29128,30139,30888,31289,31301,30980,30341,29437,28387,27191,25996,24861,23804,22814,21947,21246,20640,20165,19784,19506,19341,19260,19278,19366,19563,19833,20182,20622,21142,21698,22305,22976,23601,24229,24797,25273,25638,25904,25936,25829,25553,25073,24427,23724,22941,22086,21225,20386,19609,18904,18256,17689,17210,16823,16493,16258,16092,15988,15936,15971,16059,16222,16450,16756,17114,17537,18018,18578,19179,19822,20488,21226,21964,22693,23409,24109,24769,25344,25913,26333,26648,26887,26994,26985,26912,26685,26373,25973,25501,24931,24346,23701,23068,22416,21762,21136,20522,19938,19393,18898,18437,18033,17653,17339,17053,16785,16541,16361,16149,15954,15765,15603,15418,15305,15175,15054,14990,14912,14864,14855,14861,14873,14889,14917,14958,14995,15031,15093,15138,15144,15160,15171,15174,15194,15206,15214,15194,15155,15082,15041,14966,14884,14781,14649,14492,14325,14126,13931,13705,13467,13226,12946,12670,12383,12094,11789,11496,11238,10981,10758,10508,10238,9943,9632,9321,9040,8795,8583,8406,8266,8144,8042,7946,7883,7828,7775,7690,7541,7376,7219,7084,6978,6866,6793,6730,6668,6639,6627,6619,6611,6597,6608,6597,6448,6145,5715,5095,22.1,22.3,22.9,1568880,0.1,12.9,12.0,5.0,448,-1.00,-1.00,59.4717,-19.533081,0.000509,,,,,110 +SATSLF0720,2024246,20.513186,4.05,0.0567,0.1062,0.0205,0.00,16048,657,1,712,712,713,706,729,731,729,738,738,729,740,740,781,897,1206,1917,3049,4409,5645,6567,7206,7703,8121,8565,9090,9701,10437,11302,12287,13396,14572,15730,16841,17782,18488,18920,19050,18877,18490,17974,17381,16833,16373,16017,15795,15720,15796,16045,16456,17030,17754,18669,19713,20930,22242,23672,25139,26618,28037,29288,30276,31026,31420,31418,31096,30443,29532,28473,27279,26101,24950,23882,22891,22037,21319,20706,20228,19836,19563,19412,19313,19331,19429,19620,19883,20232,20670,21181,21749,22365,23041,23680,24281,24861,25332,25697,25960,26006,25891,25609,25159,24510,23789,22988,22138,21265,20421,19656,18962,18311,17742,17291,16873,16560,16301,16141,16032,15983,16004,16105,16261,16477,16773,17148,17584,18057,18626,19229,19870,20541,21262,22008,22745,23471,24170,24810,25390,25950,26377,26680,26930,27036,27074,26981,26760,26429,26034,25548,24973,24407,23754,23110,22466,21800,21160,20564,19968,19430,18944,18473,18061,17697,17373,17075,16819,16576,16382,16185,15985,15798,15617,15450,15305,15182,15077,14999,14935,14913,14893,14890,14898,14909,14938,14972,15015,15045,15092,15151,15165,15166,15175,15180,15206,15221,15227,15227,15177,15124,15049,14988,14906,14809,14665,14510,14340,14152,13936,13736,13505,13236,12973,12679,12391,12106,11810,11528,11245,10989,10751,10519,10249,9947,9651,9333,9043,8820,8614,8427,8283,8134,8035,7961,7900,7850,7784,7680,7536,7364,7213,7084,6979,6885,6814,6745,6685,6651,6629,6634,6589,6588,6617,6598,6445,6145,5718,5110,22.1,22.3,23.0,1568881,0.1,13.0,11.9,5.0,449,-1.00,-1.00,58.8608,-19.348508,0.000536,,,,,111 +SATSLF0720,2024246,20.513438,4.12,0.0577,0.1071,0.0212,0.00,16023,657,1,697,695,706,689,707,706,722,722,734,731,737,744,761,883,1186,1895,3048,4384,5626,6562,7193,7687,8106,8559,9088,9704,10437,11280,12275,13380,14548,15704,16810,17740,18455,18896,19006,18838,18485,17952,17362,16814,16337,15991,15765,15707,15780,16017,16426,17008,17734,18631,19687,20923,22217,23651,25125,26585,28008,29237,30231,30969,31371,31373,31068,30386,29483,28442,27227,26065,24909,23854,22862,22001,21273,20677,20203,19821,19533,19376,19277,19303,19409,19605,19861,20209,20637,21164,21738,22341,23011,23648,24246,24822,25302,25672,25927,25977,25858,25584,25096,24474,23757,22976,22113,21237,20409,19617,18931,18269,17723,17258,16846,16531,16291,16121,16005,15964,15985,16074,16224,16462,16752,17127,17561,18042,18601,19194,19827,20509,21245,21962,22709,23414,24102,24771,25355,25917,26345,26669,26905,27013,27031,26934,26724,26392,25996,25495,24941,24345,23720,23065,22427,21765,21131,20523,19943,19389,18914,18437,18031,17665,17346,17061,16802,16564,16365,16153,15963,15777,15577,15413,15276,15150,15057,14989,14931,14884,14868,14864,14865,14891,14914,14945,14990,15009,15065,15131,15144,15153,15161,15157,15165,15202,15193,15192,15148,15074,15027,14963,14880,14784,14636,14491,14336,14149,13918,13707,13477,13201,12937,12661,12374,12087,11784,11491,11223,10976,10746,10504,10239,9931,9631,9313,9024,8777,8588,8424,8272,8145,8046,7960,7885,7819,7761,7664,7527,7355,7210,7072,6967,6864,6785,6720,6665,6617,6602,6591,6581,6572,6600,6583,6430,6136,5706,5098,22.2,22.3,23.0,1568882,0.2,12.9,12.0,5.0,451,-1.00,-1.00,58.6573,-19.237841,0.000574,,,,,85 +SATSLF0720,2024246,20.513694,4.24,0.0593,0.1096,0.0226,0.00,15937,657,1,709,715,715,714,715,723,729,737,749,738,745,742,789,887,1202,1899,3018,4357,5571,6494,7131,7602,8013,8453,8969,9597,10325,11190,12171,13250,14420,15547,16638,17574,18278,18712,18839,18663,18297,17779,17197,16661,16200,15854,15633,15566,15628,15894,16282,16860,17605,18492,19530,20738,22032,23477,24918,26378,27780,28997,29997,30724,31125,31125,30800,30155,29259,28242,27022,25863,24725,23669,22689,21862,21129,20549,20064,19697,19433,19249,19169,19178,19285,19451,19730,20077,20508,21021,21585,22185,22851,23489,24107,24681,25138,25501,25781,25844,25722,25444,24960,24329,23616,22836,21970,21112,20253,19506,18813,18176,17613,17159,16757,16450,16192,16045,15929,15885,15920,16005,16171,16398,16677,17047,17472,17955,18519,19127,19733,20416,21145,21858,22594,23306,24010,24648,25234,25806,26221,26540,26788,26892,26905,26801,26594,26265,25889,25377,24827,24267,23630,22978,22324,21683,21060,20448,19866,19314,18837,18357,17959,17600,17269,16996,16725,16493,16289,16087,15893,15713,15522,15350,15223,15094,15004,14935,14877,14829,14821,14825,14814,14846,14858,14906,14946,14973,15027,15085,15090,15112,15111,15122,15126,15154,15160,15151,15099,15035,14978,14914,14822,14733,14598,14436,14275,14087,13874,13661,13441,13166,12914,12630,12339,12057,11750,11487,11209,10945,10711,10471,10203,9907,9606,9290,9008,8774,8557,8392,8241,8109,8018,7926,7860,7808,7742,7661,7517,7347,7200,7072,6949,6865,6770,6699,6648,6620,6594,6587,6574,6566,6580,6573,6422,6122,5695,5077,22.2,22.4,23.1,1568883,0.2,12.9,11.9,5.0,441,-1.00,-1.00,59.4001,-19.403107,0.000557,,,,,3 +SATSLF0720,2024246,20.513949,3.94,0.0552,0.1061,0.0206,0.00,16050,657,1,721,714,723,718,726,727,726,721,737,734,753,737,787,902,1208,1909,3056,4406,5652,6590,7239,7718,8149,8593,9093,9707,10449,11313,12295,13415,14576,15734,16848,17792,18508,18948,19077,18879,18519,17985,17385,16839,16382,16023,15797,15717,15803,16053,16458,17049,17774,18675,19733,20941,22236,23697,25150,26623,28038,29290,30273,31021,31409,31432,31085,30465,29541,28503,27289,26114,24954,23880,22867,22026,21280,20691,20229,19837,19561,19401,19319,19335,19447,19640,19898,20237,20673,21187,21763,22361,23015,23677,24270,24849,25333,25692,25959,26011,25892,25614,25139,24493,23787,22999,22136,21274,20421,19637,18961,18307,17748,17283,16881,16556,16316,16153,16039,16000,16021,16117,16277,16492,16791,17154,17569,18056,18634,19237,19863,20532,21255,22001,22721,23447,24156,24797,25395,25949,26368,26695,26926,27046,27061,26961,26755,26434,26034,25545,24983,24407,23760,23118,22448,21779,21167,20554,19975,19419,18921,18469,18067,17686,17360,17073,16805,16581,16362,16161,15986,15793,15602,15436,15302,15202,15101,15032,14948,14897,14898,14890,14885,14923,14933,14971,15003,15046,15083,15151,15161,15173,15173,15181,15200,15228,15209,15223,15160,15105,15047,14978,14897,14797,14674,14522,14346,14166,13955,13730,13495,13217,12959,12677,12386,12097,11795,11510,11252,10987,10755,10521,10275,9969,9641,9338,9058,8813,8597,8433,8277,8136,8040,7961,7895,7853,7774,7683,7553,7368,7225,7090,6984,6882,6795,6736,6680,6660,6616,6621,6596,6603,6609,6615,6451,6147,5729,5097,22.2,22.4,23.1,1568884,0.1,12.9,12.0,5.0,448,-1.00,-1.00,59.0252,-19.422430,0.000512,,,,,243 +SATSLF0720,2024246,20.514200,3.99,0.0559,0.1062,0.0206,0.00,16040,657,1,713,727,717,730,726,726,729,729,721,733,737,739,787,890,1219,1922,3061,4411,5641,6571,7220,7677,8115,8568,9078,9711,10436,11305,12304,13393,14550,15706,16813,17744,18472,18898,19040,18857,18478,17946,17373,16798,16355,15986,15774,15690,15785,16021,16427,16986,17733,18643,19701,20906,22215,23657,25122,26602,27988,29245,30233,30981,31377,31382,31044,30407,29500,28449,27226,26064,24905,23845,22872,22025,21271,20683,20210,19825,19553,19395,19316,19317,19419,19620,19872,20222,20637,21171,21728,22352,23010,23661,24273,24852,25305,25691,25954,26005,25883,25610,25137,24496,23780,22978,22115,21254,20428,19657,18957,18305,17737,17265,16870,16553,16310,16136,16018,15989,16017,16092,16263,16490,16789,17146,17562,18058,18615,19217,19848,20526,21250,21987,22726,23447,24154,24805,25378,25955,26379,26705,26928,27030,27041,26953,26744,26405,26029,25543,24980,24397,23757,23101,22437,21792,21171,20550,19960,19401,18930,18456,18058,17701,17376,17072,16806,16571,16357,16169,15981,15790,15605,15440,15301,15185,15089,15005,14944,14899,14894,14894,14913,14932,14948,14989,15036,15045,15093,15143,15169,15168,15170,15192,15209,15226,15227,15223,15157,15111,15045,14989,14891,14801,14664,14512,14338,14160,13930,13729,13495,13234,12973,12676,12388,12092,11805,11517,11259,11002,10777,10533,10274,9978,9639,9351,9060,8810,8601,8425,8279,8154,8049,7972,7901,7849,7770,7688,7552,7362,7222,7096,6974,6880,6802,6740,6692,6642,6623,6616,6595,6580,6602,6596,6452,6156,5733,5126,22.2,22.4,23.1,1568885,0.2,12.9,11.9,5.0,450,-1.00,-1.00,59.0980,-19.423090,0.000606,,,,,117 +SATSLF0720,2024246,20.514456,4.19,0.0588,0.1072,0.0211,0.00,16014,657,1,726,705,721,713,723,721,731,728,727,738,736,760,775,893,1213,1911,3053,4395,5631,6557,7193,7681,8117,8549,9071,9683,10417,11284,12273,13364,14529,15676,16775,17701,18423,18865,18989,18814,18450,17916,17334,16779,16333,15968,15746,15668,15757,15989,16406,16993,17719,18617,19690,20877,22193,23625,25093,26546,27949,29188,30186,30921,31325,31317,30994,30341,29451,28404,27190,26025,24877,23800,22808,21963,21250,20649,20185,19801,19516,19363,19271,19280,19383,19562,19837,20170,20610,21127,21682,22293,22949,23597,24225,24788,25278,25636,25904,25945,25827,25557,25098,24462,23755,22963,22085,21217,20374,19619,18905,18256,17707,17239,16825,16509,16272,16104,16002,15959,15991,16076,16225,16463,16761,17118,17564,18024,18596,19201,19819,20505,21239,21968,22694,23417,24098,24743,25333,25896,26327,26653,26885,26989,27016,26914,26688,26369,25969,25491,24912,24340,23714,23061,22418,21771,21138,20545,19944,19386,18898,18429,18034,17671,17352,17062,16786,16547,16353,16141,15964,15761,15569,15415,15280,15161,15068,14997,14904,14874,14862,14847,14875,14899,14917,14955,15005,15026,15068,15127,15146,15141,15157,15157,15173,15208,15203,15199,15161,15090,15028,14958,14877,14777,14645,14492,14322,14123,13924,13701,13464,13204,12946,12667,12377,12096,11806,11512,11246,10997,10745,10503,10237,9936,9621,9314,9041,8795,8594,8419,8266,8133,8046,7963,7893,7848,7766,7678,7537,7356,7206,7081,6963,6881,6797,6732,6672,6647,6610,6600,6581,6581,6601,6587,6426,6143,5717,5099,22.2,22.4,23.1,1568886,0.0,12.9,12.0,5.0,442,-1.00,-1.00,58.4132,-19.108751,0.000538,,,,,185 +SATSDF0720,2024246,20.759139,0.00,0.0000,0.0000,0.0000,0.00,657,0,1,656,641,637,626,631,631,626,621,635,637,627,631,631,652,640,642,649,649,641,652,645,640,645,664,657,660,658,665,656,663,664,661,661,671,667,665,664,667,664,665,654,658,657,658,654,663,654,665,678,676,672,676,657,663,651,659,645,645,643,659,651,658,667,683,665,670,669,661,656,661,657,669,665,650,661,660,658,653,666,672,668,659,655,668,665,668,666,666,663,658,659,651,656,641,653,661,654,666,662,669,666,665,661,650,662,664,658,663,654,656,663,672,666,658,653,658,662,672,657,672,661,662,667,660,662,651,661,649,651,648,649,649,650,645,647,652,644,663,652,657,657,649,661,652,657,658,648,643,659,642,654,652,641,650,653,648,659,660,660,657,659,657,649,647,647,655,651,655,655,647,658,642,657,661,653,664,649,653,665,652,651,651,660,663,655,662,667,661,656,662,666,658,662,667,657,667,653,659,644,666,658,678,665,666,657,658,650,659,657,658,670,659,668,673,663,665,664,663,658,663,654,647,661,659,665,666,664,657,657,651,651,657,649,663,661,656,673,667,679,665,663,659,661,649,644,656,646,660,665,654,661,661,654,664,662,503,0.0,0.0,0.0,1568885,0.4,13.3,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,249 +SATSLF0720,2024246,20.759694,4.00,0.0560,0.1017,0.0175,0.00,16176,657,1,717,709,712,722,725,717,711,719,735,732,738,739,775,875,1194,1900,3065,4423,5694,6644,7298,7778,8198,8651,9185,9799,10553,11428,12421,13541,14717,15887,17002,17960,18683,19123,19249,19063,18693,18142,17568,16999,16533,16177,15933,15874,15954,16200,16616,17209,17957,18859,19931,21141,22463,23917,25402,26873,28302,29557,30568,31321,31730,31735,31402,30745,29837,28801,27553,26357,25194,24119,23115,22277,21525,20916,20439,20041,19754,19596,19511,19514,19621,19809,20071,20430,20853,21385,21945,22567,23243,23885,24501,25075,25554,25908,26182,26225,26112,25829,25359,24714,24003,23192,22305,21435,20580,19803,19099,18432,17881,17409,17006,16676,16429,16261,16161,16110,16135,16200,16379,16614,16900,17274,17693,18192,18765,19387,20025,20710,21424,22180,22909,23623,24329,24999,25591,26148,26589,26918,27161,27273,27281,27176,26967,26638,26227,25742,25168,24569,23936,23283,22630,21965,21337,20727,20146,19578,19079,18605,18178,17812,17484,17197,16929,16690,16487,16289,16098,15907,15717,15551,15398,15284,15193,15105,15037,14996,14984,14977,14987,15015,15031,15059,15109,15145,15197,15253,15269,15271,15269,15279,15292,15314,15310,15308,15253,15207,15150,15074,14989,14884,14745,14599,14422,14225,14007,13806,13576,13300,13032,12754,12456,12179,11877,11581,11318,11066,10832,10585,10318,10012,9706,9389,9094,8849,8650,8481,8304,8173,8065,7998,7927,7889,7825,7733,7594,7411,7249,7136,7009,6908,6837,6776,6727,6693,6656,6633,6615,6616,6634,6625,6474,6176,5753,5133,22.1,22.1,22.6,1568886,0.2,12.9,11.9,5.0,571,-1.00,-1.00,58.4834,-19.376634,0.000499,,,,,192 +SATSLF0720,2024246,20.759875,4.08,0.0572,0.1020,0.0178,0.00,16169,657,1,702,698,723,722,725,727,737,724,729,730,733,743,771,884,1189,1895,3065,4430,5687,6628,7290,7763,8195,8648,9170,9801,10555,11418,12420,13518,14706,15866,16976,17937,18642,19088,19220,19035,18674,18141,17548,16986,16531,16177,15945,15866,15959,16186,16597,17173,17928,18826,19906,21126,22459,23893,25384,26863,28288,29551,30537,31297,31705,31691,31387,30728,29818,28748,27531,26346,25185,24106,23106,22256,21513,20901,20421,20034,19742,19579,19497,19509,19602,19795,20057,20400,20850,21358,21930,22538,23223,23870,24485,25060,25537,25901,26157,26224,26103,25817,25338,24696,23969,23175,22276,21415,20569,19796,19098,18432,17873,17405,16994,16674,16412,16251,16146,16099,16130,16217,16369,16593,16908,17269,17709,18196,18752,19371,20023,20712,21429,22170,22908,23626,24349,24997,25585,26168,26577,26904,27141,27243,27258,27163,26949,26630,26233,25741,25160,24575,23933,23301,22618,21956,21325,20701,20110,19545,19076,18591,18195,17831,17485,17202,16930,16694,16494,16276,16091,15901,15708,15544,15398,15275,15190,15113,15019,15003,14984,14964,14977,15016,15025,15063,15107,15141,15186,15245,15261,15278,15282,15282,15290,15315,15313,15305,15257,15202,15138,15073,15003,14890,14741,14592,14420,14233,14013,13789,13563,13312,13050,12758,12458,12174,11874,11591,11320,11066,10824,10570,10297,10000,9671,9375,9097,8837,8647,8466,8304,8192,8081,8003,7927,7875,7819,7733,7589,7403,7255,7129,7016,6925,6838,6774,6720,6681,6657,6651,6627,6621,6645,6634,6477,6174,5751,5133,22.1,22.1,22.7,1568887,0.0,12.8,12.0,5.0,470,-1.00,-1.00,58.2228,-19.253143,0.000485,,,,,47 +SATSLF0720,2024246,20.760134,3.94,0.0552,0.1020,0.0172,0.00,16181,657,1,713,718,722,728,740,725,739,729,740,733,744,749,761,884,1198,1907,3085,4457,5693,6632,7281,7757,8200,8658,9186,9801,10552,11420,12425,13559,14722,15899,17006,17961,18669,19099,19251,19068,18697,18170,17572,17006,16552,16170,15947,15886,15953,16197,16601,17188,17928,18851,19915,21133,22467,23908,25389,26883,28297,29555,30561,31309,31734,31735,31401,30756,29841,28781,27533,26339,25179,24104,23090,22242,21511,20915,20426,20037,19763,19587,19498,19513,19615,19801,20079,20413,20856,21384,21965,22577,23243,23876,24485,25074,25549,25909,26183,26233,26098,25835,25349,24710,23997,23193,22318,21447,20598,19827,19105,18455,17869,17415,16999,16685,16426,16273,16156,16118,16145,16234,16402,16621,16905,17275,17703,18193,18770,19386,20010,20714,21449,22190,22925,23637,24343,25004,25614,26162,26586,26913,27145,27255,27269,27180,26978,26646,26254,25761,25184,24588,23941,23307,22640,21977,21345,20737,20146,19595,19096,18614,18213,17845,17505,17210,16939,16701,16493,16281,16087,15914,15738,15570,15419,15306,15209,15125,15051,15021,15002,14990,15001,15010,15040,15070,15112,15143,15191,15255,15272,15285,15288,15289,15326,15325,15304,15315,15272,15206,15159,15094,14998,14907,14767,14612,14434,14240,14040,13810,13587,13328,13048,12764,12477,12182,11873,11596,11306,11070,10826,10595,10323,10035,9694,9388,9099,8852,8640,8464,8315,8183,8087,8000,7943,7900,7808,7715,7587,7402,7259,7144,7020,6928,6833,6773,6713,6680,6654,6656,6639,6632,6644,6647,6480,6199,5757,5147,22.1,22.1,22.8,1568888,0.2,12.8,12.0,5.0,458,-1.00,-1.00,58.5053,-19.380434,0.000545,,,,,63 +SATSLF0720,2024246,20.760387,4.14,0.0580,0.1055,0.0197,0.00,16061,657,1,710,708,713,713,717,723,737,722,730,727,724,734,774,877,1191,1897,3046,4386,5629,6548,7191,7683,8109,8562,9082,9698,10442,11302,12287,13385,14565,15709,16810,17749,18475,18903,19049,18858,18505,17968,17391,16844,16384,16021,15791,15735,15797,16055,16456,17040,17778,18678,19726,20935,22251,23693,25156,26640,28034,29275,30286,31029,31448,31453,31121,30467,29565,28501,27293,26122,24992,23922,22921,22081,21340,20730,20251,19885,19593,19432,19344,19360,19457,19667,19925,20268,20703,21220,21786,22385,23051,23703,24308,24887,25354,25718,25970,26027,25904,25629,25168,24526,23813,23017,22156,21278,20432,19657,18951,18323,17761,17299,16885,16573,16313,16157,16043,16007,16023,16119,16277,16503,16820,17173,17604,18087,18651,19266,19897,20573,21305,22036,22761,23482,24192,24834,25421,25979,26398,26739,26981,27084,27105,27009,26784,26455,26061,25568,25008,24421,23781,23133,22495,21832,21189,20599,19991,19447,18966,18477,18084,17717,17394,17104,16839,16597,16403,16188,16011,15819,15641,15457,15333,15201,15113,15033,14966,14925,14905,14904,14912,14939,14964,14994,15025,15060,15121,15166,15188,15184,15195,15194,15222,15246,15244,15245,15188,15125,15077,14984,14897,14811,14668,14523,14349,14158,13942,13739,13497,13239,12977,12685,12378,12103,11802,11521,11248,10995,10769,10536,10251,9974,9645,9344,9061,8818,8603,8425,8267,8147,8048,7970,7908,7847,7789,7694,7556,7383,7237,7102,6985,6885,6805,6738,6691,6663,6633,6636,6613,6601,6613,6606,6454,6148,5720,5104,22.1,22.1,22.8,1568889,0.4,12.8,12.0,5.0,458,-1.00,-1.00,58.8039,-19.337580,0.000485,,,,,250 +SATSLF0720,2024246,20.760643,4.05,0.0567,0.1028,0.0179,0.00,16152,657,1,698,709,711,708,720,716,737,712,735,725,731,732,774,889,1205,1914,3070,4433,5676,6619,7274,7757,8189,8637,9159,9777,10530,11402,12403,13516,14683,15858,16961,17917,18645,19072,19205,19021,18661,18117,17529,16965,16501,16151,15925,15857,15917,16177,16577,17165,17913,18812,19880,21101,22417,23870,25341,26837,28254,29515,30513,31260,31651,31659,31357,30709,29774,28712,27494,26304,25149,24084,23070,22203,21483,20869,20386,19995,19712,19550,19461,19465,19576,19777,20029,20378,20825,21346,21910,22535,23194,23840,24442,25041,25508,25905,26146,26181,26067,25786,25316,24677,23945,23147,22281,21403,20555,19777,19075,18421,17832,17374,16962,16657,16409,16238,16141,16098,16123,16215,16373,16596,16885,17257,17689,18165,18725,19351,19981,20673,21402,22152,22887,23601,24309,24964,25561,26123,26549,26867,27111,27225,27226,27147,26922,26589,26187,25700,25127,24548,23920,23264,22605,21942,21300,20689,20090,19539,19035,18566,18163,17792,17479,17176,16917,16686,16469,16263,16084,15878,15706,15525,15395,15270,15178,15105,15019,14983,14976,14965,14979,15001,15023,15041,15107,15132,15180,15235,15241,15255,15264,15267,15295,15312,15309,15298,15239,15197,15136,15059,14985,14877,14734,14581,14411,14213,14005,13794,13561,13296,13021,12743,12454,12161,11848,11571,11305,11046,10808,10581,10304,10011,9690,9373,9078,8834,8631,8442,8304,8178,8081,7995,7931,7883,7813,7723,7581,7399,7251,7122,7011,6905,6827,6759,6703,6670,6641,6641,6620,6601,6638,6642,6482,6176,5757,5132,22.2,22.1,22.8,1568890,0.5,12.8,11.9,5.0,455,-1.00,-1.00,58.3420,-19.280126,0.000499,,,,,82 +SATSLF0720,2024246,20.760899,4.10,0.0574,0.1032,0.0187,0.00,16132,657,1,702,691,705,698,715,717,709,717,721,731,740,754,790,902,1209,1897,3051,4413,5673,6608,7274,7749,8171,8622,9128,9758,10510,11386,12369,13499,14678,15826,16944,17897,18604,19037,19174,18996,18625,18073,17485,16933,16484,16126,15880,15827,15892,16144,16551,17135,17873,18789,19845,21069,22389,23829,25313,26798,28197,29457,30473,31205,31607,31607,31289,30645,29717,28671,27435,26251,25102,24038,23037,22177,21433,20835,20347,19971,19685,19527,19442,19472,19553,19735,20009,20359,20789,21301,21875,22484,23149,23808,24421,25005,25479,25865,26123,26163,26024,25756,25283,24622,23927,23127,22257,21378,20528,19758,19045,18402,17834,17351,16957,16643,16388,16228,16108,16067,16093,16174,16335,16567,16865,17242,17676,18145,18725,19328,19959,20643,21378,22119,22861,23565,24292,24936,25523,26103,26528,26846,27101,27203,27208,27112,26888,26561,26165,25665,25120,24530,23900,23241,22581,21914,21283,20673,20077,19527,19019,18560,18154,17781,17443,17167,16894,16670,16462,16256,16055,15869,15682,15523,15374,15264,15175,15085,15012,14962,14951,14947,14945,14979,15008,15037,15095,15125,15162,15217,15211,15221,15245,15248,15283,15289,15288,15290,15237,15181,15109,15027,14948,14842,14715,14565,14403,14208,14009,13799,13555,13284,13013,12740,12437,12137,11835,11559,11275,11037,10801,10560,10297,9985,9674,9366,9081,8837,8624,8463,8296,8171,8065,7991,7927,7874,7802,7715,7574,7396,7239,7101,6986,6892,6811,6752,6707,6671,6645,6642,6617,6605,6618,6629,6477,6174,5753,5131,22.1,22.2,22.8,1568891,0.1,12.8,11.9,5.0,455,-1.00,-1.00,58.2749,-19.219584,0.000551,,,,,7 +SATSLF0720,2024246,20.761152,4.07,0.0570,0.1039,0.0193,0.00,16110,657,1,710,717,720,723,724,721,717,719,713,717,731,734,775,875,1191,1907,3050,4427,5659,6593,7249,7726,8139,8579,9106,9728,10486,11352,12354,13466,14637,15799,16901,17863,18573,19003,19145,18955,18576,18038,17459,16897,16443,16094,15866,15784,15863,16113,16532,17120,17858,18748,19826,21031,22343,23787,25265,26757,28155,29403,30414,31148,31578,31556,31236,30601,29693,28653,27402,26227,25079,23995,22997,22144,21414,20800,20326,19945,19653,19506,19414,19431,19534,19710,19977,20325,20763,21274,21826,22458,23130,23781,24374,24978,25434,25817,26073,26106,26010,25721,25260,24616,23889,23072,22221,21345,20482,19718,19017,18373,17813,17355,16941,16633,16368,16180,16083,16043,16053,16165,16327,16535,16851,17210,17648,18133,18700,19314,19957,20629,21349,22103,22841,23524,24243,24901,25498,26061,26481,26795,27061,27157,27186,27074,26870,26533,26134,25642,25073,24493,23861,23203,22557,21881,21250,20642,20056,19493,19014,18533,18134,17760,17422,17133,16870,16640,16428,16232,16030,15859,15653,15493,15353,15238,15143,15064,14989,14942,14942,14932,14939,14949,14983,15032,15061,15099,15154,15210,15214,15217,15226,15229,15245,15273,15273,15269,15216,15156,15089,15036,14926,14839,14717,14564,14394,14213,13989,13773,13537,13263,12996,12700,12414,12123,11826,11549,11276,11050,10806,10578,10299,9994,9675,9361,9067,8811,8596,8417,8279,8149,8062,7977,7899,7862,7813,7706,7581,7385,7231,7115,6993,6897,6817,6747,6701,6665,6645,6625,6607,6608,6621,6631,6472,6164,5734,5118,22.2,22.2,22.8,1568892,0.1,12.8,12.0,5.0,455,-1.00,-1.00,58.7996,-19.413399,0.000505,,,,,117 +SATSLF0720,2024246,20.761408,4.02,0.0563,0.1040,0.0191,0.00,16118,657,1,709,714,721,724,718,725,739,734,745,745,741,745,773,874,1195,1910,3044,4416,5656,6605,7267,7737,8164,8604,9118,9757,10496,11376,12360,13477,14650,15814,16904,17861,18587,19005,19157,18973,18607,18064,17489,16912,16450,16104,15872,15794,15881,16132,16534,17112,17853,18753,19831,21033,22357,23803,25275,26765,28169,29430,30429,31166,31579,31579,31255,30610,29690,28646,27418,26226,25076,23991,23008,22153,21406,20816,20325,19938,19665,19505,19411,19433,19527,19722,19978,20327,20757,21281,21837,22453,23136,23782,24408,24988,25446,25816,26080,26115,26007,25723,25262,24614,23889,23089,22215,21357,20508,19745,19037,18389,17831,17349,16945,16624,16381,16208,16099,16057,16093,16171,16336,16561,16838,17220,17655,18145,18702,19319,19944,20645,21358,22110,22854,23568,24261,24928,25517,26080,26502,26836,27074,27179,27194,27094,26877,26544,26134,25655,25074,24496,23869,23218,22564,21904,21256,20649,20065,19502,19015,18551,18135,17767,17445,17141,16871,16637,16439,16233,16050,15859,15672,15510,15365,15259,15155,15085,14990,14962,14944,14941,14950,14976,15003,15025,15079,15101,15153,15205,15205,15224,15226,15239,15268,15275,15284,15274,15221,15155,15097,15024,14917,14855,14716,14565,14397,14208,13994,13785,13525,13269,12990,12711,12432,12136,11853,11571,11309,11047,10810,10568,10288,9976,9667,9349,9065,8845,8609,8455,8293,8165,8076,7989,7917,7857,7815,7716,7576,7389,7239,7106,7005,6915,6825,6753,6694,6666,6644,6638,6619,6615,6627,6645,6481,6160,5751,5120,22.2,22.2,22.9,1568893,0.4,12.8,12.0,5.0,453,-1.00,-1.00,58.6747,-19.366632,0.000524,,,,,41 +SATSLF0720,2024246,20.761662,4.11,0.0575,0.1034,0.0184,0.00,16128,657,1,718,709,730,729,737,734,732,731,741,727,756,741,776,887,1203,1915,3069,4421,5669,6606,7253,7738,8166,8613,9130,9754,10516,11389,12372,13482,14649,15805,16925,17866,18589,19037,19145,18978,18613,18086,17489,16928,16457,16101,15863,15804,15889,16141,16544,17139,17869,18770,19846,21061,22381,23817,25286,26762,28183,29429,30432,31163,31588,31585,31267,30617,29717,28650,27416,26231,25077,23997,23005,22153,21430,20828,20352,19949,19675,19522,19434,19445,19523,19717,19982,20339,20765,21297,21844,22475,23139,23797,24411,24980,25467,25836,26093,26130,26025,25752,25265,24630,23917,23106,22246,21364,20525,19752,19038,18401,17841,17370,16954,16647,16392,16232,16114,16087,16085,16191,16347,16582,16853,17228,17649,18141,18707,19322,19957,20650,21371,22129,22853,23559,24277,24921,25526,26078,26513,26828,27077,27173,27186,27101,26873,26551,26159,25661,25120,24520,23882,23237,22582,21913,21272,20677,20068,19514,19021,18551,18144,17782,17459,17174,16892,16650,16453,16245,16061,15866,15688,15514,15387,15274,15169,15088,15016,14972,14948,14949,14941,14982,15012,15038,15082,15108,15158,15222,15226,15239,15242,15259,15273,15301,15293,15278,15235,15160,15119,15034,14953,14862,14733,14587,14393,14212,14007,13787,13551,13300,13025,12745,12445,12139,11847,11562,11289,11036,10803,10562,10309,10003,9697,9378,9093,8850,8637,8472,8301,8183,8090,7994,7918,7867,7801,7715,7569,7401,7248,7135,7021,6914,6822,6765,6713,6688,6649,6628,6631,6614,6625,6618,6481,6171,5738,5139,22.2,22.2,22.9,1568894,0.2,12.8,11.9,5.0,456,-1.00,-1.00,58.1916,-19.171424,0.000521,,,,,31 +SATSLF0720,2024246,20.761915,3.93,0.0550,0.1037,0.0184,0.00,16123,657,1,702,710,731,743,727,736,725,727,737,737,733,758,778,884,1208,1909,3062,4425,5664,6597,7248,7737,8174,8615,9148,9754,10492,11370,12356,13477,14653,15810,16914,17882,18609,19037,19170,18976,18609,18066,17468,16909,16440,16080,15871,15786,15879,16122,16541,17116,17853,18762,19837,21053,22367,23793,25283,26749,28169,29431,30421,31165,31579,31575,31243,30596,29691,28645,27410,26238,25069,24004,23000,22142,21414,20814,20328,19947,19683,19521,19421,19420,19529,19702,19981,20309,20749,21271,21847,22493,23150,23787,24407,24981,25461,25833,26084,26133,26023,25718,25258,24616,23886,23096,22221,21358,20529,19746,19033,18388,17831,17365,16947,16635,16377,16215,16106,16069,16105,16169,16351,16571,16866,17223,17645,18135,18713,19321,19957,20642,21373,22113,22848,23560,24255,24920,25502,26074,26497,26828,27069,27178,27185,27088,26887,26550,26167,25653,25093,24514,23862,23210,22549,21910,21269,20652,20077,19509,19021,18555,18161,17788,17458,17153,16887,16659,16441,16247,16050,15860,15669,15521,15372,15262,15163,15083,15026,14962,14965,14948,14956,14983,14998,15039,15073,15111,15152,15228,15230,15246,15258,15257,15273,15287,15291,15289,15229,15162,15117,15045,14957,14850,14715,14565,14390,14208,13992,13789,13545,13285,13033,12733,12432,12157,11850,11552,11283,11051,10802,10564,10286,10000,9683,9371,9093,8844,8627,8473,8306,8176,8082,8003,7937,7881,7824,7737,7589,7409,7253,7123,7005,6904,6818,6763,6700,6669,6655,6625,6617,6601,6624,6625,6487,6183,5765,5138,22.2,22.2,22.9,1568895,0.2,12.8,12.0,5.0,444,-1.00,-1.00,58.9636,-19.486044,0.000578,,,,,18 +SATSLF0720,2024246,20.762171,4.05,0.0567,0.1041,0.0191,0.00,16107,657,1,708,697,711,711,715,723,730,727,744,741,736,749,778,881,1191,1908,3057,4418,5680,6606,7269,7734,8158,8624,9125,9754,10482,11357,12358,13468,14645,15809,16920,17864,18580,19013,19144,18957,18580,18058,17460,16904,16455,16105,15877,15797,15870,16106,16513,17095,17832,18745,19817,21032,22355,23810,25269,26750,28167,29421,30391,31153,31557,31547,31233,30582,29649,28629,27393,26224,25065,23982,22986,22117,21392,20791,20325,19930,19649,19505,19406,19413,19520,19713,19961,20308,20727,21253,21820,22433,23098,23771,24374,24971,25449,25810,26067,26109,25994,25719,25217,24610,23869,23073,22210,21329,20493,19729,19027,18378,17815,17348,16931,16623,16376,16201,16078,16043,16053,16167,16293,16541,16839,17201,17649,18119,18693,19298,19944,20613,21336,22091,22829,23524,24230,24890,25491,26043,26475,26792,27037,27136,27165,27070,26846,26535,26133,25637,25069,24475,23847,23200,22545,21885,21245,20646,20045,19478,18992,18521,18120,17738,17419,17133,16863,16626,16432,16229,16045,15841,15652,15490,15361,15241,15141,15064,14978,14953,14932,14936,14926,14965,14998,15029,15061,15097,15145,15191,15207,15216,15213,15232,15253,15283,15273,15260,15217,15147,15096,15021,14920,14822,14711,14546,14387,14205,13985,13782,13538,13280,13012,12725,12421,12129,11841,11541,11280,11021,10789,10569,10306,9982,9659,9349,9049,8817,8623,8440,8283,8158,8066,7975,7926,7860,7811,7717,7564,7379,7241,7108,6998,6892,6818,6752,6709,6673,6632,6621,6621,6593,6615,6621,6453,6154,5731,5121,22.2,22.2,22.9,1568896,0.3,12.8,12.0,5.0,452,-1.00,-1.00,58.5264,-19.292918,0.000575,,,,,136 +SATSLF0720,2024246,20.762425,4.10,0.0574,0.1052,0.0203,0.00,16078,657,1,714,729,725,721,721,711,716,716,727,727,744,735,773,889,1186,1899,3044,4408,5646,6584,7242,7717,8135,8599,9108,9732,10462,11341,12332,13444,14612,15764,16853,17804,18522,18961,19093,18924,18529,18011,17430,16878,16425,16061,15842,15756,15837,16100,16503,17056,17797,18698,19770,20990,22301,23738,25213,26701,28116,29362,30344,31084,31488,31473,31163,30524,29611,28566,27349,26177,25009,23925,22938,22078,21346,20747,20258,19890,19605,19442,19357,19363,19460,19659,19929,20269,20701,21218,21780,22410,23064,23725,24325,24900,25383,25752,26007,26065,25954,25673,25206,24560,23843,23036,22172,21300,20444,19675,18971,18330,17776,17315,16902,16573,16341,16169,16069,16020,16033,16132,16283,16519,16807,17171,17608,18086,18654,19261,19901,20585,21305,22045,22780,23497,24193,24855,25462,26005,26434,26749,26992,27098,27104,27024,26817,26481,26085,25597,25037,24446,23811,23148,22509,21845,21205,20587,20013,19464,18976,18488,18088,17719,17399,17114,16850,16599,16405,16200,16014,15809,15639,15466,15330,15213,15101,15040,14961,14933,14909,14925,14925,14954,14969,15001,15044,15072,15109,15166,15187,15181,15197,15216,15232,15249,15249,15228,15177,15118,15056,14990,14909,14813,14703,14544,14365,14177,13964,13761,13496,13256,12985,12705,12397,12130,11816,11529,11259,11022,10791,10539,10273,9973,9647,9350,9049,8801,8605,8435,8281,8151,8045,7965,7902,7853,7778,7696,7559,7377,7231,7104,6989,6881,6795,6743,6690,6642,6630,6625,6613,6602,6629,6621,6468,6153,5734,5112,22.2,22.3,22.9,1568897,0.1,12.8,12.0,5.0,454,-1.00,-1.00,58.5768,-19.277626,0.000503,,,,,154 +SATSLF0720,2024246,20.762678,3.99,0.0559,0.1045,0.0193,0.00,16094,657,1,697,715,712,727,728,724,736,739,732,738,733,740,767,876,1203,1906,3044,4416,5664,6594,7239,7720,8145,8573,9097,9727,10469,11336,12334,13448,14614,15771,16882,17833,18540,18985,19117,18942,18566,18038,17445,16889,16432,16075,15843,15765,15849,16097,16504,17077,17822,18728,19776,21004,22319,23765,25228,26702,28113,29369,30356,31099,31506,31513,31207,30545,29621,28587,27364,26180,25025,23963,22958,22114,21369,20757,20270,19895,19605,19464,19389,19394,19489,19691,19967,20285,20743,21254,21812,22426,23112,23766,24369,24955,25422,25781,26050,26097,25973,25696,25204,24582,23861,23073,22197,21317,20468,19707,19001,18353,17797,17321,16907,16600,16350,16194,16091,16042,16074,16145,16311,16545,16838,17205,17613,18103,18679,19297,19914,20597,21325,22067,22802,23527,24232,24881,25474,26042,26457,26787,27024,27125,27144,27038,26811,26507,26104,25610,25044,24471,23833,23200,22532,21880,21229,20626,20032,19466,18977,18509,18098,17746,17418,17137,16872,16631,16433,16241,16025,15841,15639,15482,15338,15228,15124,15067,14989,14953,14928,14924,14930,14955,14970,15006,15049,15090,15144,15197,15216,15221,15232,15236,15256,15285,15259,15253,15211,15149,15089,15036,14929,14837,14693,14545,14372,14189,13970,13746,13514,13272,13002,12712,12429,12141,11824,11532,11273,11020,10795,10549,10280,9984,9665,9366,9066,8823,8605,8428,8283,8153,8055,7986,7916,7865,7801,7723,7575,7394,7246,7113,6997,6890,6813,6766,6705,6660,6642,6625,6603,6597,6616,6621,6478,6173,5739,5131,22.2,22.3,23.0,1568897,0.4,12.8,12.0,5.0,453,-1.00,-1.00,58.7168,-19.346532,0.000504,,,,,70 +SATSLF0720,2024246,20.762934,4.10,0.0575,0.1061,0.0201,0.00,16059,657,1,725,718,721,723,727,732,734,729,732,741,733,745,777,885,1192,1899,3049,4402,5657,6586,7249,7718,8130,8576,9100,9705,10462,11310,12295,13406,14557,15713,16825,17772,18485,18935,19060,18880,18518,17965,17380,16842,16374,16009,15796,15738,15833,16061,16465,17040,17776,18666,19723,20939,22246,23686,25171,26651,28054,29290,30273,31033,31429,31431,31105,30475,29549,28503,27275,26114,24950,23873,22883,22062,21333,20724,20257,19862,19597,19428,19320,19349,19445,19631,19900,20250,20680,21200,21753,22381,23022,23692,24286,24859,25344,25717,25979,26045,25915,25637,25164,24530,23808,23008,22152,21288,20444,19694,18968,18331,17757,17291,16878,16561,16310,16133,16055,16001,16016,16115,16275,16497,16803,17160,17593,18078,18633,19247,19880,20553,21286,22013,22766,23480,24178,24829,25428,25986,26397,26709,26965,27061,27076,26985,26784,26453,26064,25557,25011,24392,23769,23127,22486,21827,21205,20601,19990,19447,18952,18485,18085,17717,17381,17096,16833,16586,16379,16177,16001,15808,15624,15454,15305,15200,15110,15025,14951,14918,14904,14903,14909,14925,14948,14988,15027,15060,15098,15170,15182,15194,15191,15212,15221,15236,15233,15222,15191,15125,15062,14984,14909,14821,14662,14526,14356,14179,13957,13738,13506,13250,12974,12697,12402,12117,11818,11531,11253,11024,10781,10540,10250,9975,9648,9333,9051,8808,8602,8429,8289,8148,8053,7969,7898,7837,7787,7706,7548,7369,7223,7094,6992,6888,6812,6749,6695,6652,6634,6617,6609,6597,6610,6610,6446,6145,5722,5121,22.2,22.3,23.0,1568898,0.0,12.8,11.9,5.0,453,-1.00,-1.00,58.6210,-19.258020,0.000546,,,,,105 +SATSLF0720,2024246,20.763188,4.15,0.0581,0.1066,0.0207,0.00,16042,657,1,710,711,727,725,723,736,731,717,735,727,739,760,786,891,1193,1910,3049,4405,5651,6566,7225,7700,8130,8580,9094,9718,10465,11321,12306,13412,14583,15731,16843,17781,18496,18929,19050,18867,18491,17960,17395,16841,16379,16023,15782,15705,15799,16043,16449,17021,17762,18660,19717,20941,22253,23691,25165,26628,28037,29274,30251,31020,31386,31403,31077,30426,29512,28485,27254,26077,24925,23874,22868,22026,21289,20702,20205,19835,19556,19403,19298,19323,19433,19626,19869,20227,20651,21182,21734,22345,23034,23674,24279,24869,25335,25701,25954,25997,25874,25599,25113,24480,23774,22978,22115,21248,20408,19653,18955,18306,17732,17264,16863,16544,16294,16129,16033,15978,16002,16097,16257,16485,16782,17133,17564,18061,18613,19224,19860,20538,21257,22005,22725,23436,24146,24797,25392,25946,26376,26692,26931,27040,27042,26935,26737,26402,26012,25526,24965,24380,23741,23099,22443,21779,21157,20561,19973,19424,18937,18480,18057,17692,17361,17065,16789,16559,16366,16157,15983,15784,15603,15431,15295,15184,15086,14997,14937,14905,14889,14889,14888,14921,14931,14967,15005,15029,15078,15150,15145,15161,15177,15173,15191,15221,15233,15206,15165,15097,15041,14962,14877,14792,14648,14503,14337,14152,13944,13744,13498,13234,12952,12688,12380,12075,11781,11510,11245,11008,10756,10539,10261,9962,9642,9317,9055,8793,8589,8416,8259,8126,8040,7960,7894,7853,7784,7693,7540,7376,7218,7084,6983,6873,6790,6724,6673,6634,6615,6611,6589,6583,6611,6609,6449,6143,5723,5111,22.2,22.4,23.0,1568899,0.3,12.8,12.0,5.0,452,-1.00,-1.00,58.2583,-19.091012,0.000599,,,,,30 +SATSLF0720,2024246,20.763439,3.97,0.0556,0.1065,0.0204,0.00,16037,657,1,709,719,717,723,726,733,731,738,729,737,747,757,779,888,1209,1908,3033,4394,5639,6572,7213,7701,8114,8575,9074,9687,10434,11303,12277,13370,14550,15700,16807,17749,18461,18895,19021,18841,18481,17932,17348,16793,16322,15970,15757,15687,15776,16021,16418,17005,17739,18643,19703,20905,22209,23634,25096,26577,27985,29238,30230,30983,31385,31403,31061,30413,29507,28461,27236,26058,24907,23841,22845,22007,21282,20677,20213,19821,19536,19405,19301,19325,19417,19604,19853,20206,20641,21165,21724,22345,23005,23653,24267,24852,25317,25687,25943,25981,25879,25597,25125,24487,23768,22985,22125,21253,20409,19646,18946,18301,17741,17269,16871,16553,16279,16123,16027,15991,16008,16100,16258,16486,16778,17147,17573,18053,18615,19221,19846,20523,21253,21987,22729,23438,24157,24790,25386,25931,26365,26692,26916,27034,27046,26961,26731,26417,26013,25540,24961,24388,23754,23106,22449,21789,21168,20556,19968,19435,18933,18466,18064,17686,17348,17066,16826,16573,16367,16171,15981,15801,15609,15446,15297,15187,15084,15017,14930,14902,14881,14878,14891,14921,14940,14968,15017,15045,15100,15164,15145,15171,15179,15188,15223,15223,15232,15213,15175,15113,15052,14970,14887,14790,14662,14517,14336,14137,13955,13726,13485,13233,12980,12681,12393,12089,11790,11523,11254,10999,10772,10516,10257,9947,9632,9327,9041,8800,8586,8422,8275,8134,8061,7970,7890,7846,7792,7697,7563,7393,7230,7102,6977,6870,6793,6727,6678,6651,6620,6619,6606,6594,6607,6595,6443,6145,5701,5107,22.2,22.4,23.1,1568900,0.0,12.8,11.9,5.0,454,-1.00,-1.00,59.5851,-19.627877,0.000599,,,,,21 +SATSLF0720,2024246,20.763695,4.03,0.0564,0.1068,0.0209,0.00,16029,657,1,709,713,723,717,739,737,737,739,744,742,740,741,769,889,1204,1909,3044,4397,5623,6565,7209,7687,8118,8558,9084,9711,10434,11288,12283,13382,14549,15682,16775,17723,18454,18885,19001,18837,18460,17938,17347,16793,16344,15986,15751,15684,15777,15995,16412,16999,17725,18647,19688,20885,22224,23649,25108,26587,27989,29219,30224,30964,31367,31362,31040,30393,29493,28458,27229,26077,24909,23841,22848,21994,21275,20667,20205,19825,19541,19386,19291,19296,19413,19602,19858,20205,20640,21164,21729,22333,22996,23649,24265,24834,25301,25668,25928,25989,25864,25577,25100,24469,23755,22979,22101,21242,20421,19645,18945,18283,17731,17249,16845,16535,16290,16118,16016,15985,16001,16098,16253,16473,16765,17127,17544,18026,18593,19201,19840,20517,21239,21972,22713,23443,24141,24802,25370,25954,26361,26681,26914,27011,27013,26939,26718,26405,26002,25497,24955,24371,23735,23104,22453,21781,21149,20549,19965,19421,18917,18454,18054,17684,17367,17068,16793,16546,16355,16137,15950,15767,15572,15426,15295,15174,15079,15002,14947,14902,14880,14864,14867,14899,14902,14939,14992,15017,15073,15139,15145,15162,15176,15189,15201,15217,15232,15209,15157,15094,15037,14965,14891,14792,14660,14504,14330,14144,13927,13719,13483,13209,12949,12661,12369,12096,11777,11515,11245,10990,10757,10522,10243,9959,9636,9333,9033,8795,8590,8417,8267,8126,8037,7965,7896,7844,7780,7689,7542,7372,7227,7081,6973,6882,6797,6738,6677,6642,6636,6605,6589,6583,6596,6588,6439,6143,5720,5096,22.2,22.4,23.1,1568901,0.1,12.8,12.0,5.0,454,-1.00,-1.00,59.3524,-19.526016,0.000559,,,,,132 +SATSLF0720,2024246,20.763948,4.07,0.0571,0.1067,0.0208,0.00,16041,657,1,713,705,719,709,720,728,725,721,715,717,735,740,773,901,1197,1905,3054,4410,5641,6579,7222,7692,8109,8557,9070,9703,10443,11296,12283,13382,14558,15713,16817,17762,18466,18905,19051,18861,18488,17958,17378,16809,16356,16008,15777,15710,15783,16039,16437,17034,17757,18658,19712,20929,22231,23656,25132,26600,28019,29255,30260,31006,31406,31401,31066,30425,29525,28481,27254,26073,24936,23853,22891,22023,21302,20691,20218,19833,19561,19394,19293,19324,19426,19618,19876,20221,20669,21165,21737,22353,23018,23666,24290,24860,25338,25704,25957,26022,25897,25605,25133,24501,23774,22983,22133,21251,20404,19649,18961,18296,17748,17281,16868,16564,16297,16130,16023,15982,15990,16087,16249,16482,16781,17136,17579,18050,18611,19235,19850,20546,21256,21995,22733,23437,24137,24793,25360,25950,26377,26701,26944,27045,27065,26960,26742,26420,26013,25509,24954,24361,23752,23106,22462,21797,21186,20545,19968,19397,18916,18448,18050,17696,17361,17074,16807,16571,16380,16158,15986,15781,15597,15437,15281,15184,15077,15018,14929,14900,14884,14890,14894,14919,14932,14985,15012,15044,15097,15144,15153,15174,15188,15179,15207,15229,15231,15216,15161,15101,15040,14965,14871,14800,14648,14505,14340,14149,13946,13719,13500,13239,12966,12673,12389,12091,11804,11510,11243,10994,10751,10518,10240,9955,9647,9336,9044,8819,8593,8430,8277,8130,8039,7955,7876,7831,7777,7700,7541,7379,7210,7090,6960,6859,6800,6734,6684,6646,6632,6605,6607,6597,6605,6590,6462,6160,5713,5107,22.2,22.4,23.1,1568902,0.2,12.8,11.9,5.0,454,-1.00,-1.00,58.8032,-19.314214,0.000548,,,,,139 +SATSLF0720,2024246,20.764199,4.15,0.0581,0.1066,0.0203,0.00,16032,657,1,720,705,717,707,716,722,723,739,742,746,746,749,777,888,1190,1900,3044,4393,5630,6567,7206,7697,8117,8573,9084,9691,10432,11296,12287,13376,14553,15701,16797,17731,18443,18883,19018,18829,18478,17942,17367,16812,16350,15988,15767,15708,15765,16019,16413,16995,17734,18634,19705,20919,22214,23649,25115,26584,27995,29238,30217,30977,31362,31374,31049,30394,29482,28444,27222,26045,24898,23840,22858,22016,21284,20677,20194,19803,19529,19379,19298,19317,19403,19587,19852,20188,20631,21162,21730,22342,23008,23643,24263,24826,25318,25669,25925,25978,25876,25600,25125,24506,23783,22992,22110,21255,20405,19635,18938,18292,17733,17257,16849,16548,16281,16123,16026,15976,16001,16081,16242,16465,16776,17144,17565,18045,18624,19229,19842,20523,21241,21984,22722,23441,24122,24796,25361,25927,26349,26669,26902,27010,27040,26920,26711,26384,26017,25522,24965,24384,23760,23125,22450,21787,21156,20558,19952,19399,18917,18446,18052,17692,17356,17080,16821,16576,16372,16165,15980,15781,15607,15452,15305,15177,15081,14996,14916,14898,14867,14882,14882,14910,14947,14971,15040,15050,15093,15147,15150,15160,15163,15159,15192,15218,15204,15212,15168,15103,15054,14970,14876,14788,14653,14494,14328,14141,13931,13730,13490,13222,12965,12686,12401,12101,11789,11509,11251,10989,10761,10530,10260,9955,9639,9321,9037,8803,8595,8405,8254,8125,8041,7973,7891,7848,7777,7682,7541,7367,7215,7078,6976,6874,6805,6741,6685,6645,6624,6625,6589,6579,6589,6585,6444,6149,5720,5119,22.2,22.4,23.1,1568903,0.0,12.8,12.0,5.0,453,-1.00,-1.00,58.5318,-19.182482,0.000581,,,,,27 +SATSLF0720,2024246,20.764455,3.97,0.0556,0.1071,0.0215,0.00,16018,657,1,721,717,721,729,721,727,736,736,743,746,740,741,768,892,1185,1911,3054,4405,5649,6569,7226,7697,8131,8573,9082,9686,10439,11287,12274,13378,14558,15703,16800,17764,18469,18894,19025,18846,18468,17938,17348,16808,16330,15974,15763,15687,15768,16033,16417,17000,17725,18624,19680,20896,22195,23625,25094,26566,27969,29196,30187,30961,31354,31346,31038,30382,29486,28436,27201,26051,24904,23840,22833,21992,21258,20663,20184,19787,19515,19364,19274,19288,19384,19581,19843,20183,20615,21130,21696,22323,22984,23637,24222,24806,25269,25639,25905,25956,25845,25563,25074,24459,23742,22957,22084,21218,20375,19616,18917,18273,17710,17242,16836,16529,16278,16114,16003,15967,15983,16081,16226,16456,16739,17101,17546,18022,18593,19190,19813,20491,21213,21946,22695,23408,24087,24738,25343,25895,26308,26638,26885,26992,27008,26921,26720,26394,26002,25502,24937,24329,23705,23063,22410,21760,21129,20531,19931,19391,18893,18436,18034,17665,17336,17036,16775,16549,16341,16153,15962,15770,15569,15406,15278,15149,15052,14980,14905,14880,14862,14869,14865,14913,14917,14960,15002,15029,15065,15120,15130,15154,15160,15159,15181,15212,15206,15196,15149,15097,15017,14951,14870,14774,14649,14493,14321,14133,13927,13707,13486,13202,12947,12662,12363,12071,11784,11514,11234,10989,10759,10513,10243,9947,9623,9325,9029,8796,8592,8408,8251,8128,8022,7933,7883,7841,7778,7672,7533,7368,7211,7084,6955,6875,6786,6723,6659,6625,6617,6609,6601,6602,6613,6612,6446,6144,5714,5094,22.2,22.4,23.1,1568904,0.1,12.8,11.9,5.0,445,-1.00,-1.00,59.0798,-19.400613,0.000517,,,,,32 +SATSDF0720,2024246,21.009138,0.00,0.0000,0.0000,0.0000,0.00,657,0,1,649,647,641,634,632,629,631,635,632,629,624,635,631,645,636,633,622,631,628,638,626,636,646,667,675,673,677,657,653,656,663,656,662,660,665,662,663,672,668,664,679,660,667,660,648,641,649,658,669,673,676,677,662,673,663,661,657,670,661,666,668,664,660,663,662,649,659,658,651,667,664,654,661,664,662,666,665,657,663,672,654,663,661,669,678,665,667,654,657,642,663,649,662,665,665,654,657,654,653,658,662,661,659,663,664,660,659,658,654,643,659,663,668,657,662,659,643,636,647,656,659,656,667,665,665,662,654,650,663,652,667,657,663,667,656,659,659,659,663,654,654,649,654,656,668,669,657,646,651,643,647,665,660,661,663,649,663,652,659,648,663,650,656,652,656,653,661,652,668,661,653,665,649,648,653,635,649,657,660,658,653,659,661,651,659,658,653,658,653,659,673,672,663,663,663,663,670,666,669,658,657,658,663,662,663,657,658,654,645,652,653,657,658,644,663,659,652,660,658,649,643,650,643,648,655,661,653,662,650,659,649,649,659,664,662,667,662,660,654,652,661,668,661,656,653,662,665,661,655,680,668,661,667,668,660,488,0.0,0.0,0.0,1568903,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,236 +SATSLF0720,2024246,21.009693,3.84,0.0538,0.1014,0.0175,0.00,16187,657,1,699,707,712,701,716,714,718,718,732,720,731,726,763,877,1200,1898,3055,4414,5687,6621,7279,7771,8196,8651,9176,9798,10533,11419,12416,13554,14732,15888,17006,17978,18693,19144,19269,19073,18685,18146,17553,17001,16533,16167,15943,15882,15953,16201,16622,17187,17943,18846,19920,21143,22473,23914,25404,26896,28306,29575,30568,31336,31733,31734,31403,30773,29841,28786,27563,26362,25201,24116,23112,22261,21525,20922,20433,20038,19765,19604,19522,19522,19639,19831,20078,20429,20877,21405,21971,22592,23248,23905,24516,25092,25556,25921,26193,26252,26129,25858,25369,24732,23997,23189,22307,21445,20592,19795,19106,18464,17886,17411,16990,16691,16432,16264,16166,16125,16153,16233,16383,16627,16942,17290,17718,18227,18777,19399,20024,20728,21433,22193,22941,23649,24355,25015,25618,26180,26621,26937,27181,27297,27298,27209,26997,26656,26261,25774,25189,24590,23961,23310,22660,21990,21363,20747,20168,19596,19099,18621,18219,17847,17523,17223,16941,16701,16495,16304,16101,15907,15729,15562,15429,15309,15213,15152,15062,15029,15009,14993,15008,15028,15042,15067,15125,15161,15211,15269,15275,15283,15299,15301,15301,15339,15330,15322,15273,15216,15150,15089,14997,14898,14754,14603,14442,14266,14036,13829,13578,13324,13050,12762,12474,12173,11870,11591,11330,11081,10838,10598,10329,10013,9697,9393,9101,8855,8651,8475,8321,8209,8102,8036,7949,7902,7829,7744,7597,7418,7260,7134,7019,6929,6832,6782,6722,6689,6656,6655,6643,6634,6652,6637,6487,6182,5745,5131,22.2,22.1,22.6,1568904,0.3,12.9,12.0,5.0,566,-1.00,-1.00,59.0911,-19.632390,0.000571,,,,,69 +SATSLF0720,2024246,21.009875,4.10,0.0574,0.1017,0.0175,0.00,16183,657,1,709,707,700,703,717,720,722,716,723,729,725,741,775,881,1193,1915,3049,4412,5661,6619,7281,7749,8197,8650,9178,9806,10570,11446,12425,13560,14724,15885,16993,17943,18678,19104,19243,19066,18697,18175,17577,17013,16554,16181,15958,15886,15969,16210,16618,17212,17954,18857,19930,21137,22469,23908,25394,26881,28317,29568,30568,31317,31714,31725,31396,30762,29832,28770,27555,26369,25197,24131,23115,22274,21544,20920,20450,20041,19761,19601,19511,19522,19618,19806,20078,20429,20873,21393,21960,22562,23245,23880,24503,25082,25573,25922,26197,26233,26138,25833,25362,24730,24001,23194,22308,21431,20595,19821,19122,18461,17892,17418,17005,16685,16421,16267,16165,16120,16147,16226,16402,16624,16938,17285,17728,18194,18779,19383,20023,20701,21429,22183,22934,23639,24349,25011,25607,26177,26609,26905,27169,27266,27282,27189,26978,26647,26256,25745,25181,24581,23954,23302,22653,21985,21337,20740,20125,19584,19073,18608,18201,17829,17512,17217,16946,16694,16510,16304,16113,15907,15720,15560,15416,15308,15213,15125,15063,15012,14988,14986,14993,15022,15046,15076,15120,15157,15223,15269,15289,15278,15290,15301,15304,15325,15330,15317,15269,15207,15147,15089,14986,14903,14777,14615,14426,14243,14037,13815,13583,13317,13053,12771,12466,12172,11887,11584,11321,11074,10834,10604,10322,10023,9717,9389,9093,8869,8648,8473,8314,8199,8096,8024,7947,7879,7830,7724,7589,7404,7238,7123,7008,6919,6838,6780,6737,6696,6669,6660,6637,6628,6653,6643,6491,6171,5748,5136,22.2,22.1,22.7,1568905,0.0,12.9,12.0,5.0,463,-1.00,-1.00,57.8232,-19.100447,0.000411,,,,,113 +SATSLF0720,2024246,21.010133,4.02,0.0563,0.1024,0.0178,0.00,16158,657,1,717,712,727,726,731,727,738,741,748,744,746,750,787,902,1193,1904,3047,4419,5665,6611,7265,7750,8183,8647,9174,9794,10542,11415,12400,13506,14693,15863,16971,17928,18633,19072,19221,19038,18654,18135,17552,16983,16524,16161,15925,15848,15928,16184,16565,17151,17906,18823,19878,21093,22419,23867,25360,26839,28274,29513,30515,31265,31651,31667,31336,30692,29765,28702,27463,26308,25147,24075,23073,22215,21482,20880,20406,20010,19723,19562,19479,19489,19577,19771,20032,20387,20810,21343,21909,22528,23197,23846,24464,25051,25523,25885,26147,26204,26090,25805,25317,24677,23952,23149,22281,21405,20557,19788,19069,18421,17872,17398,16978,16672,16405,16239,16136,16084,16106,16197,16367,16604,16893,17255,17687,18181,18759,19349,19997,20668,21403,22145,22883,23596,24299,24974,25557,26132,26540,26880,27123,27223,27248,27159,26931,26608,26225,25717,25153,24565,23927,23267,22621,21954,21324,20692,20103,19557,19053,18578,18177,17801,17470,17197,16925,16684,16481,16277,16088,15891,15713,15545,15393,15283,15184,15101,15032,15004,14986,14978,14983,14999,15019,15058,15089,15129,15178,15230,15255,15269,15277,15272,15299,15315,15330,15313,15261,15205,15137,15053,14966,14864,14734,14586,14416,14225,14017,13816,13568,13305,13030,12740,12450,12149,11862,11569,11317,11061,10825,10592,10318,10018,9688,9378,9097,8848,8641,8474,8318,8173,8078,8003,7928,7882,7803,7719,7596,7410,7265,7137,7010,6915,6843,6765,6721,6677,6642,6635,6625,6625,6635,6631,6493,6180,5763,5140,22.2,22.1,22.8,1568906,0.1,12.9,11.9,5.0,455,-1.00,-1.00,58.0543,-19.156620,0.000571,,,,,18 +SATSLF0720,2024246,21.010386,4.06,0.0569,0.1028,0.0174,0.00,16157,657,1,712,721,708,717,729,717,737,722,727,731,738,739,767,891,1192,1900,3055,4405,5661,6583,7247,7741,8173,8626,9151,9769,10517,11393,12385,13489,14672,15816,16926,17894,18609,19051,19201,19016,18642,18101,17520,16941,16491,16133,15902,15833,15922,16153,16565,17153,17885,18809,19877,21093,22419,23857,25360,26821,28256,29489,30505,31220,31627,31618,31317,30680,29765,28698,27482,26298,25122,24059,23065,22210,21484,20877,20403,20011,19717,19557,19461,19465,19576,19770,20010,20375,20823,21346,21914,22535,23214,23846,24456,25043,25521,25889,26134,26199,26078,25797,25315,24672,23949,23164,22293,21402,20545,19776,19077,18424,17866,17379,16992,16661,16421,16242,16151,16101,16135,16215,16371,16602,16888,17265,17693,18178,18760,19362,20009,20699,21414,22169,22904,23626,24326,24981,25569,26133,26569,26893,27125,27242,27261,27162,26949,26621,26218,25713,25138,24576,23925,23269,22616,21958,21330,20713,20117,19563,19069,18597,18187,17827,17490,17203,16926,16687,16489,16282,16080,15893,15709,15534,15398,15283,15184,15110,15031,15005,14985,14976,14997,15000,15028,15072,15108,15149,15188,15245,15258,15273,15284,15289,15305,15334,15326,15333,15272,15213,15153,15078,14979,14893,14746,14597,14421,14229,14023,13800,13575,13311,13045,12764,12473,12192,11874,11597,11314,11064,10829,10589,10316,10028,9708,9389,9106,8865,8644,8467,8315,8181,8083,8014,7929,7882,7810,7718,7579,7414,7250,7129,7017,6928,6833,6774,6729,6677,6656,6631,6623,6615,6640,6628,6473,6173,5737,5123,22.2,22.2,22.8,1568907,0.3,12.9,11.9,5.0,445,-1.00,-1.00,58.4325,-19.307275,0.000544,,,,,45 +SATSLF0720,2024246,21.010645,3.97,0.0557,0.1035,0.0184,0.00,16122,657,1,717,706,705,708,709,706,720,701,719,718,725,734,771,880,1176,1897,3036,4402,5647,6589,7234,7732,8154,8592,9111,9745,10473,11362,12363,13472,14641,15785,16903,17859,18590,19013,19155,18960,18603,18068,17477,16922,16453,16098,15869,15785,15876,16117,16524,17114,17849,18762,19825,21050,22357,23808,25288,26770,28186,29435,30424,31168,31572,31568,31245,30613,29714,28657,27421,26240,25085,24004,23011,22164,21432,20830,20354,19959,19688,19532,19429,19440,19527,19717,19981,20337,20765,21288,21869,22482,23139,23792,24408,24983,25472,25829,26107,26158,26037,25749,25274,24622,23918,23106,22228,21373,20512,19756,19053,18394,17838,17352,16943,16626,16363,16197,16106,16065,16085,16187,16341,16553,16860,17229,17664,18149,18714,19325,19952,20630,21367,22117,22845,23569,24274,24934,25512,26077,26506,26832,27082,27178,27193,27095,26883,26544,26163,25672,25108,24510,23874,23225,22565,21922,21283,20650,20069,19520,19041,18557,18145,17783,17457,17156,16896,16657,16453,16245,16045,15868,15683,15516,15364,15248,15160,15089,15011,14962,14941,14951,14951,14986,15010,15053,15094,15113,15156,15205,15220,15221,15234,15249,15265,15282,15284,15281,15253,15182,15117,15036,14962,14856,14738,14585,14381,14210,13997,13781,13536,13261,13012,12724,12448,12144,11849,11550,11265,11037,10792,10574,10297,9998,9676,9365,9076,8827,8634,8451,8298,8172,8064,7985,7924,7866,7801,7714,7582,7389,7242,7123,6997,6897,6807,6754,6696,6662,6645,6640,6638,6617,6633,6633,6470,6160,5729,5120,22.2,22.2,22.8,1568908,0.0,12.9,11.9,5.0,455,-1.00,-1.00,59.0272,-19.516749,0.000546,,,,,56 +SATSLF0720,2024246,21.010900,3.89,0.0544,0.1035,0.0190,0.00,16123,657,1,713,704,715,720,714,715,705,715,715,716,723,747,781,881,1186,1891,3041,4401,5645,6594,7257,7742,8171,8625,9149,9753,10502,11377,12361,13472,14651,15838,16921,17875,18609,19030,19189,18986,18619,18071,17496,16929,16474,16105,15893,15805,15872,16122,16533,17128,17873,18771,19835,21056,22370,23817,25286,26781,28185,29445,30441,31186,31594,31589,31261,30630,29712,28665,27440,26257,25084,24022,23038,22157,21445,20825,20338,19954,19678,19509,19433,19444,19532,19727,19995,20341,20775,21293,21852,22473,23138,23781,24401,24983,25447,25827,26089,26145,26010,25729,25268,24626,23906,23118,22232,21356,20512,19734,19025,18372,17826,17354,16950,16616,16371,16216,16114,16055,16087,16180,16352,16571,16867,17217,17652,18137,18705,19304,19947,20647,21357,22118,22857,23577,24285,24922,25518,26085,26505,26817,27078,27168,27181,27095,26883,26546,26163,25664,25121,24529,23865,23235,22587,21913,21281,20680,20073,19522,19026,18547,18148,17772,17445,17161,16886,16658,16448,16251,16053,15860,15696,15517,15365,15257,15147,15081,14987,14959,14930,14949,14941,14969,15000,15029,15061,15099,15157,15221,15220,15235,15249,15241,15282,15293,15296,15282,15221,15163,15099,15034,14951,14850,14705,14549,14392,14204,13993,13786,13545,13288,13024,12748,12437,12146,11843,11562,11274,11035,10786,10573,10281,9993,9677,9362,9081,8837,8617,8453,8289,8157,8065,7981,7915,7857,7797,7709,7557,7396,7234,7117,6994,6895,6819,6749,6704,6659,6646,6635,6637,6605,6630,6617,6467,6165,5736,5108,22.2,22.2,22.9,1568909,0.3,13.0,11.9,5.0,442,-1.00,-1.00,59.0792,-19.546285,0.000539,,,,,16 +SATSLF0720,2024246,21.011156,4.06,0.0569,0.1042,0.0194,0.00,16106,657,1,705,712,702,699,715,715,714,728,730,735,755,756,790,894,1201,1908,3037,4385,5641,6560,7216,7720,8151,8597,9128,9750,10493,11358,12330,13435,14604,15761,16887,17836,18562,18994,19120,18951,18576,18040,17450,16896,16429,16070,15858,15780,15873,16114,16513,17095,17847,18749,19812,21028,22338,23778,25254,26730,28151,29403,30379,31145,31549,31545,31225,30594,29668,28627,27398,26226,25061,23987,22989,22133,21405,20803,20312,19929,19640,19498,19400,19424,19522,19709,19981,20306,20746,21280,21832,22443,23108,23764,24367,24953,25433,25799,26075,26103,26007,25719,25235,24608,23885,23092,22210,21339,20499,19734,19024,18366,17802,17337,16921,16615,16373,16189,16104,16041,16064,16163,16326,16540,16840,17219,17637,18121,18689,19314,19950,20640,21357,22100,22832,23549,24245,24901,25504,26065,26493,26800,27051,27156,27154,27072,26845,26539,26149,25646,25092,24506,23849,23224,22557,21877,21252,20616,20039,19507,19010,18532,18148,17773,17440,17152,16877,16636,16448,16242,16053,15849,15665,15494,15353,15234,15132,15063,14988,14956,14938,14939,14937,14983,14984,15035,15058,15090,15143,15194,15203,15219,15240,15232,15255,15285,15283,15273,15211,15163,15086,15031,14926,14836,14693,14542,14363,14194,13984,13756,13521,13251,12981,12698,12412,12129,11833,11549,11289,11047,10809,10562,10297,9981,9659,9341,9063,8805,8618,8453,8301,8154,8057,7989,7913,7867,7800,7719,7573,7390,7234,7100,6974,6886,6811,6748,6693,6669,6647,6634,6619,6616,6621,6621,6473,6152,5738,5109,22.2,22.2,22.9,1568910,0.0,12.9,11.9,5.0,444,-1.00,-1.00,58.8598,-19.430173,0.000473,,,,,135 +SATSLF0720,2024246,21.011415,4.03,0.0565,0.1048,0.0199,0.00,16091,657,1,722,716,721,705,723,718,735,738,745,741,743,746,791,879,1187,1891,3047,4395,5651,6586,7250,7734,8165,8610,9118,9765,10485,11351,12343,13458,14636,15785,16912,17856,18581,18998,19135,18948,18569,18053,17459,16912,16456,16090,15861,15792,15866,16122,16502,17085,17831,18736,19790,21008,22329,23765,25243,26710,28139,29377,30373,31134,31527,31532,31208,30557,29650,28599,27370,26184,25040,23956,22963,22111,21378,20779,20298,19913,19632,19484,19376,19408,19496,19679,19952,20304,20733,21248,21808,22432,23107,23730,24346,24917,25393,25760,26037,26082,25961,25691,25202,24565,23856,23070,22189,21326,20485,19722,19006,18344,17799,17326,16912,16584,16347,16167,16075,16029,16041,16143,16299,16531,16818,17175,17623,18107,18681,19270,19905,20582,21305,22050,22793,23507,24211,24869,25472,26026,26451,26753,27019,27088,27111,27041,26826,26487,26080,25586,25033,24453,23825,23159,22519,21864,21238,20628,20013,19475,18962,18502,18095,17736,17403,17129,16864,16625,16422,16212,16009,15811,15635,15476,15333,15213,15128,15050,14973,14944,14918,14919,14920,14948,14966,15002,15047,15067,15127,15178,15198,15210,15222,15219,15236,15260,15252,15255,15205,15134,15069,15008,14917,14826,14669,14539,14361,14171,13966,13749,13511,13244,12999,12718,12421,12125,11829,11538,11268,11005,10780,10546,10264,9963,9643,9344,9043,8823,8602,8441,8280,8158,8050,7970,7912,7852,7790,7703,7547,7380,7225,7097,6976,6886,6801,6741,6689,6661,6625,6638,6626,6601,6619,6605,6457,6157,5738,5115,22.2,22.2,22.9,1568911,0.1,12.9,12.0,5.0,450,-1.00,-1.00,58.3233,-19.191108,0.000498,,,,,149 +SATSLF0720,2024246,21.011669,4.10,0.0574,0.1041,0.0189,0.00,16112,657,1,711,719,726,721,735,729,723,738,735,728,743,753,773,871,1187,1900,3028,4397,5655,6593,7244,7725,8149,8592,9115,9740,10496,11366,12360,13458,14632,15781,16891,17864,18569,18994,19125,18950,18574,18052,17460,16907,16450,16093,15857,15797,15873,16114,16509,17095,17843,18753,19813,21019,22353,23797,25264,26739,28151,29405,30387,31153,31553,31546,31226,30596,29686,28629,27389,26219,25080,23984,23003,22130,21413,20804,20320,19953,19660,19499,19403,19417,19520,19716,19977,20319,20747,21269,21841,22453,23130,23771,24386,24960,25426,25810,26082,26122,26011,25725,25239,24616,23889,23094,22213,21349,20488,19740,19020,18368,17803,17347,16933,16618,16376,16194,16111,16048,16084,16169,16326,16548,16845,17211,17650,18125,18697,19321,19942,20627,21358,22088,22837,23529,24238,24898,25499,26075,26493,26813,27051,27177,27173,27083,26856,26523,26138,25641,25076,24485,23851,23223,22556,21902,21277,20642,20067,19511,19010,18531,18134,17751,17433,17141,16883,16645,16445,16234,16038,15853,15667,15493,15366,15253,15145,15074,14994,14962,14949,14952,14960,14981,15003,15028,15071,15097,15140,15197,15218,15221,15247,15245,15258,15285,15286,15286,15216,15159,15103,15043,14948,14859,14714,14574,14393,14208,14004,13785,13521,13279,13014,12729,12440,12139,11851,11557,11285,11037,10802,10564,10295,9976,9658,9361,9069,8822,8616,8452,8288,8173,8085,7985,7923,7877,7816,7721,7565,7395,7241,7117,6986,6897,6805,6751,6695,6676,6650,6638,6637,6613,6635,6640,6472,6167,5740,5113,22.2,22.2,22.9,1568912,0.1,12.9,11.9,5.0,448,-1.00,-1.00,58.5407,-19.298919,0.000496,,,,,40 +SATSLF0720,2024246,21.011922,4.18,0.0585,0.1051,0.0194,0.00,16076,657,1,721,709,719,722,720,713,715,712,725,738,726,751,772,891,1196,1890,3038,4380,5620,6546,7205,7693,8104,8548,9067,9691,10449,11297,12299,13399,14572,15721,16822,17770,18493,18932,19056,18874,18493,17968,17372,16825,16369,16003,15801,15730,15817,16059,16485,17046,17770,18679,19738,20969,22263,23702,25176,26656,28076,29314,30296,31068,31441,31453,31121,30477,29570,28523,27312,26130,24997,23924,22929,22089,21348,20745,20279,19890,19606,19459,19360,19374,19464,19658,19924,20285,20700,21229,21795,22414,23083,23713,24340,24914,25387,25749,26024,26074,25959,25677,25205,24566,23828,23036,22168,21295,20461,19690,18992,18346,17776,17308,16900,16581,16323,16171,16061,16029,16050,16134,16293,16521,16813,17187,17612,18119,18676,19272,19921,20609,21316,22059,22810,23510,24210,24868,25477,26010,26433,26748,27002,27114,27122,27040,26811,26491,26099,25609,25041,24448,23821,23164,22519,21864,21233,20621,20027,19456,18979,18505,18098,17735,17418,17118,16848,16618,16424,16212,16027,15843,15650,15477,15345,15229,15130,15057,14977,14950,14925,14914,14929,14937,14967,15006,15046,15075,15120,15180,15204,15213,15227,15237,15253,15268,15266,15253,15202,15147,15085,15012,14927,14833,14704,14549,14362,14180,13952,13744,13523,13253,12989,12708,12421,12128,11834,11550,11282,11035,10790,10546,10270,9975,9661,9348,9056,8813,8608,8435,8291,8152,8053,7972,7909,7863,7785,7699,7563,7397,7234,7104,6987,6901,6810,6743,6698,6657,6647,6637,6616,6600,6633,6613,6454,6153,5722,5117,22.2,22.2,22.9,1568913,0.1,12.9,12.0,5.0,441,-1.00,-1.00,58.8672,-19.374051,0.000577,,,,,163 +SATSLF0720,2024246,21.012178,4.08,0.0572,0.1050,0.0199,0.00,16076,657,1,693,698,699,717,713,714,733,717,733,741,732,743,774,884,1194,1880,3047,4397,5625,6566,7221,7702,8125,8561,9088,9715,10462,11321,12309,13437,14596,15751,16860,17813,18530,18960,19086,18914,18542,18007,17414,16870,16381,16027,15811,15748,15813,16080,16477,17063,17813,18717,19765,20998,22312,23749,25205,26692,28082,29328,30322,31074,31477,31489,31162,30529,29602,28563,27334,26141,24995,23913,22934,22090,21363,20754,20271,19886,19620,19457,19365,19377,19461,19665,19925,20274,20690,21231,21790,22412,23075,23733,24341,24913,25392,25758,26020,26069,25941,25680,25205,24557,23850,23029,22157,21304,20459,19673,18983,18340,17782,17318,16901,16594,16317,16152,16061,16012,16034,16116,16291,16517,16818,17174,17604,18087,18658,19280,19909,20599,21309,22041,22789,23497,24201,24864,25440,26007,26434,26761,27008,27101,27109,27019,26806,26469,26101,25589,25030,24450,23809,23164,22508,21847,21206,20615,20017,19462,18972,18507,18116,17732,17399,17109,16851,16597,16401,16197,16000,15821,15639,15477,15325,15211,15117,15044,14971,14939,14920,14910,14925,14941,14961,14993,15034,15051,15115,15177,15185,15205,15208,15209,15243,15258,15268,15252,15194,15136,15069,14999,14909,14818,14688,14518,14349,14171,13957,13761,13514,13243,12983,12707,12397,12104,11800,11525,11257,11009,10781,10561,10284,9969,9655,9344,9060,8814,8613,8442,8281,8151,8051,7968,7902,7851,7788,7701,7554,7383,7228,7108,6981,6892,6814,6746,6696,6649,6641,6609,6590,6584,6610,6598,6453,6145,5725,5105,22.2,22.3,23.0,1568914,0.1,12.9,12.0,5.0,450,-1.00,-1.00,58.8266,-19.376015,0.000614,,,,,190 +SATSLF0720,2024246,21.012434,3.92,0.0549,0.1064,0.0209,0.00,16036,657,1,717,711,717,714,723,718,725,725,733,740,739,742,771,873,1203,1890,3035,4384,5623,6567,7210,7699,8121,8561,9075,9709,10441,11308,12306,13396,14567,15724,16812,17763,18467,18919,19045,18862,18493,17953,17361,16810,16355,15987,15762,15706,15765,16027,16434,17017,17753,18654,19713,20914,22225,23669,25130,26609,28015,29253,30253,30997,31387,31393,31074,30425,29511,28488,27260,26085,24944,23864,22876,22021,21290,20681,20209,19825,19542,19398,19306,19310,19419,19607,19870,20227,20643,21171,21729,22336,23016,23658,24274,24841,25319,25684,25943,26001,25872,25598,25112,24483,23769,22978,22112,21245,20403,19645,18944,18278,17728,17262,16846,16540,16294,16121,16022,15975,16007,16090,16258,16467,16761,17129,17554,18037,18616,19225,19865,20530,21257,21993,22733,23444,24142,24805,25385,25945,26366,26681,26930,27029,27026,26944,26732,26410,26013,25529,24981,24385,23762,23109,22442,21785,21156,20538,19949,19414,18916,18453,18059,17693,17357,17083,16805,16565,16357,16155,15954,15772,15585,15438,15282,15173,15073,15010,14940,14894,14871,14869,14875,14909,14921,14967,14996,15037,15078,15145,15159,15152,15177,15178,15203,15221,15221,15210,15153,15093,15037,14965,14880,14787,14644,14493,14338,14144,13926,13722,13481,13220,12958,12668,12379,12088,11792,11518,11242,10985,10764,10509,10258,9950,9627,9325,9026,8795,8594,8409,8259,8145,8045,7963,7886,7849,7765,7685,7539,7378,7221,7092,6981,6881,6791,6731,6688,6641,6630,6613,6611,6594,6602,6599,6439,6127,5711,5099,22.2,22.3,23.0,1568915,0.2,12.9,11.9,5.0,450,-1.00,-1.00,59.5631,-19.629864,0.000592,,,,,33 +SATSLF0720,2024246,21.012686,4.12,0.0578,0.1059,0.0202,0.00,16044,657,1,696,705,725,718,723,734,740,744,733,750,729,743,777,887,1185,1895,3031,4395,5637,6557,7209,7703,8117,8567,9083,9715,10445,11317,12306,13405,14569,15729,16825,17770,18480,18909,19047,18858,18481,17971,17382,16828,16373,16013,15790,15715,15799,16047,16451,17030,17758,18667,19712,20933,22225,23667,25132,26630,28041,29273,30266,31009,31421,31412,31083,30445,29530,28474,27264,26101,24936,23875,22874,22033,21302,20682,20220,19825,19551,19409,19326,19340,19444,19613,19879,20219,20663,21173,21730,22355,23022,23658,24281,24853,25319,25697,25962,26007,25885,25600,25121,24491,23769,22976,22103,21255,20422,19657,18954,18304,17755,17262,16867,16525,16299,16136,16030,15993,16016,16105,16267,16482,16780,17142,17575,18045,18620,19229,19853,20544,21246,22004,22750,23456,24165,24813,25401,25949,26370,26701,26936,27030,27049,26962,26749,26426,26048,25549,24981,24393,23760,23102,22445,21785,21160,20558,19973,19421,18945,18461,18058,17691,17367,17058,16795,16573,16370,16165,15980,15785,15597,15437,15295,15181,15094,15024,14946,14916,14885,14887,14887,14918,14939,14978,15017,15046,15103,15158,15163,15179,15177,15194,15194,15211,15223,15222,15170,15105,15059,14974,14889,14797,14656,14503,14335,14146,13944,13730,13496,13233,12972,12674,12389,12105,11798,11525,11244,10996,10758,10530,10252,9962,9633,9333,9044,8817,8609,8432,8275,8151,8052,7969,7893,7837,7778,7669,7547,7369,7222,7074,6976,6857,6803,6745,6689,6652,6638,6609,6588,6583,6611,6589,6444,6154,5722,5097,22.2,22.4,23.0,1568916,0.2,12.9,12.0,5.0,441,-1.00,-1.00,58.6409,-19.254134,0.000512,,,,,45 +SATSLF0720,2024246,21.012941,4.01,0.0562,0.1053,0.0198,0.00,16077,657,1,723,718,721,717,705,713,729,724,737,737,759,773,784,896,1211,1909,3042,4391,5635,6573,7227,7709,8145,8584,9097,9723,10474,11328,12327,13435,14592,15751,16861,17809,18519,18960,19098,18909,18544,18007,17415,16859,16392,16021,15815,15738,15831,16076,16470,17059,17805,18697,19765,20986,22286,23737,25191,26674,28096,29335,30331,31084,31477,31477,31157,30494,29597,28549,27318,26142,24993,23916,22928,22090,21361,20745,20273,19885,19600,19428,19355,19365,19464,19665,19938,20265,20702,21214,21781,22406,23057,23715,24325,24901,25385,25730,26003,26060,25921,25667,25189,24553,23816,23045,22177,21305,20457,19691,18989,18341,17775,17307,16897,16590,16346,16177,16064,16021,16037,16136,16298,16517,16808,17177,17609,18094,18658,19259,19900,20579,21303,22052,22794,23497,24201,24846,25440,26009,26430,26738,26992,27084,27111,27005,26794,26474,26076,25600,25040,24450,23824,23169,22520,21840,21217,20595,19997,19432,18949,18484,18075,17722,17400,17114,16845,16608,16413,16213,16013,15821,15628,15469,15334,15214,15107,15040,14964,14933,14928,14914,14905,14943,14960,15001,15045,15063,15124,15165,15190,15192,15217,15221,15236,15245,15257,15245,15210,15142,15073,14992,14909,14821,14685,14538,14357,14173,13957,13759,13513,13248,12981,12694,12401,12106,11827,11537,11282,11015,10795,10557,10280,9973,9648,9335,9060,8827,8611,8430,8295,8154,8051,7992,7913,7862,7789,7715,7561,7396,7244,7123,7005,6901,6811,6762,6700,6649,6633,6621,6603,6586,6619,6610,6455,6157,5739,5118,22.2,22.4,23.1,1568916,0.0,12.9,11.9,5.0,449,-1.00,-1.00,58.9454,-19.419939,0.000611,,,,,121 +SATSLF0720,2024246,21.013195,4.25,0.0596,0.1062,0.0206,0.00,16043,657,1,724,725,725,724,729,721,737,722,743,733,739,739,779,877,1190,1885,3022,4381,5609,6555,7214,7687,8103,8562,9066,9691,10427,11289,12287,13386,14553,15706,16809,17749,18453,18892,19035,18848,18489,17957,17384,16824,16355,16017,15792,15714,15793,16041,16448,17025,17768,18663,19731,20937,22233,23671,25143,26613,28010,29251,30256,31005,31394,31399,31079,30433,29525,28474,27264,26085,24934,23878,22884,22025,21301,20705,20230,19829,19550,19413,19313,19340,19451,19625,19897,20237,20674,21181,21746,22347,23027,23669,24274,24853,25324,25684,25943,26005,25877,25597,25120,24487,23770,22996,22137,21269,20429,19642,18954,18317,17736,17270,16870,16551,16301,16129,16030,15981,16015,16097,16263,16509,16777,17143,17569,18058,18611,19229,19853,20544,21254,21991,22749,23456,24155,24808,25402,25932,26359,26699,26937,27040,27047,26967,26757,26425,26042,25564,24993,24392,23781,23110,22467,21807,21178,20578,19976,19415,18930,18461,18064,17700,17362,17079,16811,16555,16367,16167,15969,15785,15621,15438,15307,15203,15101,15019,14942,14902,14877,14891,14891,14917,14922,14976,15021,15059,15102,15149,15175,15185,15192,15177,15211,15229,15219,15219,15157,15099,15047,14980,14869,14795,14661,14494,14331,14163,13939,13733,13487,13224,12956,12675,12380,12099,11797,11506,11258,10996,10763,10540,10263,9969,9643,9335,9037,8798,8592,8425,8270,8134,8042,7947,7880,7838,7781,7688,7537,7370,7230,7096,6976,6879,6793,6742,6670,6633,6610,6611,6590,6586,6610,6602,6459,6151,5725,5108,22.2,22.4,23.1,1568917,0.0,12.9,12.0,5.0,449,-1.00,-1.00,58.1688,-19.052914,0.000467,,,,,239 +SATSLF0720,2024246,21.013446,4.08,0.0572,0.1076,0.0216,0.00,16010,657,1,719,714,735,728,725,721,713,722,738,732,738,743,781,873,1178,1875,3027,4382,5627,6557,7197,7691,8102,8551,9062,9691,10441,11301,12281,13389,14557,15697,16792,17752,18458,18891,19022,18841,18469,17930,17349,16802,16349,15985,15758,15687,15773,16019,16424,16984,17735,18633,19690,20904,22200,23625,25098,26565,27976,29205,30202,30934,31344,31344,31024,30388,29481,28435,27197,26027,24892,23816,22833,21989,21268,20665,20165,19796,19497,19352,19256,19264,19374,19574,19834,20185,20610,21132,21681,22298,22967,23605,24228,24795,25278,25634,25900,25965,25829,25549,25068,24435,23731,22954,22097,21220,20379,19611,18917,18261,17704,17230,16826,16513,16272,16104,15997,15958,15957,16067,16225,16442,16752,17105,17543,18016,18583,19192,19818,20485,21212,21930,22686,23390,24085,24739,25337,25885,26325,26641,26873,26988,26986,26897,26682,26357,25960,25476,24932,24349,23706,23063,22411,21755,21127,20515,19927,19380,18885,18424,18010,17645,17314,17049,16763,16535,16339,16135,15962,15754,15571,15396,15271,15137,15050,14971,14898,14873,14853,14871,14869,14882,14905,14937,14980,14997,15055,15112,15123,15123,15142,15154,15175,15193,15187,15186,15124,15072,15013,14935,14853,14753,14616,14464,14304,14121,13908,13696,13461,13198,12938,12659,12357,12060,11781,11496,11226,10979,10745,10498,10236,9925,9607,9294,9015,8777,8580,8403,8249,8113,8017,7939,7866,7825,7758,7673,7527,7356,7201,7074,6974,6867,6785,6726,6675,6633,6614,6611,6589,6590,6597,6586,6455,6130,5715,5092,22.2,22.4,23.1,1568918,0.1,12.9,11.9,5.0,449,-1.00,-1.00,58.5453,-19.175852,0.000530,,,,,189 +SATSLF0720,2024246,21.013702,3.93,0.0550,0.1064,0.0200,0.00,16047,657,1,705,701,705,715,712,715,725,716,727,730,729,739,771,883,1173,1880,3034,4381,5642,6574,7230,7705,8137,8579,9097,9722,10453,11305,12299,13376,14565,15717,16817,17764,18486,18922,19060,18884,18508,17969,17395,16841,16371,16023,15782,15708,15787,16045,16437,17023,17760,18688,19728,20929,22245,23677,25142,26621,28023,29266,30278,31013,31425,31421,31096,30457,29541,28510,27265,26098,24938,23853,22858,22024,21300,20688,20225,19842,19572,19401,19305,19325,19421,19614,19877,20213,20653,21178,21753,22362,23015,23671,24277,24845,25332,25690,25957,26013,25879,25604,25137,24506,23784,23002,22133,21274,20425,19662,18952,18290,17744,17268,16865,16554,16302,16147,16040,15996,16023,16103,16259,16491,16777,17141,17554,18046,18605,19219,19856,20544,21271,22012,22757,23469,24156,24811,25408,25972,26393,26712,26951,27053,27060,26960,26754,26441,26034,25547,24988,24404,23753,23109,22454,21795,21173,20561,19981,19435,18957,18477,18066,17703,17376,17089,16812,16576,16375,16182,15984,15788,15605,15434,15298,15190,15085,15016,14945,14915,14893,14886,14905,14920,14954,14977,15025,15058,15097,15145,15163,15178,15185,15191,15219,15236,15235,15230,15168,15114,15065,14988,14885,14807,14672,14504,14340,14150,13937,13723,13491,13237,12960,12682,12401,12102,11800,11515,11243,11003,10756,10529,10261,9954,9633,9325,9035,8807,8588,8426,8272,8142,8042,7969,7897,7849,7783,7696,7555,7368,7209,7069,6967,6875,6797,6742,6685,6656,6632,6629,6609,6597,6601,6595,6447,6133,5726,5093,22.3,22.4,23.1,1568919,0.0,12.9,12.0,5.0,447,-1.00,-1.00,59.2727,-19.521324,0.000565,,,,,100 +SATSLF0720,2024246,21.013956,4.17,0.0585,0.1074,0.0214,0.00,16003,657,1,711,723,722,718,720,723,724,729,747,755,741,740,780,878,1193,1889,3013,4365,5611,6543,7201,7682,8097,8535,9043,9669,10410,11264,12247,13358,14513,15669,16768,17710,18427,18851,18979,18793,18418,17900,17321,16766,16320,15958,15725,15661,15733,15985,16390,16966,17720,18621,19665,20869,22173,23604,25070,26537,27933,29179,30161,30903,31309,31315,30994,30350,29444,28397,27174,26003,24853,23793,22807,21984,21252,20652,20170,19778,19504,19352,19262,19266,19374,19562,19809,20154,20598,21125,21691,22292,22961,23604,24215,24777,25250,25602,25872,25925,25808,25556,25062,24442,23733,22931,22073,21197,20367,19610,18905,18251,17697,17223,16838,16512,16261,16098,15985,15950,15986,16057,16215,16445,16746,17093,17533,18013,18573,19171,19810,20488,21223,21957,22688,23388,24105,24749,25326,25888,26306,26626,26865,26966,26979,26893,26672,26370,25965,25486,24922,24324,23712,23050,22405,21746,21115,20508,19924,19378,18885,18419,18020,17648,17339,17036,16772,16534,16334,16141,15949,15751,15579,15422,15262,15159,15067,14993,14904,14871,14850,14864,14864,14889,14912,14967,14986,15027,15074,15109,15127,15147,15141,15161,15165,15177,15169,15182,15141,15080,15020,14941,14853,14753,14611,14475,14310,14130,13921,13712,13465,13193,12933,12660,12365,12064,11773,11499,11236,10978,10750,10504,10238,9940,9610,9301,9020,8794,8580,8408,8258,8125,8033,7945,7889,7842,7757,7678,7532,7363,7215,7080,6966,6877,6798,6717,6672,6637,6602,6588,6581,6565,6588,6589,6429,6126,5709,5093,22.2,22.4,23.1,1568920,0.1,12.9,11.9,5.0,446,-1.00,-1.00,58.7998,-19.262149,0.000562,,,,,35 +SATSLF0720,2024246,21.014207,4.16,0.0583,0.1071,0.0207,0.00,16023,657,1,731,717,727,724,737,722,735,741,740,740,749,745,783,895,1197,1885,3013,4363,5611,6548,7193,7681,8101,8557,9063,9674,10415,11274,12266,13354,14536,15683,16791,17744,18457,18884,19006,18813,18448,17906,17324,16774,16344,15965,15746,15677,15757,16017,16412,16995,17735,18618,19687,20883,22196,23636,25086,26569,27964,29216,30213,30938,31352,31333,31017,30373,29464,28423,27216,26026,24891,23828,22832,21991,21269,20649,20187,19799,19509,19357,19274,19284,19382,19580,19856,20186,20621,21133,21677,22314,22984,23613,24239,24822,25290,25669,25925,25974,25850,25568,25099,24458,23741,22960,22084,21221,20394,19636,18929,18281,17730,17246,16853,16521,16279,16119,16004,15975,16001,16087,16249,16480,16759,17115,17542,18023,18594,19183,19825,20512,21245,21981,22708,23421,24117,24773,25360,25921,26349,26669,26916,27011,27026,26937,26718,26402,26005,25493,24937,24366,23717,23094,22441,21785,21155,20555,19957,19395,18906,18437,18045,17675,17362,17064,16818,16581,16365,16150,15963,15772,15586,15425,15293,15177,15075,15006,14935,14893,14868,14864,14869,14912,14933,14973,15001,15036,15084,15129,15163,15181,15177,15181,15207,15229,15229,15204,15163,15093,15043,14961,14874,14773,14647,14497,14333,14151,13922,13729,13488,13221,12949,12672,12366,12087,11780,11509,11240,10989,10770,10521,10263,9970,9633,9314,9034,8787,8583,8421,8266,8141,8037,7966,7888,7836,7767,7684,7551,7381,7201,7095,6970,6884,6781,6723,6679,6644,6632,6613,6608,6598,6614,6600,6435,6139,5714,5099,22.2,22.4,23.2,1568921,0.1,12.9,12.0,5.0,446,-1.00,-1.00,58.7329,-19.253203,0.000586,,,,,7 +SATSLF0720,2024246,21.014462,4.10,0.0574,0.1082,0.0216,0.00,15995,657,1,729,716,739,744,737,751,741,746,733,732,738,756,771,895,1211,1900,3031,4371,5613,6534,7181,7674,8104,8538,9051,9665,10400,11258,12241,13338,14514,15646,16747,17689,18401,18833,18966,18779,18401,17895,17301,16752,16294,15940,15704,15650,15732,15985,16361,16947,17688,18581,19618,20839,22145,23590,25046,26509,27899,29140,30141,30869,31257,31259,30949,30306,29397,28364,27146,25977,24825,23778,22789,21937,21225,20611,20155,19766,19482,19318,19230,19246,19355,19533,19807,20148,20585,21100,21667,22278,22941,23568,24187,24758,25238,25601,25873,25917,25801,25521,25064,24397,23700,22912,22065,21194,20350,19600,18874,18243,17696,17217,16825,16520,16265,16090,15977,15950,15954,16052,16206,16441,16713,17085,17502,17995,18565,19185,19801,20480,21213,21941,22686,23377,24080,24724,25308,25868,26293,26624,26864,26961,26964,26871,26657,26359,25960,25472,24902,24327,23702,23056,22390,21751,21114,20513,19927,19364,18875,18409,18009,17648,17321,17034,16776,16541,16329,16129,15940,15751,15571,15400,15264,15150,15066,14985,14896,14865,14848,14851,14855,14884,14909,14945,14995,15020,15070,15113,15125,15141,15149,15148,15177,15192,15194,15185,15147,15075,15011,14942,14848,14753,14626,14473,14309,14125,13904,13715,13484,13213,12954,12661,12357,12059,11770,11491,11217,10960,10739,10514,10241,9951,9637,9325,9034,8797,8584,8408,8263,8121,8031,7958,7881,7841,7770,7674,7533,7349,7202,7076,6962,6884,6801,6728,6673,6628,6618,6601,6585,6584,6601,6592,6440,6137,5710,5101,22.3,22.5,23.2,1568922,0.0,12.9,11.9,5.0,445,-1.00,-1.00,58.9661,-19.307223,0.000562,,,,,107 +SATSDF0720,2024246,21.259139,0.00,0.0000,0.0000,0.0000,0.00,660,0,1,641,643,643,634,640,644,657,645,646,643,643,647,658,637,634,633,643,646,651,637,647,647,668,675,668,673,673,679,669,670,675,666,671,674,688,684,671,659,664,664,671,675,673,677,664,659,669,658,659,663,642,651,646,658,663,665,685,676,682,677,670,664,666,658,667,649,666,666,668,672,676,668,661,675,666,666,665,668,667,672,663,663,649,647,671,666,674,667,665,669,657,647,645,654,651,664,657,669,664,671,666,669,666,658,663,660,667,676,659,661,657,657,666,658,643,659,649,665,666,670,668,679,677,666,673,653,663,665,660,654,650,663,656,650,657,663,661,653,650,643,655,659,667,666,675,667,659,663,670,661,653,657,653,656,647,663,662,663,667,661,663,655,645,653,645,656,653,663,667,673,663,664,667,671,661,666,659,667,653,661,666,664,663,661,665,664,660,663,651,663,673,654,663,663,653,656,666,660,659,661,659,669,656,657,665,661,650,647,651,645,647,647,661,665,652,660,657,669,661,663,653,653,665,642,651,651,651,657,658,666,661,644,654,649,642,665,658,661,653,646,663,663,676,665,663,665,657,659,674,658,667,663,666,657,663,493,0.0,0.0,0.0,1568921,0.5,13.4,0.1,5.1,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,155 +SATSLF0720,2024246,21.259696,3.93,0.0551,0.1015,0.0175,0.00,16189,660,1,713,713,706,711,712,725,725,721,727,723,733,738,778,879,1197,1900,3041,4420,5661,6619,7282,7765,8201,8656,9188,9808,10563,11437,12444,13558,14738,15908,17016,17976,18702,19149,19273,19081,18707,18154,17585,17014,16542,16187,15947,15892,15971,16215,16627,17205,17954,18862,19946,21154,22490,23925,25412,26896,28320,29585,30577,31335,31734,31750,31417,30756,29849,28795,27561,26379,25217,24124,23133,22266,21529,20925,20445,20058,19769,19609,19520,19540,19633,19826,20081,20442,20861,21378,21948,22579,23244,23898,24506,25101,25569,25944,26201,26247,26135,25844,25353,24724,23994,23205,22325,21447,20599,19819,19117,18450,17901,17405,17015,16693,16437,16268,16167,16129,16138,16247,16407,16621,16925,17303,17733,18211,18785,19380,20013,20704,21437,22185,22934,23656,24359,25029,25612,26178,26609,26934,27165,27273,27300,27194,26996,26656,26254,25766,25202,24594,23959,23314,22663,21994,21370,20741,20148,19595,19095,18619,18213,17843,17506,17224,16942,16710,16512,16305,16119,15920,15732,15579,15425,15313,15202,15126,15044,15013,14997,15010,15012,15038,15057,15082,15115,15155,15198,15261,15278,15289,15288,15312,15317,15344,15333,15323,15270,15199,15153,15082,14989,14897,14763,14617,14439,14243,14027,13822,13572,13319,13042,12772,12481,12180,11887,11598,11325,11077,10835,10589,10332,10030,9705,9389,9116,8861,8648,8481,8318,8192,8086,8007,7939,7908,7837,7741,7596,7418,7271,7138,7024,6915,6825,6765,6709,6676,6664,6647,6635,6639,6660,6645,6489,6187,5756,5141,22.3,22.2,22.8,1568923,0.5,12.9,11.9,5.0,565,-1.00,-1.00,58.4846,-19.382809,0.000514,,,,,28 +SATSLF0720,2024246,21.259878,3.81,0.0534,0.1024,0.0181,0.00,16166,660,1,715,712,718,722,720,718,731,723,726,723,731,748,777,885,1191,1890,3033,4411,5659,6608,7288,7760,8199,8642,9160,9800,10537,11413,12406,13517,14702,15857,16976,17947,18673,19112,19244,19080,18690,18133,17545,16973,16517,16154,15921,15849,15941,16181,16612,17176,17931,18828,19901,21115,22447,23878,25366,26856,28285,29524,30540,31278,31707,31697,31381,30728,29794,28749,27505,26339,25172,24101,23092,22245,21496,20891,20417,20017,19753,19578,19481,19494,19590,19787,20055,20397,20835,21368,21937,22548,23229,23861,24496,25047,25517,25896,26157,26209,26091,25818,25346,24693,23991,23174,22292,21424,20557,19799,19077,18455,17874,17402,16990,16669,16413,16253,16157,16106,16131,16221,16375,16603,16894,17271,17706,18205,18753,19362,20001,20693,21421,22157,22896,23610,24322,24976,25579,26144,26582,26912,27138,27241,27256,27173,26954,26622,26231,25714,25153,24556,23929,23288,22632,21956,21320,20706,20117,19556,19057,18581,18187,17810,17467,17179,16924,16682,16491,16289,16109,15905,15732,15558,15405,15289,15177,15104,15029,14989,14976,14977,14982,15023,15041,15074,15118,15147,15193,15239,15255,15249,15275,15277,15296,15329,15314,15309,15245,15189,15130,15067,14978,14874,14747,14593,14421,14225,14019,13794,13565,13307,13050,12756,12457,12175,11871,11582,11316,11050,10832,10586,10305,10009,9701,9381,9101,8861,8640,8458,8309,8161,8058,7980,7925,7872,7813,7726,7581,7419,7273,7133,7017,6920,6842,6764,6723,6685,6659,6647,6645,6622,6640,6627,6477,6156,5744,5117,22.2,22.2,22.8,1568923,0.2,12.9,12.0,5.0,469,-1.00,-1.00,59.0505,-19.589297,0.000582,,,,,253 +SATSLF0720,2024246,21.260134,4.01,0.0561,0.1029,0.0186,0.00,16134,660,1,712,701,701,702,711,718,725,721,725,736,742,724,775,874,1193,1898,3033,4398,5655,6593,7251,7745,8169,8612,9133,9753,10491,11383,12373,13491,14658,15841,16937,17893,18611,19050,19179,18979,18624,18066,17484,16938,16477,16101,15871,15805,15885,16144,16537,17133,17885,18785,19851,21077,22406,23838,25325,26795,28214,29475,30469,31195,31602,31616,31275,30646,29746,28677,27456,26266,25108,24033,23035,22185,21451,20853,20374,19976,19697,19548,19462,19458,19575,19754,20008,20349,20793,21305,21876,22481,23154,23811,24429,25010,25499,25840,26118,26169,26040,25757,25289,24651,23914,23127,22253,21376,20524,19765,19056,18404,17845,17369,16950,16632,16389,16213,16101,16077,16096,16180,16341,16551,16868,17229,17647,18158,18726,19342,19980,20669,21392,22137,22864,23585,24291,24935,25523,26098,26535,26857,27094,27191,27219,27113,26891,26578,26180,25675,25111,24534,23885,23238,22580,21920,21284,20661,20085,19528,19036,18570,18170,17785,17466,17174,16915,16663,16454,16249,16055,15865,15688,15517,15382,15261,15154,15103,15034,14994,14966,14965,14961,14986,15009,15041,15082,15101,15166,15213,15227,15248,15266,15273,15277,15298,15287,15294,15225,15171,15114,15048,14953,14855,14721,14578,14409,14210,14002,13774,13539,13278,13008,12729,12429,12147,11855,11565,11290,11037,10811,10571,10304,10005,9682,9371,9087,8829,8623,8453,8288,8159,8061,7984,7915,7870,7809,7716,7580,7386,7233,7117,7001,6911,6829,6760,6709,6673,6647,6635,6620,6612,6626,6615,6473,6164,5731,5131,22.3,22.2,22.9,1568924,0.0,12.9,12.0,5.0,454,-1.00,-1.00,58.9671,-19.511275,0.000617,,,,,38 +SATSLF0720,2024246,21.260387,4.05,0.0567,0.1039,0.0189,0.00,16123,660,1,715,719,709,716,725,713,717,729,729,717,722,745,764,883,1190,1899,3036,4389,5651,6578,7245,7741,8171,8622,9134,9767,10510,11372,12374,13476,14665,15817,16924,17877,18605,19028,19169,18983,18608,18071,17490,16925,16474,16113,15884,15820,15893,16136,16554,17122,17866,18793,19829,21053,22357,23805,25291,26777,28194,29442,30434,31198,31607,31605,31280,30621,29720,28652,27430,26243,25104,24013,23019,22170,21449,20836,20352,19969,19677,19527,19418,19458,19545,19725,19993,20331,20763,21294,21867,22490,23157,23808,24416,24981,25464,25826,26085,26151,26021,25745,25262,24625,23902,23117,22224,21362,20501,19739,19021,18379,17819,17357,16941,16629,16378,16204,16108,16066,16074,16182,16341,16554,16867,17229,17649,18142,18698,19323,19956,20652,21373,22110,22845,23570,24273,24932,25518,26082,26491,26824,27079,27180,27192,27121,26905,26547,26163,25664,25101,24508,23861,23223,22574,21895,21282,20674,20077,19523,19024,18562,18150,17773,17445,17149,16878,16640,16441,16227,16043,15847,15671,15511,15379,15250,15144,15088,15013,14969,14953,14933,14942,14955,14987,15016,15053,15099,15156,15205,15223,15233,15245,15236,15266,15280,15281,15278,15232,15165,15106,15022,14947,14855,14714,14557,14393,14195,13980,13755,13539,13270,13010,12733,12439,12133,11841,11565,11294,11031,10786,10561,10286,9991,9661,9365,9077,8829,8624,8450,8292,8156,8059,7980,7912,7874,7797,7712,7581,7405,7241,7102,7007,6898,6836,6757,6689,6667,6660,6633,6624,6625,6629,6631,6469,6160,5733,5111,22.3,22.2,22.9,1568925,0.1,12.9,11.9,5.0,451,-1.00,-1.00,58.5139,-19.308990,0.000512,,,,,104 +SATSLF0720,2024246,21.260644,4.01,0.0562,0.1033,0.0186,0.00,16138,660,1,707,726,726,721,725,723,733,733,733,741,737,747,776,881,1189,1893,3028,4399,5659,6586,7275,7754,8180,8646,9145,9787,10523,11400,12381,13480,14666,15819,16950,17913,18637,19061,19204,19017,18649,18105,17527,16945,16507,16141,15901,15837,15914,16157,16558,17153,17899,18795,19869,21090,22401,23850,25325,26813,28216,29458,30475,31227,31621,31633,31312,30650,29741,28678,27458,26279,25117,24061,23053,22186,21471,20845,20368,19975,19697,19525,19443,19444,19554,19741,20018,20363,20790,21320,21884,22506,23172,23816,24428,25016,25478,25847,26114,26164,26030,25771,25274,24660,23932,23130,22262,21381,20534,19757,19055,18400,17834,17373,16948,16630,16391,16217,16116,16075,16100,16189,16350,16573,16873,17240,17662,18148,18714,19330,19953,20643,21374,22115,22856,23563,24273,24933,25523,26084,26514,26843,27093,27195,27208,27110,26886,26571,26163,25677,25101,24525,23889,23237,22595,21929,21293,20681,20091,19529,19048,18562,18150,17781,17450,17165,16896,16673,16460,16260,16072,15881,15689,15517,15377,15261,15168,15082,14999,14973,14951,14950,14957,14991,15005,15057,15085,15123,15161,15231,15233,15254,15254,15252,15258,15291,15289,15272,15235,15169,15115,15038,14947,14853,14723,14561,14396,14228,14013,13799,13549,13301,13019,12741,12438,12141,11850,11552,11294,11042,10817,10573,10296,10002,9680,9369,9079,8839,8625,8469,8298,8166,8069,7990,7925,7876,7811,7721,7590,7413,7253,7128,7001,6912,6823,6767,6711,6676,6645,6635,6629,6616,6633,6625,6487,6162,5759,5141,22.3,22.2,22.9,1568926,0.0,12.9,12.0,5.0,453,-1.00,-1.00,58.2226,-19.206532,0.000509,,,,,109 +SATSLF0720,2024246,21.260899,4.05,0.0568,0.1056,0.0203,0.00,16062,660,1,711,711,704,707,710,725,738,723,739,748,759,761,782,900,1193,1886,3039,4389,5632,6562,7223,7694,8129,8567,9096,9719,10454,11323,12314,13422,14593,15749,16838,17783,18517,18935,19080,18900,18516,17984,17389,16848,16386,16035,15799,15729,15826,16053,16461,17050,17772,18681,19741,20946,22269,23705,25181,26656,28052,29297,30290,31032,31412,31429,31109,30461,29556,28514,27289,26123,24973,23912,22913,22062,21344,20740,20257,19864,19577,19439,19342,19349,19439,19635,19901,20253,20680,21197,21765,22385,23049,23703,24313,24890,25344,25722,25987,26017,25906,25617,25128,24516,23795,23008,22148,21284,20430,19674,18965,18309,17747,17271,16866,16570,16329,16162,16058,16018,16029,16114,16259,16496,16780,17152,17583,18061,18637,19253,19890,20562,21301,22028,22769,23493,24181,24836,25426,25973,26386,26716,26952,27074,27078,26988,26775,26445,26061,25570,24997,24416,23785,23130,22498,21817,21203,20572,19995,19445,18957,18486,18074,17707,17388,17102,16833,16597,16409,16186,16010,15816,15633,15469,15320,15201,15105,15050,14969,14939,14912,14915,14907,14929,14950,14982,15021,15051,15115,15162,15173,15205,15204,15205,15229,15243,15229,15223,15171,15122,15057,14988,14902,14810,14679,14533,14347,14163,13949,13745,13506,13241,12962,12688,12400,12129,11808,11543,11268,11029,10778,10535,10269,9965,9662,9337,9045,8807,8609,8429,8264,8151,8049,7983,7907,7853,7799,7709,7563,7387,7227,7087,6981,6881,6793,6736,6683,6643,6622,6616,6613,6593,6619,6614,6462,6156,5721,5107,22.3,22.3,23.0,1568927,0.2,12.9,11.9,5.0,450,-1.00,-1.00,58.6688,-19.279230,0.000538,,,,,16 +SATSLF0720,2024246,21.261152,4.22,0.0591,0.1055,0.0199,0.00,16068,660,1,718,717,723,716,727,729,728,730,733,737,741,749,777,883,1192,1888,3026,4369,5631,6562,7225,7697,8126,8575,9081,9690,10435,11301,12288,13405,14567,15717,16827,17771,18484,18923,19044,18892,18517,17986,17405,16824,16385,16023,15784,15733,15824,16072,16477,17050,17792,18697,19753,20956,22273,23699,25171,26633,28055,29300,30305,31053,31440,31446,31108,30464,29563,28521,27301,26130,24981,23902,22920,22065,21340,20721,20251,19870,19606,19445,19349,19369,19461,19659,19922,20256,20694,21223,21785,22408,23072,23714,24329,24905,25378,25733,25985,26041,25930,25649,25173,24541,23814,23036,22147,21290,20434,19671,18961,18317,17760,17280,16889,16571,16317,16147,16050,16009,16027,16127,16277,16503,16801,17172,17595,18082,18657,19265,19897,20573,21289,22034,22769,23485,24183,24845,25442,26006,26423,26755,26982,27091,27110,27028,26788,26472,26074,25583,25037,24436,23805,23176,22517,21851,21231,20596,20010,19455,18969,18496,18090,17735,17408,17126,16836,16612,16405,16202,16017,15805,15643,15460,15328,15208,15125,15050,14970,14934,14912,14908,14928,14938,14960,14997,15037,15076,15131,15189,15195,15193,15213,15217,15218,15236,15247,15241,15181,15126,15073,15001,14915,14822,14667,14527,14352,14170,13961,13765,13508,13255,12994,12706,12405,12102,11795,11531,11258,11010,10770,10535,10263,9991,9653,9334,9067,8821,8609,8450,8290,8157,8059,7979,7914,7848,7790,7702,7561,7390,7233,7095,6982,6877,6808,6741,6698,6657,6646,6634,6608,6598,6635,6614,6450,6153,5725,5097,22.3,22.3,23.0,1568928,0.0,12.9,12.0,5.0,443,-1.00,-1.00,58.3406,-19.148427,0.000497,,,,,155 +SATSLF0720,2024246,21.261411,4.01,0.0561,0.1051,0.0201,0.00,16076,660,1,708,705,713,714,725,718,719,729,734,731,752,757,778,877,1180,1875,3027,4368,5640,6570,7223,7719,8133,8568,9090,9713,10468,11322,12312,13433,14596,15749,16860,17813,18519,18968,19093,18905,18523,18007,17424,16860,16408,16045,15843,15773,15842,16075,16500,17065,17792,18691,19750,20965,22289,23721,25207,26680,28093,29336,30330,31075,31472,31482,31161,30517,29605,28565,27346,26165,25022,23947,22956,22096,21355,20754,20267,19885,19602,19445,19365,19371,19462,19657,19924,20283,20717,21232,21795,22413,23064,23718,24321,24901,25376,25745,26000,26071,25950,25669,25190,24562,23833,23042,22184,21306,20453,19680,18981,18334,17777,17301,16901,16577,16314,16151,16067,16029,16044,16138,16296,16525,16816,17177,17608,18096,18667,19257,19894,20580,21302,22045,22785,23495,24196,24841,25441,26025,26421,26738,27011,27112,27101,27008,26794,26465,26081,25602,25034,24438,23812,23172,22508,21834,21197,20592,19997,19449,18961,18498,18099,17728,17419,17129,16861,16610,16407,16190,16021,15817,15633,15477,15338,15202,15119,15052,14969,14928,14915,14909,14905,14924,14951,14993,15041,15060,15123,15168,15197,15187,15207,15210,15240,15247,15259,15246,15197,15138,15066,14993,14912,14816,14683,14534,14362,14179,13962,13737,13510,13242,12976,12699,12407,12120,11822,11520,11255,11007,10776,10539,10272,9972,9665,9350,9065,8832,8605,8437,8295,8153,8049,7977,7893,7848,7793,7705,7565,7380,7243,7101,6994,6891,6803,6736,6689,6650,6635,6622,6600,6596,6610,6624,6465,6160,5734,5115,22.3,22.3,23.0,1568929,0.1,12.9,11.9,5.0,449,-1.00,-1.00,59.0029,-19.446802,0.000493,,,,,175 +SATSLF0720,2024246,21.261665,3.87,0.0541,0.1052,0.0203,0.00,16076,660,1,711,718,717,711,731,713,723,727,738,732,730,729,769,869,1176,1878,3014,4382,5622,6555,7228,7710,8127,8595,9109,9724,10465,11319,12322,13426,14587,15748,16845,17818,18533,18966,19114,18933,18549,18012,17424,16861,16396,16037,15810,15747,15826,16080,16482,17065,17814,18697,19754,20984,22285,23731,25201,26672,28085,29339,30324,31078,31471,31483,31169,30514,29594,28557,27338,26157,24989,23936,22952,22101,21362,20756,20279,19892,19607,19461,19361,19379,19469,19675,19940,20270,20701,21233,21793,22410,23070,23709,24342,24898,25383,25750,26016,26058,25945,25670,25193,24549,23831,23050,22182,21309,20453,19701,18992,18325,17771,17292,16893,16571,16341,16175,16057,16033,16037,16118,16291,16512,16812,17176,17604,18090,18659,19264,19904,20570,21301,22029,22785,23496,24177,24851,25430,26019,26429,26760,27005,27104,27110,27025,26804,26466,26090,25591,25017,24421,23808,23154,22505,21847,21232,20610,20020,19446,18958,18498,18089,17719,17399,17117,16853,16600,16400,16197,16004,15826,15628,15462,15329,15222,15106,15052,14965,14926,14906,14903,14921,14945,14976,15004,15038,15079,15114,15181,15182,15202,15206,15203,15236,15254,15257,15252,15194,15148,15058,15000,14912,14824,14682,14532,14371,14177,13969,13746,13515,13240,12978,12697,12397,12121,11814,11545,11273,11029,10788,10549,10275,9969,9658,9349,9056,8813,8601,8428,8267,8145,8046,7972,7905,7850,7781,7691,7559,7380,7235,7108,6999,6890,6816,6753,6694,6661,6638,6619,6613,6609,6601,6615,6457,6149,5727,5102,22.3,22.4,23.0,1568930,0.2,12.9,12.0,5.0,448,-1.00,-1.00,59.4179,-19.617588,0.000565,,,,,158 +SATSLF0720,2024246,21.261918,4.08,0.0572,0.1051,0.0202,0.00,16077,660,1,709,717,708,701,718,714,725,734,736,735,749,754,781,882,1184,1885,3013,4369,5630,6565,7220,7690,8123,8581,9094,9716,10449,11313,12299,13415,14573,15739,16845,17783,18513,18953,19076,18901,18537,18000,17421,16858,16412,16046,15817,15740,15839,16075,16484,17065,17806,18698,19764,20976,22280,23719,25202,26676,28081,29325,30340,31076,31480,31473,31176,30509,29610,28562,27322,26148,25000,23933,22928,22093,21354,20745,20275,19888,19609,19450,19365,19385,19484,19676,19941,20273,20699,21240,21802,22416,23085,23700,24331,24908,25389,25752,26021,26066,25952,25676,25196,24555,23845,23045,22157,21313,20442,19694,18996,18336,17794,17318,16917,16597,16348,16180,16059,16013,16033,16118,16291,16535,16821,17175,17611,18097,18670,19268,19915,20589,21297,22042,22787,23509,24210,24866,25461,26020,26440,26769,27013,27109,27114,27035,26808,26489,26089,25601,25034,24425,23803,23168,22498,21841,21210,20614,20025,19455,18987,18509,18105,17729,17402,17106,16849,16597,16407,16209,16016,15829,15637,15476,15337,15217,15117,15047,14965,14928,14901,14918,14913,14936,14959,14987,15044,15069,15127,15176,15194,15209,15211,15219,15236,15264,15265,15245,15198,15131,15063,15003,14913,14818,14676,14539,14361,14179,13973,13757,13509,13252,12990,12702,12404,12119,11817,11536,11264,11024,10778,10546,10277,9975,9647,9345,9057,8821,8608,8435,8277,8157,8044,7969,7901,7869,7784,7704,7554,7380,7227,7105,6983,6895,6810,6753,6696,6649,6626,6614,6602,6599,6613,6617,6453,6159,5730,5100,22.3,22.4,23.1,1568931,0.2,13.0,11.9,5.0,445,-1.00,-1.00,58.8289,-19.372136,0.000516,,,,,98 +SATSLF0720,2024246,21.262173,3.98,0.0557,0.1065,0.0207,0.00,16043,660,1,721,731,722,734,725,722,734,722,726,740,745,746,779,884,1191,1892,3024,4379,5621,6537,7203,7699,8113,8562,9072,9699,10428,11293,12285,13387,14554,15693,16809,17752,18488,18906,19041,18840,18491,17963,17373,16825,16363,16008,15773,15700,15785,16045,16432,17005,17747,18655,19706,20920,22229,23656,25127,26604,28013,29236,30245,30984,31378,31394,31080,30420,29522,28477,27264,26093,24938,23859,22875,22025,21300,20688,20215,19831,19554,19396,19305,19307,19415,19594,19863,20225,20649,21165,21735,22354,23009,23662,24273,24840,25325,25695,25963,26021,25883,25611,25145,24493,23776,22982,22112,21258,20400,19643,18952,18309,17741,17272,16871,16551,16301,16133,16023,15992,16001,16099,16270,16482,16766,17125,17564,18067,18636,19242,19850,20537,21245,21999,22736,23464,24145,24823,25406,25959,26394,26711,26941,27062,27065,26971,26748,26421,26022,25544,24964,24394,23771,23115,22469,21804,21171,20574,19985,19413,18921,18441,18059,17690,17379,17089,16816,16587,16386,16183,15978,15793,15622,15435,15303,15193,15115,15017,14967,14912,14915,14900,14912,14924,14937,14973,15010,15048,15089,15150,15168,15173,15189,15182,15207,15217,15234,15223,15169,15110,15045,14976,14897,14797,14650,14515,14355,14158,13943,13731,13498,13224,12967,12673,12379,12106,11805,11527,11255,11006,10755,10529,10261,9964,9646,9333,9050,8808,8597,8416,8281,8141,8045,7973,7895,7842,7777,7705,7547,7385,7232,7102,6997,6898,6807,6743,6692,6641,6628,6616,6603,6589,6605,6603,6465,6155,5717,5107,22.4,22.4,23.1,1568932,0.2,12.9,11.9,5.0,442,-1.00,-1.00,59.2545,-19.498028,0.000490,,,,,90 +SATSLF0720,2024246,21.262432,4.14,0.0580,0.1067,0.0207,0.00,16032,660,1,717,708,726,733,729,730,736,731,734,737,751,758,789,893,1190,1878,3004,4355,5603,6530,7184,7674,8102,8545,9066,9690,10420,11295,12269,13369,14529,15682,16772,17728,18440,18874,18994,18823,18457,17931,17356,16805,16345,15993,15767,15697,15781,16005,16410,16998,17737,18633,19694,20882,22200,23638,25094,26583,27986,29233,30218,30964,31364,31373,31035,30412,29500,28454,27225,26041,24887,23830,22835,22010,21271,20667,20201,19808,19534,19397,19297,19307,19403,19592,19861,20202,20646,21165,21720,22344,23009,23642,24261,24826,25308,25656,25930,25977,25850,25600,25113,24487,23773,22969,22115,21243,20403,19629,18945,18286,17728,17257,16867,16548,16282,16124,16021,15975,15993,16101,16253,16480,16770,17141,17566,18051,18610,19213,19847,20512,21243,21980,22729,23438,24135,24795,25389,25956,26377,26695,26916,27024,27029,26944,26721,26405,26021,25529,24974,24389,23758,23105,22460,21802,21177,20557,19965,19417,18930,18446,18046,17682,17360,17071,16811,16565,16375,16170,15985,15793,15614,15444,15313,15195,15083,15011,14943,14905,14885,14877,14881,14914,14921,14973,15016,15033,15095,15151,15159,15181,15192,15185,15211,15233,15228,15213,15170,15102,15045,14976,14881,14798,14661,14513,14344,14146,13922,13703,13481,13217,12959,12680,12392,12114,11813,11513,11234,10999,10760,10518,10259,9969,9636,9321,9051,8819,8599,8432,8273,8150,8044,7972,7897,7840,7766,7675,7531,7353,7223,7089,6982,6885,6805,6729,6669,6656,6631,6621,6600,6597,6616,6613,6459,6154,5724,5115,22.3,22.4,23.1,1568933,0.0,12.9,12.0,5.0,441,-1.00,-1.00,58.8740,-19.322280,0.000538,,,,,135 +SATSLF0720,2024246,21.262687,4.05,0.0568,0.1050,0.0201,0.00,16087,660,1,702,707,724,713,727,728,729,723,735,737,737,734,772,892,1203,1894,3043,4396,5645,6570,7221,7722,8145,8599,9110,9742,10484,11351,12340,13438,14615,15763,16865,17813,18541,18965,19111,18924,18555,18018,17431,16876,16426,16061,15837,15761,15846,16081,16488,17082,17802,18729,19777,20992,22299,23720,25205,26678,28096,29338,30341,31099,31464,31488,31166,30520,29614,28555,27344,26156,24994,23929,22944,22101,21351,20765,20277,19897,19624,19469,19369,19370,19483,19662,19930,20288,20704,21239,21794,22412,23076,23729,24336,24926,25398,25761,26030,26081,25965,25682,25209,24556,23851,23045,22170,21308,20466,19713,19005,18361,17801,17320,16908,16604,16341,16179,16070,16027,16045,16133,16296,16528,16829,17191,17624,18093,18659,19264,19912,20592,21320,22057,22811,23512,24211,24859,25453,26030,26455,26761,27019,27109,27136,27026,26815,26486,26089,25609,25051,24458,23816,23172,22527,21860,21224,20621,20019,19457,18968,18507,18109,17732,17409,17137,16852,16613,16416,16206,16024,15845,15638,15482,15337,15207,15115,15039,14976,14950,14924,14920,14935,14956,14963,14999,15047,15079,15134,15192,15211,15217,15221,15243,15252,15267,15273,15258,15201,15140,15066,15015,14917,14837,14694,14556,14385,14186,13973,13766,13518,13258,12992,12721,12421,12150,11833,11549,11282,11028,10785,10562,10288,9982,9664,9357,9069,8838,8621,8460,8297,8157,8058,7967,7915,7861,7808,7721,7565,7400,7236,7100,6987,6901,6826,6749,6693,6650,6629,6622,6611,6617,6620,6617,6464,6177,5746,5123,22.4,22.4,23.1,1568934,0.3,12.9,12.0,5.0,443,-1.00,-1.00,58.4945,-19.237086,0.000486,,,,,129 +SATSLF0720,2024246,21.262943,4.06,0.0569,0.1058,0.0197,0.00,16061,660,1,716,700,709,711,717,719,726,724,739,737,737,745,776,881,1189,1893,3024,4389,5629,6556,7203,7687,8129,8582,9101,9714,10455,11317,12307,13409,14584,15738,16833,17771,18502,18933,19061,18902,18512,18003,17414,16857,16384,16014,15801,15729,15821,16061,16465,17044,17787,18690,19753,20962,22270,23685,25163,26656,28053,29306,30282,31042,31447,31437,31130,30474,29568,28521,27300,26118,24972,23908,22893,22055,21328,20716,20245,19869,19579,19433,19335,19354,19453,19637,19900,20242,20673,21186,21760,22385,23056,23697,24315,24881,25367,25734,25985,26038,25909,25632,25169,24525,23805,23025,22161,21282,20442,19669,18960,18314,17756,17285,16872,16573,16317,16147,16051,15994,16023,16115,16282,16497,16793,17170,17592,18084,18629,19254,19880,20574,21293,22033,22777,23474,24186,24841,25418,25986,26393,26724,26962,27069,27074,26995,26772,26455,26057,25568,25012,24426,23784,23147,22480,21830,21209,20590,20003,19454,18965,18489,18089,17706,17400,17101,16832,16584,16394,16184,16003,15816,15634,15461,15313,15200,15096,15038,14953,14926,14898,14898,14902,14929,14947,14987,15032,15054,15104,15156,15177,15185,15204,15209,15232,15265,15259,15242,15188,15129,15077,14994,14903,14827,14676,14519,14361,14179,13954,13751,13498,13229,12966,12689,12401,12101,11809,11526,11272,11009,10775,10538,10279,9977,9651,9341,9057,8816,8597,8437,8276,8144,8041,7963,7894,7848,7782,7689,7553,7373,7216,7086,6977,6884,6807,6736,6678,6641,6632,6608,6594,6587,6597,6598,6441,6137,5725,5101,22.4,22.4,23.1,1568934,0.0,12.9,12.0,5.0,449,-1.00,-1.00,58.7426,-19.314604,0.000525,,,,,1 +SATSLF0720,2024246,21.263197,4.12,0.0577,0.1061,0.0209,0.00,16050,660,1,717,717,723,716,715,727,725,721,733,728,735,754,785,889,1189,1877,3023,4360,5613,6561,7213,7677,8115,8552,9069,9703,10437,11317,12308,13399,14575,15725,16832,17781,18502,18920,19045,18868,18492,17953,17378,16839,16369,16020,15785,15724,15808,16049,16443,17028,17761,18670,19726,20930,22251,23692,25144,26629,28044,29276,30267,31015,31416,31414,31094,30450,29560,28492,27272,26096,24957,23882,22891,22021,21296,20701,20235,19845,19565,19413,19321,19336,19429,19617,19889,20232,20668,21197,21740,22365,23033,23692,24278,24866,25332,25701,25957,26011,25899,25617,25142,24493,23784,22983,22129,21269,20424,19668,18964,18315,17762,17286,16878,16553,16295,16139,16032,15983,16023,16102,16265,16489,16792,17153,17575,18053,18618,19210,19863,20549,21269,22016,22753,23465,24162,24810,25384,25947,26384,26714,26949,27051,27067,26967,26760,26432,26050,25545,24997,24407,23779,23117,22475,21819,21175,20573,19986,19421,18944,18470,18082,17701,17370,17088,16833,16585,16365,16175,15993,15801,15604,15447,15293,15187,15082,15003,14936,14901,14893,14893,14905,14925,14949,14979,15032,15049,15095,15165,15165,15181,15191,15191,15227,15229,15239,15242,15185,15109,15040,14987,14881,14803,14665,14515,14343,14170,13946,13749,13500,13237,12967,12684,12387,12107,11798,11523,11242,11010,10769,10539,10269,9985,9662,9349,9052,8819,8612,8430,8265,8137,8051,7963,7881,7841,7777,7682,7551,7371,7218,7090,6987,6885,6800,6734,6680,6655,6624,6618,6612,6613,6618,6605,6461,6153,5717,5101,22.4,22.5,23.2,1568935,0.0,12.9,12.0,5.0,444,-1.00,-1.00,58.7748,-19.313185,0.000533,,,,,39 +SATSLF0720,2024246,21.263448,4.12,0.0578,0.1055,0.0196,0.00,16077,660,1,721,717,729,733,738,734,741,734,736,733,733,744,777,883,1192,1893,3033,4405,5642,6592,7234,7730,8148,8594,9111,9727,10470,11332,12328,13433,14592,15758,16847,17815,18526,18961,19091,18903,18522,17997,17408,16853,16398,16032,15809,15748,15831,16084,16489,17073,17796,18699,19751,20965,22283,23720,25194,26674,28078,29323,30321,31078,31461,31463,31120,30492,29585,28541,27304,26140,24981,23912,22924,22072,21349,20747,20266,19864,19607,19436,19346,19367,19461,19657,19925,20263,20704,21213,21783,22409,23072,23714,24305,24907,25380,25746,26007,26061,25948,25666,25190,24538,23837,23029,22167,21282,20464,19688,18983,18336,17788,17325,16912,16587,16338,16168,16055,16016,16029,16135,16293,16515,16810,17186,17614,18093,18654,19264,19902,20581,21296,22034,22781,23504,24193,24854,25452,26021,26429,26758,27001,27097,27118,27012,26796,26466,26073,25589,25024,24447,23808,23159,22506,21843,21222,20593,20003,19461,18969,18491,18103,17730,17409,17111,16854,16597,16405,16206,16014,15837,15636,15477,15345,15210,15113,15045,14970,14934,14913,14912,14916,14945,14971,15013,15045,15073,15115,15181,15193,15202,15200,15208,15235,15258,15260,15255,15202,15152,15081,15004,14923,14825,14679,14538,14373,14189,13973,13753,13514,13253,12992,12697,12413,12125,11826,11538,11275,11021,10768,10544,10276,9973,9645,9348,9066,8813,8597,8439,8296,8165,8058,7979,7922,7850,7795,7701,7553,7378,7235,7108,6989,6885,6809,6747,6686,6663,6646,6624,6618,6607,6631,6616,6461,6161,5728,5115,22.4,22.5,23.2,1568936,0.3,12.9,11.9,5.0,448,-1.00,-1.00,58.4466,-19.203552,0.000541,,,,,111 +SATSLF0720,2024246,21.263704,4.10,0.0575,0.1057,0.0200,0.00,16068,660,1,728,723,729,729,735,737,742,727,736,742,752,753,778,880,1204,1900,3039,4410,5652,6580,7234,7721,8140,8581,9108,9737,10480,11351,12330,13436,14593,15748,16837,17803,18522,18955,19083,18913,18549,18003,17417,16857,16399,16039,15824,15756,15844,16062,16482,17073,17801,18709,19758,20962,22269,23702,25175,26656,28065,29309,30315,31065,31462,31464,31136,30496,29587,28529,27294,26115,24966,23904,22914,22065,21336,20736,20257,19864,19589,19442,19338,19361,19462,19642,19895,20263,20693,21198,21771,22402,23054,23703,24313,24894,25376,25745,26008,26044,25929,25655,25169,24522,23816,23022,22156,21308,20449,19691,18987,18340,17772,17305,16887,16573,16322,16147,16040,16010,16032,16122,16289,16516,16815,17174,17600,18083,18647,19259,19885,20573,21281,22023,22761,23482,24186,24825,25419,25986,26391,26731,26962,27058,27088,27004,26777,26463,26053,25571,25005,24422,23789,23141,22484,21831,21209,20603,19992,19447,18951,18492,18077,17718,17386,17101,16832,16587,16389,16181,15992,15805,15609,15457,15310,15193,15102,15034,14960,14928,14898,14907,14917,14951,14962,14993,15021,15058,15108,15168,15173,15186,15203,15211,15225,15249,15237,15227,15179,15117,15068,14977,14909,14805,14659,14523,14347,14176,13971,13748,13505,13259,12986,12707,12405,12106,11804,11522,11255,11006,10784,10553,10279,9979,9653,9346,9061,8820,8608,8445,8281,8141,8055,7962,7907,7857,7794,7693,7557,7392,7233,7101,6990,6878,6807,6754,6695,6657,6645,6626,6603,6595,6617,6598,6455,6144,5730,5117,22.4,22.5,23.2,1568937,0.2,12.9,11.9,5.0,450,-1.00,-1.00,58.2305,-19.108291,0.000527,,,,,74 +SATSLF0720,2024246,21.263957,4.07,0.0570,0.1078,0.0213,0.00,16004,660,1,717,727,738,733,731,728,731,729,737,733,745,753,791,893,1193,1888,3018,4364,5597,6546,7184,7675,8097,8549,9049,9685,10405,11261,12241,13335,14487,15649,16756,17696,18402,18846,18965,18789,18421,17893,17309,16759,16309,15944,15728,15653,15726,15973,16383,16962,17698,18594,19666,20845,22163,23579,25057,26517,27929,29170,30162,30889,31297,31289,30986,30332,29435,28388,27170,25997,24855,23793,22788,21947,21238,20640,20168,19778,19497,19344,19247,19267,19365,19566,19818,20163,20605,21123,21669,22288,22961,23602,24220,24784,25261,25629,25881,25924,25817,25525,25062,24432,23730,22929,22075,21216,20373,19612,18909,18257,17710,17243,16823,16519,16260,16091,15998,15933,15975,16062,16225,16445,16727,17101,17522,17998,18576,19176,19814,20480,21218,21944,22685,23401,24097,24752,25317,25892,26285,26619,26860,26967,26978,26885,26681,26364,25974,25477,24922,24340,23704,23065,22404,21755,21121,20514,19934,19380,18899,18427,18030,17665,17337,17045,16770,16544,16335,16138,15953,15767,15596,15435,15290,15171,15077,14994,14916,14884,14862,14858,14861,14885,14909,14941,14995,15025,15069,15125,15139,15157,15161,15178,15190,15198,15198,15186,15150,15084,15025,14959,14865,14771,14635,14487,14331,14133,13921,13723,13473,13208,12958,12672,12373,12073,11777,11488,11233,10981,10746,10507,10253,9942,9637,9322,9049,8790,8588,8408,8245,8119,8021,7941,7886,7829,7780,7697,7529,7359,7215,7085,6957,6855,6779,6728,6665,6656,6629,6619,6603,6592,6605,6593,6443,6155,5717,5117,22.4,22.6,23.2,1568938,0.3,12.9,12.0,5.0,444,-1.00,-1.00,59.3140,-19.466478,0.000563,,,,,39 +SATSLF0720,2024246,21.264208,4.08,0.0571,0.1071,0.0208,0.00,16025,660,1,726,723,727,726,729,714,725,736,733,738,738,755,776,887,1182,1887,3009,4362,5605,6538,7202,7677,8114,8553,9079,9672,10420,11285,12264,13363,14541,15695,16794,17737,18442,18885,19005,18813,18452,17924,17337,16786,16331,15975,15751,15680,15750,15995,16405,16997,17730,18630,19700,20905,22202,23632,25090,26564,27965,29192,30187,30937,31339,31333,31029,30373,29470,28438,27221,26045,24897,23832,22833,21989,21285,20660,20189,19803,19513,19363,19277,19294,19385,19569,19841,20181,20614,21147,21709,22319,23001,23639,24251,24836,25306,25661,25929,25972,25853,25579,25093,24464,23757,22966,22100,21239,20397,19629,18931,18282,17731,17269,16843,16536,16278,16132,16010,15979,16003,16101,16244,16471,16763,17123,17552,18048,18605,19206,19837,20526,21250,21977,22708,23423,24119,24774,25366,25927,26344,26669,26917,27009,27029,26934,26724,26391,26009,25525,24947,24371,23735,23093,22445,21777,21155,20532,19951,19398,18909,18449,18023,17681,17354,17061,16801,16569,16361,16157,15980,15774,15591,15428,15284,15168,15090,15009,14935,14892,14875,14870,14878,14897,14935,14981,15012,15033,15095,15154,15146,15171,15165,15169,15198,15220,15216,15211,15158,15091,15043,14973,14881,14782,14650,14500,14341,14161,13942,13725,13499,13231,12963,12688,12381,12095,11797,11520,11245,11002,10754,10522,10244,9953,9629,9314,9046,8797,8605,8422,8266,8154,8057,7990,7897,7838,7777,7693,7545,7367,7225,7101,6965,6868,6793,6714,6663,6629,6624,6629,6601,6597,6611,6605,6455,6150,5724,5103,22.4,22.6,23.2,1568939,0.1,12.9,11.9,5.0,450,-1.00,-1.00,59.0779,-19.396433,0.000539,,,,,39 +SATSLF0720,2024246,21.264464,4.14,0.0580,0.1076,0.0215,0.00,16005,660,1,721,709,722,729,739,731,729,733,734,745,731,731,781,889,1197,1891,3021,4369,5610,6551,7182,7680,8111,8545,9054,9682,10409,11263,12259,13360,14517,15680,16761,17701,18424,18843,18986,18805,18439,17915,17324,16779,16318,15968,15752,15675,15747,15993,16395,16969,17686,18609,19648,20860,22173,23595,25057,26541,27933,29184,30165,30917,31314,31301,30987,30341,29429,28382,27171,25989,24857,23794,22804,21957,21250,20637,20158,19781,19496,19353,19259,19279,19380,19561,19811,20156,20593,21102,21669,22283,22947,23609,24215,24781,25269,25621,25885,25922,25818,25549,25067,24439,23734,22941,22085,21205,20357,19600,18912,18266,17703,17235,16826,16513,16276,16096,16000,15956,15971,16065,16212,16425,16743,17117,17532,18033,18585,19180,19819,20488,21215,21949,22669,23384,24087,24728,25331,25888,26314,26622,26877,26985,27005,26901,26690,26373,25969,25479,24922,24337,23712,23061,22411,21745,21133,20514,19936,19388,18896,18432,18026,17657,17338,17045,16773,16539,16337,16146,15944,15757,15565,15393,15264,15155,15064,14987,14919,14865,14850,14839,14852,14869,14903,14935,14983,15019,15065,15127,15146,15147,15169,15168,15187,15221,15194,15201,15141,15073,15019,14961,14872,14786,14629,14491,14327,14129,13920,13707,13457,13211,12945,12654,12355,12067,11779,11508,11232,10978,10745,10498,10242,9937,9612,9309,9024,8791,8575,8407,8250,8125,8022,7954,7890,7833,7754,7675,7532,7362,7216,7092,6977,6877,6790,6724,6658,6627,6611,6601,6596,6593,6602,6600,6439,6135,5714,5087,22.4,22.6,23.2,1568940,0.2,12.9,12.0,5.0,447,-1.00,-1.00,58.5968,-19.170657,0.000567,,,,,221 +SATSDF0720,2024246,21.509139,0.00,0.0000,0.0000,0.0000,0.00,661,0,1,652,641,640,634,647,644,638,638,645,639,635,635,631,624,636,637,647,661,645,651,657,651,656,674,657,663,670,670,670,672,664,653,651,664,648,679,673,679,677,669,668,668,672,669,663,648,669,653,665,657,661,661,676,670,680,687,681,673,671,662,672,674,659,663,663,666,658,651,646,657,660,656,667,671,670,676,675,678,670,665,667,660,664,658,663,661,666,660,665,667,667,675,661,669,657,662,659,671,678,669,674,661,675,665,659,664,664,666,662,683,671,665,672,676,665,658,657,655,653,657,642,652,659,663,662,670,642,647,662,653,661,665,659,667,674,675,673,667,671,673,674,665,650,651,650,662,661,663,656,651,663,668,676,674,658,652,657,653,655,653,653,659,649,653,664,659,655,669,662,653,664,668,666,656,666,662,668,665,653,664,660,659,669,661,653,651,656,651,651,649,649,661,664,657,670,663,657,663,673,661,660,662,661,662,656,663,659,665,661,657,661,659,666,665,659,661,657,661,651,670,673,661,663,661,658,654,655,659,659,663,668,661,664,660,661,669,680,653,666,659,660,670,658,653,659,665,663,677,657,671,676,664,666,666,658,497,0.0,0.0,0.0,1568939,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,196 +SATSLF0720,2024246,21.509696,4.02,0.0563,0.1023,0.0186,0.00,16158,661,1,711,701,702,709,711,716,722,737,734,742,738,756,771,883,1181,1887,3036,4401,5657,6590,7268,7750,8182,8633,9147,9799,10533,11408,12394,13516,14698,15853,16967,17943,18653,19097,19228,19031,18659,18137,17530,16969,16527,16147,15906,15843,15918,16178,16586,17178,17918,18837,19905,21123,22430,23873,25349,26851,28252,29514,30528,31264,31661,31688,31345,30696,29777,28715,27496,26304,25141,24072,23069,22221,21481,20886,20405,20026,19749,19580,19488,19492,19585,19779,20048,20401,20835,21332,21911,22539,23209,23858,24477,25047,25514,25897,26141,26195,26073,25787,25316,24682,23946,23151,22277,21401,20549,19766,19062,18413,17873,17377,16983,16668,16424,16252,16133,16085,16126,16203,16375,16585,16886,17253,17684,18174,18753,19370,20000,20664,21403,22144,22891,23614,24309,24974,25572,26134,26562,26872,27123,27225,27238,27161,26937,26623,26212,25715,25150,24557,23920,23271,22617,21949,21331,20714,20121,19562,19066,18585,18179,17813,17483,17182,16908,16673,16486,16279,16086,15885,15711,15543,15395,15280,15186,15118,15033,14992,14968,14964,14970,14995,15031,15061,15102,15133,15195,15248,15256,15266,15276,15288,15300,15319,15317,15304,15245,15189,15117,15047,14965,14858,14727,14591,14429,14240,14024,13796,13559,13303,13025,12756,12445,12153,11859,11571,11309,11050,10822,10581,10309,10018,9692,9379,9102,8865,8645,8466,8311,8183,8077,7997,7931,7881,7800,7721,7579,7413,7264,7125,7005,6913,6832,6769,6713,6677,6653,6647,6639,6619,6654,6628,6481,6164,5749,5125,22.4,22.3,22.9,1568941,0.4,13.0,12.0,5.0,566,-1.00,-1.00,58.3098,-19.267343,0.000584,,,,,7 +SATSLF0720,2024246,21.509878,4.04,0.0566,0.1023,0.0178,0.00,16176,661,1,701,713,717,713,736,721,718,727,713,719,724,727,766,874,1188,1896,3037,4417,5668,6624,7293,7773,8188,8645,9157,9779,10535,11415,12425,13544,14730,15886,17010,17949,18682,19105,19241,19053,18690,18157,17555,17001,16534,16162,15933,15863,15947,16196,16601,17195,17937,18850,19927,21153,22467,23913,25393,26873,28301,29549,30566,31309,31698,31719,31404,30738,29833,28768,27531,26339,25175,24091,23098,22251,21525,20928,20428,20034,19747,19593,19489,19497,19609,19802,20061,20427,20853,21381,21948,22571,23232,23885,24485,25075,25558,25896,26187,26229,26114,25828,25353,24714,23989,23180,22312,21438,20586,19801,19100,18438,17886,17415,17001,16681,16426,16251,16162,16116,16137,16229,16383,16619,16896,17291,17713,18227,18777,19386,20016,20708,21429,22176,22923,23632,24354,25002,25600,26164,26602,26919,27145,27275,27270,27169,26967,26635,26241,25738,25184,24597,23940,23288,22647,21983,21333,20717,20117,19555,19076,18598,18196,17831,17496,17204,16942,16705,16501,16292,16101,15893,15715,15542,15414,15294,15203,15133,15049,15002,14990,14989,15006,15021,15035,15075,15108,15159,15188,15255,15261,15275,15289,15283,15306,15333,15329,15311,15266,15206,15141,15079,14988,14887,14750,14602,14423,14233,14027,13817,13573,13301,13047,12756,12453,12166,11879,11601,11325,11077,10829,10583,10315,10025,9700,9373,9091,8846,8638,8472,8313,8177,8094,8001,7937,7888,7819,7719,7589,7406,7267,7134,7016,6918,6825,6763,6711,6675,6649,6646,6629,6627,6637,6623,6491,6189,5758,5131,22.4,22.3,23.0,1568941,0.4,12.9,12.0,5.0,471,-1.00,-1.00,58.3526,-19.311759,0.000559,,,,,30 +SATSLF0720,2024246,21.510134,4.06,0.0568,0.1026,0.0182,0.00,16165,661,1,720,715,703,709,712,718,724,727,732,731,730,761,781,878,1179,1888,3025,4394,5658,6603,7268,7754,8193,8647,9169,9781,10521,11397,12396,13522,14701,15863,16971,17929,18658,19088,19219,19033,18675,18138,17553,16990,16538,16153,15939,15864,15938,16186,16587,17170,17929,18834,19897,21125,22443,23895,25369,26841,28281,29530,30517,31284,31680,31685,31353,30714,29786,28747,27513,26330,25171,24093,23085,22238,21504,20897,20397,20005,19731,19564,19474,19485,19576,19779,20052,20399,20832,21376,21920,22542,23224,23854,24477,25050,25527,25883,26151,26210,26085,25806,25345,24709,23972,23181,22302,21417,20564,19805,19085,18426,17863,17386,16986,16665,16402,16241,16145,16098,16119,16210,16381,16619,16914,17277,17705,18199,18752,19351,20000,20681,21425,22176,22906,23625,24332,24985,25584,26149,26589,26889,27147,27261,27273,27178,26947,26643,26226,25721,25153,24564,23929,23293,22629,21966,21321,20715,20109,19570,19072,18600,18197,17829,17493,17189,16919,16683,16480,16272,16086,15882,15711,15545,15393,15283,15182,15104,15035,15011,14980,14976,14985,14998,15039,15061,15112,15138,15192,15249,15278,15273,15287,15275,15303,15325,15308,15306,15263,15202,15128,15063,14980,14881,14740,14598,14420,14238,14016,13804,13548,13292,13018,12759,12465,12176,11874,11582,11318,11057,10830,10582,10320,10021,9694,9380,9102,8846,8630,8475,8321,8181,8078,7997,7935,7895,7825,7731,7599,7415,7261,7125,7007,6913,6823,6775,6717,6682,6657,6654,6645,6623,6649,6644,6485,6184,5756,5136,22.4,22.4,23.0,1568942,0.0,12.9,12.0,5.0,446,-1.00,-1.00,58.1666,-19.216749,0.000486,,,,,243 +SATSLF0720,2024246,21.510389,4.01,0.0562,0.1029,0.0183,0.00,16157,661,1,709,725,709,711,721,715,715,733,741,738,740,747,777,878,1199,1892,3037,4406,5656,6608,7266,7755,8190,8622,9151,9789,10528,11385,12402,13504,14695,15849,16968,17929,18641,19091,19213,19041,18665,18123,17555,16981,16517,16150,15923,15856,15934,16173,16583,17175,17917,18820,19895,21122,22417,23866,25345,26829,28267,29512,30512,31250,31662,31657,31335,30702,29777,28722,27492,26304,25152,24074,23072,22226,21486,20877,20381,20000,19721,19556,19461,19490,19584,19780,20033,20390,20812,21345,21910,22532,23208,23846,24457,25041,25508,25881,26142,26195,26074,25797,25309,24666,23942,23147,22272,21400,20557,19777,19081,18422,17856,17399,16983,16658,16420,16241,16151,16100,16125,16213,16371,16600,16889,17254,17681,18179,18740,19333,19984,20669,21413,22156,22901,23603,24323,24987,25577,26133,26549,26871,27126,27225,27237,27147,26930,26597,26206,25725,25137,24557,23912,23275,22611,21931,21315,20693,20108,19554,19047,18583,18177,17809,17478,17205,16926,16685,16480,16269,16078,15875,15702,15533,15393,15281,15165,15103,15041,14982,14987,14967,14995,15009,15037,15063,15102,15140,15182,15240,15248,15242,15260,15267,15296,15318,15316,15299,15251,15173,15127,15053,14977,14894,14745,14599,14421,14243,14025,13804,13561,13295,13016,12726,12450,12159,11870,11586,11309,11072,10825,10602,10330,10013,9699,9393,9106,8850,8645,8462,8311,8169,8076,8005,7926,7872,7809,7736,7585,7419,7261,7125,7029,6914,6833,6773,6728,6694,6662,6655,6640,6625,6637,6622,6491,6181,5753,5143,22.4,22.4,23.0,1568943,0.3,13.0,12.0,5.0,454,-1.00,-1.00,58.1886,-19.213330,0.000488,,,,,140 +SATSLF0720,2024246,21.510646,3.89,0.0546,0.1038,0.0187,0.00,16130,661,1,713,704,718,712,735,721,711,711,725,724,733,742,779,881,1189,1885,3025,4393,5648,6587,7245,7734,8182,8614,9153,9767,10512,11369,12369,13483,14657,15813,16925,17869,18595,19043,19174,18987,18621,18098,17507,16944,16478,16107,15886,15805,15879,16130,16547,17121,17876,18777,19840,21050,22373,23812,25288,26772,28174,29440,30445,31193,31607,31594,31269,30621,29709,28659,27419,26256,25101,24013,23021,22167,21430,20836,20357,19982,19692,19524,19423,19455,19547,19734,20004,20341,20776,21306,21865,22498,23145,23789,24424,24981,25467,25842,26090,26156,26026,25749,25261,24629,23910,23110,22246,21380,20521,19750,19041,18400,17838,17365,16967,16654,16408,16235,16129,16069,16091,16183,16346,16560,16858,17221,17653,18144,18704,19315,19956,20650,21377,22116,22869,23561,24269,24918,25527,26086,26514,26845,27086,27192,27200,27111,26907,26552,26167,25670,25099,24524,23880,23219,22573,21905,21288,20669,20081,19536,19036,18560,18161,17783,17450,17161,16889,16648,16461,16263,16060,15879,15692,15527,15368,15250,15160,15078,15004,14969,14943,14939,14945,14974,15005,15046,15093,15103,15167,15220,15234,15241,15255,15252,15285,15288,15296,15285,15229,15173,15112,15041,14964,14857,14726,14571,14400,14211,14007,13794,13549,13289,13022,12735,12441,12154,11862,11575,11278,11047,10815,10578,10317,10000,9676,9350,9079,8835,8633,8461,8309,8176,8080,8005,7913,7871,7810,7717,7581,7404,7246,7119,7023,6916,6841,6761,6706,6672,6666,6641,6625,6631,6637,6628,6478,6177,5748,5142,22.4,22.4,23.1,1568944,0.1,12.9,11.9,5.0,456,-1.00,-1.00,58.8779,-19.458086,0.000539,,,,,67 +SATSLF0720,2024246,21.510901,3.99,0.0559,0.1035,0.0188,0.00,16129,661,1,722,711,707,699,703,703,715,724,743,734,743,754,780,876,1181,1890,3014,4385,5637,6589,7251,7749,8173,8617,9147,9773,10505,11390,12378,13483,14659,15831,16929,17900,18620,19044,19170,18997,18627,18088,17495,16937,16484,16125,15894,15826,15896,16153,16560,17117,17863,18772,19857,21066,22389,23841,25293,26787,28198,29445,30446,31195,31616,31622,31289,30643,29722,28676,27445,26261,25098,24026,23038,22186,21444,20833,20359,19976,19693,19525,19437,19437,19552,19752,20004,20361,20788,21304,21870,22493,23158,23804,24435,24989,25463,25842,26102,26149,26017,25750,25261,24624,23907,23092,22240,21371,20535,19753,19044,18407,17838,17372,16962,16640,16388,16230,16126,16073,16096,16185,16349,16565,16861,17203,17651,18144,18709,19326,19968,20652,21371,22122,22869,23570,24267,24928,25521,26081,26513,26834,27074,27189,27185,27088,26869,26553,26157,25661,25110,24512,23877,23233,22580,21906,21277,20670,20075,19522,19026,18560,18165,17781,17456,17157,16896,16653,16453,16250,16048,15858,15671,15503,15370,15249,15149,15091,15006,14964,14950,14965,14960,14981,15005,15033,15081,15103,15159,15213,15223,15220,15235,15249,15258,15296,15285,15277,15241,15168,15109,15037,14936,14852,14714,14551,14392,14206,14001,13780,13534,13283,13013,12718,12421,12147,11847,11571,11294,11054,10801,10580,10305,9998,9677,9361,9081,8826,8616,8441,8290,8173,8056,7999,7917,7882,7817,7724,7566,7399,7249,7118,7013,6904,6833,6758,6710,6668,6641,6634,6629,6622,6629,6623,6470,6163,5748,5122,22.4,22.4,23.1,1568945,0.2,12.9,12.0,5.0,449,-1.00,-1.00,58.6668,-19.380110,0.000511,,,,,96 +SATSLF0720,2024246,21.511154,4.09,0.0574,0.1048,0.0195,0.00,16096,661,1,722,713,709,717,723,718,732,720,711,723,726,732,763,873,1187,1889,3011,4375,5639,6580,7221,7707,8145,8589,9110,9731,10470,11352,12340,13447,14613,15769,16876,17841,18560,18993,19130,18944,18554,18035,17449,16891,16421,16059,15844,15764,15853,16089,16512,17096,17851,18741,19808,21008,22309,23771,25248,26731,28145,29403,30386,31144,31529,31520,31204,30539,29643,28605,27360,26184,25035,23949,22965,22101,21387,20786,20309,19917,19630,19484,19381,19408,19509,19700,19950,20293,20723,21246,21806,22435,23110,23757,24365,24936,25414,25782,26050,26098,25979,25693,25213,24589,23868,23080,22205,21334,20476,19719,19015,18359,17806,17333,16934,16602,16342,16175,16076,16034,16054,16142,16307,16528,16825,17203,17622,18112,18676,19303,19917,20606,21334,22081,22812,23528,24220,24882,25480,26037,26459,26781,27024,27136,27139,27056,26838,26522,26137,25636,25053,24483,23834,23173,22535,21877,21241,20635,20036,19482,18987,18520,18122,17750,17418,17133,16868,16624,16423,16221,16027,15836,15663,15482,15349,15227,15121,15059,14990,14951,14937,14930,14938,14976,14990,15005,15052,15085,15121,15195,15201,15213,15225,15222,15259,15273,15276,15258,15211,15161,15086,15008,14925,14832,14701,14560,14389,14187,13989,13753,13527,13269,12985,12714,12420,12118,11830,11547,11266,11031,10795,10555,10289,9995,9661,9362,9050,8823,8604,8427,8293,8153,8077,7985,7909,7854,7791,7721,7571,7380,7223,7103,6989,6891,6807,6745,6688,6660,6636,6635,6617,6611,6621,6630,6469,6169,5738,5119,22.4,22.4,23.1,1568946,0.2,12.9,12.0,5.0,453,-1.00,-1.00,58.5970,-19.304009,0.000630,,,,,214 +SATSLF0720,2024246,21.511410,3.87,0.0543,0.1053,0.0195,0.00,16079,661,1,705,716,709,703,713,712,714,729,740,741,757,745,775,878,1177,1861,3003,4363,5612,6556,7199,7688,8113,8563,9080,9717,10451,11323,12311,13427,14592,15751,16849,17797,18519,18960,19093,18921,18552,17993,17424,16860,16394,16043,15806,15743,15814,16071,16480,17056,17786,18695,19751,20975,22284,23713,25190,26669,28091,29336,30337,31085,31492,31489,31156,30514,29603,28538,27323,26146,25008,23914,22935,22084,21348,20749,20273,19894,19606,19455,19357,19376,19469,19664,19943,20274,20711,21230,21793,22401,23083,23717,24343,24909,25402,25760,26021,26078,25946,25674,25188,24572,23832,23042,22170,21301,20471,19700,18997,18345,17792,17320,16913,16587,16337,16178,16073,16029,16049,16141,16284,16520,16811,17191,17621,18089,18654,19273,19921,20592,21326,22068,22793,23511,24217,24867,25451,26021,26437,26774,27002,27111,27137,27025,26810,26497,26105,25617,25045,24458,23818,23169,22516,21843,21218,20619,20025,19463,18972,18507,18112,17736,17403,17119,16850,16615,16417,16201,16010,15836,15641,15489,15336,15228,15133,15036,14966,14925,14915,14914,14925,14938,14970,15008,15043,15083,15141,15182,15187,15207,15204,15208,15242,15270,15264,15264,15207,15146,15085,15003,14931,14829,14680,14547,14370,14175,13981,13749,13519,13241,12983,12706,12408,12125,11819,11541,11272,11041,10781,10563,10277,9977,9651,9335,9063,8813,8598,8433,8294,8145,8058,7982,7909,7862,7786,7705,7565,7374,7233,7102,6988,6887,6815,6757,6711,6654,6637,6617,6601,6589,6619,6610,6457,6145,5744,5122,22.4,22.4,23.1,1568947,0.1,12.9,12.0,5.0,448,-1.00,-1.00,59.5631,-19.675026,0.000620,,,,,201 +SATSLF0720,2024246,21.511664,4.02,0.0563,0.1048,0.0194,0.00,16093,661,1,713,710,720,716,721,711,719,718,727,729,743,750,781,888,1191,1889,3023,4372,5622,6551,7217,7729,8134,8595,9121,9727,10483,11328,12343,13429,14602,15780,16882,17829,18544,18970,19101,18929,18548,18012,17438,16890,16421,16060,15837,15755,15843,16077,16482,17077,17818,18706,19793,21002,22312,23765,25248,26700,28113,29360,30350,31104,31496,31508,31184,30520,29637,28585,27367,26189,25032,23946,22967,22112,21372,20763,20293,19905,19621,19468,19377,19399,19489,19692,19949,20300,20736,21245,21815,22424,23101,23746,24352,24939,25417,25768,26040,26088,25971,25700,25216,24577,23857,23061,22197,21320,20471,19713,19009,18360,17799,17329,16920,16600,16341,16179,16069,16039,16053,16141,16315,16544,16838,17207,17613,18114,18681,19292,19921,20613,21347,22080,22812,23528,24220,24891,25476,26033,26462,26769,27022,27117,27149,27042,26835,26509,26107,25627,25061,24473,23838,23204,22533,21882,21248,20628,20034,19474,18999,18509,18107,17746,17406,17132,16859,16626,16425,16225,16032,15838,15670,15500,15346,15237,15129,15066,14985,14955,14920,14944,14933,14955,14980,15026,15061,15089,15134,15188,15208,15217,15218,15237,15262,15269,15261,15280,15217,15150,15088,15027,14934,14833,14696,14546,14378,14193,13979,13760,13529,13258,13006,12721,12413,12136,11829,11536,11263,11014,10792,10546,10293,9981,9661,9340,9063,8823,8609,8434,8279,8155,8061,7984,7917,7866,7813,7720,7574,7400,7237,7106,6992,6899,6809,6743,6694,6654,6640,6621,6611,6618,6630,6614,6480,6165,5725,5111,22.4,22.4,23.2,1568948,0.1,12.9,11.9,5.0,448,-1.00,-1.00,59.0456,-19.479978,0.000553,,,,,180 +SATSLF0720,2024246,21.511917,4.10,0.0575,0.1044,0.0194,0.00,16101,661,1,717,717,721,725,727,739,748,740,749,749,738,751,777,887,1191,1897,3031,4392,5641,6589,7241,7719,8149,8596,9117,9737,10484,11354,12352,13442,14619,15776,16887,17833,18562,18981,19127,18933,18577,18031,17445,16901,16443,16074,15849,15779,15838,16110,16501,17087,17826,18740,19803,21021,22329,23764,25226,26726,28115,29383,30378,31109,31523,31526,31197,30562,29626,28587,27362,26184,25053,23957,22970,22109,21374,20794,20290,19930,19641,19486,19397,19403,19517,19708,19953,20310,20741,21253,21803,22427,23097,23750,24361,24952,25414,25799,26046,26100,25977,25699,25217,24578,23870,23077,22196,21331,20484,19725,19025,18378,17812,17338,16924,16614,16356,16178,16099,16049,16060,16165,16311,16535,16841,17202,17639,18129,18690,19305,19941,20624,21328,22062,22818,23533,24226,24880,25476,26038,26459,26791,27035,27139,27153,27048,26833,26508,26129,25612,25070,24477,23841,23193,22533,21862,21234,20632,20043,19493,19002,18537,18113,17752,17426,17145,16872,16640,16433,16231,16037,15841,15657,15505,15357,15239,15146,15079,14995,14955,14931,14928,14937,14956,14982,15026,15058,15098,15148,15190,15216,15225,15232,15240,15262,15279,15277,15268,15209,15153,15091,15035,14949,14855,14701,14567,14381,14181,13989,13768,13528,13281,12994,12727,12432,12139,11833,11554,11288,11040,10795,10569,10286,9994,9677,9363,9081,8830,8621,8449,8290,8164,8065,7985,7918,7867,7799,7709,7562,7387,7225,7121,6996,6903,6836,6757,6711,6674,6638,6630,6619,6603,6621,6624,6477,6173,5736,5123,22.4,22.5,23.2,1568949,0.0,13.0,11.9,5.0,446,-1.00,-1.00,58.3710,-19.205222,0.000542,,,,,51 +SATSLF0720,2024246,21.512174,4.12,0.0577,0.1052,0.0195,0.00,16083,661,1,720,718,717,729,729,729,733,731,739,752,745,759,777,893,1191,1885,3027,4370,5631,6565,7234,7710,8136,8590,9105,9715,10478,11338,12331,13438,14605,15765,16870,17805,18517,18954,19076,18918,18542,18017,17417,16875,16417,16052,15821,15752,15833,16075,16486,17054,17801,18709,19773,20989,22294,23735,25213,26690,28101,29341,30352,31076,31482,31472,31157,30521,29597,28550,27328,26152,24990,23928,22955,22093,21381,20753,20279,19888,19619,19461,19360,19397,19485,19662,19931,20273,20714,21234,21780,22409,23089,23733,24346,24928,25397,25753,26020,26069,25966,25674,25201,24546,23819,23029,22167,21297,20466,19690,18994,18340,17787,17320,16911,16598,16345,16187,16076,16029,16042,16149,16297,16519,16822,17184,17619,18090,18652,19261,19890,20588,21301,22048,22792,23515,24226,24870,25454,26023,26448,26766,26989,27110,27124,27026,26807,26501,26096,25608,25037,24446,23808,23165,22509,21849,21236,20614,20025,19472,18978,18506,18097,17741,17417,17118,16858,16602,16410,16211,16010,15832,15644,15466,15328,15223,15112,15047,14980,14933,14923,14910,14931,14941,14974,15021,15036,15077,15125,15176,15204,15196,15210,15214,15233,15255,15260,15264,15207,15146,15087,15009,14918,14827,14681,14530,14365,14176,13966,13753,13523,13264,13003,12708,12410,12129,11819,11545,11270,11017,10792,10562,10280,9993,9656,9349,9073,8832,8620,8456,8281,8149,8063,7973,7910,7866,7801,7718,7586,7398,7229,7113,6990,6907,6809,6753,6699,6667,6634,6618,6604,6587,6619,6617,6459,6155,5726,5123,22.4,22.4,23.2,1568950,0.3,12.9,11.9,5.0,441,-1.00,-1.00,58.5377,-19.252127,0.000561,,,,,122 +SATSLF0720,2024246,21.512431,3.98,0.0558,0.1052,0.0198,0.00,16076,661,1,715,713,727,729,724,721,726,713,725,722,727,748,774,875,1191,1886,3029,4372,5623,6587,7236,7713,8148,8586,9090,9719,10466,11332,12313,13434,14601,15760,16875,17815,18533,18961,19089,18919,18549,18021,17421,16870,16404,16053,15819,15751,15825,16085,16473,17062,17792,18702,19756,20973,22281,23739,25201,26690,28093,29345,30327,31073,31475,31466,31149,30508,29605,28544,27328,26149,24997,23941,22938,22075,21355,20754,20256,19888,19610,19454,19361,19369,19481,19657,19931,20286,20709,21218,21784,22403,23072,23725,24337,24900,25381,25751,26013,26069,25938,25671,25185,24551,23835,23041,22176,21309,20461,19698,18987,18339,17768,17306,16890,16576,16316,16152,16042,16011,16037,16126,16289,16505,16801,17174,17602,18077,18658,19276,19897,20578,21301,22037,22778,23477,24187,24848,25450,25986,26427,26749,26978,27095,27115,26996,26800,26472,26090,25585,25029,24438,23809,23148,22509,21832,21207,20599,20013,19470,18981,18507,18101,17739,17405,17111,16851,16605,16398,16205,15997,15813,15643,15486,15330,15226,15117,15045,14973,14918,14898,14902,14909,14937,14965,15009,15048,15070,15109,15168,15181,15201,15192,15209,15226,15250,15261,15253,15214,15141,15075,15005,14926,14817,14676,14535,14362,14189,13989,13750,13515,13235,12967,12709,12409,12115,11821,11534,11265,11013,10781,10547,10278,9982,9646,9344,9047,8810,8597,8424,8274,8151,8049,7962,7893,7847,7796,7701,7549,7383,7206,7092,6983,6877,6811,6752,6681,6656,6637,6636,6617,6614,6626,6613,6461,6156,5725,5107,22.4,22.5,23.2,1568951,0.1,12.9,11.9,5.0,451,-1.00,-1.00,58.9471,-19.418496,0.000560,,,,,39 +SATSLF0720,2024246,21.512683,4.13,0.0578,0.1057,0.0202,0.00,16065,661,1,716,707,721,706,711,718,725,732,725,729,735,742,780,882,1178,1882,3018,4378,5623,6570,7225,7703,8128,8584,9107,9721,10459,11325,12325,13414,14577,15756,16850,17815,18521,18955,19068,18903,18518,17984,17389,16842,16376,16013,15816,15738,15831,16068,16474,17060,17782,18696,19762,20970,22265,23712,25181,26653,28075,29321,30308,31046,31449,31463,31121,30465,29568,28530,27303,26133,24986,23915,22912,22061,21339,20737,20250,19865,19584,19425,19338,19350,19448,19648,19889,20250,20688,21194,21767,22389,23050,23700,24311,24896,25354,25716,25979,26029,25926,25657,25172,24529,23822,23035,22157,21291,20437,19670,18964,18329,17766,17303,16890,16582,16331,16154,16053,16007,16016,16107,16289,16501,16811,17182,17601,18066,18643,19253,19894,20565,21277,22029,22760,23475,24183,24837,25413,25992,26409,26737,26989,27093,27113,27013,26787,26462,26057,25570,25021,24414,23787,23144,22502,21837,21195,20603,20003,19447,18969,18482,18076,17723,17395,17106,16843,16592,16379,16176,15986,15811,15616,15459,15317,15205,15099,15037,14971,14925,14902,14897,14901,14941,14970,14986,15045,15066,15116,15189,15197,15197,15197,15203,15228,15240,15233,15227,15181,15110,15063,14972,14903,14814,14679,14534,14360,14170,13948,13739,13513,13245,12983,12690,12415,12106,11799,11522,11238,11016,10774,10537,10275,9970,9649,9342,9067,8828,8606,8433,8257,8127,8041,7961,7898,7844,7787,7698,7563,7381,7217,7096,6980,6878,6800,6734,6678,6645,6631,6620,6613,6587,6615,6613,6459,6150,5720,5106,22.4,22.5,23.2,1568952,0.1,12.9,11.9,5.0,447,-1.00,-1.00,58.6114,-19.265124,0.000568,,,,,89 +SATSLF0720,2024246,21.512939,4.00,0.0561,0.1064,0.0206,0.00,16047,661,1,714,718,717,721,711,711,727,711,731,731,738,755,789,886,1197,1891,3019,4370,5607,6537,7191,7680,8112,8561,9070,9692,10438,11301,12287,13401,14549,15718,16815,17762,18468,18915,19053,18861,18489,17970,17370,16829,16361,16011,15783,15713,15815,16037,16443,17010,17755,18654,19705,20931,22226,23670,25148,26626,28033,29272,30261,31010,31397,31400,31078,30447,29548,28496,27259,26084,24952,23873,22884,22043,21310,20721,20235,19845,19566,19411,19312,19330,19422,19625,19885,20222,20665,21184,21754,22370,23022,23666,24273,24850,25331,25702,25952,26005,25889,25616,25149,24516,23795,22999,22149,21274,20421,19645,18942,18302,17753,17274,16868,16557,16306,16149,16038,15983,16009,16107,16262,16487,16791,17157,17565,18052,18614,19225,19867,20548,21274,22005,22739,23459,24156,24808,25399,25956,26386,26722,26949,27055,27069,26968,26756,26436,26053,25549,24999,24400,23770,23114,22472,21813,21184,20569,19981,19425,18940,18481,18066,17698,17373,17088,16837,16592,16389,16181,15984,15803,15613,15434,15307,15200,15091,15028,14953,14912,14894,14902,14894,14918,14933,14979,15013,15050,15095,15159,15159,15159,15181,15190,15223,15233,15237,15241,15181,15110,15050,14971,14883,14795,14664,14509,14338,14137,13945,13741,13505,13240,12973,12689,12389,12109,11809,11528,11262,10997,10768,10525,10256,9964,9638,9335,9045,8813,8594,8425,8283,8136,8043,7959,7895,7843,7784,7686,7551,7372,7226,7081,6977,6878,6810,6739,6690,6653,6629,6610,6599,6602,6621,6596,6451,6152,5721,5099,22.4,22.6,23.3,1568952,0.1,12.9,11.9,5.0,449,-1.00,-1.00,59.1618,-19.466874,0.000574,,,,,38 +SATSLF0720,2024246,21.513193,4.17,0.0585,0.1061,0.0200,0.00,16056,661,1,718,724,722,723,723,731,731,726,725,731,737,755,781,883,1194,1877,3011,4362,5610,6550,7205,7691,8123,8569,9094,9719,10455,11312,12305,13389,14563,15713,16821,17773,18473,18927,19057,18880,18497,17974,17381,16827,16374,16020,15789,15722,15813,16064,16469,17048,17777,18680,19736,20946,22258,23697,25155,26624,28034,29285,30273,31019,31430,31421,31110,30457,29541,28514,27278,26099,24964,23877,22893,22044,21322,20727,20237,19863,19578,19421,19321,19339,19436,19629,19877,20232,20670,21182,21747,22362,23046,23676,24291,24878,25350,25717,25984,26026,25906,25624,25156,24509,23796,23001,22141,21281,20433,19689,18977,18321,17754,17286,16880,16563,16313,16145,16056,16005,16033,16124,16288,16496,16797,17157,17565,18064,18624,19240,19860,20560,21274,22034,22758,23469,24162,24827,25428,25969,26386,26726,26958,27068,27070,26989,26778,26449,26071,25569,25013,24416,23778,23143,22481,21821,21181,20592,19993,19448,18945,18477,18059,17687,17387,17092,16826,16593,16390,16186,16000,15806,15619,15474,15324,15201,15097,15021,14949,14903,14891,14885,14905,14912,14946,14987,15026,15053,15100,15157,15174,15174,15195,15195,15223,15248,15243,15256,15193,15137,15070,14994,14902,14798,14658,14520,14346,14153,13954,13724,13507,13249,12981,12690,12396,12094,11810,11523,11255,11006,10766,10547,10281,9987,9657,9348,9064,8810,8607,8438,8290,8145,8049,7972,7898,7852,7773,7700,7549,7384,7234,7098,6988,6885,6801,6739,6665,6648,6610,6611,6604,6598,6619,6597,6473,6157,5733,5119,22.4,22.6,23.3,1568953,0.1,12.9,11.9,5.0,449,-1.00,-1.00,58.4343,-19.175157,0.000509,,,,,239 +SATSLF0720,2024246,21.513444,4.10,0.0574,0.1059,0.0202,0.00,16055,661,1,709,714,725,741,729,739,744,743,737,749,744,757,784,886,1198,1883,3019,4385,5626,6557,7219,7698,8125,8585,9093,9712,10466,11318,12309,13409,14563,15729,16830,17773,18487,18922,19057,18891,18517,17962,17387,16837,16361,16006,15797,15722,15799,16038,16443,17032,17763,18681,19728,20944,22271,23684,25165,26641,28042,29269,30279,31009,31405,31416,31108,30449,29527,28477,27269,26082,24949,23870,22881,22042,21305,20712,20231,19863,19582,19437,19330,19345,19450,19629,19889,20231,20665,21178,21752,22362,23031,23669,24295,24861,25340,25705,25961,26009,25899,25626,25141,24512,23814,23005,22135,21261,20425,19649,18965,18316,17755,17277,16870,16556,16309,16153,16049,15997,16027,16116,16282,16497,16802,17170,17593,18073,18641,19236,19858,20535,21264,22007,22744,23451,24155,24801,25401,25961,26376,26709,26953,27057,27073,26989,26784,26445,26059,25553,24990,24407,23768,23127,22482,21809,21171,20578,19974,19433,18930,18475,18073,17705,17387,17104,16836,16598,16394,16189,15990,15806,15613,15456,15310,15193,15116,15026,14948,14911,14880,14897,14903,14929,14956,14981,15021,15044,15099,15163,15159,15183,15216,15197,15225,15253,15241,15235,15181,15116,15063,14989,14907,14806,14674,14512,14337,14160,13949,13745,13506,13250,12974,12696,12416,12117,11814,11515,11259,11008,10767,10533,10269,9976,9652,9336,9063,8829,8608,8437,8291,8161,8061,7981,7912,7860,7789,7700,7557,7389,7219,7098,7001,6897,6823,6757,6690,6653,6639,6629,6610,6597,6597,6611,6455,6145,5727,5119,22.4,22.6,23.3,1568954,0.0,13.0,11.9,5.0,449,-1.00,-1.00,58.5886,-19.232632,0.000635,,,,,228 +SATSLF0720,2024246,21.513700,4.19,0.0587,0.1068,0.0204,0.00,16036,661,1,725,725,741,727,720,719,718,723,718,739,742,763,794,897,1201,1883,3023,4372,5617,6545,7203,7677,8105,8540,9079,9684,10427,11307,12285,13399,14549,15693,16816,17764,18464,18910,19028,18845,18484,17954,17358,16819,16365,15997,15769,15705,15788,16032,16429,17015,17749,18651,19706,20923,22228,23664,25120,26585,27987,29252,30226,30972,31371,31384,31060,30409,29488,28439,27221,26039,24904,23849,22865,22013,21285,20688,20206,19812,19536,19390,19294,19308,19401,19591,19844,20209,20650,21157,21713,22332,22996,23650,24261,24841,25312,25688,25943,25997,25879,25594,25126,24491,23785,22992,22110,21252,20404,19632,18934,18292,17733,17279,16866,16552,16304,16130,16023,15972,15989,16081,16254,16482,16769,17138,17566,18049,18601,19207,19843,20530,21248,21989,22717,23429,24129,24782,25382,25937,26373,26693,26906,27024,27027,26950,26724,26417,26021,25526,24969,24389,23737,23096,22466,21785,21160,20545,19969,19401,18912,18435,18037,17683,17351,17070,16813,16568,16358,16160,15977,15789,15602,15441,15294,15185,15090,15017,14933,14890,14875,14890,14886,14918,14933,14967,15023,15045,15093,15159,15158,15176,15186,15184,15197,15224,15218,15214,15177,15114,15057,14981,14903,14800,14679,14517,14340,14158,13942,13729,13489,13244,12972,12675,12388,12097,11810,11510,11247,10997,10769,10532,10249,9956,9637,9336,9058,8809,8597,8438,8262,8139,8035,7952,7890,7841,7770,7691,7547,7369,7225,7089,6986,6894,6818,6740,6692,6646,6624,6615,6597,6584,6600,6595,6445,6138,5728,5111,22.4,22.6,23.3,1568955,0.1,12.9,11.9,5.0,447,-1.00,-1.00,58.1557,-19.026253,0.000581,,,,,172 +SATSLF0720,2024246,21.513954,4.09,0.0573,0.1070,0.0212,0.00,16024,661,1,724,722,717,713,734,729,740,739,724,737,738,746,777,882,1181,1881,3021,4356,5624,6532,7205,7688,8114,8559,9083,9692,10435,11302,12286,13381,14547,15712,16808,17762,18466,18899,19020,18854,18469,17932,17363,16824,16345,16006,15778,15701,15769,16026,16411,17010,17745,18644,19699,20896,22219,23648,25105,26577,27993,29217,30213,30953,31339,31348,31031,30402,29481,28437,27227,26058,24917,23822,22837,21994,21262,20674,20186,19815,19525,19383,19283,19298,19409,19595,19854,20217,20632,21157,21718,22332,22993,23634,24253,24816,25288,25657,25917,25972,25858,25585,25118,24491,23769,22973,22090,21231,20384,19622,18933,18269,17719,17262,16857,16531,16283,16105,16016,15966,15986,16085,16241,16467,16760,17137,17562,18035,18578,19203,19837,20508,21234,21960,22711,23421,24113,24773,25368,25910,26342,26656,26897,27006,27018,26922,26712,26391,25992,25508,24938,24355,23723,23083,22427,21768,21149,20545,19944,19407,18917,18434,18040,17667,17354,17068,16788,16560,16345,16151,15957,15776,15580,15414,15275,15175,15073,14997,14917,14881,14862,14852,14858,14894,14909,14956,15001,15016,15079,15126,15150,15157,15169,15173,15191,15201,15185,15191,15139,15088,15030,14954,14867,14773,14654,14494,14322,14128,13921,13698,13469,13213,12954,12672,12384,12097,11804,11509,11245,10998,10743,10503,10237,9949,9627,9320,9037,8796,8580,8411,8266,8118,8025,7971,7893,7846,7778,7689,7540,7376,7223,7088,6975,6875,6791,6727,6663,6631,6610,6602,6570,6579,6597,6590,6450,6148,5714,5103,22.5,22.6,23.4,1568956,0.2,12.9,11.9,5.0,447,-1.00,-1.00,58.5378,-19.178441,0.000500,,,,,232 +SATSLF0720,2024246,21.514205,4.09,0.0573,0.1073,0.0216,0.00,16009,661,1,709,712,725,714,731,728,739,734,744,735,740,748,769,889,1186,1877,3015,4355,5605,6530,7182,7666,8092,8546,9055,9680,10421,11273,12256,13341,14519,15665,16770,17700,18424,18858,18997,18821,18446,17914,17315,16782,16325,15963,15750,15675,15754,15995,16396,16977,17722,18634,19666,20882,22197,23610,25080,26554,27940,29181,30174,30917,31304,31313,30997,30361,29458,28425,27207,26029,24861,23802,22829,21973,21245,20641,20166,19780,19505,19337,19271,19274,19376,19563,19832,20185,20624,21121,21677,22306,22955,23606,24220,24789,25275,25642,25898,25953,25825,25541,25077,24444,23725,22939,22082,21216,20385,19605,18896,18253,17703,17232,16823,16507,16262,16102,16001,15954,15985,16080,16241,16457,16742,17120,17549,18029,18586,19193,19820,20490,21219,21953,22686,23397,24102,24752,25337,25899,26333,26644,26881,26992,27005,26902,26673,26361,25968,25469,24920,24344,23712,23066,22409,21760,21133,20525,19927,19379,18888,18432,18018,17652,17330,17043,16790,16550,16337,16140,15959,15765,15574,15408,15270,15159,15061,14998,14909,14880,14861,14857,14861,14904,14920,14952,14992,15021,15069,15117,15137,15153,15147,15165,15195,15209,15205,15191,15143,15069,15016,14955,14849,14779,14638,14493,14326,14141,13916,13707,13465,13176,12934,12648,12378,12082,11795,11508,11229,10994,10749,10510,10239,9941,9619,9300,9026,8786,8586,8408,8254,8134,8050,7961,7873,7835,7770,7693,7541,7355,7195,7075,6962,6865,6778,6733,6684,6634,6627,6613,6597,6589,6602,6579,6437,6143,5704,5096,22.5,22.6,23.4,1568957,0.1,12.9,11.9,5.0,446,-1.00,-1.00,59.0124,-19.357033,0.000502,,,,,26 +SATSLF0720,2024246,21.514461,3.94,0.0551,0.1074,0.0213,0.00,16013,661,1,710,704,710,694,708,705,718,718,721,725,734,732,776,881,1178,1884,3012,4365,5616,6549,7202,7688,8109,8553,9069,9684,10432,11285,12268,13370,14548,15677,16799,17744,18448,18880,19012,18841,18461,17933,17351,16796,16337,15968,15752,15684,15769,16002,16403,16969,17715,18621,19674,20882,22179,23623,25092,26556,27942,29190,30196,30928,31315,31316,31005,30369,29463,28405,27194,26043,24884,23803,22819,21970,21262,20646,20149,19759,19491,19351,19267,19281,19381,19557,19826,20178,20621,21138,21705,22314,22974,23630,24221,24801,25265,25636,25895,25956,25837,25557,25085,24451,23741,22957,22096,21232,20391,19621,18933,18275,17709,17255,16837,16512,16285,16104,15997,15958,15977,16066,16243,16467,16761,17107,17531,18010,18585,19189,19826,20502,21234,21957,22700,23389,24102,24743,25337,25890,26317,26637,26890,26989,27016,26914,26697,26373,25976,25507,24942,24352,23721,23079,22418,21760,21143,20523,19936,19389,18908,18433,18028,17662,17338,17044,16776,16551,16330,16139,15964,15765,15578,15406,15284,15163,15066,14993,14932,14880,14863,14866,14857,14887,14922,14955,14993,15024,15070,15120,15143,15146,15148,15164,15194,15200,15209,15189,15137,15080,15025,14960,14866,14766,14647,14477,14327,14121,13933,13707,13471,13226,12940,12666,12368,12077,11788,11493,11240,10983,10751,10506,10248,9955,9639,9322,9045,8797,8578,8407,8250,8114,8027,7931,7863,7818,7758,7669,7541,7373,7218,7074,6971,6880,6789,6717,6667,6636,6605,6610,6589,6584,6598,6593,6457,6153,5721,5109,22.5,22.7,23.4,1568958,0.0,12.9,12.0,5.0,442,-1.00,-1.00,59.1780,-19.427012,0.000530,,,,,247 +SATSDF0720,2024246,21.759139,0.00,0.0000,0.0000,0.0000,0.00,662,0,1,652,628,636,651,649,652,640,647,634,629,628,629,622,635,629,630,647,653,652,646,658,658,656,668,667,667,658,659,661,673,664,659,665,665,668,675,674,668,677,660,661,644,659,662,665,669,666,684,665,663,670,670,671,671,674,662,665,657,672,677,664,670,666,676,670,674,663,666,663,657,667,669,674,673,669,658,665,664,671,685,682,669,667,665,669,661,651,653,661,685,669,653,679,666,659,671,666,667,672,658,653,662,665,656,667,669,667,675,668,670,667,662,668,656,659,657,670,663,649,651,653,655,669,678,661,675,657,651,657,653,669,662,667,673,676,661,657,655,657,663,658,665,662,672,683,669,671,673,661,656,664,661,657,655,649,658,669,666,669,673,660,655,651,653,647,657,662,664,667,667,661,657,649,663,653,665,659,656,679,674,676,653,659,666,650,654,662,661,660,667,666,657,663,678,665,663,658,663,657,653,664,662,654,652,666,652,663,661,665,654,646,667,657,667,667,657,652,660,654,657,663,657,664,656,664,668,658,661,664,653,653,649,673,666,677,662,676,674,673,653,653,663,659,660,658,683,662,668,663,661,667,673,653,645,651,478,0.0,0.0,0.0,1568957,0.6,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,75 +SATSLF0720,2024246,21.759693,3.93,0.0550,0.1015,0.0175,0.00,16187,662,1,703,700,709,715,716,727,737,730,729,740,738,748,757,875,1185,1881,3037,4415,5675,6625,7274,7775,8202,8645,9201,9809,10569,11447,12445,13566,14752,15915,17012,17979,18699,19145,19269,19099,18737,18189,17590,17034,16569,16196,15960,15876,15968,16216,16616,17210,17958,18867,19945,21174,22485,23945,25429,26915,28329,29593,30601,31341,31737,31739,31415,30772,29844,28797,27562,26361,25207,24128,23134,22285,21541,20924,20441,20057,19757,19603,19523,19533,19632,19823,20077,20430,20857,21399,21965,22586,23255,23901,24514,25088,25570,25931,26187,26261,26139,25858,25377,24730,24000,23194,22309,21447,20594,19817,19119,18452,17908,17428,17011,16700,16450,16256,16175,16105,16139,16221,16384,16611,16914,17282,17714,18204,18777,19387,20019,20702,21437,22177,22917,23633,24355,25021,25604,26157,26605,26922,27161,27275,27282,27200,26993,26660,26270,25774,25201,24597,23963,23314,22637,21982,21353,20737,20131,19587,19083,18620,18206,17846,17506,17224,16956,16712,16516,16297,16119,15912,15723,15571,15425,15297,15205,15121,15046,15017,14997,15002,14998,15018,15050,15069,15113,15145,15189,15248,15249,15267,15285,15282,15307,15319,15335,15325,15262,15214,15153,15081,14987,14903,14762,14605,14421,14231,14035,13807,13571,13317,13045,12762,12467,12181,11888,11582,11315,11065,10820,10593,10318,10018,9701,9373,9111,8858,8640,8470,8315,8201,8090,8014,7940,7898,7825,7730,7591,7419,7274,7141,7019,6922,6833,6776,6717,6685,6662,6647,6634,6620,6641,6635,6475,6169,5741,5128,22.4,22.4,22.9,1568958,0.3,12.9,11.9,5.0,567,-1.00,-1.00,58.2452,-19.283262,0.000597,,,,,96 +SATSLF0720,2024246,21.759875,3.95,0.0553,0.1037,0.0186,0.00,16125,662,1,713,712,715,713,722,729,725,733,741,755,749,755,785,895,1198,1891,3027,4379,5626,6579,7241,7738,8164,8627,9153,9746,10502,11361,12363,13468,14653,15809,16925,17899,18614,19037,19181,18986,18619,18077,17490,16921,16460,16090,15869,15803,15881,16141,16533,17126,17861,18763,19835,21061,22375,23824,25301,26765,28183,29431,30437,31177,31580,31593,31277,30609,29694,28648,27409,26241,25086,24011,23024,22165,21429,20818,20357,19964,19688,19529,19426,19456,19553,19746,20009,20351,20782,21313,21876,22497,23162,23797,24411,24984,25461,25832,26071,26131,26030,25724,25264,24632,23895,23099,22221,21371,20513,19754,19038,18393,17837,17362,16941,16627,16384,16217,16101,16059,16087,16181,16340,16545,16855,17229,17664,18146,18722,19318,19964,20645,21364,22098,22843,23557,24270,24921,25524,26088,26505,26827,27075,27181,27200,27090,26880,26564,26161,25680,25101,24517,23879,23233,22580,21905,21273,20663,20065,19512,19031,18538,18161,17778,17457,17166,16897,16643,16444,16237,16053,15852,15671,15509,15376,15257,15160,15085,15021,14978,14946,14958,14952,14985,15002,15032,15086,15097,15147,15207,15220,15244,15241,15226,15267,15289,15282,15273,15239,15168,15117,15033,14954,14850,14722,14582,14393,14220,13981,13778,13542,13284,13009,12711,12424,12138,11837,11547,11286,11045,10797,10582,10301,10011,9685,9373,9094,8827,8623,8444,8293,8169,8065,7991,7926,7872,7805,7708,7574,7386,7247,7121,7005,6914,6833,6775,6701,6675,6650,6634,6611,6603,6623,6631,6476,6172,5738,5116,22.4,22.4,23.0,1568959,0.0,12.9,11.9,5.0,470,-1.00,-1.00,58.8199,-19.429059,0.000603,,,,,54 +SATSLF0720,2024246,21.760132,3.97,0.0556,0.1029,0.0183,0.00,16162,662,1,719,720,710,723,723,713,724,731,722,731,737,742,788,882,1193,1902,3044,4432,5672,6605,7264,7763,8190,8629,9163,9783,10551,11430,12424,13538,14706,15882,16970,17941,18660,19101,19233,19054,18669,18135,17540,16989,16524,16145,15934,15872,15945,16189,16603,17184,17926,18839,19897,21101,22439,23884,25362,26848,28266,29525,30529,31282,31674,31684,31361,30714,29792,28738,27514,26341,25169,24081,23082,22222,21499,20886,20401,20017,19720,19573,19463,19495,19591,19792,20056,20397,20826,21356,21921,22549,23209,23852,24477,25051,25520,25886,26152,26212,26082,25828,25325,24677,23957,23158,22279,21422,20569,19798,19089,18416,17861,17384,16994,16673,16410,16251,16153,16106,16114,16221,16378,16601,16893,17262,17683,18171,18745,19355,19982,20679,21415,22156,22898,23602,24322,24973,25562,26126,26541,26875,27118,27213,27223,27149,26930,26602,26213,25709,25149,24569,23931,23290,22625,21956,21314,20691,20096,19554,19061,18589,18184,17813,17480,17182,16913,16699,16474,16274,16091,15896,15713,15533,15394,15282,15185,15121,15041,14990,14981,14981,14978,15025,15018,15051,15105,15126,15175,15233,15239,15255,15265,15270,15297,15329,15317,15313,15253,15202,15126,15067,14973,14884,14749,14589,14420,14235,14013,13802,13549,13292,13033,12749,12454,12153,11867,11575,11309,11058,10817,10574,10311,10010,9694,9395,9093,8842,8643,8456,8311,8177,8087,7994,7934,7881,7813,7731,7570,7419,7255,7127,7020,6917,6829,6760,6711,6677,6659,6647,6639,6621,6643,6637,6489,6157,5747,5125,22.4,22.4,23.0,1568960,0.2,12.9,12.0,5.0,455,-1.00,-1.00,58.4518,-19.334663,0.000454,,,,,62 +SATSLF0720,2024246,21.760385,3.91,0.0548,0.1027,0.0178,0.00,16167,662,1,701,712,714,727,720,735,730,738,744,740,739,747,774,877,1195,1898,3040,4407,5663,6613,7264,7743,8188,8650,9164,9790,10539,11409,12398,13526,14693,15866,16967,17931,18658,19085,19229,19059,18663,18139,17552,16981,16528,16154,15918,15867,15924,16183,16581,17158,17918,18819,19898,21120,22461,23902,25384,26851,28282,29525,30539,31285,31685,31674,31368,30722,29797,28759,27514,26336,25182,24093,23093,22249,21505,20888,20409,20006,19726,19565,19469,19479,19592,19781,20048,20410,20832,21365,21926,22555,23223,23874,24482,25065,25540,25899,26168,26210,26093,25817,25334,24690,23977,23174,22304,21414,20569,19798,19099,18425,17869,17393,16981,16666,16419,16256,16160,16114,16121,16219,16380,16602,16900,17276,17690,18181,18773,19370,19997,20684,21402,22155,22913,23621,24322,24972,25578,26145,26570,26886,27137,27257,27269,27162,26954,26624,26229,25729,25145,24584,23933,23269,22615,21955,21313,20698,20117,19554,19058,18577,18180,17824,17490,17204,16938,16709,16490,16291,16095,15902,15714,15541,15397,15301,15194,15125,15037,14998,14984,14974,14995,15002,15041,15068,15101,15142,15185,15252,15258,15271,15287,15302,15309,15325,15317,15319,15248,15207,15145,15083,14990,14881,14753,14605,14411,14235,14012,13819,13557,13306,13037,12759,12459,12177,11877,11570,11321,11057,10823,10583,10312,10026,9709,9388,9107,8856,8641,8473,8328,8198,8096,8021,7955,7898,7822,7737,7588,7417,7261,7128,7008,6915,6841,6769,6715,6681,6650,6633,6624,6611,6637,6637,6486,6177,5748,5147,22.4,22.4,23.1,1568961,0.2,12.9,12.0,5.0,453,-1.00,-1.00,58.9220,-19.534151,0.000582,,,,,190 +SATSLF0720,2024246,21.760636,3.94,0.0551,0.1034,0.0187,0.00,16136,662,1,709,717,717,703,727,726,714,733,728,731,737,738,773,893,1184,1889,3032,4397,5641,6595,7245,7741,8170,8635,9153,9770,10525,11383,12381,13483,14645,15808,16928,17885,18602,19045,19193,19008,18625,18094,17516,16936,16488,16125,15877,15813,15904,16138,16542,17141,17892,18773,19851,21065,22389,23840,25320,26807,28226,29478,30454,31198,31611,31605,31293,30642,29730,28684,27445,26269,25108,24032,23011,22183,21453,20831,20368,19960,19699,19545,19441,19457,19554,19753,20013,20365,20792,21322,21874,22499,23162,23805,24420,24993,25485,25826,26102,26146,26018,25758,25278,24642,23925,23143,22261,21395,20539,19761,19051,18397,17832,17370,16949,16633,16385,16222,16112,16071,16087,16192,16345,16592,16869,17235,17674,18149,18730,19330,19975,20645,21390,22144,22874,23593,24309,24949,25540,26117,26546,26841,27099,27197,27213,27125,26893,26566,26167,25681,25131,24534,23909,23249,22594,21933,21290,20680,20083,19525,19045,18568,18162,17808,17469,17169,16897,16658,16450,16261,16057,15868,15689,15528,15379,15269,15170,15098,15021,14976,14964,14942,14951,14979,15004,15028,15070,15115,15165,15234,15237,15252,15265,15270,15298,15321,15316,15297,15245,15173,15112,15035,14961,14869,14737,14573,14390,14207,14004,13786,13545,13285,13021,12738,12424,12151,11850,11562,11297,11047,10807,10577,10299,9991,9677,9374,9086,8839,8645,8461,8320,8170,8075,7997,7923,7880,7808,7729,7575,7392,7239,7096,6995,6900,6822,6757,6702,6679,6646,6641,6628,6611,6641,6625,6473,6168,5745,5121,22.4,22.4,23.1,1568962,0.0,13.0,12.0,5.0,455,-1.00,-1.00,58.8589,-19.463382,0.000588,,,,,255 +SATSLF0720,2024246,21.760892,4.00,0.0560,0.1032,0.0191,0.00,16132,662,1,701,707,714,709,705,711,721,727,733,732,727,747,758,874,1188,1884,3017,4393,5645,6597,7253,7738,8178,8610,9137,9782,10518,11381,12379,13485,14664,15841,16941,17894,18635,19067,19185,19001,18613,18100,17497,16930,16480,16104,15890,15817,15897,16155,16567,17149,17892,18789,19863,21074,22377,23835,25304,26788,28205,29454,30458,31227,31618,31635,31301,30666,29730,28671,27451,26249,25083,24025,23017,22164,21433,20827,20367,19967,19705,19528,19448,19447,19554,19749,19997,20344,20797,21306,21876,22484,23151,23808,24414,24998,25472,25838,26117,26162,26025,25778,25281,24656,23934,23132,22257,21383,20539,19765,19039,18397,17825,17367,16946,16640,16384,16219,16102,16075,16094,16185,16347,16567,16871,17241,17665,18149,18717,19325,19974,20645,21360,22100,22844,23557,24277,24937,25525,26109,26519,26835,27092,27193,27211,27111,26884,26560,26166,25668,25104,24526,23895,23251,22597,21929,21296,20677,20080,19517,19026,18538,18143,17784,17456,17174,16910,16660,16464,16245,16057,15863,15683,15517,15356,15240,15152,15089,15008,14982,14961,14965,14967,15003,15013,15043,15080,15094,15153,15208,15221,15229,15243,15254,15271,15297,15277,15279,15244,15168,15101,15047,14947,14847,14715,14581,14401,14209,14005,13778,13538,13283,13003,12732,12432,12155,11849,11571,11296,11041,10806,10567,10285,9989,9678,9368,9088,8854,8630,8455,8292,8157,8066,7987,7918,7858,7797,7702,7575,7409,7245,7123,7012,6901,6824,6768,6705,6671,6647,6645,6612,6620,6628,6616,6465,6165,5737,5121,22.4,22.4,23.1,1568963,0.1,12.9,12.0,5.0,450,-1.00,-1.00,58.6599,-19.381415,0.000578,,,,,12 +SATSLF0720,2024246,21.761144,4.03,0.0564,0.1043,0.0196,0.00,16104,662,1,722,725,729,714,718,714,723,718,719,727,734,745,769,874,1179,1882,3025,4389,5641,6592,7249,7728,8168,8621,9129,9763,10493,11360,12352,13458,14632,15788,16890,17857,18569,18993,19131,18957,18580,18055,17461,16914,16448,16087,15849,15781,15845,16099,16514,17094,17833,18754,19813,21026,22343,23778,25256,26732,28155,29393,30397,31142,31540,31536,31218,30554,29657,28612,27381,26205,25058,23973,22982,22134,21392,20795,20320,19917,19644,19493,19400,19412,19515,19696,19960,20313,20746,21273,21829,22453,23113,23757,24376,24953,25437,25802,26050,26104,25993,25723,25242,24612,23890,23093,22226,21344,20493,19710,19006,18357,17801,17339,16929,16617,16370,16203,16102,16041,16059,16151,16315,16542,16837,17185,17617,18120,18677,19288,19925,20611,21351,22081,22832,23538,24240,24886,25475,26050,26469,26786,27035,27137,27161,27072,26848,26521,26128,25613,25062,24465,23845,23190,22551,21882,21259,20637,20064,19493,19004,18522,18115,17762,17413,17133,16870,16640,16437,16235,16061,15856,15675,15512,15356,15242,15143,15065,14985,14961,14922,14919,14935,14976,14977,15028,15051,15083,15128,15190,15188,15208,15213,15221,15255,15273,15282,15266,15218,15159,15085,15027,14954,14850,14708,14557,14385,14189,13973,13762,13527,13264,12997,12732,12432,12151,11848,11557,11282,11019,10775,10558,10281,9980,9672,9357,9066,8830,8613,8452,8295,8157,8065,7981,7904,7863,7791,7694,7573,7401,7239,7111,6998,6885,6819,6741,6695,6664,6649,6638,6621,6611,6621,6615,6465,6149,5728,5109,22.4,22.4,23.1,1568964,0.2,12.9,11.9,5.0,450,-1.00,-1.00,58.6830,-19.346261,0.000572,,,,,94 +SATSLF0720,2024246,21.761401,3.98,0.0558,0.1038,0.0188,0.00,16128,662,1,705,718,711,709,707,727,724,723,732,741,733,754,793,910,1208,1904,3045,4409,5657,6593,7255,7734,8179,8614,9141,9760,10505,11374,12370,13485,14650,15835,16941,17891,18607,19037,19171,18999,18616,18077,17501,16946,16488,16105,15879,15813,15877,16127,16539,17124,17878,18770,19836,21065,22369,23809,25296,26776,28189,29431,30440,31197,31595,31594,31268,30615,29690,28651,27413,26237,25092,24017,23017,22177,21433,20829,20349,19953,19673,19525,19425,19430,19531,19736,19995,20336,20771,21290,21853,22487,23141,23803,24407,24977,25462,25812,26071,26131,26035,25741,25265,24621,23915,23109,22246,21373,20526,19739,19041,18383,17824,17357,16968,16656,16407,16220,16123,16065,16089,16181,16337,16567,16834,17221,17653,18131,18715,19322,19963,20645,21378,22108,22858,23565,24274,24932,25515,26085,26513,26817,27080,27179,27197,27098,26907,26572,26169,25688,25116,24505,23895,23236,22577,21909,21288,20653,20054,19501,19019,18542,18149,17785,17449,17171,16901,16656,16452,16253,16057,15860,15683,15509,15368,15262,15161,15090,15020,14971,14963,14950,14941,14978,14993,15033,15077,15101,15161,15214,15235,15249,15257,15258,15279,15306,15297,15278,15236,15172,15111,15034,14947,14871,14723,14578,14402,14219,13997,13773,13536,13273,13005,12746,12439,12158,11865,11569,11293,11039,10811,10550,10286,9989,9672,9348,9085,8840,8634,8467,8308,8173,8076,7989,7915,7877,7797,7724,7577,7397,7265,7125,7008,6923,6849,6773,6719,6672,6644,6644,6629,6610,6639,6625,6473,6167,5750,5121,22.4,22.4,23.2,1568965,0.1,12.9,11.9,5.0,449,-1.00,-1.00,58.5132,-19.302351,0.000582,,,,,1 +SATSLF0720,2024246,21.761656,4.15,0.0582,0.1048,0.0191,0.00,16095,662,1,709,717,735,737,743,717,731,729,733,734,744,746,783,895,1193,1887,3016,4378,5629,6555,7226,7697,8131,8590,9098,9714,10465,11344,12323,13434,14606,15766,16868,17824,18538,18982,19099,18929,18549,18016,17417,16871,16409,16041,15824,15760,15845,16104,16498,17092,17830,18733,19792,21010,22306,23757,25225,26698,28105,29363,30353,31112,31509,31523,31192,30546,29625,28577,27351,26161,25027,23959,22962,22107,21376,20765,20304,19912,19643,19477,19381,19394,19511,19689,19947,20299,20723,21241,21814,22440,23108,23744,24371,24944,25413,25777,26048,26089,25966,25714,25209,24584,23850,23058,22186,21309,20465,19696,18991,18355,17800,17325,16918,16626,16344,16183,16087,16037,16051,16151,16313,16546,16849,17207,17633,18108,18670,19280,19915,20599,21329,22075,22816,23523,24230,24887,25477,26024,26452,26775,27017,27122,27141,27050,26843,26521,26125,25618,25059,24474,23826,23179,22529,21864,21241,20634,20032,19488,19001,18515,18125,17750,17428,17129,16866,16631,16441,16228,16042,15849,15665,15481,15353,15226,15137,15052,14981,14935,14923,14923,14926,14963,14973,15043,15065,15093,15132,15203,15202,15214,15213,15223,15268,15281,15271,15261,15223,15153,15099,15014,14937,14849,14688,14555,14393,14180,13975,13764,13505,13269,13001,12721,12426,12141,11850,11559,11281,11032,10803,10548,10288,9986,9674,9358,9082,8838,8636,8461,8310,8165,8061,7997,7907,7862,7787,7719,7573,7395,7243,7109,6989,6903,6824,6757,6703,6666,6639,6631,6620,6603,6622,6621,6461,6165,5741,5114,22.4,22.5,23.2,1568966,0.0,13.0,11.9,5.0,449,-1.00,-1.00,58.5610,-19.276945,0.000586,,,,,112 +SATSLF0720,2024246,21.761909,4.12,0.0577,0.1051,0.0197,0.00,16087,662,1,712,715,705,727,725,726,741,732,731,745,741,759,784,891,1189,1876,3020,4382,5626,6564,7232,7716,8158,8605,9122,9739,10472,11345,12341,13441,14612,15773,16872,17835,18544,18977,19108,18929,18553,18014,17441,16873,16433,16062,15828,15760,15834,16089,16509,17077,17827,18717,19783,21002,22324,23760,25237,26711,28116,29369,30352,31101,31496,31493,31171,30529,29629,28570,27351,26172,25018,23944,22953,22098,21383,20779,20295,19898,19613,19456,19365,19389,19466,19671,19941,20291,20723,21249,21812,22418,23091,23745,24358,24913,25409,25777,26022,26087,25952,25687,25194,24583,23854,23050,22187,21317,20463,19699,19002,18348,17785,17319,16911,16604,16354,16173,16079,16041,16045,16139,16297,16509,16815,17165,17598,18099,18665,19277,19901,20581,21309,22046,22793,23518,24208,24861,25454,26023,26436,26756,26998,27108,27136,27032,26803,26484,26089,25604,25026,24466,23835,23178,22533,21876,21221,20618,20020,19459,18973,18490,18098,17722,17393,17111,16848,16631,16427,16213,16018,15831,15626,15475,15350,15226,15137,15060,14969,14946,14925,14928,14921,14955,14978,15013,15061,15083,15136,15179,15204,15206,15211,15221,15227,15239,15254,15250,15203,15136,15079,15008,14935,14810,14681,14532,14370,14177,13965,13737,13512,13258,13000,12706,12423,12133,11826,11544,11271,11018,10787,10554,10293,9984,9670,9350,9067,8833,8617,8441,8285,8155,8071,7984,7911,7862,7798,7703,7561,7381,7235,7104,6992,6892,6809,6748,6693,6651,6640,6633,6605,6595,6621,6622,6465,6166,5737,5111,22.4,22.5,23.2,1568967,0.1,13.0,11.9,5.0,450,-1.00,-1.00,58.4833,-19.241828,0.000565,,,,,126 +SATSLF0720,2024246,21.762166,4.11,0.0575,0.1053,0.0199,0.00,16082,662,1,721,707,703,715,721,715,723,726,742,731,724,751,777,884,1195,1898,3037,4369,5623,6566,7209,7693,8131,8578,9093,9720,10475,11332,12321,13417,14599,15738,16842,17787,18510,18939,19107,18916,18551,18006,17424,16861,16400,16040,15806,15745,15819,16086,16497,17077,17808,18697,19767,20984,22285,23742,25196,26683,28109,29358,30345,31095,31496,31473,31159,30502,29590,28539,27322,26154,25013,23930,22946,22101,21377,20773,20282,19897,19606,19437,19357,19371,19482,19673,19916,20284,20715,21248,21795,22427,23095,23737,24338,24926,25398,25761,26036,26069,25944,25669,25198,24550,23848,23050,22186,21315,20488,19710,19005,18351,17790,17328,16907,16581,16334,16160,16071,16033,16026,16127,16291,16519,16821,17189,17625,18110,18669,19283,19908,20580,21316,22062,22794,23501,24221,24865,25451,26010,26437,26756,27008,27100,27108,27029,26825,26485,26101,25618,25036,24451,23805,23170,22515,21854,21239,20618,20037,19479,18986,18498,18109,17726,17410,17107,16855,16628,16422,16205,16024,15840,15648,15489,15349,15217,15121,15058,14980,14930,14923,14908,14918,14965,14982,15017,15060,15080,15143,15197,15200,15219,15225,15227,15244,15257,15257,15229,15187,15138,15073,15010,14937,14829,14701,14550,14373,14177,13969,13767,13504,13255,12984,12704,12416,12120,11828,11533,11274,11022,10781,10551,10265,9991,9661,9345,9059,8831,8605,8457,8288,8153,8053,7976,7897,7841,7783,7685,7551,7373,7226,7104,7001,6900,6825,6753,6690,6655,6635,6618,6616,6601,6617,6613,6453,6149,5728,5117,22.4,22.5,23.2,1568968,0.3,12.9,11.9,5.0,448,-1.00,-1.00,58.6461,-19.295818,0.000625,,,,,130 +SATSLF0720,2024246,21.762421,4.06,0.0569,0.1081,0.0213,0.00,15981,662,1,718,709,721,707,723,728,737,723,739,724,729,742,768,884,1174,1862,2983,4323,5569,6493,7149,7626,8042,8493,9002,9611,10346,11211,12183,13277,14439,15587,16701,17616,18347,18787,18909,18742,18369,17845,17261,16726,16257,15892,15671,15624,15688,15939,16349,16909,17648,18550,19610,20809,22102,23553,24994,26459,27876,29093,30091,30843,31236,31242,30918,30283,29368,28337,27109,25950,24811,23739,22754,21922,21207,20600,20128,19741,19479,19316,19240,19233,19351,19529,19799,20149,20566,21096,21660,22268,22934,23568,24191,24763,25230,25581,25847,25905,25786,25513,25057,24404,23692,22907,22037,21162,20322,19575,18869,18226,17684,17214,16811,16496,16254,16085,15987,15933,15964,16048,16198,16439,16729,17097,17526,17989,18576,19160,19793,20473,21178,21933,22666,23373,24071,24733,25316,25873,26308,26628,26876,26976,26986,26874,26669,26347,25950,25457,24902,24327,23698,23043,22389,21735,21097,20498,19909,19360,18871,18397,18007,17638,17329,17043,16770,16526,16330,16125,15937,15765,15570,15408,15253,15165,15053,14986,14893,14864,14863,14844,14862,14886,14902,14930,14977,15004,15062,15117,15124,15130,15153,15152,15181,15193,15185,15185,15134,15069,15027,14938,14859,14764,14634,14468,14305,14113,13905,13692,13458,13210,12941,12646,12365,12065,11767,11486,11218,10969,10743,10506,10245,9933,9635,9305,9027,8778,8574,8402,8246,8104,8009,7928,7869,7825,7757,7677,7540,7363,7210,7088,6965,6861,6782,6722,6674,6633,6605,6595,6592,6570,6599,6589,6427,6143,5700,5095,22.4,22.5,23.2,1568969,0.2,12.9,12.0,5.0,446,-1.00,-1.00,59.9050,-19.674414,0.000606,,,,,165 +SATSLF0720,2024246,21.762673,4.11,0.0576,0.1062,0.0206,0.00,16049,662,1,717,711,707,716,716,717,729,733,728,727,741,745,775,883,1173,1875,3009,4360,5613,6545,7217,7701,8119,8568,9081,9714,10457,11310,12296,13411,14581,15734,16831,17792,18497,18918,19046,18874,18498,17956,17383,16826,16372,16002,15783,15714,15804,16052,16464,17033,17765,18674,19723,20933,22239,23672,25143,26617,28034,29269,30272,31010,31398,31401,31088,30441,29531,28484,27273,26101,24946,23879,22875,22034,21296,20702,20221,19853,19576,19410,19320,19333,19421,19610,19876,20226,20670,21193,21744,22378,23016,23677,24298,24848,25332,25696,25959,26019,25902,25629,25148,24519,23790,23007,22129,21257,20427,19661,18965,18325,17762,17293,16868,16561,16305,16117,16019,15977,15998,16103,16265,16494,16792,17147,17568,18052,18631,19225,19875,20549,21282,22002,22747,23451,24151,24816,25395,25965,26389,26700,26937,27042,27063,26981,26749,26441,26037,25553,24999,24408,23784,23117,22473,21818,21170,20571,19979,19426,18941,18461,18078,17701,17377,17080,16825,16592,16386,16169,16001,15805,15605,15451,15304,15192,15096,15021,14943,14904,14894,14885,14898,14929,14954,14992,15031,15042,15107,15157,15171,15181,15186,15190,15194,15239,15221,15203,15179,15106,15050,14984,14909,14804,14666,14517,14346,14149,13947,13735,13488,13228,12963,12677,12402,12105,11799,11532,11249,11017,10773,10535,10267,9986,9637,9339,9048,8802,8583,8419,8272,8135,8043,7965,7899,7853,7798,7694,7550,7371,7226,7090,6983,6889,6792,6737,6670,6639,6625,6617,6605,6594,6621,6612,6445,6137,5715,5104,22.5,22.6,23.2,1568969,0.1,12.9,12.0,5.0,450,-1.00,-1.00,58.6918,-19.272714,0.000496,,,,,26 +SATSLF0720,2024246,21.762929,4.06,0.0569,0.1065,0.0208,0.00,16045,662,1,716,717,729,729,720,718,729,731,742,730,734,745,784,878,1191,1895,3009,4379,5619,6556,7203,7697,8119,8572,9096,9707,10455,11310,12291,13379,14579,15730,16813,17767,18486,18918,19050,18862,18498,17949,17377,16837,16369,16029,15790,15719,15795,16029,16444,17017,17753,18670,19712,20922,22235,23674,25141,26608,28000,29252,30249,30989,31400,31377,31063,30425,29515,28465,27257,26092,24940,23873,22877,22023,21297,20691,20206,19828,19537,19395,19305,19327,19422,19606,19867,20227,20656,21177,21738,22345,23011,23653,24272,24849,25325,25693,25957,26000,25888,25609,25133,24507,23789,22994,22124,21260,20421,19646,18938,18295,17736,17269,16862,16539,16312,16149,16032,15995,16013,16107,16261,16491,16773,17159,17568,18056,18616,19223,19854,20530,21264,21995,22736,23448,24136,24781,25389,25947,26365,26690,26935,27037,27058,26966,26761,26437,26022,25539,24982,24389,23768,23122,22468,21803,21169,20557,19976,19422,18939,18477,18080,17710,17370,17084,16817,16584,16378,16172,15980,15774,15592,15434,15306,15189,15097,15015,14951,14908,14900,14889,14889,14908,14915,14969,15008,15043,15100,15168,15177,15189,15189,15185,15215,15221,15239,15220,15181,15110,15045,14991,14907,14806,14676,14506,14330,14144,13939,13734,13504,13244,12973,12691,12397,12107,11789,11515,11257,11001,10775,10549,10269,9980,9642,9338,9045,8800,8599,8417,8274,8146,8034,7959,7909,7853,7819,7689,7559,7372,7227,7086,6982,6874,6794,6728,6677,6653,6617,6615,6601,6591,6620,6621,6465,6166,5741,5119,22.5,22.6,23.2,1568970,0.2,12.9,12.0,5.0,441,-1.00,-1.00,58.6364,-19.239089,0.000508,,,,,161 +SATSLF0720,2024246,21.763186,4.16,0.0582,0.1069,0.0206,0.00,16035,662,1,728,720,721,720,737,729,730,743,751,748,739,754,788,877,1191,1885,3017,4354,5611,6541,7214,7697,8133,8571,9104,9715,10444,11302,12274,13382,14550,15701,16797,17749,18472,18902,19029,18846,18482,17960,17362,16803,16355,16001,15773,15693,15779,16038,16428,17012,17747,18640,19707,20926,22221,23666,25125,26590,27986,29234,30217,30972,31365,31370,31028,30407,29482,28439,27233,26048,24923,23849,22856,22010,21280,20681,20193,19821,19541,19403,19290,19317,19413,19595,19865,20197,20637,21159,21722,22333,22992,23649,24258,24837,25308,25673,25938,25981,25870,25596,25115,24485,23765,22971,22109,21229,20413,19637,18941,18299,17734,17273,16858,16538,16303,16121,16029,15965,16010,16101,16260,16472,16775,17137,17566,18038,18611,19214,19839,20525,21253,21978,22722,23422,24131,24789,25385,25938,26365,26693,26925,27045,27053,26960,26738,26410,26021,25517,24964,24378,23750,23104,22441,21783,21161,20554,19965,19411,18931,18458,18049,17702,17354,17070,16801,16568,16361,16164,15985,15784,15606,15436,15289,15187,15069,15015,14937,14899,14875,14873,14877,14903,14937,14983,15009,15047,15103,15134,15163,15169,15173,15193,15203,15242,15221,15206,15170,15103,15049,14973,14885,14783,14646,14512,14319,14153,13943,13719,13488,13222,12965,12671,12384,12111,11808,11514,11247,10987,10757,10507,10256,9969,9645,9334,9061,8810,8597,8423,8278,8161,8049,7974,7912,7854,7775,7685,7561,7366,7215,7095,6981,6884,6798,6741,6677,6644,6621,6609,6602,6589,6629,6612,6451,6143,5723,5109,22.5,22.6,23.3,1568971,0.0,12.9,12.0,5.0,444,-1.00,-1.00,58.3085,-19.087310,0.000558,,,,,81 +SATSLF0720,2024246,21.763438,4.02,0.0563,0.1065,0.0201,0.00,16050,662,1,709,720,737,722,721,727,733,731,737,732,747,762,790,893,1201,1883,3028,4373,5621,6560,7226,7696,8129,8574,9076,9698,10443,11313,12298,13401,14568,15728,16839,17766,18489,18919,19059,18882,18516,17977,17402,16825,16384,16013,15789,15721,15799,16055,16458,17032,17770,18666,19702,20933,22236,23665,25131,26603,28013,29280,30261,30998,31389,31409,31073,30445,29520,28482,27242,26091,24921,23852,22885,22033,21298,20700,20220,19829,19562,19408,19305,19329,19422,19618,19879,20221,20668,21191,21732,22354,23020,23666,24285,24865,25349,25705,25961,26008,25892,25618,25141,24509,23794,22993,22118,21265,20436,19657,18969,18315,17749,17288,16864,16563,16313,16139,16048,15997,16025,16121,16281,16501,16803,17149,17589,18053,18618,19232,19853,20549,21277,22006,22740,23446,24163,24806,25409,25952,26374,26711,26934,27037,27052,26947,26755,26437,26023,25557,24968,24391,23785,23114,22471,21805,21170,20568,19970,19430,18922,18465,18061,17708,17381,17093,16819,16587,16381,16175,15982,15790,15617,15444,15318,15201,15099,15021,14951,14925,14902,14895,14915,14928,14960,14973,15027,15036,15111,15165,15184,15193,15199,15197,15223,15237,15229,15223,15161,15105,15066,14989,14900,14826,14682,14528,14356,14172,13958,13744,13497,13240,12974,12677,12406,12096,11812,11512,11246,11005,10755,10532,10274,9966,9651,9348,9037,8795,8594,8426,8278,8146,8055,7977,7901,7853,7806,7702,7548,7375,7225,7090,6976,6885,6809,6747,6692,6647,6630,6619,6611,6597,6600,6596,6451,6153,5736,5116,22.5,22.6,23.3,1568972,0.2,12.9,12.0,5.0,446,-1.00,-1.00,58.5978,-19.226727,0.000509,,,,,36 +SATSLF0720,2024246,21.763694,4.11,0.0576,0.1074,0.0214,0.00,16013,662,1,727,724,731,722,726,720,720,702,736,734,746,753,780,891,1219,1878,3015,4355,5595,6533,7170,7671,8093,8546,9061,9685,10409,11282,12279,13368,14540,15674,16782,17706,18421,18871,18981,18811,18430,17909,17321,16772,16333,15965,15749,15668,15752,15991,16400,16973,17704,18606,19659,20868,22171,23609,25074,26555,27952,29193,30187,30923,31319,31323,30999,30346,29428,28404,27165,26016,24866,23800,22827,21978,21260,20673,20192,19792,19513,19355,19268,19277,19381,19574,19841,20183,20621,21146,21713,22315,22980,23616,24231,24793,25265,25634,25901,25949,25829,25559,25078,24437,23733,22938,22077,21217,20381,19613,18923,18271,17709,17243,16848,16529,16277,16101,15990,15946,15963,16059,16217,16463,16753,17121,17540,18034,18601,19201,19819,20501,21221,21959,22698,23406,24105,24749,25344,25906,26345,26670,26893,26999,26990,26907,26697,26369,25979,25483,24932,24352,23723,23074,22434,21768,21144,20533,19945,19394,18896,18433,18032,17673,17346,17063,16797,16574,16349,16150,15962,15756,15575,15411,15268,15155,15063,14992,14920,14888,14866,14872,14875,14903,14909,14959,14987,15027,15081,15137,15147,15145,15177,15160,15192,15200,15199,15204,15143,15077,15023,14956,14871,14779,14631,14483,14324,14125,13927,13717,13473,13227,12960,12666,12374,12080,11786,11499,11229,10977,10736,10509,10241,9955,9628,9329,9040,8801,8586,8421,8263,8135,8045,7956,7896,7837,7770,7676,7537,7355,7202,7088,6970,6881,6785,6729,6664,6634,6611,6598,6595,6580,6603,6606,6449,6147,5720,5084,22.5,22.6,23.3,1568973,0.1,12.9,11.9,5.0,448,-1.00,-1.00,58.8766,-19.293639,0.000605,,,,,195 +SATSLF0720,2024246,21.763947,4.15,0.0582,0.1084,0.0219,0.00,15988,662,1,698,701,706,709,715,732,739,734,737,733,736,737,764,878,1203,1881,3017,4358,5600,6545,7173,7667,8081,8523,9041,9664,10397,11251,12241,13355,14508,15657,16733,17694,18411,18833,18961,18775,18411,17890,17309,16773,16309,15926,15723,15665,15729,15970,16369,16941,17683,18586,19651,20857,22154,23577,25049,26506,27910,29124,30135,30872,31289,31272,30944,30306,29405,28365,27149,25964,24827,23769,22789,21937,21206,20604,20125,19745,19485,19324,19226,19254,19345,19543,19797,20140,20588,21096,21667,22289,22946,23577,24187,24764,25233,25600,25858,25900,25776,25510,25036,24401,23693,22891,22051,21193,20346,19581,18900,18234,17685,17221,16809,16502,16245,16080,15977,15929,15943,16051,16194,16417,16717,17076,17502,17991,18570,19172,19798,20480,21201,21926,22670,23378,24064,24720,25300,25854,26289,26610,26838,26963,26973,26884,26674,26343,25950,25447,24901,24304,23682,23034,22389,21730,21089,20503,19912,19376,18869,18416,17997,17634,17317,17034,16768,16525,16331,16122,15933,15745,15558,15388,15243,15149,15037,14979,14897,14845,14823,14835,14852,14882,14896,14925,14979,15003,15045,15112,15126,15140,15137,15150,15158,15170,15169,15174,15129,15069,15009,14935,14871,14752,14621,14473,14298,14112,13898,13689,13449,13188,12935,12640,12355,12060,11765,11485,11229,10968,10733,10487,10226,9925,9600,9296,9005,8782,8582,8409,8263,8136,8043,7949,7881,7832,7760,7674,7513,7328,7195,7061,6963,6865,6795,6733,6669,6629,6613,6585,6577,6561,6595,6582,6421,6133,5715,5102,22.5,22.7,23.4,1568974,0.4,12.9,12.0,5.0,446,-1.00,-1.00,58.7394,-19.211049,0.000586,,,,,216 +SATSLF0720,2024246,21.764199,4.00,0.0561,0.1063,0.0204,0.00,16040,662,1,706,715,727,735,726,727,721,731,732,746,728,763,778,891,1196,1882,3018,4380,5621,6561,7216,7700,8131,8569,9083,9712,10452,11306,12297,13395,14573,15726,16822,17772,18474,18924,19052,18866,18485,17975,17388,16836,16375,16014,15796,15709,15778,16019,16420,17016,17755,18665,19718,20938,22230,23668,25129,26613,28021,29264,30237,30999,31382,31393,31065,30416,29509,28467,27242,26072,24924,23865,22858,22021,21277,20683,20219,19834,19544,19403,19314,19321,19429,19613,19866,20215,20653,21157,21735,22353,23013,23660,24269,24837,25317,25680,25951,26002,25879,25603,25145,24500,23787,22986,22125,21257,20418,19653,18947,18293,17739,17267,16872,16544,16289,16130,16025,15976,16008,16093,16253,16483,16765,17143,17577,18045,18612,19224,19853,20529,21234,21997,22728,23443,24151,24795,25387,25946,26359,26690,26930,27034,27046,26948,26726,26409,26023,25537,24958,24378,23751,23109,22462,21818,21173,20554,19966,19410,18917,18449,18052,17706,17384,17089,16800,16583,16375,16161,15986,15794,15601,15437,15305,15193,15092,15018,14929,14907,14885,14868,14877,14914,14938,14962,14996,15041,15090,15140,15158,15169,15171,15182,15202,15213,15221,15202,15156,15109,15058,14974,14887,14792,14666,14507,14346,14160,13946,13722,13494,13233,12964,12691,12389,12097,11809,11521,11248,11003,10754,10519,10253,9955,9642,9310,9055,8805,8596,8421,8257,8141,8042,7968,7892,7837,7773,7691,7538,7380,7229,7098,6972,6878,6793,6732,6681,6634,6615,6613,6611,6593,6615,6589,6436,6141,5712,5101,22.5,22.7,23.4,1568975,0.0,12.9,12.0,5.0,447,-1.00,-1.00,58.7825,-19.297425,0.000615,,,,,29 +SATSLF0720,2024246,21.764454,4.09,0.0572,0.1078,0.0216,0.00,16006,662,1,711,710,723,728,727,721,726,727,739,747,762,765,804,900,1191,1880,3021,4357,5611,6542,7197,7676,8117,8544,9069,9673,10422,11272,12266,13364,14516,15671,16773,17713,18429,18861,18996,18813,18443,17917,17333,16787,16326,15973,15749,15674,15762,15997,16427,16966,17695,18599,19658,20881,22176,23604,25069,26549,27930,29170,30163,30901,31309,31321,30989,30342,29438,28394,27180,26017,24854,23795,22809,21965,21237,20642,20149,19778,19501,19349,19252,19267,19370,19563,19810,20161,20599,21129,21673,22295,22955,23605,24206,24788,25250,25623,25873,25939,25802,25547,25057,24433,23717,22934,22071,21205,20363,19613,18914,18274,17715,17237,16817,16512,16267,16093,15983,15951,15965,16075,16229,16464,16745,17111,17541,18016,18583,19159,19808,20486,21211,21941,22686,23389,24082,24743,25333,25892,26301,26619,26869,26981,26997,26893,26689,26371,25963,25473,24922,24331,23696,23052,22414,21741,21139,20521,19937,19385,18894,18405,18007,17637,17316,17026,16766,16544,16338,16129,15949,15747,15566,15412,15273,15154,15065,14988,14925,14882,14864,14845,14859,14885,14905,14951,14986,15019,15075,15126,15140,15143,15153,15154,15181,15203,15198,15194,15150,15079,15019,14959,14866,14783,14641,14477,14316,14130,13922,13700,13467,13211,12951,12670,12368,12079,11800,11496,11229,10977,10740,10513,10249,9945,9617,9331,9033,8796,8594,8412,8262,8137,8024,7941,7873,7827,7741,7659,7527,7354,7209,7085,6984,6874,6804,6733,6682,6632,6619,6626,6597,6585,6591,6593,6461,6146,5716,5108,22.5,22.7,23.4,1568976,0.1,13.0,12.0,5.0,446,-1.00,-1.00,58.7023,-19.217674,0.000511,,,,,227 +SATSDF0720,2024246,22.009139,0.00,0.0000,0.0000,0.0000,0.00,662,0,1,656,645,649,641,640,637,636,629,641,634,637,641,645,635,642,641,645,646,641,643,641,650,664,675,664,662,672,670,670,676,680,662,674,654,663,661,663,659,671,665,665,667,669,679,669,672,672,669,662,677,665,670,670,660,656,662,661,671,668,677,666,663,669,665,677,679,665,671,666,671,680,669,642,667,659,670,675,665,670,673,664,654,663,674,678,666,656,666,661,673,671,667,678,672,669,661,678,673,666,665,651,660,664,669,671,672,671,661,657,657,659,669,656,666,645,662,670,670,656,661,663,661,659,664,658,667,675,661,665,674,660,676,665,661,663,656,668,657,665,661,658,663,673,663,661,655,660,656,675,665,666,667,668,649,657,657,661,669,669,663,663,665,661,652,672,656,679,664,675,669,671,674,657,653,661,661,662,665,671,669,669,665,666,661,660,667,676,673,665,665,662,649,662,650,663,648,659,663,654,646,657,654,646,668,668,646,667,662,664,657,655,649,652,644,666,649,659,659,657,663,674,667,668,654,659,672,665,658,667,649,651,657,665,673,672,673,668,671,676,670,662,669,648,667,661,664,664,654,655,659,665,661,661,654,663,488,0.0,0.0,0.0,1568975,0.5,13.4,0.1,5.1,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,137 +SATSLF0720,2024246,22.009696,3.98,0.0558,0.1013,0.0175,0.00,16197,662,1,720,717,715,714,720,716,724,728,735,745,747,763,778,885,1190,1895,3037,4418,5678,6613,7293,7785,8221,8661,9185,9803,10564,11441,12437,13547,14723,15911,17010,17979,18713,19124,19276,19085,18709,18167,17583,17020,16554,16184,15968,15885,15979,16225,16631,17212,17957,18874,19939,21165,22490,23926,25413,26917,28341,29577,30593,31349,31737,31749,31430,30770,29856,28816,27577,26398,25236,24154,23146,22279,21550,20946,20456,20068,19795,19635,19533,19549,19643,19831,20100,20453,20901,21402,21987,22603,23261,23927,24529,25108,25576,25952,26202,26257,26141,25858,25385,24736,24033,23225,22343,21469,20610,19835,19140,18469,17913,17432,17016,16699,16440,16275,16172,16122,16161,16244,16405,16628,16918,17315,17734,18202,18800,19400,20043,20729,21471,22215,22951,23673,24366,25037,25620,26180,26619,26944,27185,27307,27308,27225,27006,26680,26285,25784,25203,24616,23969,23317,22657,21981,21357,20745,20147,19601,19109,18629,18226,17854,17529,17236,16976,16711,16523,16309,16109,15915,15736,15561,15431,15316,15217,15145,15080,15028,15014,15017,15005,15021,15057,15095,15132,15162,15209,15265,15271,15290,15301,15306,15330,15336,15346,15323,15291,15221,15152,15093,15013,14902,14762,14614,14442,14251,14037,13822,13592,13323,13074,12789,12490,12209,11889,11597,11328,11072,10824,10596,10312,10023,9698,9383,9097,8857,8661,8481,8330,8189,8084,8007,7947,7889,7828,7721,7588,7415,7255,7133,7025,6921,6842,6772,6721,6689,6677,6654,6650,6633,6649,6657,6501,6198,5771,5133,22.4,22.4,22.9,1568977,0.2,12.9,11.9,5.0,567,-1.00,-1.00,58.4624,-19.379632,0.000453,,,,,118 +SATSLF0720,2024246,22.009878,3.98,0.0557,0.1018,0.0181,0.00,16171,662,1,713,713,711,691,711,709,717,708,727,734,727,743,779,880,1201,1898,3032,4385,5660,6614,7273,7761,8196,8657,9181,9802,10560,11433,12429,13530,14720,15882,16997,17946,18673,19115,19258,19076,18709,18161,17562,17009,16545,16186,15954,15887,15960,16209,16605,17207,17941,18852,19923,21133,22462,23926,25396,26878,28310,29559,30567,31301,31719,31713,31399,30749,29824,28776,27527,26365,25184,24121,23115,22253,21525,20909,20430,20035,19748,19595,19511,19513,19613,19806,20060,20419,20857,21378,21945,22566,23232,23874,24488,25061,25545,25914,26184,26219,26109,25838,25338,24720,23985,23191,22310,21429,20565,19806,19080,18426,17863,17400,16989,16663,16423,16253,16149,16105,16135,16212,16372,16608,16897,17267,17704,18201,18757,19358,19982,20686,21416,22156,22912,23621,24324,24999,25573,26144,26565,26891,27129,27225,27261,27170,26954,26633,26237,25732,25158,24582,23928,23295,22636,21963,21330,20690,20123,19560,19065,18592,18180,17819,17485,17220,16960,16692,16486,16293,16090,15897,15717,15538,15407,15270,15195,15105,15034,14985,14970,14973,14982,15012,15032,15061,15101,15136,15183,15236,15246,15255,15267,15276,15292,15308,15311,15310,15254,15186,15134,15054,14965,14881,14738,14599,14427,14248,14036,13813,13569,13301,13037,12742,12438,12175,11857,11580,11319,11059,10812,10583,10315,10003,9689,9385,9098,8848,8647,8482,8329,8188,8081,8001,7930,7869,7810,7717,7574,7398,7245,7105,7003,6910,6826,6771,6716,6665,6653,6642,6621,6626,6637,6636,6481,6180,5754,5117,22.4,22.4,22.9,1568977,0.0,12.9,11.9,5.0,460,-1.00,-1.00,58.2308,-19.262529,0.000488,,,,,49 +SATSLF0720,2024246,22.010137,4.07,0.0571,0.1031,0.0185,0.00,16153,662,1,709,727,721,725,717,731,729,733,737,737,730,739,777,885,1194,1888,3037,4396,5642,6593,7265,7754,8183,8641,9169,9793,10524,11397,12425,13516,14696,15865,16973,17936,18658,19077,19216,19043,18662,18120,17536,16981,16525,16154,15927,15848,15929,16174,16566,17147,17906,18817,19904,21122,22449,23884,25362,26855,28256,29531,30517,31273,31669,31657,31337,30682,29758,28708,27479,26319,25162,24084,23090,22229,21497,20890,20402,20000,19721,19561,19454,19467,19577,19755,20026,20392,20824,21349,21917,22538,23190,23825,24455,25020,25493,25851,26116,26184,26059,25784,25320,24677,23953,23137,22280,21402,20561,19776,19059,18413,17862,17385,16978,16643,16408,16225,16125,16084,16097,16197,16360,16579,16893,17259,17697,18181,18747,19339,19987,20664,21401,22145,22870,23602,24302,24957,25563,26140,26552,26885,27129,27238,27261,27163,26918,26607,26197,25699,25129,24549,23905,23267,22614,21941,21305,20692,20101,19552,19041,18573,18161,17790,17467,17179,16922,16682,16486,16268,16083,15889,15702,15525,15387,15277,15168,15106,15027,14992,14971,14963,14976,15004,15017,15058,15086,15114,15177,15221,15235,15270,15274,15281,15287,15305,15317,15294,15247,15172,15120,15059,14955,14871,14734,14590,14425,14225,14023,13809,13542,13290,13026,12741,12444,12153,11849,11576,11309,11081,10824,10588,10319,9997,9687,9371,9088,8850,8644,8477,8306,8192,8087,8001,7933,7878,7797,7707,7565,7388,7243,7127,7005,6906,6829,6756,6715,6670,6663,6645,6627,6612,6613,6625,6464,6171,5739,5131,22.4,22.4,23.0,1568978,0.1,12.9,11.9,5.0,454,-1.00,-1.00,58.0908,-19.173029,0.000614,,,,,252 +SATSLF0720,2024246,22.010390,3.95,0.0553,0.1030,0.0184,0.00,16143,662,1,711,714,710,713,726,726,733,729,741,727,741,733,772,889,1194,1889,3045,4404,5664,6605,7270,7751,8177,8625,9153,9786,10517,11399,12398,13500,14679,15844,16952,17912,18633,19076,19212,19044,18653,18117,17513,16962,16497,16137,15913,15832,15933,16171,16574,17152,17895,18797,19878,21094,22417,23864,25344,26829,28245,29488,30490,31243,31653,31645,31312,30668,29753,28720,27472,26291,25137,24042,23051,22214,21465,20864,20377,19989,19712,19545,19457,19463,19574,19758,20020,20377,20805,21346,21898,22522,23197,23829,24445,25017,25489,25866,26113,26171,26052,25768,25280,24654,23922,23136,22282,21410,20552,19767,19067,18397,17847,17361,16956,16635,16393,16224,16133,16068,16095,16184,16359,16585,16877,17239,17667,18157,18718,19335,19977,20656,21393,22128,22882,23600,24281,24945,25528,26102,26525,26845,27101,27210,27205,27127,26912,26580,26199,25688,25111,24536,23893,23241,22590,21926,21291,20701,20098,19543,19053,18570,18167,17781,17460,17160,16901,16666,16465,16262,16073,15881,15697,15517,15379,15259,15159,15095,15010,14974,14953,14951,14945,14981,15008,15033,15092,15114,15163,15229,15241,15255,15262,15269,15282,15290,15287,15287,15229,15174,15123,15044,14961,14859,14722,14572,14416,14222,13998,13792,13557,13273,13029,12746,12437,12144,11864,11571,11293,11040,10814,10577,10314,10018,9697,9385,9085,8834,8617,8450,8292,8155,8065,7995,7914,7876,7804,7717,7584,7402,7253,7113,7009,6897,6819,6753,6686,6660,6635,6632,6625,6618,6633,6629,6481,6180,5739,5133,22.4,22.4,23.1,1568979,0.2,12.9,11.9,5.0,445,-1.00,-1.00,58.5906,-19.369816,0.000554,,,,,246 +SATSLF0720,2024246,22.010650,3.81,0.0534,0.1046,0.0191,0.00,16098,662,1,715,702,711,721,721,706,731,725,741,741,757,750,791,881,1187,1894,3012,4389,5636,6580,7226,7715,8138,8576,9099,9718,10461,11326,12327,13419,14589,15763,16862,17810,18562,19001,19125,18955,18574,18035,17445,16877,16421,16054,15833,15764,15832,16087,16501,17085,17821,18720,19794,21001,22301,23744,25233,26698,28123,29369,30375,31125,31521,31520,31201,30549,29629,28577,27363,26188,25034,23952,22967,22109,21381,20787,20306,19920,19640,19477,19387,19411,19497,19703,19962,20307,20754,21265,21825,22442,23101,23749,24371,24957,25434,25793,26058,26108,25988,25704,25224,24583,23854,23061,22198,21337,20479,19719,19009,18359,17803,17333,16924,16609,16357,16189,16086,16038,16066,16153,16314,16532,16836,17216,17640,18123,18694,19289,19922,20613,21337,22077,22808,23543,24233,24889,25493,26041,26475,26788,27021,27140,27147,27057,26857,26524,26124,25617,25062,24476,23824,23181,22517,21867,21227,20640,20052,19502,19005,18531,18121,17749,17427,17129,16870,16621,16422,16204,16021,15847,15661,15501,15368,15253,15141,15062,15003,14962,14942,14938,14951,14965,14978,15015,15061,15094,15144,15196,15192,15210,15232,15239,15244,15270,15267,15264,15205,15148,15101,15017,14929,14841,14703,14557,14384,14186,13975,13769,13520,13263,13015,12713,12416,12117,11827,11549,11273,11025,10802,10576,10299,10009,9668,9365,9076,8836,8610,8433,8291,8149,8045,7983,7923,7865,7802,7708,7575,7396,7241,7111,7015,6907,6821,6765,6685,6663,6636,6617,6599,6587,6635,6621,6469,6173,5741,5119,22.4,22.4,23.1,1568980,0.1,12.9,12.0,5.0,452,-1.00,-1.00,59.5899,-19.708702,0.000609,,,,,178 +SATSLF0720,2024246,22.010906,4.28,0.0600,0.1050,0.0197,0.00,16087,662,1,727,709,713,717,721,723,729,725,728,743,741,767,778,887,1194,1898,3018,4365,5616,6557,7214,7697,8119,8561,9086,9708,10437,11319,12309,13415,14576,15746,16833,17783,18493,18929,19064,18882,18518,17989,17406,16852,16394,16038,15827,15753,15828,16060,16480,17064,17824,18708,19772,20987,22299,23723,25205,26688,28093,29342,30355,31100,31481,31477,31163,30534,29609,28560,27331,26164,25009,23947,22942,22097,21377,20760,20283,19913,19637,19473,19373,19395,19491,19689,19944,20298,20723,21246,21806,22437,23089,23738,24352,24928,25397,25776,26020,26088,25959,25677,25198,24574,23853,23053,22183,21316,20471,19707,18994,18354,17782,17305,16905,16598,16338,16180,16087,16046,16062,16153,16306,16535,16808,17191,17609,18095,18664,19271,19919,20589,21319,22067,22820,23517,24215,24873,25472,26033,26472,26786,27040,27136,27146,27050,26829,26509,26105,25616,25062,24467,23828,23180,22533,21868,21238,20635,20036,19491,18985,18505,18104,17742,17416,17137,16860,16631,16432,16235,16045,15837,15655,15477,15339,15226,15114,15036,14971,14950,14929,14939,14943,14960,14979,15015,15056,15100,15124,15195,15207,15223,15220,15229,15243,15265,15269,15262,15209,15149,15082,15012,14919,14829,14685,14555,14392,14193,13994,13770,13530,13277,13002,12709,12421,12133,11825,11543,11263,11024,10789,10552,10276,9987,9666,9346,9057,8823,8621,8433,8299,8154,8051,7975,7927,7862,7796,7696,7570,7380,7237,7106,6984,6887,6816,6750,6703,6653,6631,6630,6631,6621,6632,6619,6458,6157,5729,5106,22.4,22.4,23.1,1568981,0.2,12.9,12.0,5.0,450,-1.00,-1.00,58.5811,-19.274438,0.000538,,,,,16 +SATSLF0720,2024246,22.011159,4.02,0.0564,0.1040,0.0188,0.00,16119,662,1,701,715,726,709,721,734,729,731,738,730,747,752,780,893,1195,1906,3049,4412,5653,6605,7261,7742,8168,8612,9138,9762,10512,11380,12383,13493,14668,15834,16938,17889,18608,19044,19163,18978,18601,18064,17485,16921,16465,16125,15882,15806,15891,16139,16548,17113,17863,18757,19837,21050,22355,23809,25289,26774,28172,29425,30416,31177,31574,31570,31256,30611,29689,28649,27420,26232,25061,23995,22985,22150,21424,20826,20325,19940,19655,19516,19413,19434,19526,19725,19978,20322,20745,21277,21846,22469,23143,23789,24392,24984,25442,25815,26080,26131,26002,25736,25259,24621,23892,23101,22234,21357,20496,19734,19037,18388,17816,17345,16929,16618,16359,16210,16106,16060,16067,16168,16334,16564,16849,17221,17649,18130,18694,19329,19958,20637,21363,22098,22835,23562,24252,24912,25497,26061,26493,26793,27058,27154,27168,27069,26865,26531,26144,25649,25083,24503,23866,23221,22577,21896,21270,20650,20078,19512,19026,18540,18141,17774,17443,17147,16871,16636,16437,16245,16053,15861,15668,15497,15358,15241,15149,15061,14981,14951,14940,14944,14941,14971,14992,15030,15068,15098,15139,15199,15211,15233,15234,15255,15252,15286,15278,15275,15213,15163,15109,15034,14936,14862,14725,14560,14397,14196,13987,13780,13541,13271,13015,12725,12438,12133,11836,11557,11282,11044,10803,10562,10296,10003,9684,9373,9089,8838,8640,8467,8294,8161,8076,7986,7923,7861,7808,7713,7581,7402,7247,7125,7009,6914,6833,6776,6697,6666,6661,6649,6621,6627,6633,6616,6485,6164,5737,5129,22.4,22.4,23.1,1568982,0.0,13.0,12.0,5.0,450,-1.00,-1.00,58.4340,-19.264260,0.000507,,,,,50 +SATSLF0720,2024246,22.011415,4.11,0.0576,0.1044,0.0188,0.00,16104,662,1,715,713,705,711,716,720,723,723,724,737,737,752,789,890,1199,1878,3021,4377,5618,6562,7213,7705,8133,8580,9109,9729,10467,11351,12333,13434,14618,15755,16868,17812,18539,18986,19117,18926,18561,18030,17450,16888,16448,16076,15842,15778,15860,16097,16488,17090,17832,18742,19805,21020,22337,23789,25248,26722,28141,29380,30373,31130,31518,31516,31205,30565,29655,28610,27373,26205,25061,23982,22981,22125,21403,20788,20305,19912,19627,19469,19395,19413,19511,19702,19968,20304,20753,21266,21830,22450,23105,23755,24358,24961,25433,25798,26077,26129,26005,25717,25255,24613,23870,23083,22206,21335,20487,19720,19018,18373,17821,17346,16921,16608,16357,16177,16085,16041,16062,16152,16320,16552,16840,17220,17636,18125,18696,19298,19951,20642,21365,22093,22827,23555,24254,24918,25501,26044,26475,26799,27040,27146,27159,27079,26868,26529,26137,25650,25069,24495,23858,23208,22537,21876,21259,20638,20053,19496,19018,18536,18129,17765,17437,17137,16888,16646,16448,16254,16043,15847,15668,15501,15357,15245,15140,15063,14987,14954,14929,14922,14918,14948,14983,15028,15059,15095,15145,15217,15216,15224,15238,15237,15261,15284,15271,15271,15221,15148,15111,15029,14954,14848,14723,14564,14395,14199,13991,13769,13537,13271,13008,12722,12430,12131,11852,11542,11280,11032,10793,10554,10295,9995,9673,9347,9063,8823,8619,8450,8299,8157,8071,7978,7920,7857,7805,7701,7565,7385,7233,7111,6989,6886,6821,6752,6701,6660,6645,6633,6613,6605,6622,6613,6454,6167,5738,5132,22.4,22.4,23.1,1568983,0.1,12.9,11.9,5.0,451,-1.00,-1.00,58.6532,-19.329478,0.000538,,,,,121 +SATSLF0720,2024246,22.011670,4.03,0.0564,0.1041,0.0192,0.00,16119,662,1,711,705,708,731,720,714,715,711,730,730,742,749,776,893,1196,1890,3039,4395,5647,6587,7239,7735,8154,8610,9125,9742,10487,11362,12349,13452,14635,15796,16902,17865,18596,19030,19150,18970,18606,18057,17469,16913,16445,16087,15860,15797,15878,16139,16547,17114,17853,18759,19828,21044,22357,23789,25283,26754,28176,29421,30396,31156,31559,31572,31241,30601,29678,28641,27419,26217,25073,24003,23008,22157,21426,20809,20321,19937,19655,19493,19409,19428,19525,19717,19970,20330,20765,21284,21841,22458,23131,23779,24397,24977,25452,25824,26073,26128,26014,25741,25265,24622,23913,23101,22226,21371,20522,19741,19041,18393,17820,17359,16945,16630,16389,16205,16091,16059,16081,16169,16349,16574,16872,17227,17669,18149,18715,19322,19953,20644,21373,22108,22834,23551,24262,24912,25507,26073,26506,26824,27049,27163,27180,27099,26880,26553,26165,25672,25101,24501,23861,23226,22565,21898,21271,20667,20065,19505,19005,18564,18140,17776,17445,17144,16899,16661,16455,16237,16054,15870,15670,15515,15365,15246,15141,15092,15006,14966,14950,14933,14942,14983,15000,15036,15080,15116,15154,15205,15219,15229,15242,15242,15270,15290,15290,15291,15229,15181,15097,15032,14947,14845,14723,14569,14393,14202,13992,13786,13544,13291,13016,12739,12426,12147,11845,11549,11284,11033,10801,10574,10290,10003,9677,9361,9079,8842,8628,8445,8288,8153,8067,7994,7915,7879,7808,7709,7561,7401,7239,7113,6997,6897,6809,6762,6714,6674,6654,6638,6611,6611,6629,6617,6469,6160,5741,5120,22.4,22.5,23.2,1568984,0.1,12.9,12.0,5.0,441,-1.00,-1.00,58.6114,-19.332265,0.000527,,,,,123 +SATSLF0720,2024246,22.011927,4.03,0.0565,0.1045,0.0198,0.00,16101,662,1,719,725,722,716,717,726,741,745,748,752,750,763,794,896,1203,1893,3019,4375,5623,6576,7232,7718,8159,8613,9121,9741,10499,11358,12345,13449,14618,15785,16873,17827,18553,18976,19131,18952,18578,18043,17451,16911,16449,16084,15846,15778,15853,16096,16495,17095,17834,18736,19801,21024,22326,23769,25233,26707,28139,29378,30378,31125,31536,31542,31218,30558,29651,28590,27363,26187,25037,23961,22949,22119,21381,20776,20305,19909,19642,19488,19393,19413,19498,19696,19963,20313,20747,21261,21827,22453,23109,23755,24354,24954,25425,25797,26053,26103,25990,25706,25221,24578,23878,23078,22219,21334,20491,19712,19031,18365,17814,17339,16929,16602,16352,16185,16081,16036,16060,16149,16309,16547,16845,17202,17637,18128,18681,19311,19926,20609,21332,22074,22812,23530,24240,24897,25474,26038,26477,26789,27017,27125,27133,27047,26824,26516,26120,25625,25064,24483,23838,23210,22549,21873,21262,20646,20041,19504,18996,18517,18108,17742,17405,17134,16875,16631,16443,16241,16044,15853,15653,15493,15345,15235,15145,15064,14993,14947,14934,14931,14928,14969,14985,15030,15065,15089,15163,15199,15217,15221,15223,15226,15248,15268,15277,15257,15218,15149,15078,14999,14931,14840,14698,14561,14381,14199,14001,13785,13532,13274,13019,12733,12435,12134,11833,11541,11275,11034,10797,10557,10275,9979,9671,9357,9065,8805,8607,8439,8279,8148,8076,7992,7916,7879,7803,7713,7569,7384,7235,7113,6998,6893,6805,6753,6689,6663,6626,6623,6609,6601,6627,6614,6477,6165,5727,5119,22.4,22.5,23.2,1568985,0.1,12.9,11.9,5.0,447,-1.00,-1.00,58.6317,-19.317076,0.000564,,,,,247 +SATSLF0720,2024246,22.012183,3.97,0.0556,0.1051,0.0197,0.00,16090,662,1,722,718,726,712,731,724,730,725,742,741,750,748,769,883,1197,1889,3018,4393,5642,6577,7249,7717,8155,8613,9129,9755,10485,11349,12318,13429,14600,15769,16873,17829,18548,18997,19122,18944,18569,18042,17437,16878,16416,16074,15836,15769,15861,16098,16491,17083,17813,18715,19763,20999,22306,23755,25223,26706,28114,29365,30357,31098,31497,31485,31166,30531,29610,28567,27339,26161,25013,23954,22938,22099,21368,20771,20301,19908,19629,19466,19366,19396,19477,19671,19940,20277,20717,21248,21806,22423,23096,23732,24345,24926,25394,25763,26020,26086,25978,25685,25205,24576,23861,23066,22200,21314,20473,19709,19017,18349,17773,17333,16916,16599,16346,16185,16078,16046,16050,16141,16324,16537,16840,17192,17629,18104,18688,19285,19913,20601,21320,22065,22794,23505,24197,24870,25468,26027,26464,26777,27016,27098,27123,27031,26812,26483,26093,25607,25045,24456,23828,23184,22529,21848,21227,20634,20034,19470,18989,18512,18119,17745,17417,17116,16869,16625,16429,16214,16030,15838,15653,15478,15345,15229,15141,15061,14997,14948,14920,14921,14915,14951,14976,14997,15047,15079,15132,15184,15207,15197,15219,15229,15243,15273,15271,15257,15219,15147,15080,15018,14921,14831,14689,14545,14378,14177,13969,13767,13527,13255,12999,12726,12429,12117,11827,11547,11281,11029,10789,10547,10276,9975,9643,9355,9075,8827,8637,8446,8299,8164,8062,7968,7927,7860,7793,7720,7566,7381,7227,7088,6992,6885,6821,6753,6705,6669,6643,6634,6621,6601,6623,6611,6455,6148,5737,5125,22.4,22.5,23.2,1568986,0.3,13.0,11.9,5.0,451,-1.00,-1.00,58.6109,-19.289584,0.000578,,,,,164 +SATSLF0720,2024246,22.012437,4.08,0.0572,0.1055,0.0197,0.00,16088,662,1,731,725,729,737,746,726,743,729,743,733,751,745,771,880,1182,1890,3022,4376,5635,6590,7242,7723,8141,8603,9121,9737,10488,11349,12353,13449,14622,15773,16891,17825,18545,18970,19112,18931,18554,18027,17432,16882,16423,16083,15829,15762,15852,16082,16492,17065,17817,18718,19786,21001,22306,23757,25238,26713,28105,29347,30355,31101,31502,31483,31184,30538,29609,28572,27342,26164,25024,23953,22957,22097,21371,20765,20269,19876,19603,19458,19351,19391,19485,19662,19937,20283,20712,21245,21797,22425,23083,23729,24343,24932,25408,25773,26020,26089,25957,25685,25197,24561,23840,23056,22186,21333,20469,19714,19009,18351,17789,17306,16916,16585,16339,16176,16074,16037,16048,16156,16298,16520,16800,17185,17602,18090,18672,19288,19909,20612,21332,22065,22806,23517,24210,24858,25441,26007,26430,26746,27009,27117,27127,27028,26823,26489,26100,25610,25043,24448,23826,23158,22519,21861,21221,20618,20020,19463,18980,18515,18118,17750,17404,17115,16855,16614,16416,16214,16029,15833,15641,15482,15341,15233,15127,15054,14982,14944,14928,14921,14925,14956,14979,15001,15047,15077,15111,15191,15193,15210,15218,15222,15251,15251,15248,15232,15184,15127,15082,15013,14922,14825,14683,14544,14381,14181,13991,13755,13532,13261,13004,12713,12421,12123,11828,11543,11282,11035,10785,10550,10280,9985,9653,9358,9069,8839,8613,8452,8296,8155,8065,7997,7921,7854,7789,7709,7553,7371,7214,7091,6977,6897,6818,6753,6695,6671,6645,6626,6590,6599,6615,6618,6469,6174,5740,5117,22.4,22.6,23.2,1568987,0.1,12.9,12.0,5.0,450,-1.00,-1.00,58.5092,-19.249703,0.000577,,,,,190 +SATSLF0720,2024246,22.012689,4.08,0.0572,0.1065,0.0203,0.00,16046,662,1,721,729,721,741,742,733,737,743,737,739,759,752,790,871,1179,1867,3011,4361,5613,6538,7196,7697,8118,8560,9079,9692,10429,11289,12295,13393,14562,15708,16810,17757,18482,18907,19042,18854,18481,17947,17365,16805,16364,15993,15761,15707,15803,16035,16440,17018,17746,18646,19705,20919,22240,23672,25147,26606,28012,29253,30246,30987,31382,31386,31075,30426,29513,28471,27243,26087,24920,23863,22869,22021,21300,20700,20216,19840,19556,19405,19305,19332,19421,19613,19868,20217,20646,21181,21734,22353,23015,23671,24280,24850,25340,25705,25953,26005,25868,25611,25128,24488,23774,22995,22127,21252,20427,19657,18953,18316,17753,17282,16872,16555,16313,16130,16045,15989,16007,16117,16261,16485,16787,17142,17578,18057,18618,19233,19870,20548,21273,22009,22757,23461,24150,24808,25389,25954,26384,26708,26946,27057,27082,26978,26780,26449,26039,25539,24987,24388,23752,23101,22447,21802,21157,20579,19984,19436,18924,18455,18059,17685,17375,17079,16818,16582,16391,16173,15991,15794,15616,15442,15317,15193,15094,15012,14938,14913,14887,14895,14909,14940,14961,14987,15034,15064,15098,15156,15156,15176,15177,15193,15210,15237,15246,15226,15189,15122,15061,14981,14889,14807,14675,14517,14359,14165,13965,13741,13506,13240,12985,12709,12394,12126,11820,11524,11263,10996,10773,10524,10254,9965,9647,9347,9057,8816,8607,8423,8267,8141,8032,7960,7886,7835,7781,7693,7542,7376,7225,7098,6990,6885,6801,6725,6679,6643,6626,6619,6605,6587,6610,6607,6457,6154,5723,5108,22.5,22.6,23.2,1568988,0.2,12.9,11.9,5.0,448,-1.00,-1.00,58.9419,-19.366076,0.000570,,,,,229 +SATSLF0720,2024246,22.012945,4.20,0.0589,0.1058,0.0203,0.00,16059,662,1,722,717,712,713,705,715,714,723,730,745,742,763,794,882,1194,1878,3010,4373,5609,6572,7217,7707,8131,8588,9113,9719,10477,11346,12341,13422,14590,15745,16837,17784,18515,18937,19079,18896,18546,17996,17421,16853,16400,16040,15816,15741,15836,16065,16464,17061,17797,18693,19746,20973,22281,23705,25181,26660,28069,29312,30318,31045,31438,31435,31112,30469,29552,28508,27291,26109,24966,23886,22899,22057,21347,20723,20256,19857,19585,19432,19338,19344,19453,19649,19888,20244,20664,21187,21757,22381,23044,23689,24299,24896,25373,25737,25976,26027,25911,25633,25165,24525,23808,22996,22147,21271,20432,19669,18965,18317,17762,17297,16873,16565,16314,16153,16041,16003,16036,16116,16275,16500,16789,17149,17585,18080,18646,19255,19889,20567,21284,22016,22748,23470,24160,24817,25405,25965,26398,26721,26963,27060,27088,26996,26772,26455,26056,25546,24987,24395,23763,23127,22485,21810,21184,20579,19975,19448,18950,18479,18072,17702,17384,17096,16828,16595,16385,16183,15988,15796,15607,15443,15305,15181,15094,15037,14953,14917,14897,14902,14908,14935,14945,14983,15014,15048,15101,15145,15177,15170,15200,15202,15232,15244,15237,15223,15181,15117,15061,14981,14900,14803,14681,14525,14355,14177,13952,13740,13501,13236,12958,12687,12382,12097,11805,11522,11260,11013,10777,10529,10273,9965,9637,9330,9048,8797,8589,8411,8268,8130,8041,7969,7901,7840,7777,7689,7547,7363,7218,7089,6969,6875,6792,6729,6670,6644,6614,6597,6611,6585,6607,6610,6455,6141,5719,5105,22.5,22.6,23.2,1568988,0.3,12.9,12.0,5.0,441,-1.00,-1.00,57.8488,-18.940280,0.000550,,,,,209 +SATSLF0720,2024246,22.013201,4.05,0.0567,0.1061,0.0208,0.00,16057,662,1,723,711,725,709,724,724,717,721,734,733,743,733,771,880,1201,1877,3019,4375,5613,6564,7222,7707,8133,8578,9090,9711,10459,11314,12320,13411,14564,15731,16853,17800,18522,18941,19078,18898,18526,17995,17398,16841,16392,16034,15799,15747,15820,16080,16475,17047,17769,18680,19732,20945,22266,23713,25168,26644,28052,29282,30291,31040,31430,31433,31108,30473,29557,28512,27293,26112,24951,23894,22890,22050,21333,20741,20253,19869,19590,19429,19323,19341,19433,19621,19883,20225,20667,21205,21769,22389,23063,23701,24315,24881,25357,25717,25972,26017,25902,25629,25162,24538,23813,23013,22157,21284,20429,19663,18951,18312,17748,17294,16881,16560,16311,16154,16038,16005,16021,16115,16275,16512,16789,17163,17600,18072,18636,19245,19866,20558,21273,22013,22744,23457,24157,24821,25401,25976,26393,26717,26964,27059,27073,26971,26766,26443,26045,25573,25005,24429,23793,23126,22471,21815,21179,20573,19968,19427,18944,18469,18078,17710,17374,17099,16830,16581,16390,16184,15986,15799,15619,15440,15305,15197,15086,15031,14945,14902,14901,14893,14917,14918,14955,14988,15029,15063,15110,15145,15170,15181,15182,15201,15218,15235,15235,15213,15151,15103,15044,14967,14887,14813,14652,14525,14338,14166,13949,13742,13492,13223,12965,12691,12395,12101,11804,11529,11246,11008,10774,10530,10247,9959,9644,9332,9053,8818,8600,8439,8277,8146,8045,7976,7907,7844,7777,7706,7553,7373,7226,7093,6978,6888,6791,6730,6673,6643,6630,6617,6590,6586,6604,6619,6453,6144,5706,5112,22.4,22.6,23.3,1568989,0.0,12.9,12.0,5.0,438,-1.00,-1.00,58.5792,-19.240451,0.000513,,,,,185 +SATSLF0720,2024246,22.013456,3.98,0.0558,0.1061,0.0199,0.00,16055,662,1,720,723,731,727,731,723,727,730,738,736,739,752,779,897,1209,1888,3018,4376,5635,6577,7218,7703,8122,8579,9084,9713,10445,11312,12313,13414,14576,15720,16830,17778,18490,18926,19065,18891,18517,17984,17399,16837,16382,16020,15788,15713,15816,16056,16457,17040,17773,18676,19726,20934,22245,23680,25138,26624,28021,29278,30266,31012,31414,31418,31090,30455,29533,28503,27277,26102,24961,23888,22894,22040,21317,20697,20215,19825,19572,19408,19322,19334,19435,19627,19884,20238,20665,21181,21757,22355,23021,23669,24285,24861,25344,25684,25976,26026,25898,25608,25150,24519,23810,23018,22138,21271,20433,19661,18956,18307,17761,17286,16880,16564,16327,16152,16042,16007,16021,16118,16288,16500,16793,17153,17584,18069,18629,19245,19869,20553,21269,22013,22757,23470,24165,24809,25398,25976,26389,26711,26956,27046,27067,26984,26754,26441,26048,25566,25005,24409,23777,23115,22482,21801,21179,20562,19991,19432,18947,18474,18077,17713,17394,17097,16827,16599,16380,16187,15992,15802,15623,15449,15309,15198,15099,15027,14956,14926,14901,14913,14910,14929,14953,14993,15028,15062,15105,15148,15171,15179,15187,15197,15206,15236,15238,15233,15177,15125,15074,14989,14920,14813,14679,14534,14353,14155,13952,13717,13488,13234,12957,12696,12401,12115,11812,11528,11270,11001,10765,10539,10262,9971,9650,9350,9062,8825,8612,8434,8295,8141,8042,7963,7901,7850,7792,7700,7561,7389,7230,7105,6993,6889,6818,6731,6695,6645,6629,6609,6611,6593,6625,6613,6465,6172,5734,5123,22.5,22.6,23.3,1568990,0.3,12.9,12.0,5.0,448,-1.00,-1.00,58.8794,-19.353752,0.000488,,,,,23 +SATSLF0720,2024246,22.013711,4.16,0.0583,0.1064,0.0204,0.00,16052,662,1,717,713,727,725,729,727,743,741,740,745,749,756,785,894,1204,1894,3025,4376,5620,6565,7213,7706,8132,8577,9094,9703,10435,11315,12304,13402,14572,15730,16830,17780,18498,18905,19044,18871,18505,17965,17385,16825,16378,16011,15799,15720,15797,16040,16439,17021,17771,18657,19726,20942,22241,23685,25149,26622,28026,29256,30250,30997,31416,31393,31084,30445,29527,28480,27242,26077,24937,23863,22884,22039,21303,20710,20228,19830,19563,19411,19312,19337,19426,19628,19874,20239,20657,21175,21730,22341,23019,23675,24290,24869,25341,25713,25977,26017,25905,25612,25152,24509,23800,22994,22133,21274,20417,19659,18960,18309,17749,17279,16882,16579,16312,16147,16048,15989,16021,16097,16268,16485,16778,17149,17588,18068,18632,19229,19875,20540,21267,22010,22741,23448,24145,24804,25402,25949,26378,26691,26939,27042,27074,26976,26755,26433,26052,25558,24993,24402,23779,23124,22480,21821,21185,20577,19991,19423,18949,18478,18069,17719,17388,17093,16834,16588,16384,16180,15986,15783,15595,15434,15307,15193,15110,15033,14961,14903,14903,14899,14912,14937,14939,14981,15031,15053,15097,15168,15179,15190,15195,15208,15214,15238,15234,15227,15179,15108,15058,14989,14900,14807,14682,14506,14357,14176,13964,13738,13499,13241,12979,12705,12395,12107,11792,11527,11268,11013,10766,10531,10283,9962,9647,9327,9045,8819,8602,8443,8273,8145,8063,7981,7910,7859,7797,7706,7570,7376,7229,7096,6985,6888,6806,6743,6693,6648,6634,6625,6601,6593,6619,6609,6461,6160,5730,5117,22.5,22.6,23.4,1568991,0.1,12.9,12.0,5.0,447,-1.00,-1.00,58.3302,-19.116997,0.000559,,,,,242 +SATSLF0720,2024246,22.013965,4.05,0.0568,0.1074,0.0206,0.00,16023,662,1,717,725,721,725,736,723,736,731,738,741,733,747,777,891,1190,1895,3021,4371,5611,6535,7206,7686,8113,8567,9085,9695,10436,11292,12288,13394,14548,15721,16809,17748,18467,18904,19024,18843,18471,17952,17364,16804,16352,15979,15771,15696,15780,16011,16425,17006,17737,18643,19693,20900,22205,23639,25102,26570,27977,29209,30207,30940,31341,31345,31016,30372,29482,28437,27206,26053,24905,23831,22838,22000,21270,20664,20189,19793,19521,19371,19270,19281,19396,19578,19847,20199,20638,21141,21709,22322,22994,23650,24237,24823,25296,25653,25914,25955,25839,25578,25081,24455,23751,22957,22103,21233,20394,19627,18922,18272,17713,17245,16849,16541,16285,16107,16013,15958,15982,16069,16229,16452,16756,17125,17556,18036,18604,19205,19834,20518,21229,21963,22704,23413,24115,24770,25362,25922,26341,26666,26907,27016,27030,26938,26713,26379,25990,25501,24950,24352,23724,23085,22423,21763,21134,20533,19954,19398,18916,18442,18033,17671,17345,17044,16797,16562,16345,16157,15961,15768,15590,15417,15277,15175,15056,14992,14928,14890,14870,14864,14875,14896,14929,14958,14999,15014,15080,15126,15138,15147,15168,15173,15188,15219,15213,15189,15160,15085,15049,14962,14875,14781,14651,14501,14322,14140,13913,13723,13464,13216,12952,12673,12382,12088,11789,11510,11245,11000,10754,10515,10243,9947,9613,9326,9033,8802,8581,8407,8269,8138,8043,7964,7886,7837,7777,7685,7546,7365,7220,7096,6983,6885,6804,6733,6670,6633,6610,6609,6589,6586,6597,6604,6441,6151,5722,5106,22.5,22.7,23.4,1568992,0.3,13.0,11.9,5.0,448,-1.00,-1.00,58.5966,-19.196383,0.000499,,,,,64 +SATSLF0720,2024246,22.014216,4.12,0.0577,0.1081,0.0217,0.00,15988,662,1,715,731,725,741,734,739,747,741,743,737,734,737,765,875,1194,1877,3019,4355,5603,6525,7195,7657,8074,8530,9043,9659,10385,11251,12243,13342,14503,15657,16744,17681,18401,18827,18961,18769,18401,17869,17303,16758,16308,15956,15726,15657,15741,15993,16373,16952,17674,18571,19627,20827,22133,23563,25029,26493,27897,29136,30139,30888,31278,31269,30950,30312,29397,28369,27150,25981,24820,23763,22775,21939,21211,20620,20141,19757,19483,19337,19240,19258,19351,19546,19815,20154,20567,21095,21646,22261,22913,23563,24185,24736,25216,25598,25853,25912,25794,25513,25053,24421,23705,22917,22051,21191,20349,19568,18903,18240,17686,17229,16816,16489,16242,16069,15965,15933,15959,16033,16203,16444,16725,17082,17504,17984,18545,19154,19774,20460,21187,21938,22677,23380,24064,24714,25294,25845,26289,26601,26856,26946,26955,26865,26669,26333,25944,25464,24893,24321,23682,23037,22388,21730,21098,20509,19904,19351,18866,18396,17997,17639,17309,17028,16762,16516,16322,16119,15915,15744,15557,15393,15258,15138,15045,14978,14924,14868,14844,14835,14837,14869,14887,14930,14966,14992,15050,15101,15121,15141,15143,15145,15161,15191,15172,15175,15114,15068,15015,14947,14853,14770,14621,14476,14305,14102,13902,13685,13451,13180,12931,12641,12355,12078,11775,11498,11226,10980,10725,10499,10251,9953,9621,9317,9022,8775,8567,8411,8256,8130,8029,7952,7889,7827,7753,7664,7526,7342,7186,7055,6967,6869,6791,6726,6688,6652,6618,6597,6590,6561,6593,6584,6432,6129,5701,5094,22.5,22.7,23.4,1568993,0.0,12.9,11.9,5.0,449,-1.00,-1.00,58.9637,-19.303658,0.000502,,,,,198 +SATSLF0720,2024246,22.014471,4.07,0.0570,0.1070,0.0211,0.00,16021,662,1,714,726,716,723,725,722,730,709,738,721,734,745,774,887,1191,1886,3024,4381,5626,6550,7206,7689,8104,8556,9077,9698,10427,11290,12277,13385,14554,15706,16804,17764,18464,18896,19009,18859,18474,17949,17367,16808,16343,15977,15766,15682,15767,16020,16441,17012,17739,18650,19705,20893,22195,23633,25095,26579,27985,29212,30213,30964,31351,31366,31057,30400,29478,28437,27207,26044,24881,23824,22822,22002,21248,20656,20187,19809,19529,19376,19285,19302,19397,19577,19856,20197,20617,21145,21713,22323,22983,23633,24247,24825,25289,25664,25917,25978,25861,25565,25111,24481,23764,22969,22101,21220,20387,19620,18932,18277,17710,17251,16843,16531,16290,16109,16002,15961,15981,16076,16236,16461,16764,17122,17538,18031,18611,19194,19832,20506,21232,21970,22698,23403,24108,24766,25342,25898,26315,26635,26892,27000,27013,26925,26718,26382,26007,25508,24935,24347,23713,23072,22421,21764,21132,20518,19938,19403,18909,18443,18039,17671,17345,17054,16794,16551,16352,16142,15959,15768,15570,15417,15273,15161,15057,14986,14905,14868,14858,14868,14864,14906,14919,14961,14981,15031,15068,15117,15130,15149,15147,15173,15185,15215,15213,15194,15149,15095,15035,14965,14882,14781,14642,14490,14326,14133,13909,13700,13465,13210,12952,12672,12373,12088,11793,11499,11231,10987,10752,10517,10251,9946,9616,9318,9036,8788,8573,8407,8257,8129,8014,7943,7881,7827,7753,7682,7529,7365,7219,7085,6968,6877,6778,6716,6658,6628,6607,6598,6592,6592,6589,6603,6434,6138,5719,5093,22.5,22.7,23.4,1568994,0.2,12.9,12.0,5.0,445,-1.00,-1.00,58.7288,-19.256400,0.000563,,,,,28 +SATSDF0720,2024246,22.259139,0.00,0.0000,0.0000,0.0000,0.00,661,0,1,649,635,643,642,637,642,637,647,642,641,653,645,644,635,643,636,636,637,640,637,644,641,675,667,663,679,672,651,671,663,670,661,673,677,669,676,672,679,682,673,669,661,665,664,675,673,675,661,667,672,656,665,657,671,678,670,670,670,663,663,665,664,668,665,659,658,657,673,664,669,671,662,667,663,667,662,673,663,673,661,655,660,659,657,666,671,665,665,647,647,659,650,645,646,653,669,679,678,675,676,678,673,685,672,679,670,673,681,668,667,660,659,649,655,646,653,660,659,647,651,656,649,654,665,657,660,661,659,657,659,667,668,653,663,651,657,646,661,658,659,663,666,665,666,651,671,657,659,665,669,653,659,675,652,662,672,669,660,661,649,655,662,653,656,647,659,671,661,663,649,657,652,651,661,654,663,662,650,659,677,649,651,659,671,666,656,663,659,647,655,659,659,658,662,663,679,672,663,669,663,654,669,658,657,652,654,663,663,658,660,673,661,654,656,652,654,667,666,656,657,661,656,667,667,666,678,665,665,674,666,657,652,660,661,664,665,661,670,667,669,670,669,672,665,652,659,649,663,654,672,675,662,669,668,671,500,0.0,0.0,0.0,1568993,0.4,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,133 +SATSLF0720,2024246,22.259697,4.04,0.0565,0.1020,0.0176,0.00,16176,661,1,716,712,701,718,720,715,715,718,727,725,737,745,776,887,1192,1891,3040,4397,5667,6613,7273,7757,8198,8647,9180,9809,10557,11418,12421,13529,14709,15871,16997,17958,18697,19125,19249,19063,18685,18155,17562,17002,16537,16174,15939,15882,15966,16202,16616,17200,17937,18855,19923,21132,22465,23921,25410,26886,28296,29565,30553,31309,31703,31715,31387,30740,29824,28765,27531,26362,25186,24112,23112,22261,21520,20910,20427,20040,19769,19601,19501,19513,19625,19813,20073,20421,20851,21363,21943,22563,23237,23868,24495,25074,25546,25912,26181,26228,26114,25826,25348,24698,23981,23158,22303,21421,20593,19809,19095,18453,17894,17426,17030,16692,16442,16270,16169,16109,16139,16217,16373,16601,16901,17274,17700,18206,18785,19375,20033,20705,21444,22186,22922,23632,24349,25009,25594,26152,26595,26909,27156,27269,27274,27178,26971,26650,26245,25746,25177,24586,23949,23291,22624,21955,21317,20727,20132,19577,19084,18603,18205,17822,17484,17207,16930,16690,16481,16289,16112,15900,15735,15556,15418,15299,15198,15120,15035,14997,14977,14983,14996,15016,15033,15075,15113,15142,15189,15253,15271,15277,15291,15292,15316,15333,15324,15316,15257,15203,15149,15068,14974,14875,14739,14608,14425,14260,14037,13813,13561,13301,13032,12759,12457,12173,11869,11595,11314,11056,10810,10567,10307,10018,9701,9377,9107,8869,8662,8474,8325,8182,8085,8006,7926,7878,7808,7737,7588,7400,7263,7124,7017,6920,6841,6777,6722,6680,6645,6635,6628,6613,6631,6636,6486,6169,5752,5130,22.4,22.4,22.9,1568995,0.4,13.0,12.0,4.9,566,-1.00,-1.00,58.1341,-19.221471,0.000500,,,,,101 +SATSLF0720,2024246,22.259879,4.05,0.0567,0.1023,0.0177,0.00,16160,661,1,728,731,713,710,717,725,717,726,718,725,735,741,778,887,1193,1898,3045,4419,5670,6610,7271,7749,8179,8637,9160,9790,10537,11401,12407,13521,14709,15866,16992,17945,18672,19101,19232,19046,18688,18144,17554,16997,16533,16168,15922,15873,15938,16199,16609,17173,17921,18830,19910,21136,22449,23890,25380,26861,28288,29533,30530,31280,31673,31685,31336,30711,29801,28736,27516,26331,25157,24091,23093,22238,21495,20881,20402,20023,19739,19581,19485,19495,19590,19804,20053,20402,20818,21352,21923,22528,23206,23837,24475,25044,25509,25888,26141,26206,26089,25803,25328,24676,23956,23146,22275,21406,20569,19798,19086,18425,17857,17387,16969,16649,16405,16246,16141,16107,16117,16205,16373,16594,16891,17272,17684,18171,18740,19342,19992,20674,21410,22150,22882,23595,24313,24968,25557,26121,26546,26881,27121,27226,27233,27144,26925,26599,26216,25713,25149,24548,23905,23270,22624,21945,21315,20709,20121,19560,19063,18592,18173,17801,17467,17175,16916,16667,16471,16269,16085,15877,15713,15541,15399,15290,15182,15109,15027,14989,14973,14969,14967,15010,15029,15065,15111,15129,15194,15228,15248,15246,15257,15273,15292,15298,15307,15308,15268,15202,15147,15074,14979,14873,14730,14573,14408,14226,14017,13800,13569,13301,13051,12754,12453,12173,11873,11568,11298,11049,10816,10580,10301,10007,9686,9369,9092,8845,8631,8453,8297,8174,8065,7993,7940,7885,7819,7723,7581,7408,7256,7122,7009,6915,6835,6765,6715,6677,6667,6649,6624,6629,6635,6619,6483,6176,5755,5132,22.4,22.4,23.0,1568995,0.0,12.9,11.9,5.0,471,-1.00,-1.00,57.9887,-19.143486,0.000497,,,,,218 +SATSLF0720,2024246,22.260135,3.92,0.0549,0.1026,0.0183,0.00,16153,661,1,710,701,709,703,734,716,723,740,733,726,731,732,770,874,1185,1878,3025,4393,5652,6606,7269,7746,8185,8638,9161,9787,10537,11402,12389,13507,14688,15860,16965,17933,18658,19089,19227,19037,18667,18137,17541,16966,16502,16139,15905,15837,15913,16187,16597,17181,17917,18829,19886,21113,22425,23863,25346,26827,28240,29499,30507,31266,31657,31661,31341,30693,29780,28726,27490,26320,25141,24077,23072,22210,21491,20874,20399,20000,19715,19561,19474,19493,19597,19780,20045,20385,20805,21338,21898,22528,23208,23848,24470,25053,25528,25888,26150,26205,26077,25806,25313,24663,23955,23141,22263,21380,20547,19777,19076,18406,17852,17381,16967,16657,16413,16237,16139,16103,16122,16210,16361,16584,16878,17251,17686,18183,18729,19347,19989,20678,21403,22138,22893,23590,24319,24973,25569,26120,26547,26872,27116,27233,27230,27142,26946,26604,26214,25712,25140,24550,23913,23264,22614,21945,21294,20701,20081,19539,19042,18566,18170,17810,17478,17186,16909,16683,16477,16264,16067,15882,15694,15530,15396,15285,15185,15105,15025,14972,14966,14953,14959,14991,15026,15061,15104,15128,15185,15240,15253,15251,15259,15264,15282,15304,15309,15297,15256,15193,15126,15040,14971,14865,14725,14566,14419,14221,14010,13800,13549,13306,13042,12749,12469,12170,11866,11584,11300,11045,10808,10566,10306,10009,9697,9371,9095,8853,8644,8456,8307,8184,8085,7985,7931,7869,7813,7717,7586,7409,7259,7135,7017,6923,6823,6772,6709,6663,6644,6636,6621,6601,6645,6632,6484,6170,5742,5120,22.4,22.4,23.0,1568996,0.2,12.9,11.9,5.0,454,-1.00,-1.00,58.6729,-19.415524,0.000512,,,,,59 +SATSLF0720,2024246,22.260388,4.07,0.0571,0.1033,0.0188,0.00,16132,661,1,700,699,715,716,709,712,729,728,722,719,734,742,771,889,1193,1882,3020,4384,5631,6587,7253,7746,8175,8603,9146,9766,10512,11386,12389,13504,14665,15830,16914,17887,18606,19033,19175,19002,18626,18103,17505,16935,16475,16116,15885,15821,15883,16143,16557,17134,17891,18797,19851,21076,22412,23844,25321,26793,28224,29464,30453,31210,31621,31626,31281,30642,29723,28666,27463,26268,25124,24041,23038,22177,21459,20850,20362,19975,19703,19545,19445,19461,19558,19730,20000,20357,20790,21317,21888,22507,23184,23834,24448,25014,25488,25847,26109,26151,26029,25760,25276,24640,23914,23115,22249,21371,20530,19761,19061,18397,17834,17369,16951,16637,16384,16214,16106,16069,16077,16171,16349,16558,16859,17239,17658,18159,18716,19338,19965,20643,21383,22120,22857,23567,24270,24937,25520,26091,26517,26843,27097,27202,27213,27117,26912,26570,26177,25668,25099,24520,23878,23224,22568,21908,21291,20675,20087,19533,19027,18564,18152,17783,17453,17162,16899,16656,16455,16261,16049,15870,15661,15499,15360,15255,15155,15082,15017,14964,14957,14941,14963,14985,15010,15033,15073,15098,15160,15223,15237,15241,15258,15262,15272,15293,15304,15281,15234,15162,15110,15033,14955,14865,14727,14576,14400,14205,13997,13792,13545,13291,13026,12733,12437,12145,11837,11572,11290,11045,10802,10567,10301,9996,9677,9358,9080,8849,8625,8441,8305,8154,8061,7985,7921,7853,7803,7706,7575,7408,7240,7109,6997,6906,6812,6759,6693,6666,6643,6635,6615,6609,6621,6637,6481,6164,5740,5126,22.4,22.4,23.1,1568997,0.4,12.9,11.9,5.0,452,-1.00,-1.00,58.4623,-19.300418,0.000569,,,,,125 +SATSLF0720,2024246,22.260645,3.92,0.0549,0.1034,0.0188,0.00,16146,661,1,717,714,710,726,725,731,732,730,748,738,740,738,773,880,1184,1889,3028,4399,5661,6610,7255,7760,8176,8641,9160,9781,10528,11396,12398,13501,14669,15832,16953,17911,18638,19080,19219,19037,18656,18119,17533,16963,16491,16133,15905,15833,15915,16160,16568,17156,17895,18814,19878,21108,22416,23861,25337,26833,28229,29488,30489,31237,31643,31645,31316,30672,29761,28704,27453,26295,25120,24040,23053,22208,21473,20851,20371,19989,19702,19546,19441,19464,19563,19763,20030,20381,20831,21339,21901,22525,23178,23835,24437,25029,25509,25861,26125,26178,26052,25771,25303,24659,23942,23139,22254,21376,20547,19784,19076,18411,17858,17378,16971,16650,16388,16227,16129,16085,16109,16206,16363,16600,16884,17240,17677,18173,18736,19342,19978,20668,21392,22139,22881,23585,24293,24950,25522,26093,26537,26848,27085,27200,27217,27121,26893,26583,26172,25680,25125,24548,23896,23240,22587,21937,21294,20694,20089,19523,19041,18568,18156,17800,17470,17175,16913,16666,16481,16269,16074,15874,15697,15515,15367,15260,15162,15089,15002,14979,14970,14969,14992,15025,15033,15069,15098,15127,15163,15207,15219,15246,15252,15255,15285,15304,15299,15287,15250,15181,15110,15035,14964,14861,14737,14578,14404,14209,14002,13788,13562,13297,13033,12737,12442,12155,11856,11561,11303,11049,10807,10580,10320,10013,9689,9374,9105,8850,8659,8465,8315,8169,8073,7992,7918,7875,7819,7726,7576,7401,7243,7120,7003,6909,6837,6773,6715,6676,6647,6631,6615,6605,6630,6622,6493,6180,5750,5128,22.4,22.4,23.1,1568998,0.1,13.0,12.0,5.0,455,-1.00,-1.00,58.6181,-19.380001,0.000578,,,,,50 +SATSLF0720,2024246,22.260901,4.14,0.0580,0.1038,0.0190,0.00,16126,661,1,722,717,722,712,725,713,728,737,733,735,752,749,784,891,1201,1884,3051,4394,5647,6586,7251,7745,8166,8599,9135,9762,10503,11365,12373,13473,14645,15803,16913,17869,18586,19021,19152,18963,18600,18070,17485,16922,16473,16105,15871,15797,15886,16125,16542,17130,17872,18775,19847,21060,22373,23812,25291,26770,28184,29433,30421,31177,31560,31578,31259,30609,29704,28658,27429,26244,25088,24005,23013,22173,21429,20824,20337,19965,19674,19516,19424,19433,19533,19731,19989,20347,20773,21296,21866,22477,23147,23798,24409,24976,25466,25829,26090,26140,26026,25745,25265,24631,23915,23114,22238,21382,20531,19755,19047,18400,17825,17355,16945,16631,16372,16211,16116,16070,16094,16185,16353,16581,16877,17229,17653,18135,18716,19312,19949,20626,21367,22098,22849,23562,24264,24937,25525,26096,26505,26837,27085,27173,27191,27092,26896,26554,26165,25669,25097,24518,23892,23245,22593,21925,21289,20658,20075,19506,19017,18544,18145,17783,17448,17156,16900,16663,16453,16270,16068,15874,15690,15523,15374,15255,15156,15084,15012,14965,14951,14949,14949,14969,15001,15037,15091,15128,15175,15229,15246,15251,15253,15263,15273,15290,15289,15287,15234,15166,15102,15037,14944,14839,14720,14569,14398,14220,13993,13770,13534,13271,13025,12738,12445,12156,11853,11561,11297,11052,10801,10553,10290,9995,9677,9379,9086,8839,8621,8471,8297,8183,8076,7996,7921,7853,7799,7714,7578,7401,7254,7123,7008,6916,6828,6761,6715,6673,6649,6641,6618,6616,6629,6630,6462,6172,5749,5121,22.4,22.4,23.1,1568999,0.3,12.9,12.0,5.0,450,-1.00,-1.00,58.2924,-19.210769,0.000482,,,,,29 +SATSLF0720,2024246,22.261154,4.19,0.0586,0.1036,0.0184,0.00,16128,661,1,729,733,729,733,728,734,735,733,735,737,750,753,779,897,1205,1901,3049,4406,5656,6586,7245,7738,8147,8601,9131,9761,10502,11373,12373,13476,14645,15806,16910,17879,18589,19017,19169,18968,18608,18064,17485,16908,16471,16100,15876,15797,15892,16149,16554,17137,17866,18782,19820,21047,22359,23806,25297,26762,28202,29450,30442,31186,31577,31592,31243,30615,29685,28642,27409,26230,25072,23998,23001,22148,21420,20812,20331,19957,19671,19509,19431,19445,19553,19726,19991,20352,20768,21294,21849,22469,23159,23826,24421,24994,25496,25837,26111,26133,26023,25739,25274,24633,23910,23109,22247,21377,20523,19752,19057,18397,17830,17365,16956,16635,16393,16217,16117,16072,16093,16188,16342,16567,16875,17229,17652,18139,18713,19328,19954,20642,21378,22109,22845,23578,24274,24930,25509,26073,26510,26825,27074,27179,27190,27101,26890,26554,26165,25678,25106,24517,23895,23229,22570,21907,21288,20661,20075,19517,19035,18553,18152,17796,17454,17163,16909,16657,16464,16268,16057,15871,15682,15521,15392,15260,15165,15093,15010,14967,14949,14951,14963,14997,15020,15045,15085,15097,15168,15218,15235,15244,15260,15270,15281,15313,15306,15287,15246,15160,15123,15049,14946,14871,14725,14578,14408,14209,14001,13793,13551,13294,13013,12744,12450,12157,11854,11557,11288,11035,10787,10558,10282,9993,9676,9369,9073,8844,8629,8453,8306,8186,8086,8015,7921,7879,7813,7717,7573,7398,7250,7109,6998,6904,6821,6767,6707,6680,6651,6640,6636,6626,6640,6632,6470,6165,5742,5120,22.4,22.5,23.1,1569000,0.1,13.0,11.9,5.0,442,-1.00,-1.00,57.9654,-19.072395,0.000558,,,,,34 +SATSLF0720,2024246,22.261413,4.07,0.0571,0.1043,0.0185,0.00,16118,661,1,725,726,725,714,725,728,734,741,746,744,730,754,794,883,1191,1890,3030,4375,5645,6587,7248,7724,8149,8615,9121,9748,10493,11367,12361,13457,14646,15802,16905,17860,18576,19010,19148,18964,18588,18053,17457,16906,16453,16090,15862,15796,15865,16113,16533,17105,17852,18759,19831,21039,22357,23795,25273,26760,28170,29429,30405,31155,31541,31563,31232,30601,29669,28631,27419,26217,25073,23989,22987,22139,21411,20809,20321,19950,19669,19502,19402,19426,19524,19712,19975,20340,20765,21281,21853,22457,23131,23781,24387,24970,25454,25803,26065,26126,26012,25734,25253,24610,23895,23124,22229,21346,20505,19738,19026,18382,17819,17341,16944,16631,16377,16209,16096,16071,16093,16167,16323,16563,16861,17230,17653,18135,18685,19289,19939,20626,21354,22101,22837,23557,24269,24930,25526,26077,26516,26834,27072,27189,27181,27085,26858,26539,26139,25642,25089,24495,23866,23220,22561,21897,21269,20661,20069,19513,19028,18550,18156,17773,17436,17154,16885,16649,16437,16244,16042,15864,15675,15517,15368,15258,15159,15087,15001,14974,14950,14955,14949,14980,15005,15033,15070,15111,15161,15214,15219,15246,15245,15253,15275,15281,15291,15281,15235,15174,15118,15033,14938,14844,14709,14549,14392,14199,13999,13785,13537,13282,13019,12725,12440,12144,11849,11561,11281,11047,10810,10578,10305,9988,9667,9371,9081,8829,8621,8456,8289,8163,8069,8000,7907,7867,7803,7727,7577,7410,7240,7115,7008,6909,6813,6765,6698,6657,6656,6649,6622,6622,6641,6626,6475,6179,5741,5123,22.4,22.5,23.1,1569001,0.1,12.9,12.0,5.0,450,-1.00,-1.00,58.6015,-19.326763,0.000546,,,,,114 +SATSLF0720,2024246,22.261667,4.14,0.0580,0.1046,0.0195,0.00,16090,661,1,712,733,727,731,717,718,726,720,717,735,718,733,773,871,1192,1896,3018,4376,5635,6562,7219,7712,8149,8598,9109,9731,10467,11344,12336,13446,14614,15773,16875,17825,18537,18970,19104,18926,18561,18025,17441,16890,16420,16053,15829,15757,15856,16101,16512,17085,17829,18727,19787,21010,22317,23745,25219,26704,28119,29357,30355,31112,31501,31513,31200,30555,29621,28568,27360,26172,25015,23949,22979,22104,21386,20773,20288,19888,19629,19454,19388,19393,19494,19678,19941,20279,20724,21239,21809,22424,23094,23751,24352,24937,25405,25780,26034,26077,25962,25670,25203,24570,23856,23062,22192,21321,20470,19710,19009,18342,17801,17321,16917,16597,16354,16187,16069,16034,16069,16149,16307,16532,16813,17181,17619,18102,18664,19283,19917,20609,21321,22066,22801,23522,24212,24869,25460,26034,26452,26774,27014,27124,27137,27046,26832,26505,26103,25613,25036,24443,23815,23179,22530,21870,21238,20616,20035,19472,18992,18520,18100,17735,17409,17120,16853,16613,16402,16221,16033,15825,15651,15479,15355,15237,15133,15057,14980,14941,14942,14920,14939,14967,14985,15017,15057,15084,15144,15198,15205,15211,15210,15212,15251,15270,15263,15255,15201,15148,15085,15008,14922,14828,14683,14547,14368,14190,13971,13767,13521,13273,12999,12713,12442,12125,11827,11539,11268,11024,10785,10545,10270,9975,9661,9358,9068,8823,8605,8448,8297,8142,8052,7987,7901,7854,7787,7700,7556,7380,7218,7107,6988,6894,6814,6747,6695,6646,6615,6620,6605,6601,6621,6618,6461,6170,5729,5113,22.5,22.5,23.2,1569002,0.1,12.9,11.9,5.0,453,-1.00,-1.00,58.4186,-19.218625,0.000513,,,,,3 +SATSLF0720,2024246,22.261921,4.07,0.0570,0.1051,0.0199,0.00,16081,661,1,709,706,710,721,730,721,732,732,733,735,732,745,773,889,1184,1874,3014,4378,5610,6565,7205,7712,8139,8585,9105,9722,10485,11345,12324,13427,14594,15757,16858,17805,18519,18970,19112,18906,18536,18008,17422,16861,16401,16059,15842,15758,15836,16080,16506,17064,17814,18713,19778,20985,22298,23736,25192,26669,28097,29330,30342,31067,31473,31477,31153,30514,29600,28572,27333,26171,25005,23927,22925,22087,21344,20739,20261,19889,19616,19454,19365,19382,19477,19668,19942,20281,20718,21227,21789,22404,23076,23725,24341,24917,25401,25766,26024,26073,25947,25681,25197,24562,23844,23038,22187,21305,20463,19706,18999,18347,17784,17314,16906,16582,16339,16169,16077,16026,16042,16135,16309,16518,16831,17202,17621,18097,18674,19282,19924,20593,21316,22057,22785,23510,24197,24858,25448,26014,26437,26768,27012,27109,27114,27030,26801,26491,26096,25607,25053,24454,23829,23180,22521,21870,21226,20627,20021,19464,18966,18512,18086,17734,17408,17122,16860,16627,16405,16203,16021,15821,15641,15469,15341,15225,15118,15054,14972,14935,14921,14914,14923,14938,14973,15012,15061,15074,15130,15179,15198,15220,15214,15227,15242,15252,15255,15257,15190,15131,15073,15001,14916,14818,14674,14548,14368,14178,13964,13745,13527,13251,12983,12695,12404,12115,11810,11519,11263,11015,10786,10555,10284,9985,9658,9357,9069,8821,8606,8432,8281,8144,8050,7979,7931,7860,7797,7703,7557,7377,7224,7093,6992,6878,6815,6748,6689,6658,6645,6617,6604,6597,6616,6606,6465,6160,5716,5101,22.5,22.5,23.2,1569003,0.1,12.9,12.0,5.0,441,-1.00,-1.00,58.6234,-19.288525,0.000474,,,,,188 +SATSLF0720,2024246,22.262177,4.06,0.0569,0.1057,0.0206,0.00,16069,661,1,712,723,713,716,731,721,723,727,724,730,746,753,791,898,1189,1887,3032,4377,5602,6559,7217,7713,8145,8590,9112,9727,10459,11323,12317,13421,14592,15741,16844,17805,18522,18944,19079,18905,18538,18003,17415,16870,16405,16050,15803,15749,15829,16082,16485,17061,17797,18695,19748,20961,22279,23713,25182,26660,28061,29314,30319,31065,31450,31461,31150,30490,29581,28544,27317,26141,24986,23901,22919,22065,21346,20718,20263,19886,19598,19451,19341,19368,19463,19641,19923,20261,20693,21211,21761,22390,23050,23699,24330,24894,25365,25733,26008,26045,25923,25643,25169,24547,23812,23043,22172,21292,20462,19690,18992,18333,17766,17296,16894,16570,16318,16151,16055,16021,16037,16135,16288,16501,16782,17158,17592,18085,18644,19247,19888,20573,21298,22036,22773,23501,24187,24833,25435,25994,26418,26747,26974,27086,27106,26996,26788,26449,26051,25596,25005,24433,23795,23151,22513,21841,21216,20596,19998,19449,18950,18487,18075,17720,17392,17099,16827,16598,16393,16192,15997,15821,15644,15468,15329,15208,15097,15035,14953,14915,14912,14887,14899,14935,14969,14989,15034,15065,15130,15185,15194,15201,15201,15196,15213,15227,15239,15224,15173,15115,15049,14992,14915,14810,14681,14521,14345,14165,13965,13749,13512,13242,12999,12704,12389,12102,11799,11538,11258,11015,10788,10541,10269,9976,9654,9346,9067,8820,8601,8438,8277,8126,8039,7961,7895,7848,7775,7693,7547,7375,7229,7108,7001,6901,6821,6749,6676,6647,6625,6613,6603,6593,6624,6600,6460,6154,5723,5119,22.4,22.6,23.2,1569004,0.2,12.9,11.9,5.0,449,-1.00,-1.00,58.6515,-19.286957,0.000465,,,,,14 +SATSLF0720,2024246,22.262432,4.00,0.0561,0.1051,0.0199,0.00,16079,661,1,730,722,711,727,712,716,722,730,727,731,752,755,784,888,1189,1894,3022,4382,5629,6570,7229,7714,8134,8586,9099,9726,10477,11340,12328,13444,14605,15755,16860,17805,18519,18967,19098,18919,18547,18013,17442,16872,16404,16055,15813,15759,15825,16080,16477,17072,17807,18696,19766,20974,22291,23733,25209,26673,28094,29322,30322,31067,31451,31450,31146,30500,29586,28545,27328,26154,24996,23914,22924,22084,21347,20726,20264,19875,19594,19451,19365,19372,19469,19669,19920,20281,20709,21225,21784,22402,23082,23705,24329,24904,25385,25746,26011,26046,25943,25664,25185,24553,23834,23042,22181,21297,20468,19693,18981,18325,17781,17297,16891,16581,16347,16166,16067,16018,16045,16132,16296,16533,16830,17174,17622,18094,18659,19262,19893,20573,21294,22049,22794,23498,24221,24858,25451,26012,26428,26745,26993,27085,27109,27029,26806,26465,26081,25583,25021,24433,23805,23154,22509,21845,21210,20619,20029,19485,18977,18508,18100,17718,17408,17115,16845,16622,16413,16211,16009,15825,15644,15476,15341,15239,15130,15061,14973,14930,14914,14908,14914,14944,14980,15005,15056,15072,15123,15177,15184,15197,15218,15217,15236,15258,15265,15253,15205,15141,15073,15008,14925,14838,14692,14549,14369,14180,13968,13762,13533,13260,12993,12714,12411,12118,11830,11547,11278,11031,10793,10554,10285,9986,9665,9345,9062,8821,8599,8427,8291,8177,8070,8000,7915,7851,7797,7701,7543,7371,7217,7093,6981,6888,6811,6747,6677,6639,6630,6626,6612,6585,6625,6613,6461,6164,5741,5123,22.5,22.6,23.2,1569005,0.2,12.9,12.0,5.0,450,-1.00,-1.00,58.6512,-19.291773,0.000510,,,,,153 +SATSLF0720,2024246,22.262684,4.20,0.0588,0.1061,0.0206,0.00,16050,661,1,731,724,721,721,729,736,735,747,753,741,737,747,777,876,1189,1869,3012,4387,5625,6564,7237,7713,8117,8559,9081,9696,10439,11292,12291,13405,14573,15718,16819,17782,18485,18928,19037,18875,18489,17964,17383,16829,16361,16001,15782,15723,15813,16050,16457,17041,17782,18670,19728,20945,22244,23699,25146,26621,28029,29265,30256,31004,31400,31403,31092,30440,29541,28480,27265,26098,24952,23884,22880,22026,21303,20705,20225,19854,19565,19409,19325,19324,19435,19625,19879,20211,20661,21178,21749,22362,23021,23667,24290,24857,25334,25686,25952,26009,25892,25613,25140,24513,23797,22997,22129,21281,20433,19661,18948,18302,17750,17275,16875,16551,16300,16139,16034,16000,16016,16103,16278,16493,16769,17171,17586,18065,18629,19237,19883,20570,21282,22006,22746,23456,24160,24800,25395,25949,26372,26704,26949,27054,27072,26965,26762,26445,26029,25542,24973,24407,23760,23133,22481,21818,21189,20580,19988,19438,18949,18473,18074,17723,17380,17083,16829,16581,16375,16172,15990,15784,15609,15434,15297,15187,15104,15018,14947,14914,14893,14896,14912,14925,14936,14985,15027,15052,15093,15165,15169,15177,15192,15205,15225,15233,15235,15233,15169,15104,15051,14986,14888,14792,14665,14517,14345,14162,13944,13730,13492,13234,12962,12682,12392,12105,11806,11524,11241,11000,10759,10526,10254,9963,9643,9324,9047,8816,8605,8419,8263,8139,8033,7963,7899,7857,7789,7688,7552,7384,7219,7095,6993,6876,6795,6736,6674,6651,6629,6628,6605,6607,6605,6597,6474,6146,5731,5118,22.5,22.6,23.2,1569006,0.0,13.0,12.0,5.0,447,-1.00,-1.00,58.3067,-19.113465,0.000510,,,,,50 +SATSLF0720,2024246,22.262940,4.10,0.0574,0.1059,0.0197,0.00,16065,661,1,715,727,722,727,729,729,741,737,739,741,741,753,769,883,1184,1879,3024,4381,5629,6563,7229,7702,8129,8595,9095,9721,10455,11317,12298,13407,14574,15749,16853,17802,18533,18938,19080,18890,18509,17979,17408,16833,16384,16032,15804,15745,15830,16080,16477,17052,17776,18678,19749,20942,22256,23708,25163,26634,28049,29288,30305,31048,31451,31443,31126,30485,29570,28513,27287,26121,24951,23895,22894,22058,21319,20715,20242,19861,19592,19417,19333,19340,19444,19635,19885,20245,20689,21210,21778,22373,23048,23700,24308,24876,25351,25712,25986,26043,25930,25637,25175,24533,23831,23013,22161,21293,20437,19674,18970,18314,17786,17290,16875,16570,16330,16173,16061,16007,16039,16131,16289,16512,16805,17160,17593,18084,18648,19272,19889,20569,21298,22021,22763,23477,24164,24827,25409,25965,26406,26734,26983,27065,27091,27003,26784,26461,26074,25581,25006,24416,23785,23126,22470,21829,21193,20586,20007,19462,18965,18500,18081,17717,17404,17105,16833,16592,16396,16188,15998,15796,15624,15444,15323,15204,15099,15046,14965,14923,14919,14898,14915,14945,14968,15001,15037,15069,15125,15179,15187,15193,15209,15213,15231,15259,15257,15237,15195,15133,15081,14997,14914,14808,14669,14528,14362,14173,13958,13760,13519,13257,12989,12714,12408,12120,11825,11540,11261,11025,10774,10539,10275,9970,9649,9346,9065,8806,8611,8429,8286,8161,8054,7977,7901,7848,7776,7678,7547,7378,7227,7105,6997,6893,6812,6756,6697,6645,6643,6634,6597,6587,6606,6604,6459,6165,5725,5110,22.6,22.6,23.2,1569006,0.1,12.9,12.0,5.0,449,-1.00,-1.00,58.6019,-19.254762,0.000513,,,,,252 +SATSLF0720,2024246,22.263194,4.03,0.0564,0.1071,0.0212,0.00,16025,661,1,700,710,706,716,714,736,721,727,752,742,755,758,775,879,1184,1881,3009,4358,5600,6539,7195,7684,8114,8557,9068,9685,10441,11284,12271,13374,14561,15706,16801,17740,18453,18889,19003,18843,18477,17933,17342,16787,16335,15981,15760,15690,15767,16019,16427,16996,17750,18625,19691,20880,22187,23623,25082,26571,27981,29205,30218,30963,31350,31369,31041,30396,29480,28452,27213,26037,24896,23836,22840,21987,21267,20672,20185,19802,19529,19373,19280,19298,19399,19602,19845,20193,20635,21146,21707,22329,23009,23621,24232,24808,25285,25645,25908,25956,25848,25575,25099,24458,23757,22961,22096,21242,20409,19633,18948,18289,17721,17267,16845,16525,16279,16099,16000,15963,15987,16073,16231,16467,16763,17146,17561,18040,18605,19206,19833,20496,21239,21981,22717,23433,24133,24800,25360,25932,26343,26672,26918,27018,27027,26944,26706,26391,25993,25518,24955,24357,23750,23096,22441,21777,21147,20547,19953,19402,18922,18449,18040,17678,17339,17054,16794,16555,16358,16161,15978,15772,15599,15434,15281,15171,15072,15015,14936,14885,14874,14858,14885,14905,14933,14974,15005,15028,15071,15130,15136,15147,15173,15165,15193,15218,15211,15205,15154,15096,15031,14967,14874,14787,14661,14505,14339,14140,13940,13713,13475,13213,12948,12668,12375,12090,11801,11508,11244,10997,10756,10522,10241,9954,9634,9319,9034,8801,8594,8418,8274,8133,8052,7964,7897,7832,7780,7693,7545,7367,7219,7092,6965,6871,6789,6717,6663,6632,6617,6606,6584,6587,6613,6602,6447,6146,5721,5102,22.5,22.6,23.3,1569007,0.2,12.9,12.0,5.0,445,-1.00,-1.00,59.1229,-19.419557,0.000549,,,,,25 +SATSLF0720,2024246,22.263446,4.13,0.0579,0.1077,0.0216,0.00,16003,661,1,713,716,711,727,722,735,730,737,733,741,735,739,780,890,1191,1878,2988,4351,5592,6522,7179,7673,8101,8529,9030,9662,10403,11264,12241,13337,14497,15652,16747,17688,18410,18851,18969,18781,18411,17883,17310,16768,16326,15969,15728,15683,15742,15989,16379,16952,17689,18588,19658,20858,22167,23605,25064,26536,27924,29171,30141,30874,31280,31298,30981,30341,29437,28385,27182,26014,24862,23801,22810,21978,21234,20636,20160,19777,19498,19342,19253,19259,19368,19556,19832,20174,20618,21114,21677,22285,22948,23611,24219,24791,25281,25620,25889,25949,25841,25552,25069,24434,23713,22921,22071,21203,20371,19612,18906,18256,17694,17219,16818,16504,16263,16090,15994,15943,15963,16053,16217,16443,16733,17097,17535,17998,18563,19177,19790,20484,21204,21949,22685,23403,24098,24757,25334,25902,26329,26644,26881,26986,26993,26906,26689,26369,25974,25493,24937,24341,23722,23074,22406,21745,21132,20529,19937,19380,18887,18423,18014,17664,17345,17047,16788,16544,16346,16141,15966,15776,15577,15415,15273,15166,15064,14982,14908,14867,14852,14851,14867,14886,14920,14944,14989,15013,15065,15113,15138,15152,15163,15168,15178,15209,15204,15191,15130,15079,15018,14950,14876,14773,14634,14499,14330,14128,13921,13713,13477,13214,12948,12667,12354,12063,11779,11486,11225,10983,10745,10507,10254,9955,9637,9330,9042,8804,8577,8407,8253,8114,8022,7936,7863,7831,7769,7682,7545,7364,7207,7079,6957,6849,6771,6718,6674,6633,6617,6609,6594,6571,6599,6584,6433,6131,5703,5093,22.5,22.6,23.3,1569008,0.2,12.9,11.9,5.0,449,-1.00,-1.00,58.9927,-19.333712,0.000523,,,,,173 +SATSLF0720,2024246,22.263702,4.24,0.0595,0.1074,0.0210,0.00,16020,661,1,713,719,717,720,727,732,736,724,737,735,732,736,777,891,1199,1884,3027,4354,5623,6552,7201,7678,8087,8554,9073,9693,10422,11287,12283,13385,14557,15700,16795,17730,18442,18877,18988,18826,18453,17929,17346,16793,16351,15993,15771,15691,15770,16003,16408,16996,17742,18647,19700,20893,22204,23625,25111,26577,27984,29216,30208,30965,31345,31338,31013,30384,29488,28434,27207,26049,24893,23843,22845,21985,21258,20667,20196,19801,19517,19373,19268,19290,19396,19573,19855,20185,20610,21130,21707,22317,22986,23624,24226,24804,25292,25652,25902,25953,25844,25570,25093,24460,23737,22971,22106,21240,20388,19623,18925,18277,17717,17259,16854,16529,16275,16101,15998,15953,15986,16073,16245,16473,16760,17133,17554,18037,18597,19204,19837,20501,21226,21973,22700,23408,24105,24761,25338,25925,26325,26656,26889,26990,26997,26906,26695,26385,26009,25509,24957,24357,23737,23081,22424,21765,21131,20533,19954,19387,18916,18445,18052,17668,17339,17056,16786,16552,16349,16141,15951,15771,15601,15429,15273,15167,15070,14989,14918,14868,14861,14861,14876,14894,14929,14956,14997,15016,15072,15120,15133,15154,15172,15186,15201,15207,15224,15201,15150,15077,15035,14957,14865,14777,14639,14491,14329,14136,13913,13705,13460,13196,12934,12658,12373,12081,11778,11503,11238,10987,10756,10525,10261,9962,9641,9325,9045,8795,8590,8416,8266,8131,8034,7953,7889,7836,7778,7694,7538,7353,7197,7079,6960,6859,6795,6722,6673,6633,6610,6596,6587,6585,6593,6603,6450,6148,5721,5105,22.5,22.7,23.3,1569009,0.0,12.9,12.0,5.0,448,-1.00,-1.00,58.3446,-19.094521,0.000527,,,,,208 +SATSLF0720,2024246,22.263956,4.08,0.0572,0.1061,0.0210,0.00,16050,661,1,724,734,722,737,729,752,737,745,740,756,753,745,791,902,1214,1902,3031,4384,5633,6562,7218,7700,8126,8557,9083,9698,10445,11303,12297,13409,14578,15738,16841,17779,18493,18929,19061,18880,18488,17965,17378,16833,16377,16003,15791,15706,15795,16044,16443,17019,17767,18651,19728,20938,22247,23687,25146,26624,28037,29277,30281,31014,31405,31393,31067,30422,29509,28474,27252,26081,24930,23869,22875,22024,21313,20708,20234,19846,19557,19405,19322,19317,19436,19620,19890,20222,20657,21172,21745,22361,23021,23676,24290,24859,25347,25713,25954,26007,25895,25614,25144,24514,23805,22997,22135,21265,20406,19655,18946,18310,17746,17291,16873,16554,16300,16148,16040,15997,16010,16110,16272,16493,16790,17158,17589,18080,18645,19241,19863,20549,21262,22000,22722,23441,24141,24819,25393,25938,26384,26688,26937,27049,27054,26986,26764,26435,26037,25541,24981,24389,23746,23117,22469,21802,21173,20566,19981,19437,18941,18462,18077,17694,17380,17086,16826,16576,16391,16172,15987,15788,15613,15441,15303,15176,15082,15008,14933,14899,14906,14912,14907,14933,14957,14989,15016,15053,15085,15142,15163,15175,15205,15201,15216,15246,15243,15236,15165,15120,15037,14973,14896,14800,14673,14527,14353,14160,13949,13726,13499,13226,12962,12693,12402,12110,11816,11527,11264,11003,10780,10540,10273,9973,9641,9351,9053,8820,8617,8432,8283,8152,8045,7971,7889,7847,7782,7703,7568,7386,7239,7104,6985,6886,6813,6761,6685,6651,6623,6611,6588,6592,6608,6605,6468,6153,5721,5131,22.5,22.7,23.4,1569010,0.3,12.9,11.9,5.0,446,-1.00,-1.00,58.5642,-19.214830,0.000635,,,,,115 +SATSLF0720,2024246,22.264207,4.13,0.0578,0.1070,0.0211,0.00,16029,661,1,710,723,722,723,740,725,741,728,747,743,752,750,789,905,1202,1898,3019,4375,5613,6549,7205,7692,8107,8569,9093,9702,10440,11301,12284,13397,14557,15713,16798,17741,18455,18894,19013,18850,18465,17942,17357,16815,16337,15991,15766,15700,15771,16011,16426,17003,17740,18634,19701,20904,22210,23643,25089,26581,27987,29234,30213,30952,31352,31340,31021,30394,29485,28418,27218,26044,24902,23841,22856,22013,21265,20674,20190,19815,19533,19387,19286,19294,19401,19592,19840,20191,20643,21161,21714,22331,22996,23640,24234,24821,25284,25648,25920,25963,25851,25585,25108,24475,23757,22960,22103,21244,20410,19629,18935,18288,17745,17267,16855,16550,16293,16119,16020,15965,15984,16088,16249,16475,16780,17135,17555,18035,18611,19210,19831,20525,21249,21979,22709,23413,24117,24776,25345,25928,26337,26672,26909,27019,27029,26944,26721,26396,26000,25497,24955,24362,23726,23093,22449,21784,21166,20549,19957,19409,18920,18437,18044,17677,17367,17064,16793,16564,16368,16160,15956,15776,15597,15429,15290,15158,15056,14976,14912,14871,14874,14866,14888,14914,14932,14979,15019,15040,15095,15143,15165,15165,15156,15175,15192,15214,15213,15203,15150,15113,15033,14969,14893,14786,14653,14509,14329,14139,13943,13717,13483,13220,12960,12674,12384,12085,11795,11515,11245,11003,10764,10520,10260,9963,9638,9325,9041,8798,8596,8413,8275,8141,8041,7956,7888,7840,7779,7700,7545,7371,7213,7085,6973,6878,6785,6742,6693,6658,6633,6623,6595,6598,6609,6613,6469,6148,5728,5106,22.5,22.7,23.4,1569011,0.1,12.9,11.9,5.0,446,-1.00,-1.00,58.4724,-19.148125,0.000540,,,,,94 +SATSLF0720,2024246,22.264463,4.19,0.0586,0.1080,0.0216,0.00,15998,661,1,709,715,715,727,727,731,739,739,737,743,751,771,794,901,1195,1875,3019,4365,5609,6539,7197,7687,8104,8544,9059,9672,10408,11255,12251,13342,14529,15653,16776,17706,18428,18853,18981,18797,18429,17898,17315,16772,16312,15949,15729,15657,15746,15988,16384,16972,17711,18618,19664,20874,22177,23600,25053,26516,27938,29169,30144,30894,31290,31289,30971,30338,29421,28389,27161,25996,24855,23781,22802,21947,21231,20624,20161,19770,19488,19337,19240,19265,19368,19562,19817,20164,20599,21122,21674,22275,22944,23581,24198,24773,25250,25611,25897,25925,25815,25544,25061,24428,23716,22920,22065,21197,20350,19589,18901,18247,17706,17233,16843,16522,16255,16091,15998,15947,15960,16055,16213,16458,16740,17093,17529,18001,18572,19161,19778,20475,21182,21932,22669,23381,24078,24725,25305,25872,26297,26606,26848,26957,26974,26880,26665,26359,25948,25438,24900,24320,23689,23045,22396,21733,21112,20504,19920,19373,18868,18427,17997,17634,17312,17025,16763,16526,16317,16130,15941,15749,15566,15413,15248,15150,15054,14967,14906,14866,14853,14839,14851,14876,14890,14917,14975,15014,15057,15118,15140,15141,15154,15149,15175,15194,15195,15174,15115,15067,15016,14942,14857,14767,14637,14473,14299,14097,13899,13675,13440,13179,12922,12653,12365,12082,11789,11494,11236,10977,10757,10506,10231,9936,9624,9296,9021,8773,8578,8405,8249,8133,8021,7955,7890,7835,7747,7667,7532,7344,7191,7079,6958,6864,6781,6743,6677,6635,6593,6601,6590,6578,6609,6585,6440,6141,5719,5094,22.5,22.7,23.4,1569012,0.2,12.9,12.0,5.0,447,-1.00,-1.00,58.5433,-19.144479,0.000541,,,,,126 +SATSDF0720,2024246,22.509139,0.00,0.0000,0.0000,0.0000,0.00,663,0,1,648,646,654,643,640,639,639,648,637,646,634,637,632,633,641,643,648,637,647,651,651,661,661,674,673,663,658,656,652,666,666,660,664,663,667,679,674,673,679,680,672,679,666,667,669,674,669,665,669,678,677,669,669,668,666,669,679,672,674,681,666,661,663,654,653,657,661,655,662,656,674,661,675,667,675,689,680,668,662,653,653,645,667,654,674,668,672,667,661,661,669,665,649,667,662,666,670,657,666,677,668,660,667,668,669,675,661,664,657,672,660,673,673,669,669,674,676,667,663,659,665,667,661,655,663,671,668,657,663,669,649,647,642,657,651,656,657,665,671,669,669,651,663,667,666,653,659,661,657,650,660,660,663,660,656,646,653,660,662,660,672,663,665,671,661,661,657,653,671,660,657,663,661,663,659,657,657,665,679,659,663,668,662,666,663,670,672,672,661,667,676,661,653,671,661,659,661,658,660,667,675,666,669,677,667,678,661,661,666,665,662,663,659,670,657,647,666,657,668,669,665,661,669,669,674,677,670,658,671,663,658,663,666,665,664,661,661,667,669,669,661,675,669,663,669,657,666,661,658,653,663,663,674,683,664,492,0.0,0.0,0.0,1569011,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,87 +SATSLF0720,2024246,22.509697,6.09,0.0854,0.1193,0.0260,0.00,15630,663,1,723,721,723,718,724,715,731,730,746,746,740,756,777,877,1163,1807,2808,4006,5127,5992,6597,7078,7475,7902,8407,8990,9703,10508,11452,12488,13602,14681,15696,16602,17276,17689,17837,17697,17377,16901,16377,15885,15488,15161,14977,14931,15035,15281,15691,16251,16969,17856,18892,20072,21330,22713,24144,25577,26936,28145,29101,29839,30227,30229,29932,29324,28469,27456,26313,25180,24103,23077,22129,21329,20642,20077,19617,19267,18989,18854,18765,18787,18894,19093,19364,19703,20123,20640,21211,21794,22463,23085,23675,24251,24708,25059,25307,25363,25233,24953,24499,23878,23185,22418,21562,20727,19901,19165,18488,17866,17338,16871,16491,16185,15943,15799,15700,15655,15683,15773,15952,16164,16457,16815,17247,17717,18283,18882,19507,20194,20909,21649,22374,23069,23768,24407,24977,25545,25954,26264,26498,26598,26613,26523,26292,26000,25619,25126,24580,24011,23376,22744,22101,21462,20837,20245,19653,19115,18626,18173,17765,17409,17101,16820,16572,16345,16138,15936,15749,15563,15385,15235,15101,15002,14889,14833,14748,14717,14688,14690,14689,14721,14741,14767,14831,14860,14909,14970,14986,14992,14989,14988,15015,15024,15027,15016,14977,14938,14873,14791,14706,14611,14467,14320,14157,13979,13772,13564,13332,13067,12809,12531,12241,11946,11641,11364,11090,10851,10615,10384,10122,9833,9521,9208,8935,8702,8477,8315,8164,8024,7949,7864,7785,7749,7677,7605,7460,7280,7149,7001,6907,6805,6737,6669,6613,6560,6541,6535,6523,6517,6531,6519,6363,6077,5637,5031,22.4,22.4,22.9,1569013,0.2,13.0,12.0,5.0,567,-1.00,-1.00,65.0945,-21.247171,0.000678,,,,,32 +SATSLF0720,2024246,22.509879,6.03,0.0845,0.1196,0.0268,0.00,15610,663,1,705,709,713,712,721,717,724,725,727,743,737,741,776,873,1157,1792,2800,4009,5128,5980,6599,7065,7465,7909,8402,9000,9706,10522,11464,12491,13581,14682,15697,16598,17270,17695,17827,17681,17349,16884,16359,15874,15466,15156,14949,14900,14998,15266,15669,16238,16950,17847,18857,20043,21309,22709,24122,25549,26914,28115,29077,29786,30184,30190,29882,29282,28425,27426,26269,25141,24054,23042,22085,21299,20605,20044,19588,19227,18984,18829,18755,18766,18880,19070,19325,19673,20094,20609,21169,21776,22429,23052,23672,24229,24690,25029,25280,25340,25205,24919,24477,23844,23156,22373,21539,20707,19895,19156,18477,17835,17292,16851,16464,16167,15922,15767,15678,15633,15649,15747,15922,16133,16437,16801,17221,17704,18257,18854,19482,20149,20866,21591,22324,23032,23717,24369,24955,25505,25920,26234,26469,26576,26578,26487,26283,25960,25600,25114,24529,23954,23339,22700,22071,21429,20810,20212,19651,19098,18610,18152,17752,17398,17088,16820,16553,16333,16125,15917,15730,15535,15374,15216,15075,14967,14869,14794,14705,14681,14649,14664,14675,14707,14729,14770,14805,14829,14877,14946,14941,14968,14981,14980,14989,15023,15034,15012,14967,14910,14848,14778,14690,14605,14456,14328,14149,13950,13734,13538,13305,13056,12785,12502,12228,11925,11635,11358,11090,10850,10601,10379,10121,9818,9512,9193,8933,8684,8462,8309,8153,8027,7922,7857,7785,7738,7668,7584,7429,7268,7109,6979,6879,6785,6707,6649,6602,6564,6538,6529,6520,6510,6519,6519,6361,6057,5641,5025,22.4,22.4,23.0,1569013,0.1,13.0,11.9,5.0,468,-1.00,-1.00,65.2072,-21.269416,0.000793,,,,,251 +SATSLF0720,2024246,22.510135,6.12,0.0858,0.1198,0.0267,0.00,15615,663,1,711,719,714,718,723,713,731,712,719,721,731,737,779,891,1169,1801,2824,4017,5135,5991,6604,7069,7488,7908,8400,8993,9708,10513,11463,12497,13607,14691,15721,16616,17285,17701,17846,17687,17353,16881,16368,15873,15454,15158,14955,14926,15009,15275,15665,16238,16953,17857,18881,20051,21329,22728,24133,25557,26928,28115,29067,29793,30183,30190,29874,29269,28416,27422,26266,25158,24056,23050,22103,21305,20624,20048,19602,19232,18976,18822,18745,18772,18871,19070,19346,19680,20107,20610,21147,21757,22422,23069,23661,24218,24681,25040,25292,25337,25216,24944,24482,23850,23169,22403,21554,20728,19898,19153,18460,17844,17301,16855,16469,16176,15929,15778,15669,15635,15657,15756,15931,16161,16453,16817,17248,17713,18275,18857,19491,20167,20889,21610,22338,23050,23724,24354,24935,25488,25909,26229,26493,26589,26594,26508,26277,25963,25570,25095,24539,23971,23333,22722,22081,21421,20807,20216,19636,19098,18618,18152,17749,17407,17083,16821,16560,16330,16128,15936,15733,15549,15359,15207,15069,14960,14865,14785,14733,14689,14668,14666,14682,14711,14749,14768,14810,14842,14896,14938,14959,14958,14971,14985,15002,15020,15023,15024,14960,14915,14850,14793,14686,14595,14450,14314,14147,13961,13761,13555,13310,13053,12791,12518,12221,11940,11640,11366,11103,10854,10610,10379,10118,9819,9516,9218,8928,8702,8485,8321,8158,8021,7922,7861,7781,7736,7681,7597,7461,7282,7125,6996,6890,6792,6710,6657,6614,6555,6547,6544,6521,6534,6521,6525,6361,6082,5657,5025,22.4,22.4,23.0,1569014,0.2,13.0,12.0,5.0,446,-1.00,-1.00,64.6682,-21.046765,0.000824,,,,,119 +SATSLF0720,2024246,22.510391,5.93,0.0830,0.1203,0.0271,0.00,15591,663,1,721,702,711,716,728,737,747,743,747,761,742,755,767,887,1161,1787,2799,4009,5125,5975,6586,7050,7461,7893,8394,8986,9685,10502,11432,12458,13558,14631,15659,16548,17223,17661,17810,17638,17331,16865,16332,15847,15437,15125,14942,14875,14976,15241,15624,16195,16913,17794,18837,20004,21273,22665,24073,25507,26867,28061,29018,29750,30123,30136,29826,29233,28376,27377,26210,25110,24022,23013,22065,21258,20583,20018,19557,19202,18925,18798,18724,18722,18851,19045,19293,19645,20069,20573,21126,21737,22380,23012,23613,24182,24642,25000,25248,25299,25165,24900,24433,23821,23123,22353,21506,20679,19877,19125,18446,17813,17279,16822,16451,16146,15893,15744,15649,15613,15652,15740,15909,16121,16409,16785,17197,17667,18245,18825,19478,20137,20857,21577,22317,23005,23698,24330,24907,25477,25896,26205,26442,26537,26542,26455,26241,25912,25527,25041,24501,23936,23317,22677,22044,21413,20781,20189,19608,19056,18587,18126,17733,17383,17053,16766,16530,16289,16108,15913,15714,15518,15351,15197,15059,14950,14846,14779,14701,14669,14665,14656,14677,14705,14714,14764,14812,14829,14891,14928,14941,14955,14967,14977,14993,15023,15021,15000,14950,14903,14837,14765,14673,14581,14440,14295,14129,13939,13737,13527,13299,13033,12777,12506,12209,11928,11642,11360,11085,10842,10601,10373,10110,9825,9492,9201,8930,8692,8467,8304,8147,8021,7933,7846,7791,7731,7662,7591,7450,7281,7127,6997,6899,6806,6725,6637,6601,6536,6535,6540,6521,6521,6529,6518,6368,6060,5651,5020,22.5,22.4,23.1,1569015,0.3,12.9,12.0,5.0,451,-1.00,-1.00,65.6148,-21.405467,0.000798,,,,,201 +SATSLF0720,2024246,22.510643,6.27,0.0878,0.1207,0.0275,0.00,15588,663,1,709,725,709,709,727,733,721,725,737,722,734,736,771,863,1158,1790,2816,4025,5134,5995,6616,7075,7463,7896,8391,8974,9682,10506,11429,12464,13566,14658,15681,16568,17245,17654,17797,17636,17317,16850,16331,15839,15434,15109,14930,14896,15005,15258,15653,16222,16933,17805,18840,20018,21272,22664,24073,25504,26861,28062,29008,29733,30120,30122,29845,29229,28382,27370,26213,25088,23997,22978,22040,21252,20561,19987,19558,19189,18926,18788,18709,18729,18839,19031,19301,19637,20074,20584,21126,21725,22394,23013,23606,24169,24625,24969,25248,25281,25158,24896,24441,23826,23126,22349,21511,20678,19851,19115,18450,17818,17293,16842,16448,16148,15915,15745,15655,15612,15641,15723,15905,16110,16430,16780,17203,17662,18240,18833,19467,20128,20841,21560,22291,22987,23702,24337,24909,25470,25881,26189,26422,26532,26532,26452,26216,25899,25538,25061,24498,23926,23309,22680,22036,21383,20773,20171,19607,19061,18592,18141,17757,17397,17071,16791,16534,16301,16106,15889,15699,15520,15349,15181,15052,14929,14847,14770,14689,14653,14648,14661,14669,14693,14717,14730,14782,14813,14865,14919,14940,14958,14946,14967,14993,15031,15014,14997,14938,14882,14826,14753,14673,14605,14445,14300,14139,13955,13742,13515,13283,13038,12781,12497,12225,11913,11628,11351,11085,10820,10592,10365,10097,9806,9489,9195,8913,8681,8474,8314,8161,8023,7935,7844,7782,7730,7665,7575,7436,7267,7114,6990,6877,6777,6713,6645,6585,6551,6538,6545,6533,6506,6538,6521,6346,6061,5645,5033,22.4,22.4,23.1,1569016,0.1,12.9,11.9,5.0,457,-1.00,-1.00,64.3097,-20.861516,0.000718,,,,,64 +SATSLF0720,2024246,22.510898,6.00,0.0840,0.1213,0.0276,0.00,15571,663,1,717,725,709,731,733,725,729,725,738,725,734,750,779,886,1165,1795,2801,3997,5103,5962,6580,7028,7446,7870,8374,8956,9653,10496,11409,12455,13545,14635,15653,16534,17207,17619,17765,17624,17301,16832,16300,15815,15409,15085,14905,14852,14954,15210,15609,16169,16899,17778,18792,19985,21253,22641,24062,25473,26832,28021,28983,29701,30082,30092,29798,29193,28324,27336,26195,25088,23989,22966,22034,21249,20549,19989,19529,19173,18920,18769,18681,18698,18814,19013,19271,19629,20046,20550,21110,21716,22358,22993,23594,24146,24602,24951,25219,25258,25144,24880,24417,23790,23098,22331,21467,20647,19841,19097,18427,17808,17256,16822,16426,16125,15883,15730,15641,15606,15619,15710,15893,16105,16389,16764,17186,17668,18217,18827,19456,20125,20833,21538,22282,22973,23673,24300,24881,25431,25841,26170,26397,26504,26514,26434,26218,25901,25511,25037,24482,23907,23281,22651,22017,21373,20750,20163,19607,19064,18576,18122,17736,17362,17060,16764,16510,16273,16067,15877,15684,15512,15333,15172,15041,14930,14843,14767,14697,14654,14643,14641,14651,14677,14707,14741,14773,14815,14856,14913,14921,14935,14949,14965,14968,14995,14992,14982,14919,14867,14822,14754,14664,14579,14450,14302,14123,13929,13728,13497,13275,13021,12756,12476,12195,11907,11618,11333,11066,10825,10589,10360,10086,9788,9479,9173,8903,8674,8464,8285,8155,8020,7937,7844,7784,7723,7645,7555,7415,7258,7101,6983,6880,6775,6707,6627,6587,6555,6525,6520,6510,6504,6517,6507,6341,6063,5634,5014,22.5,22.5,23.1,1569017,0.2,12.9,12.0,5.0,450,-1.00,-1.00,65.7981,-21.459706,0.000819,,,,,62 +SATSLF0720,2024246,22.511152,6.16,0.0863,0.1210,0.0272,0.00,15572,663,1,718,706,704,713,698,699,721,711,719,720,735,740,776,874,1155,1773,2782,3989,5101,5963,6578,7036,7441,7872,8361,8938,9644,10456,11381,12425,13514,14597,15625,16518,17190,17602,17736,17586,17271,16804,16282,15797,15387,15089,14901,14836,14947,15189,15600,16170,16882,17764,18806,19964,21236,22630,24052,25465,26829,28011,28967,29684,30065,30072,29781,29170,28322,27333,26182,25076,23981,22978,22036,21221,20552,19962,19515,19163,18908,18775,18694,18707,18821,19021,19276,19612,20050,20552,21111,21708,22363,22989,23600,24131,24605,24980,25226,25281,25156,24892,24425,23810,23123,22349,21509,20651,19851,19100,18421,17806,17262,16811,16446,16138,15906,15742,15646,15609,15629,15730,15909,16116,16405,16773,17188,17671,18228,18820,19456,20133,20833,21561,22296,22982,23681,24325,24901,25458,25873,26173,26436,26516,26521,26442,26214,25901,25515,25049,24489,23915,23296,22666,22023,21380,20771,20185,19605,19055,18590,18125,17725,17382,17042,16751,16519,16285,16086,15899,15717,15521,15351,15194,15051,14936,14851,14766,14705,14664,14643,14636,14644,14682,14693,14736,14786,14810,14856,14912,14937,14949,14952,14955,14980,15001,14993,14981,14938,14873,14833,14759,14657,14574,14437,14292,14130,13933,13728,13516,13288,13025,12773,12485,12205,11909,11633,11351,11092,10837,10601,10366,10106,9807,9497,9178,8905,8663,8472,8302,8153,8024,7927,7852,7788,7722,7665,7573,7441,7269,7129,7001,6869,6779,6696,6636,6585,6556,6526,6512,6503,6481,6516,6513,6366,6069,5641,5025,22.5,22.5,23.1,1569018,0.1,12.9,11.9,5.0,452,-1.00,-1.00,65.6251,-21.380222,0.000816,,,,,180 +SATSLF0720,2024246,22.511409,6.03,0.0844,0.1224,0.0275,0.00,15548,663,1,711,722,717,714,723,711,731,733,729,735,726,743,769,873,1155,1787,2793,3988,5096,5960,6563,7038,7430,7848,8355,8924,9631,10455,11373,12400,13497,14578,15600,16502,17157,17564,17716,17576,17261,16786,16269,15773,15377,15050,14869,14825,14928,15176,15579,16138,16857,17740,18756,19925,21186,22567,23983,25412,26770,27966,28922,29641,30034,30034,29736,29141,28276,27282,26129,25025,23922,22909,21986,21201,20507,19947,19498,19136,18869,18722,18639,18674,18778,18991,19249,19595,20012,20531,21094,21685,22341,22953,23554,24106,24584,24926,25188,25237,25115,24839,24371,23756,23056,22292,21460,20624,19824,19081,18421,17801,17246,16816,16416,16108,15866,15700,15607,15577,15601,15685,15863,16084,16383,16730,17163,17629,18195,18797,19422,20105,20802,21537,22260,22960,23643,24283,24852,25408,25825,26124,26368,26464,26478,26385,26193,25874,25481,25010,24459,23875,23271,22644,21994,21355,20726,20139,19561,19025,18546,18095,17698,17344,17031,16757,16495,16260,16059,15883,15684,15491,15325,15159,15012,14901,14810,14745,14665,14635,14625,14616,14629,14669,14677,14712,14759,14791,14835,14884,14905,14926,14931,14936,14949,14967,14967,14957,14931,14869,14825,14740,14661,14562,14423,14280,14104,13928,13717,13505,13267,13010,12750,12485,12170,11891,11592,11314,11051,10821,10584,10365,10091,9804,9477,9193,8899,8663,8458,8282,8125,7997,7915,7845,7772,7725,7650,7572,7429,7260,7109,6985,6862,6765,6695,6647,6584,6557,6521,6517,6506,6483,6502,6493,6357,6053,5636,5029,22.5,22.5,23.2,1569019,0.1,12.9,11.9,5.0,448,-1.00,-1.00,65.9678,-21.489982,0.000739,,,,,237 +SATSLF0720,2024246,22.511665,6.28,0.0879,0.1223,0.0284,0.00,15535,663,1,699,694,707,701,727,736,739,743,738,737,739,738,771,869,1159,1777,2790,3995,5098,5956,6566,7026,7413,7841,8338,8924,9611,10451,11368,12401,13493,14585,15590,16487,17149,17562,17690,17547,17216,16769,16242,15759,15367,15036,14853,14824,14919,15177,15574,16132,16858,17717,18753,19910,21175,22562,23973,25398,26741,27942,28901,29610,29996,30011,29706,29095,28250,27245,26094,24997,23897,22892,21957,21182,20504,19922,19482,19112,18855,18733,18641,18646,18759,18955,19235,19562,19995,20505,21056,21671,22309,22945,23529,24091,24539,24902,25157,25189,25073,24813,24356,23745,23045,22278,21434,20591,19799,19063,18389,17755,17225,16781,16385,16082,15852,15689,15592,15555,15594,15686,15872,16080,16361,16727,17154,17633,18193,18778,19413,20061,20784,21499,22231,22929,23614,24256,24825,25390,25794,26101,26350,26448,26457,26370,26153,25834,25456,24973,24410,23854,23226,22604,21981,21332,20736,20133,19556,19016,18536,18090,17690,17333,17014,16729,16480,16253,16035,15847,15654,15479,15309,15152,15019,14905,14793,14731,14660,14622,14619,14621,14617,14644,14687,14717,14766,14782,14838,14899,14913,14909,14924,14910,14943,14966,14965,14957,14912,14858,14797,14720,14645,14549,14424,14281,14097,13908,13709,13485,13254,13001,12738,12469,12177,11895,11594,11318,11066,10818,10570,10351,10082,9790,9483,9176,8889,8666,8457,8296,8136,8008,7923,7834,7761,7717,7643,7559,7428,7252,7099,6970,6859,6775,6693,6623,6584,6544,6521,6520,6508,6485,6507,6499,6336,6054,5630,5016,22.5,22.6,23.2,1569020,0.1,12.9,12.0,5.0,448,-1.00,-1.00,65.0573,-21.093109,0.000763,,,,,174 +SATSLF0720,2024246,22.511918,6.12,0.0858,0.1219,0.0279,0.00,15554,663,1,711,715,714,717,726,730,737,737,740,747,734,756,778,873,1161,1786,2803,4001,5113,5984,6581,7043,7447,7874,8359,8943,9645,10469,11384,12435,13525,14617,15638,16531,17205,17621,17746,17589,17261,16791,16279,15769,15372,15062,14877,14838,14937,15198,15601,16161,16884,17757,18780,19948,21218,22605,24016,25432,26798,27986,28960,29672,30042,30043,29755,29141,28290,27285,26133,25029,23943,22925,21990,21198,20509,19942,19488,19123,18875,18729,18657,18676,18801,18988,19248,19597,20009,20523,21086,21677,22328,22962,23562,24096,24579,24919,25178,25221,25109,24843,24374,23776,23077,22309,21475,20649,19813,19099,18407,17788,17253,16806,16416,16119,15882,15703,15612,15577,15601,15696,15868,16089,16392,16741,17168,17639,18195,18809,19414,20101,20816,21537,22262,22957,23644,24291,24853,25413,25813,26135,26365,26475,26486,26388,26194,25856,25473,25009,24457,23891,23252,22630,21992,21344,20726,20151,19564,19033,18545,18098,17708,17342,17037,16753,16491,16268,16062,15856,15681,15498,15316,15163,15021,14906,14817,14743,14676,14633,14632,14629,14645,14656,14681,14722,14768,14781,14843,14899,14903,14917,14929,14940,14957,14983,14980,14971,14918,14854,14811,14737,14653,14561,14427,14299,14125,13917,13725,13502,13268,13013,12743,12463,12178,11897,11605,11325,11058,10833,10593,10350,10086,9798,9493,9178,8915,8665,8467,8306,8149,8023,7917,7840,7779,7732,7666,7566,7434,7258,7110,6987,6871,6783,6688,6620,6571,6537,6514,6519,6520,6501,6519,6499,6343,6049,5632,5022,22.5,22.6,23.2,1569021,0.0,12.9,12.0,5.0,433,-1.00,-1.00,65.3250,-21.233683,0.000907,,,,,220 +SATSLF0720,2024246,22.512178,5.92,0.0829,0.1241,0.0298,0.00,15486,663,1,722,716,717,713,721,727,720,723,726,749,750,755,785,875,1158,1780,2781,3981,5093,5948,6560,7008,7429,7842,8325,8915,9594,10405,11323,12363,13449,14543,15545,16442,17109,17517,17669,17509,17185,16729,16221,15726,15313,14998,14818,14773,14864,15120,15512,16077,16789,17667,18689,19853,21095,22491,23900,25293,26645,27851,28790,29529,29897,29898,29619,29018,28170,27162,26032,24924,23837,22810,21894,21085,20427,19860,19410,19053,18791,18651,18568,18595,18701,18873,19147,19479,19911,20425,20981,21584,22230,22852,23449,24005,24471,24801,25056,25111,24989,24728,24273,23661,22982,22213,21376,20549,19752,18996,18311,17708,17178,16723,16363,16049,15818,15660,15547,15517,15533,15636,15797,16016,16296,16679,17089,17579,18136,18721,19325,20005,20707,21441,22146,22834,23539,24164,24743,25297,25696,26025,26253,26361,26368,26281,26054,25739,25347,24879,24328,23760,23137,22521,21899,21261,20663,20054,19488,18945,18484,18016,17628,17270,16949,16669,16419,16186,15997,15797,15608,15429,15247,15103,14976,14855,14773,14697,14628,14581,14565,14580,14569,14603,14625,14667,14701,14733,14788,14826,14851,14866,14877,14864,14891,14914,14897,14907,14865,14813,14749,14676,14591,14490,14361,14217,14050,13874,13664,13442,13231,12973,12714,12429,12133,11865,11570,11285,11028,10791,10541,10328,10060,9761,9447,9141,8865,8623,8436,8256,8116,7989,7878,7825,7748,7702,7639,7550,7412,7240,7095,6957,6849,6753,6675,6609,6565,6524,6514,6498,6470,6481,6484,6465,6327,6039,5622,5017,22.5,22.6,23.2,1569022,0.1,12.9,12.0,5.0,448,-1.00,-1.00,66.2446,-21.528294,0.000744,,,,,195 +SATSLF0720,2024246,22.512433,6.07,0.0850,0.1229,0.0292,0.00,15514,663,1,717,723,723,724,733,721,731,725,729,731,732,731,774,867,1153,1781,2782,3978,5095,5957,6568,7018,7428,7853,8349,8917,9622,10424,11351,12386,13475,14551,15578,16455,17125,17540,17683,17525,17212,16754,16244,15746,15349,15021,14836,14792,14902,15149,15545,16105,16817,17698,18721,19892,21137,22525,23938,25345,26711,27895,28857,29578,29954,29974,29671,29065,28220,27211,26074,24954,23885,22862,21937,21143,20465,19898,19449,19090,18839,18689,18617,18637,18725,18935,19200,19529,19968,20466,21028,21640,22293,22909,23500,24063,24512,24856,25111,25168,25049,24774,24327,23694,22999,22253,21418,20589,19777,19032,18369,17753,17220,16762,16374,16084,15833,15673,15600,15552,15573,15669,15824,16054,16356,16701,17139,17605,18163,18760,19384,20042,20742,21468,22197,22886,23589,24224,24794,25354,25761,26077,26297,26412,26416,26315,26118,25797,25416,24951,24389,23819,23209,22570,21939,21288,20695,20096,19530,18986,18493,18038,17656,17305,16993,16706,16455,16225,16016,15834,15636,15464,15300,15141,14993,14890,14775,14711,14636,14599,14592,14594,14602,14630,14650,14687,14731,14761,14806,14858,14881,14882,14900,14912,14922,14946,14950,14926,14881,14819,14771,14709,14608,14523,14395,14247,14086,13888,13680,13468,13234,12980,12711,12443,12157,11869,11578,11298,11036,10793,10557,10321,10070,9768,9463,9169,8881,8635,8447,8278,8133,7988,7897,7821,7760,7707,7643,7545,7413,7253,7112,6965,6868,6757,6683,6617,6561,6535,6509,6504,6498,6483,6499,6482,6330,6034,5615,5004,22.5,22.6,23.2,1569023,0.0,12.9,12.0,5.0,441,-1.00,-1.00,65.7585,-21.359795,0.000754,,,,,210 +SATSLF0720,2024246,22.512688,5.87,0.0823,0.1251,0.0303,0.00,15457,663,1,714,716,720,707,721,725,725,729,737,742,723,731,764,869,1151,1789,2773,3987,5093,5933,6528,6993,7393,7796,8299,8873,9566,10392,11300,12314,13415,14477,15499,16363,17048,17463,17605,17450,17140,16684,16153,15669,15255,14941,14752,14710,14801,15066,15463,16041,16741,17618,18624,19783,21045,22429,23824,25224,26583,27762,28715,29425,29805,29816,29531,28921,28071,27096,25949,24865,23776,22757,21819,21040,20360,19789,19350,18997,18733,18602,18526,18541,18653,18854,19109,19466,19901,20397,20945,21543,22188,22814,23418,23962,24420,24753,25006,25064,24945,24680,24218,23601,22921,22166,21341,20494,19704,18973,18307,17682,17152,16710,16326,16017,15789,15618,15531,15501,15512,15594,15765,15985,16280,16635,17062,17520,18095,18685,19305,19977,20688,21405,22130,22807,23501,24121,24707,25255,25675,25990,26212,26327,26327,26236,26037,25701,25339,24881,24325,23756,23117,22513,21882,21234,20621,20024,19451,18920,18439,18001,17590,17254,16928,16652,16403,16181,15981,15789,15604,15405,15240,15081,14941,14841,14737,14665,14596,14575,14559,14555,14567,14585,14610,14635,14677,14709,14760,14805,14835,14848,14871,14866,14887,14903,14906,14889,14848,14785,14734,14660,14579,14497,14340,14218,14042,13851,13649,13451,13200,12951,12683,12407,12131,11842,11567,11278,11010,10765,10546,10306,10061,9757,9441,9148,8868,8624,8419,8250,8107,7976,7890,7810,7740,7681,7614,7534,7405,7222,7076,6957,6841,6742,6657,6602,6546,6503,6490,6481,6479,6478,6494,6482,6333,6042,5609,4985,22.5,22.6,23.2,1569024,0.1,12.9,12.0,5.0,447,-1.00,-1.00,66.8837,-21.740236,0.000835,,,,,149 +SATSLF0720,2024246,22.512945,5.95,0.0833,0.1230,0.0302,0.00,15507,663,1,709,716,716,722,732,725,732,714,727,742,731,752,788,872,1147,1783,2800,4013,5133,5982,6592,7056,7467,7877,8371,8950,9655,10475,11419,12434,13543,14612,15639,16510,17178,17605,17749,17593,17277,16800,16283,15792,15377,15067,14861,14829,14921,15177,15572,16135,16856,17732,18749,19925,21192,22565,23984,25405,26759,27953,28892,29611,29992,30002,29705,29103,28249,27241,26073,24974,23891,22865,21943,21149,20477,19914,19457,19091,18831,18692,18613,18645,18741,18930,19199,19533,19955,20466,21000,21598,22276,22908,23509,24072,24509,24858,25120,25146,25032,24763,24302,23697,23004,22241,21411,20582,19770,19029,18352,17731,17197,16759,16372,16059,15827,15671,15561,15527,15565,15654,15817,16041,16329,16688,17095,17579,18138,18724,19358,20017,20728,21445,22173,22862,23557,24183,24765,25314,25710,26023,26265,26381,26378,26304,26090,25765,25401,24909,24352,23781,23159,22533,21905,21262,20642,20061,19476,18961,18481,18014,17641,17278,16958,16672,16426,16182,15998,15798,15618,15434,15250,15093,14965,14850,14754,14682,14603,14561,14561,14565,14571,14596,14611,14656,14700,14725,14768,14822,14841,14857,14870,14871,14888,14916,14906,14897,14847,14794,14737,14666,14585,14494,14349,14208,14032,13859,13648,13431,13217,12961,12693,12424,12147,11851,11561,11281,11026,10777,10534,10292,10026,9734,9429,9127,8862,8626,8429,8262,8106,7973,7875,7800,7733,7690,7621,7541,7402,7245,7093,6954,6844,6744,6657,6605,6552,6537,6498,6488,6465,6471,6476,6462,6317,6025,5613,5001,22.5,22.6,23.2,1569024,0.2,12.9,12.0,5.0,448,-1.00,-1.00,65.1435,-21.125112,0.000861,,,,,117 +SATSLF0720,2024246,22.513200,5.82,0.0815,0.1229,0.0294,0.00,15517,663,1,702,719,715,721,721,717,728,719,743,734,739,754,778,883,1177,1797,2807,4027,5127,5969,6587,7036,7444,7864,8359,8955,9645,10464,11392,12412,13509,14589,15596,16500,17168,17602,17716,17584,17241,16795,16250,15770,15356,15049,14845,14815,14894,15157,15537,16112,16827,17713,18741,19901,21165,22551,23957,25369,26716,27891,28848,29586,29962,29961,29678,29078,28211,27210,26057,24968,23878,22853,21930,21129,20461,19889,19455,19093,18826,18688,18615,18641,18736,18927,19198,19536,19956,20484,21010,21615,22281,22902,23504,24053,24500,24854,25098,25143,25035,24765,24300,23712,23022,22248,21419,20586,19777,19032,18361,17734,17211,16774,16375,16069,15842,15682,15587,15545,15576,15661,15817,16043,16331,16693,17125,17596,18155,18754,19381,20052,20752,21472,22202,22901,23573,24206,24785,25341,25728,26065,26298,26400,26417,26333,26117,25800,25421,24945,24390,23817,23204,22573,21930,21280,20678,20072,19520,18981,18500,18034,17658,17313,16990,16710,16471,16225,16021,15828,15633,15450,15286,15125,14982,14875,14784,14716,14634,14594,14594,14597,14602,14631,14660,14688,14731,14748,14794,14856,14871,14878,14894,14901,14919,14944,14951,14965,14905,14846,14762,14700,14601,14515,14362,14229,14081,13891,13698,13465,13243,12981,12718,12439,12158,11867,11585,11306,11041,10791,10561,10341,10080,9787,9460,9165,8884,8645,8429,8279,8114,7992,7889,7815,7751,7701,7643,7561,7418,7249,7101,6978,6869,6765,6687,6622,6565,6535,6530,6512,6500,6491,6500,6498,6343,6035,5627,5022,22.6,22.6,23.3,1569025,0.0,12.9,12.0,5.0,447,-1.00,-1.00,65.8261,-21.389510,0.000876,,,,,88 +SATSLF0720,2024246,22.513452,6.02,0.0843,0.1230,0.0295,0.00,15521,663,1,722,733,731,730,728,733,745,733,726,745,744,751,800,889,1173,1800,2817,4022,5133,5981,6603,7057,7470,7880,8377,8957,9670,10473,11402,12441,13522,14610,15632,16529,17194,17616,17744,17598,17269,16797,16276,15785,15381,15066,14883,14836,14933,15179,15581,16133,16852,17722,18765,19933,21194,22561,23971,25394,26743,27950,28884,29598,29978,29979,29685,29081,28234,27233,26084,24976,23896,22884,21970,21149,20467,19898,19445,19077,18830,18674,18612,18646,18744,18937,19211,19545,19962,20478,21028,21616,22279,22902,23501,24057,24509,24865,25114,25181,25053,24808,24333,23723,23021,22237,21416,20578,19778,19029,18373,17758,17209,16754,16386,16080,15830,15675,15581,15546,15569,15657,15841,16053,16343,16691,17123,17606,18165,18754,19367,20040,20744,21461,22179,22871,23559,24205,24778,25332,25735,26053,26301,26381,26404,26314,26117,25799,25408,24921,24378,23810,23194,22549,21931,21282,20679,20084,19517,18973,18505,18064,17649,17302,16981,16694,16434,16214,16016,15819,15639,15464,15274,15109,14983,14875,14774,14694,14625,14582,14577,14570,14583,14619,14645,14681,14736,14747,14814,14861,14871,14893,14902,14917,14932,14952,14951,14937,14874,14835,14761,14683,14609,14510,14378,14238,14070,13888,13690,13468,13239,12970,12723,12455,12166,11877,11585,11303,11022,10787,10552,10329,10065,9767,9463,9160,8889,8645,8448,8285,8128,7997,7915,7830,7753,7706,7637,7564,7418,7245,7097,6964,6859,6763,6692,6616,6572,6526,6511,6502,6492,6484,6490,6487,6332,6046,5621,5008,22.5,22.7,23.4,1569026,0.1,12.9,11.9,5.0,448,-1.00,-1.00,64.6587,-20.917807,0.000796,,,,,218 +SATSLF0720,2024246,22.513708,6.00,0.0840,0.1240,0.0299,0.00,15490,663,1,725,724,724,732,726,727,747,729,739,734,735,738,768,866,1154,1787,2807,4001,5118,5973,6569,7015,7417,7834,8339,8924,9623,10443,11357,12387,13481,14553,15575,16448,17111,17523,17674,17512,17189,16727,16218,15722,15324,15009,14821,14771,14853,15114,15527,16084,16797,17674,18701,19857,21099,22486,23879,25304,26659,27840,28793,29512,29885,29876,29589,28973,28128,27168,26034,24932,23832,22816,21873,21084,20389,19840,19385,19030,18781,18645,18570,18593,18692,18896,19157,19493,19917,20420,20988,21578,22234,22863,23447,24002,24466,24818,25080,25121,25010,24730,24297,23661,22951,22208,21371,20533,19736,19017,18358,17725,17201,16741,16345,16051,15812,15639,15545,15516,15536,15634,15802,16023,16311,16669,17093,17575,18125,18733,19346,19996,20723,21426,22167,22856,23538,24169,24756,25312,25712,26038,26273,26365,26390,26285,26084,25767,25366,24912,24358,23782,23161,22534,21904,21262,20650,20067,19495,18965,18494,18021,17643,17296,16961,16679,16416,16196,15992,15803,15621,15431,15262,15092,14971,14861,14782,14697,14631,14593,14577,14571,14587,14611,14638,14685,14717,14738,14776,14839,14840,14864,14879,14887,14908,14938,14917,14919,14885,14808,14747,14689,14601,14501,14379,14226,14066,13889,13668,13458,13230,12973,12704,12437,12149,11863,11570,11278,11026,10785,10553,10310,10045,9749,9450,9158,8884,8638,8437,8277,8130,7988,7888,7818,7741,7691,7625,7536,7402,7224,7075,6959,6856,6762,6669,6623,6565,6523,6500,6493,6480,6472,6480,6464,6319,6031,5608,5006,22.5,22.7,23.4,1569027,0.1,12.9,12.0,5.0,446,-1.00,-1.00,65.6260,-21.264436,0.000739,,,,,239 +SATSLF0720,2024246,22.513963,5.84,0.0818,0.1248,0.0305,0.00,15469,663,1,709,726,710,711,725,717,732,738,729,733,743,745,771,875,1166,1797,2802,3985,5115,5969,6579,7029,7435,7853,8339,8917,9613,10417,11338,12365,13465,14541,15563,16456,17110,17530,17664,17517,17193,16717,16202,15702,15307,14995,14803,14755,14855,15113,15497,16067,16781,17643,18666,19826,21077,22444,23874,25274,26617,27797,28754,29489,29845,29863,29581,28978,28125,27114,25974,24867,23787,22771,21835,21052,20356,19811,19373,19008,18755,18631,18537,18569,18664,18865,19118,19456,19902,20384,20951,21549,22187,22810,23413,23963,24418,24775,25030,25067,24971,24710,24243,23639,22941,22181,21362,20516,19698,18976,18302,17685,17160,16698,16335,16021,15792,15636,15540,15493,15510,15600,15771,16000,16288,16652,17083,17558,18117,18689,19319,19982,20670,21401,22125,22816,23503,24156,24730,25282,25696,26005,26247,26332,26331,26240,26028,25716,25344,24864,24327,23748,23121,22497,21876,21217,20616,20009,19469,18918,18448,17991,17618,17261,16937,16658,16398,16179,15965,15777,15605,15421,15237,15101,14949,14843,14753,14670,14605,14560,14541,14543,14562,14587,14613,14660,14698,14721,14776,14833,14829,14847,14852,14870,14884,14890,14905,14909,14836,14787,14728,14661,14568,14475,14354,14194,14037,13849,13650,13445,13217,12944,12693,12409,12121,11842,11549,11280,11021,10775,10537,10311,10045,9745,9429,9146,8861,8625,8423,8249,8103,7958,7877,7805,7734,7684,7625,7538,7401,7229,7081,6948,6845,6737,6664,6609,6561,6524,6513,6498,6488,6475,6485,6462,6322,6021,5601,4993,22.6,22.7,23.4,1569028,0.2,12.9,12.0,5.0,449,-1.00,-1.00,65.8964,-21.353549,0.000799,,,,,250 +SATSLF0720,2024246,22.514214,6.11,0.0855,0.1247,0.0307,0.00,15472,663,1,715,707,721,717,723,723,741,731,739,745,746,737,771,858,1143,1777,2777,4007,5097,5955,6560,7030,7425,7838,8342,8909,9631,10437,11346,12384,13465,14533,15547,16424,17089,17498,17657,17490,17166,16696,16199,15692,15286,14971,14789,14750,14847,15109,15501,16063,16755,17655,18669,19846,21090,22472,23865,25275,26621,27809,28755,29457,29831,29847,29543,28960,28117,27110,25970,24864,23783,22775,21856,21042,20379,19818,19364,18998,18749,18617,18544,18568,18688,18881,19133,19481,19898,20407,20950,21561,22198,22832,23417,23980,24420,24769,25030,25094,24978,24708,24238,23641,22938,22193,21351,20486,19707,18968,18304,17674,17157,16717,16333,16040,15796,15628,15534,15502,15518,15622,15793,16009,16284,16661,17081,17547,18119,18705,19333,19993,20704,21420,22128,22824,23514,24149,24733,25284,25693,26013,26258,26340,26353,26269,26057,25728,25350,24874,24344,23760,23133,22509,21882,21250,20640,20054,19461,18926,18455,18007,17611,17254,16943,16670,16414,16197,15989,15800,15616,15422,15247,15090,14952,14841,14752,14677,14604,14582,14561,14557,14565,14594,14614,14662,14701,14721,14777,14822,14838,14841,14863,14877,14901,14922,14918,14900,14855,14808,14722,14675,14572,14485,14341,14209,14058,13867,13661,13464,13221,12973,12701,12413,12123,11843,11538,11284,11018,10776,10535,10301,10046,9760,9436,9143,8864,8625,8421,8256,8101,7977,7883,7802,7737,7685,7615,7527,7393,7225,7073,6950,6842,6751,6685,6611,6563,6522,6509,6501,6466,6460,6478,6464,6315,6027,5605,5008,22.6,22.8,23.4,1569029,0.0,12.9,11.9,5.0,449,-1.00,-1.00,65.2859,-21.096127,0.000868,,,,,81 +SATSLF0720,2024246,22.514471,6.14,0.0860,0.1245,0.0302,0.00,15487,663,1,727,721,727,732,724,717,739,737,746,749,749,749,773,874,1161,1806,2808,4035,5149,5993,6587,7043,7441,7867,8360,8934,9631,10451,11376,12405,13492,14576,15590,16474,17146,17553,17687,17531,17207,16752,16230,15735,15338,15013,14827,14787,14886,15137,15538,16104,16818,17682,18704,19877,21124,22518,23912,25331,26669,27858,28806,29504,29890,29905,29605,28997,28157,27165,26008,24910,23834,22818,21890,21101,20417,19843,19401,19038,18781,18640,18552,18596,18694,18891,19149,19495,19921,20421,20962,21575,22227,22850,23426,23989,24437,24807,25061,25121,24998,24729,24269,23659,22965,22196,21364,20539,19737,18997,18326,17716,17173,16733,16333,16043,15800,15648,15554,15515,15543,15642,15805,16025,16298,16666,17093,17550,18123,18716,19339,19993,20711,21426,22149,22855,23522,24168,24746,25301,25717,26009,26244,26343,26362,26264,26053,25738,25349,24864,24325,23753,23130,22501,21862,21224,20637,20053,19466,18929,18461,18018,17618,17271,16954,16668,16426,16182,15983,15799,15616,15418,15258,15085,14948,14845,14743,14684,14602,14578,14548,14550,14569,14604,14621,14645,14698,14723,14773,14835,14842,14861,14864,14867,14908,14912,14918,14890,14846,14795,14736,14666,14577,14485,14362,14205,14043,13863,13676,13470,13220,12961,12704,12427,12134,11846,11559,11274,11013,10773,10536,10313,10045,9765,9453,9153,8869,8635,8427,8266,8117,7979,7885,7808,7729,7693,7625,7534,7412,7229,7091,6947,6839,6756,6667,6617,6557,6513,6504,6494,6487,6467,6492,6473,6331,6042,5623,5000,22.6,22.8,23.4,1569030,0.0,12.9,12.0,5.0,448,-1.00,-1.00,64.6071,-20.846159,0.000794,,,,,9 +SATSDF0720,2024246,22.759139,0.00,0.0000,0.0000,0.0000,0.00,661,0,1,640,633,623,626,626,625,637,645,653,650,647,645,659,650,653,649,647,646,655,646,639,640,663,660,667,662,667,663,664,665,666,663,657,671,667,673,672,669,673,665,670,673,665,665,660,660,669,670,676,673,665,669,667,667,657,669,658,663,663,659,673,658,667,665,672,665,663,651,655,656,657,668,665,667,661,659,667,673,659,671,672,672,669,669,677,668,673,661,669,661,681,675,678,668,672,669,664,656,660,669,668,664,665,659,664,658,658,660,669,658,665,666,666,676,669,660,663,657,665,657,669,666,645,664,668,662,663,677,666,669,661,665,665,662,657,661,650,675,674,680,693,666,666,657,649,647,651,653,657,651,663,663,678,677,665,661,657,671,657,649,651,655,649,650,658,663,659,661,667,666,669,660,655,663,666,671,661,667,665,661,656,664,661,654,653,647,672,666,659,667,651,659,645,647,650,650,651,649,660,658,663,661,673,665,669,666,669,665,653,656,658,659,661,647,657,661,650,663,661,663,658,672,685,654,663,665,664,649,656,657,651,663,669,683,664,679,673,663,665,661,657,665,660,669,660,667,655,667,644,665,661,659,669,656,669,498,0.0,0.0,0.0,1569029,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,79 +SATSLF0720,2024246,22.759696,4.06,0.0569,0.1017,0.0177,0.00,16180,661,1,724,713,727,717,729,729,729,730,727,729,741,748,784,882,1187,1897,3053,4413,5653,6606,7266,7768,8186,8649,9177,9805,10557,11410,12418,13524,14713,15877,16992,17957,18677,19104,19253,19061,18687,18173,17557,17008,16528,16167,15945,15867,15952,16199,16626,17202,17944,18861,19920,21145,22465,23906,25396,26882,28302,29565,30551,31319,31720,31721,31398,30745,29819,28772,27528,26350,25201,24109,23106,22252,21526,20915,20441,20053,19757,19602,19512,19515,19621,19809,20058,20423,20859,21378,21949,22571,23232,23891,24513,25081,25558,25933,26187,26236,26120,25833,25351,24724,23979,23197,22329,21440,20596,19814,19107,18443,17888,17405,16987,16680,16422,16269,16149,16113,16133,16231,16401,16621,16928,17282,17728,18208,18778,19388,20037,20704,21434,22173,22910,23626,24340,25001,25595,26158,26597,26913,27163,27275,27280,27192,26965,26625,26235,25736,25166,24586,23936,23294,22653,21973,21341,20730,20145,19561,19082,18601,18191,17839,17499,17204,16940,16701,16500,16303,16104,15921,15732,15562,15416,15306,15198,15101,15033,15002,14985,14988,14996,15018,15045,15083,15111,15157,15200,15255,15277,15281,15282,15299,15315,15335,15323,15320,15263,15207,15146,15075,14985,14891,14772,14617,14445,14243,14025,13820,13582,13329,13063,12764,12477,12177,11876,11593,11322,11077,10830,10602,10336,10029,9713,9394,9108,8861,8657,8473,8320,8174,8078,7997,7932,7888,7828,7739,7609,7418,7277,7142,7020,6921,6842,6774,6711,6679,6659,6645,6651,6637,6644,6647,6499,6185,5757,5143,22.4,22.4,22.9,1569031,0.2,12.9,11.9,5.0,567,-1.00,-1.00,58.1202,-19.216520,0.000532,,,,,71 +SATSLF0720,2024246,22.759879,4.12,0.0577,0.1032,0.0189,0.00,16134,661,1,707,699,703,697,711,710,720,724,731,725,725,744,762,875,1189,1885,3026,4387,5651,6585,7257,7741,8169,8614,9137,9753,10499,11367,12387,13486,14652,15834,16936,17901,18615,19046,19188,19005,18629,18088,17498,16945,16490,16136,15918,15834,15909,16153,16561,17146,17891,18789,19886,21082,22400,23836,25322,26797,28226,29467,30475,31230,31627,31626,31309,30658,29722,28679,27462,26290,25113,24041,23043,22185,21467,20857,20388,19990,19709,19555,19450,19472,19574,19756,20008,20359,20791,21305,21873,22498,23186,23825,24428,25017,25479,25849,26100,26166,26034,25753,25278,24649,23929,23127,22256,21376,20534,19761,19061,18395,17827,17351,16939,16619,16370,16211,16118,16090,16093,16184,16354,16586,16865,17233,17649,18147,18713,19325,19959,20637,21388,22123,22873,23581,24281,24929,25531,26095,26521,26845,27089,27189,27218,27137,26905,26571,26181,25673,25095,24515,23884,23241,22583,21926,21293,20677,20078,19514,19021,18544,18146,17764,17460,17169,16889,16667,16464,16247,16071,15872,15693,15520,15362,15263,15157,15095,15013,14965,14947,14949,14946,14978,15004,15033,15074,15112,15158,15206,15237,15233,15253,15253,15281,15277,15270,15269,15228,15150,15106,15043,14957,14871,14729,14575,14409,14213,14006,13777,13533,13272,13006,12730,12433,12146,11850,11562,11297,11047,10789,10565,10301,9997,9675,9365,9084,8854,8621,8443,8307,8165,8070,7981,7911,7865,7799,7719,7568,7394,7238,7101,6983,6903,6817,6753,6695,6674,6646,6633,6615,6600,6635,6630,6473,6167,5738,5118,22.4,22.4,23.0,1569031,0.2,12.9,12.0,5.0,471,-1.00,-1.00,58.1898,-19.192941,0.000492,,,,,223 +SATSLF0720,2024246,22.760135,4.06,0.0569,0.1026,0.0182,0.00,16157,661,1,711,708,732,725,728,728,743,739,743,729,729,727,763,885,1193,1896,3029,4409,5661,6606,7265,7745,8182,8649,9173,9789,10529,11403,12402,13511,14705,15858,16972,17928,18642,19083,19226,19042,18673,18144,17540,16984,16529,16145,15926,15863,15942,16187,16589,17182,17909,18823,19899,21106,22423,23872,25355,26848,28272,29517,30522,31266,31686,31669,31337,30715,29776,28705,27483,26307,25159,24096,23099,22234,21512,20886,20401,20020,19722,19563,19473,19480,19593,19781,20036,20390,20824,21341,21910,22528,23196,23858,24464,25052,25529,25905,26162,26211,26085,25797,25309,24668,23958,23156,22281,21415,20557,19798,19080,18433,17872,17405,16997,16664,16420,16241,16139,16091,16119,16209,16366,16600,16896,17273,17690,18197,18752,19361,19998,20676,21389,22144,22875,23589,24301,24971,25548,26128,26537,26874,27113,27218,27226,27143,26925,26592,26204,25702,25143,24541,23906,23266,22598,21960,21316,20698,20091,19547,19041,18557,18169,17813,17464,17185,16909,16664,16471,16265,16076,15899,15709,15543,15403,15281,15174,15105,15025,14989,14958,14957,14964,15001,15025,15063,15084,15133,15198,15236,15254,15272,15269,15273,15281,15295,15309,15291,15249,15185,15128,15049,14959,14869,14733,14592,14425,14225,14005,13793,13559,13305,13034,12755,12459,12157,11858,11575,11309,11040,10815,10577,10298,9991,9687,9374,9097,8845,8641,8461,8305,8178,8088,7995,7931,7875,7814,7725,7575,7412,7243,7126,7004,6907,6840,6770,6727,6685,6652,6644,6620,6604,6633,6628,6478,6181,5744,5121,22.4,22.5,23.0,1569032,0.1,12.9,12.0,5.0,454,-1.00,-1.00,57.9361,-19.110750,0.000531,,,,,252 +SATSLF0720,2024246,22.760388,4.00,0.0560,0.1028,0.0185,0.00,16147,661,1,737,722,725,724,728,725,729,737,740,741,756,754,783,881,1200,1884,3025,4377,5639,6590,7253,7734,8177,8638,9165,9777,10509,11378,12376,13492,14669,15828,16958,17893,18625,19063,19196,19009,18642,18101,17508,16953,16490,16122,15905,15845,15917,16173,16567,17151,17897,18785,19859,21069,22407,23855,25344,26822,28236,29499,30490,31241,31652,31635,31324,30681,29747,28701,27477,26294,25136,24066,23053,22203,21473,20873,20387,20009,19717,19550,19465,19479,19573,19761,20020,20363,20810,21320,21907,22517,23195,23845,24456,25034,25493,25865,26126,26176,26050,25771,25299,24660,23947,23141,22268,21385,20535,19771,19074,18412,17858,17387,16986,16661,16413,16235,16132,16089,16094,16205,16357,16593,16897,17253,17693,18170,18718,19343,19959,20657,21385,22137,22875,23610,24313,24969,25571,26122,26546,26861,27108,27205,27209,27131,26907,26583,26202,25693,25127,24537,23897,23241,22594,21937,21289,20688,20090,19533,19029,18565,18162,17794,17468,17193,16914,16678,16475,16267,16071,15894,15705,15538,15384,15265,15171,15109,15026,14996,14976,14977,14978,15016,15029,15049,15095,15126,15171,15227,15235,15256,15261,15265,15298,15301,15307,15291,15245,15189,15118,15062,14962,14857,14721,14587,14417,14227,14006,13808,13571,13301,13017,12741,12451,12152,11852,11569,11308,11066,10813,10577,10301,10009,9700,9377,9081,8846,8630,8453,8309,8162,8075,8001,7929,7879,7813,7713,7575,7397,7248,7120,7009,6901,6833,6761,6711,6666,6651,6654,6638,6622,6645,6647,6485,6176,5749,5120,22.5,22.4,23.1,1569033,0.3,12.9,11.9,5.0,454,-1.00,-1.00,58.7408,-19.431944,0.000540,,,,,9 +SATSLF0720,2024246,22.760639,4.12,0.0577,0.1033,0.0191,0.00,16133,661,1,729,725,737,731,726,736,753,730,737,740,725,731,767,886,1192,1889,3040,4398,5657,6599,7245,7730,8160,8615,9141,9760,10519,11383,12387,13493,14677,15832,16921,17883,18599,19051,19162,19002,18632,18085,17497,16936,16465,16113,15905,15835,15913,16165,16549,17140,17887,18797,19846,21075,22393,23834,25314,26791,28215,29465,30450,31226,31610,31602,31287,30640,29722,28677,27460,26266,25115,24033,23040,22179,21448,20836,20352,19969,19690,19548,19445,19455,19570,19745,20022,20354,20765,21307,21881,22501,23170,23815,24443,25015,25489,25858,26114,26165,26036,25745,25275,24645,23922,23111,22253,21373,20512,19744,19053,18409,17829,17371,16966,16644,16387,16212,16114,16071,16087,16176,16357,16554,16863,17229,17663,18148,18708,19317,19955,20652,21369,22122,22861,23558,24279,24942,25526,26086,26503,26827,27076,27178,27191,27109,26893,26555,26169,25672,25105,24518,23873,23234,22565,21907,21273,20666,20066,19525,19046,18557,18163,17793,17456,17177,16902,16657,16461,16249,16048,15868,15668,15504,15360,15261,15153,15089,15009,14967,14952,14945,14957,14986,15003,15044,15079,15090,15155,15214,15217,15239,15243,15265,15287,15312,15301,15301,15227,15170,15098,15031,14945,14850,14713,14568,14394,14198,14001,13774,13537,13267,13015,12731,12428,12151,11844,11572,11293,11054,10813,10566,10298,10019,9685,9367,9081,8833,8625,8464,8301,8172,8078,7990,7922,7873,7805,7725,7578,7401,7253,7128,7003,6913,6833,6757,6704,6665,6641,6632,6619,6613,6629,6632,6484,6177,5767,5137,22.5,22.5,23.1,1569034,0.1,13.0,12.0,5.0,454,-1.00,-1.00,58.1951,-19.187696,0.000494,,,,,73 +SATSLF0720,2024246,22.760894,4.09,0.0572,0.1030,0.0183,0.00,16153,661,1,700,713,730,726,711,726,733,725,737,742,741,750,768,877,1186,1891,3032,4392,5661,6589,7262,7749,8181,8625,9151,9770,10503,11403,12391,13506,14678,15864,16965,17925,18628,19075,19212,19030,18650,18125,17527,16964,16501,16133,15919,15840,15913,16167,16586,17165,17914,18824,19897,21121,22456,23889,25353,26834,28253,29496,30508,31253,31669,31657,31348,30692,29776,28726,27476,26315,25144,24072,23072,22220,21477,20867,20379,19976,19715,19556,19455,19482,19589,19767,20051,20393,20831,21341,21901,22521,23184,23848,24453,25026,25527,25874,26138,26194,26077,25781,25310,24675,23952,23146,22286,21409,20555,19783,19085,18428,17860,17392,16994,16663,16425,16233,16144,16084,16110,16208,16364,16584,16891,17257,17684,18176,18743,19341,19988,20668,21398,22136,22882,23608,24311,24973,25557,26129,26553,26872,27113,27213,27228,27146,26921,26589,26199,25708,25125,24541,23895,23279,22602,21938,21312,20697,20104,19528,19065,18572,18165,17820,17461,17175,16915,16669,16465,16266,16081,15888,15712,15534,15397,15285,15179,15103,15031,14993,14965,14961,14976,15003,15026,15063,15104,15129,15176,15239,15248,15252,15260,15254,15275,15304,15294,15294,15237,15187,15125,15075,14987,14882,14743,14580,14419,14217,14003,13795,13559,13298,13039,12762,12458,12162,11865,11588,11315,11063,10827,10578,10310,10006,9692,9380,9076,8835,8627,8470,8297,8179,8083,8004,7930,7878,7810,7719,7575,7406,7246,7124,7011,6928,6836,6765,6709,6672,6647,6649,6625,6634,6650,6640,6477,6170,5744,5124,22.5,22.5,23.1,1569035,0.4,12.9,12.0,5.0,454,-1.00,-1.00,58.2873,-19.256118,0.000569,,,,,240 +SATSLF0720,2024246,22.761147,4.16,0.0583,0.1043,0.0195,0.00,16107,661,1,706,716,716,719,722,720,724,718,735,741,734,741,767,883,1194,1884,3017,4378,5638,6589,7237,7715,8155,8610,9127,9746,10481,11344,12331,13451,14617,15799,16893,17856,18566,19001,19141,18961,18584,18045,17467,16909,16465,16101,15877,15794,15872,16126,16530,17109,17841,18757,19824,21022,22354,23801,25265,26747,28164,29397,30391,31144,31544,31562,31232,30582,29668,28610,27393,26217,25072,23997,23000,22130,21419,20800,20302,19924,19654,19494,19402,19415,19523,19726,19972,20328,20765,21266,21840,22448,23124,23773,24377,24967,25428,25794,26080,26120,26011,25732,25245,24610,23881,23081,22227,21341,20488,19735,19031,18377,17815,17350,16933,16613,16349,16168,16095,16050,16069,16174,16328,16559,16866,17205,17643,18126,18685,19292,19923,20609,21333,22070,22824,23541,24239,24907,25486,26048,26472,26795,27033,27142,27162,27065,26856,26529,26123,25632,25081,24488,23851,23195,22544,21881,21243,20636,20052,19485,18997,18520,18109,17754,17426,17143,16879,16640,16434,16237,16043,15837,15666,15489,15345,15239,15138,15066,15005,14954,14941,14938,14940,14969,14989,15016,15063,15085,15136,15204,15209,15213,15231,15245,15258,15273,15269,15255,15202,15150,15087,15021,14928,14845,14706,14542,14382,14196,13987,13785,13526,13266,13000,12715,12411,12139,11849,11559,11284,11032,10793,10551,10285,9995,9649,9355,9072,8820,8609,8443,8289,8141,8057,7986,7923,7867,7800,7717,7584,7400,7242,7112,7004,6909,6834,6745,6705,6676,6643,6624,6619,6605,6626,6620,6452,6151,5730,5109,22.5,22.5,23.1,1569036,0.1,12.9,12.0,5.0,452,-1.00,-1.00,58.0433,-19.087764,0.000485,,,,,184 +SATSLF0720,2024246,22.761405,4.21,0.0590,0.1040,0.0191,0.00,16105,661,1,718,714,729,726,737,726,738,723,738,744,732,753,774,866,1182,1876,3012,4365,5625,6560,7223,7709,8132,8591,9115,9725,10473,11346,12326,13424,14605,15778,16885,17829,18551,18998,19125,18935,18562,18032,17436,16870,16432,16068,15856,15789,15867,16122,16525,17112,17856,18753,19800,21025,22332,23765,25255,26739,28151,29393,30394,31156,31531,31552,31218,30578,29654,28598,27390,26213,25042,23996,22992,22120,21404,20796,20305,19927,19645,19492,19415,19418,19529,19717,19971,20297,20743,21270,21837,22452,23113,23771,24394,24965,25438,25806,26069,26117,26000,25715,25241,24609,23883,23082,22212,21341,20499,19721,19029,18362,17815,17347,16941,16621,16365,16202,16075,16055,16068,16163,16329,16551,16832,17207,17630,18112,18681,19292,19932,20620,21354,22100,22835,23539,24244,24896,25482,26046,26493,26804,27047,27141,27158,27076,26857,26510,26132,25637,25083,24489,23849,23226,22554,21892,21260,20645,20058,19495,18991,18523,18098,17732,17410,17131,16865,16637,16438,16234,16039,15856,15661,15508,15357,15236,15136,15058,14987,14945,14940,14941,14949,14972,14989,15028,15072,15094,15140,15191,15221,15234,15225,15235,15252,15275,15276,15277,15220,15155,15098,15034,14949,14838,14712,14565,14398,14197,13976,13763,13533,13289,13017,12729,12438,12145,11821,11537,11273,11025,10794,10565,10282,9983,9683,9365,9072,8840,8620,8448,8291,8155,8067,7981,7920,7862,7791,7699,7577,7404,7241,7111,6995,6911,6825,6759,6703,6658,6644,6639,6619,6588,6624,6613,6459,6150,5729,5129,22.5,22.5,23.1,1569037,0.4,12.9,12.0,5.0,447,-1.00,-1.00,58.3082,-19.193830,0.000526,,,,,99 +SATSLF0720,2024246,22.761660,4.11,0.0576,0.1045,0.0192,0.00,16105,661,1,709,713,730,720,727,729,727,742,738,739,739,746,779,888,1194,1890,3015,4369,5635,6577,7229,7716,8149,8596,9112,9730,10492,11341,12348,13456,14637,15788,16893,17840,18553,18998,19138,18949,18576,18031,17445,16889,16436,16077,15851,15794,15870,16109,16513,17090,17833,18743,19816,21035,22348,23805,25251,26742,28153,29405,30389,31133,31537,31531,31206,30583,29660,28610,27389,26208,25047,23977,22980,22136,21404,20782,20321,19920,19643,19486,19390,19405,19507,19703,19966,20322,20745,21277,21828,22458,23127,23764,24377,24949,25421,25794,26029,26103,26001,25716,25237,24605,23895,23090,22215,21345,20498,19733,19010,18361,17792,17331,16916,16605,16363,16180,16095,16049,16073,16165,16328,16548,16840,17217,17642,18125,18689,19299,19945,20617,21339,22084,22809,23535,24232,24897,25482,26038,26468,26793,27037,27129,27145,27054,26852,26533,26128,25652,25068,24483,23841,23189,22528,21866,21243,20640,20059,19513,19030,18562,18137,17772,17428,17136,16870,16634,16427,16234,16049,15858,15674,15508,15358,15248,15138,15082,15002,14961,14936,14944,14944,14969,14993,15012,15056,15104,15157,15217,15208,15233,15224,15218,15231,15265,15258,15262,15220,15149,15095,15031,14928,14841,14694,14563,14389,14190,13984,13781,13537,13288,13022,12733,12436,12126,11835,11553,11274,11029,10794,10560,10305,10001,9684,9371,9069,8835,8618,8452,8294,8165,8083,7996,7911,7859,7797,7693,7552,7386,7233,7121,7005,6905,6813,6759,6705,6665,6650,6626,6597,6595,6612,6617,6469,6177,5738,5125,22.5,22.6,23.2,1569038,0.1,12.9,12.0,5.0,449,-1.00,-1.00,58.5409,-19.290312,0.000564,,,,,24 +SATSLF0720,2024246,22.761913,4.21,0.0590,0.1051,0.0194,0.00,16086,661,1,725,721,731,730,737,730,747,746,740,741,741,747,787,892,1182,1879,3021,4369,5636,6572,7237,7722,8154,8596,9115,9733,10477,11333,12326,13432,14592,15751,16873,17825,18546,18972,19099,18917,18551,18000,17417,16860,16429,16057,15837,15762,15845,16090,16499,17070,17826,18722,19789,21008,22328,23749,25217,26696,28123,29354,30344,31098,31490,31488,31178,30525,29620,28569,27339,26173,25032,23936,22949,22104,21367,20770,20267,19892,19609,19469,19364,19373,19483,19674,19933,20290,20722,21235,21815,22421,23073,23716,24330,24903,25397,25754,26025,26076,25959,25688,25194,24561,23842,23049,22179,21317,20469,19690,19003,18357,17793,17329,16906,16611,16358,16169,16077,16022,16042,16141,16309,16525,16827,17195,17612,18108,18658,19271,19898,20587,21302,22053,22795,23502,24189,24865,25451,26013,26441,26771,26997,27111,27109,27013,26805,26485,26101,25616,25037,24448,23811,23165,22522,21847,21220,20613,20027,19477,19009,18506,18111,17741,17413,17117,16851,16626,16417,16225,16021,15826,15646,15488,15341,15238,15130,15072,14994,14953,14921,14915,14907,14937,14971,15019,15045,15079,15125,15177,15201,15213,15213,15227,15265,15265,15266,15254,15191,15141,15088,15010,14921,14821,14685,14540,14377,14188,13979,13762,13512,13248,12990,12695,12414,12136,11837,11541,11277,11016,10791,10533,10281,9990,9660,9349,9055,8823,8612,8445,8279,8151,8059,7976,7899,7854,7786,7699,7567,7389,7235,7105,6995,6892,6811,6757,6698,6656,6640,6622,6612,6615,6634,6620,6465,6147,5718,5109,22.5,22.6,23.2,1569039,0.0,12.9,11.9,5.0,449,-1.00,-1.00,58.2231,-19.131701,0.000536,,,,,125 +SATSLF0720,2024246,22.762169,4.13,0.0578,0.1057,0.0203,0.00,16067,661,1,712,717,722,717,730,729,727,740,737,741,745,751,777,905,1200,1902,3019,4383,5618,6571,7225,7691,8123,8587,9101,9723,10463,11319,12315,13418,14585,15743,16833,17796,18505,18937,19072,18892,18528,17995,17397,16845,16388,16032,15817,15753,15816,16057,16478,17053,17789,18691,19745,20967,22277,23719,25193,26665,28078,29300,30302,31051,31463,31456,31140,30484,29574,28531,27309,26130,24981,23912,22923,22078,21358,20749,20275,19892,19612,19431,19338,19353,19449,19641,19921,20265,20693,21216,21786,22397,23073,23707,24316,24898,25373,25717,25995,26037,25939,25652,25195,24549,23830,23034,22170,21286,20445,19687,18973,18325,17769,17288,16890,16562,16329,16148,16051,16029,16042,16133,16289,16512,16813,17169,17595,18069,18637,19237,19876,20567,21288,22037,22773,23473,24188,24837,25431,25986,26414,26733,26982,27089,27082,27004,26792,26453,26045,25568,25001,24413,23780,23139,22486,21821,21193,20582,20003,19448,18961,18489,18077,17703,17383,17099,16819,16589,16382,16193,15992,15812,15621,15455,15329,15222,15101,15037,14971,14922,14904,14895,14909,14939,14949,14996,15029,15066,15101,15163,15189,15203,15209,15203,15215,15246,15248,15230,15179,15126,15061,14981,14908,14802,14683,14525,14356,14156,13948,13751,13504,13241,12973,12707,12394,12118,11816,11539,11260,11012,10768,10529,10263,9961,9648,9336,9046,8823,8615,8439,8285,8155,8059,7982,7917,7851,7778,7703,7549,7371,7216,7089,6980,6870,6801,6740,6688,6658,6637,6624,6611,6598,6608,6607,6455,6149,5728,5103,22.5,22.6,23.2,1569040,0.3,12.9,11.9,5.0,450,-1.00,-1.00,58.6316,-19.275803,0.000541,,,,,3 +SATSLF0720,2024246,22.762424,4.16,0.0582,0.1056,0.0203,0.00,16068,661,1,706,718,713,723,720,725,734,741,733,730,747,750,784,900,1204,1892,3028,4373,5628,6568,7217,7705,8142,8582,9108,9720,10465,11344,12322,13418,14586,15744,16853,17812,18521,18953,19084,18898,18546,18008,17413,16862,16423,16041,15837,15765,15837,16087,16488,17064,17788,18702,19755,20977,22285,23721,25197,26670,28089,29329,30330,31064,31479,31469,31149,30496,29580,28541,27315,26145,24998,23930,22933,22089,21355,20748,20267,19875,19591,19445,19346,19349,19463,19651,19906,20263,20693,21205,21773,22392,23053,23705,24324,24893,25367,25733,25992,26053,25945,25650,25179,24555,23821,23030,22160,21297,20453,19681,18971,18347,17765,17293,16883,16587,16328,16160,16054,16010,16032,16112,16280,16507,16796,17156,17589,18081,18644,19254,19889,20557,21280,22023,22749,23467,24182,24822,25410,25988,26412,26721,26958,27073,27092,27003,26786,26454,26064,25573,24994,24411,23795,23150,22497,21838,21198,20592,20000,19445,18945,18487,18094,17717,17390,17098,16838,16599,16392,16197,15988,15811,15626,15458,15315,15205,15113,15038,14953,14908,14903,14903,14912,14944,14965,15002,15040,15061,15104,15160,15170,15191,15197,15200,15210,15245,15244,15233,15200,15122,15059,14986,14903,14818,14678,14525,14339,14154,13952,13726,13503,13237,12981,12706,12410,12125,11818,11528,11255,10989,10767,10525,10262,9973,9654,9337,9051,8825,8610,8429,8279,8129,8039,7971,7888,7837,7781,7709,7553,7375,7229,7107,6986,6893,6805,6734,6681,6633,6626,6608,6593,6590,6613,6616,6465,6160,5725,5115,22.5,22.6,23.2,1569041,0.1,12.9,11.9,5.0,441,-1.00,-1.00,58.2110,-19.108009,0.000505,,,,,111 +SATSLF0720,2024246,22.762679,4.11,0.0576,0.1052,0.0206,0.00,16069,661,1,720,701,717,701,712,710,727,742,745,747,757,757,787,882,1196,1872,2999,4355,5606,6557,7217,7697,8137,8587,9122,9733,10473,11333,12327,13435,14600,15755,16861,17809,18533,18961,19090,18907,18526,18007,17405,16861,16421,16044,15817,15749,15842,16093,16486,17063,17812,18713,19765,20973,22284,23709,25186,26670,28069,29317,30309,31074,31465,31470,31145,30503,29595,28552,27306,26157,24998,23914,22913,22092,21337,20743,20278,19877,19605,19452,19362,19374,19457,19656,19913,20270,20680,21227,21776,22396,23049,23699,24314,24893,25373,25741,26011,26042,25932,25656,25189,24549,23827,23037,22187,21297,20452,19683,18999,18340,17777,17306,16882,16574,16331,16168,16077,16021,16030,16119,16275,16512,16798,17163,17585,18078,18642,19239,19883,20562,21290,22028,22768,23477,24186,24832,25426,25981,26408,26749,26980,27072,27102,26999,26791,26459,26077,25581,25017,24429,23780,23140,22483,21833,21194,20599,20004,19458,18960,18494,18091,17713,17385,17083,16827,16581,16384,16190,16005,15810,15627,15473,15318,15199,15100,15028,14964,14914,14903,14890,14901,14918,14958,15002,15033,15060,15110,15168,15166,15190,15198,15200,15221,15261,15250,15235,15175,15113,15051,14985,14902,14819,14689,14520,14355,14158,13957,13735,13507,13244,12986,12697,12392,12099,11805,11538,11241,11003,10781,10525,10276,9968,9655,9334,9059,8814,8605,8433,8288,8146,8041,7966,7889,7844,7789,7692,7562,7368,7229,7095,6990,6877,6803,6741,6680,6647,6629,6620,6610,6601,6622,6615,6451,6151,5723,5109,22.5,22.6,23.2,1569041,0.2,13.0,12.0,5.0,449,-1.00,-1.00,58.4231,-19.196475,0.000459,,,,,53 +SATSLF0720,2024246,22.762935,4.21,0.0590,0.1088,0.0225,0.00,15967,661,1,709,727,720,728,726,720,733,741,749,752,741,742,789,882,1186,1862,2995,4341,5569,6507,7157,7644,8062,8519,9035,9644,10369,11231,12219,13312,14450,15603,16695,17640,18353,18774,18908,18728,18368,17845,17279,16727,16269,15893,15685,15620,15697,15936,16330,16917,17658,18549,19613,20824,22113,23541,25019,26461,27865,29099,30085,30824,31224,31231,30909,30283,29355,28321,27114,25941,24797,23723,22757,21921,21197,20587,20119,19717,19445,19313,19208,19222,19322,19515,19770,20128,20547,21076,21634,22249,22912,23550,24166,24739,25201,25575,25830,25888,25774,25490,24997,24367,23661,22858,22012,21157,20309,19546,18866,18208,17667,17192,16790,16477,16222,16059,15957,15920,15933,16037,16186,16407,16705,17065,17484,17979,18544,19142,19765,20439,21159,21900,22642,23363,24054,24699,25280,25844,26257,26585,26826,26923,26936,26840,26630,26301,25912,25434,24869,24286,23649,23020,22371,21712,21082,20467,19895,19351,18849,18370,17982,17617,17292,17007,16741,16497,16314,16101,15915,15722,15538,15380,15237,15106,15029,14949,14875,14833,14830,14819,14809,14847,14874,14916,14957,14992,15041,15098,15112,15117,15102,15127,15141,15162,15156,15159,15104,15034,14987,14921,14837,14744,14610,14439,14295,14080,13893,13665,13444,13179,12907,12631,12345,12067,11756,11471,11211,10954,10723,10481,10229,9924,9595,9299,9013,8769,8557,8387,8229,8107,8018,7941,7863,7813,7746,7665,7529,7341,7190,7063,6956,6860,6782,6718,6664,6614,6594,6589,6582,6565,6583,6570,6426,6125,5710,5089,22.5,22.6,23.3,1569042,0.2,13.0,11.9,5.0,449,-1.00,-1.00,59.2044,-19.380377,0.000586,,,,,12 +SATSLF0720,2024246,22.763189,4.12,0.0578,0.1077,0.0215,0.00,16005,661,1,722,720,733,730,729,713,727,725,739,729,731,755,798,884,1195,1883,3008,4359,5588,6532,7185,7671,8099,8540,9061,9665,10409,11269,12261,13353,14524,15661,16753,17702,18413,18844,18983,18787,18419,17907,17320,16765,16313,15973,15721,15683,15737,15994,16396,16979,17713,18600,19653,20857,22149,23596,25046,26543,27925,29171,30164,30915,31310,31314,30994,30344,29437,28382,27186,26017,24871,23805,22821,21981,21241,20661,20177,19794,19518,19357,19256,19271,19381,19565,19837,20177,20602,21129,21677,22300,22954,23608,24212,24774,25271,25630,25901,25958,25826,25553,25078,24445,23718,22937,22069,21194,20361,19593,18901,18259,17698,17219,16832,16514,16269,16101,16008,15949,15974,16056,16206,16439,16744,17113,17527,18024,18577,19175,19808,20485,21204,21942,22677,23381,24092,24736,25320,25878,26297,26622,26859,26977,26987,26896,26691,26372,25993,25490,24939,24337,23697,23063,22417,21763,21141,20514,19929,19378,18888,18421,18018,17667,17332,17053,16793,16561,16357,16137,15954,15764,15569,15409,15261,15158,15044,14971,14906,14881,14853,14867,14865,14885,14909,14932,14973,15004,15058,15121,15136,15158,15157,15157,15178,15201,15188,15170,15131,15072,15020,14941,14867,14762,14649,14493,14325,14137,13926,13703,13469,13214,12947,12662,12374,12086,11794,11509,11229,10973,10728,10500,10240,9952,9626,9315,9054,8793,8583,8415,8251,8119,8031,7948,7869,7835,7770,7684,7541,7353,7207,7082,6976,6876,6797,6728,6670,6624,6619,6606,6596,6579,6609,6597,6446,6129,5715,5098,22.6,22.7,23.3,1569043,0.1,12.9,11.9,5.0,445,-1.00,-1.00,58.9893,-19.336831,0.000510,,,,,169 +SATSLF0720,2024246,22.763441,4.29,0.0601,0.1085,0.0217,0.00,15988,661,1,731,728,739,726,719,735,737,739,747,748,755,757,781,875,1187,1873,3000,4363,5590,6530,7194,7653,8068,8520,9044,9657,10378,11250,12237,13326,14488,15634,16717,17658,18374,18805,18949,18750,18394,17862,17281,16736,16295,15949,15716,15653,15721,15975,16365,16948,17681,18581,19629,20818,22137,23570,25013,26485,27898,29121,30119,30869,31249,31257,30952,30281,29388,28335,27143,25958,24820,23754,22781,21944,21202,20609,20141,19744,19485,19328,19221,19261,19352,19525,19811,20136,20554,21085,21657,22261,22935,23581,24192,24762,25226,25600,25865,25912,25777,25515,25037,24402,23686,22902,22037,21189,20349,19574,18882,18234,17686,17201,16801,16488,16249,16077,15982,15928,15957,16048,16216,16442,16717,17083,17520,17992,18565,19162,19795,20484,21191,21938,22658,23354,24055,24704,25309,25872,26274,26605,26841,26951,26965,26886,26658,26339,25961,25450,24889,24320,23681,23050,22397,21737,21109,20498,19910,19357,18861,18406,18006,17632,17308,17039,16759,16535,16345,16123,15936,15754,15560,15403,15253,15147,15036,14976,14900,14875,14848,14849,14850,14872,14893,14939,14980,15008,15063,15118,15129,15139,15149,15160,15177,15204,15186,15185,15125,15081,15012,14932,14843,14760,14634,14481,14308,14118,13910,13698,13445,13213,12954,12661,12374,12084,11769,11494,11235,10977,10746,10489,10225,9943,9626,9321,9034,8790,8583,8407,8248,8120,8026,7947,7886,7822,7765,7673,7543,7367,7211,7089,6973,6883,6793,6729,6682,6629,6611,6607,6589,6576,6594,6599,6436,6139,5700,5092,22.6,22.7,23.3,1569044,0.1,12.8,12.0,5.0,449,-1.00,-1.00,58.4473,-19.080721,0.000510,,,,,216 +SATSLF0720,2024246,22.763697,4.10,0.0574,0.1068,0.0210,0.00,16037,661,1,720,723,723,714,731,724,737,729,741,741,751,747,778,891,1189,1893,3029,4374,5614,6547,7221,7692,8124,8571,9077,9707,10449,11312,12289,13388,14567,15713,16823,17770,18475,18915,19043,18869,18503,17973,17386,16833,16380,16021,15793,15722,15790,16041,16448,17018,17753,18661,19715,20936,22247,23681,25147,26621,28030,29255,30253,30996,31385,31381,31076,30421,29512,28480,27266,26086,24916,23866,22860,22021,21294,20685,20209,19826,19562,19405,19293,19301,19412,19604,19860,20211,20648,21157,21723,22349,23017,23656,24269,24848,25312,25691,25940,25989,25864,25607,25132,24488,23777,22986,22121,21244,20402,19637,18939,18298,17729,17275,16858,16549,16300,16132,16029,15986,16000,16094,16250,16466,16771,17129,17550,18040,18593,19206,19836,20521,21256,21985,22720,23433,24116,24787,25365,25926,26340,26659,26907,27008,27038,26949,26733,26405,26011,25529,24967,24379,23733,23085,22441,21757,21147,20538,19941,19409,18922,18461,18056,17698,17362,17077,16802,16573,16356,16147,15971,15769,15588,15415,15291,15181,15090,15013,14957,14906,14878,14871,14875,14907,14916,14961,14997,15027,15062,15134,15145,15153,15162,15171,15199,15217,15219,15205,15161,15089,15037,14956,14873,14787,14664,14517,14340,14155,13947,13730,13500,13228,12953,12681,12381,12087,11801,11514,11233,10989,10761,10525,10255,9967,9654,9321,9026,8795,8587,8414,8269,8141,8043,7967,7881,7843,7773,7691,7534,7354,7215,7083,6979,6885,6793,6720,6679,6648,6624,6611,6593,6597,6613,6606,6458,6150,5730,5114,22.6,22.8,23.4,1569045,0.2,13.0,11.9,5.0,447,-1.00,-1.00,58.4517,-19.165950,0.000512,,,,,54 +SATSLF0720,2024246,22.763950,4.19,0.0586,0.1076,0.0215,0.00,16013,661,1,712,720,718,710,717,717,716,733,735,743,745,766,786,884,1191,1886,3000,4355,5600,6540,7196,7677,8100,8549,9060,9673,10406,11267,12251,13346,14503,15667,16749,17701,18413,18853,18983,18797,18435,17919,17348,16794,16328,15969,15731,15669,15758,15998,16401,16987,17710,18616,19670,20877,22190,23624,25082,26563,27968,29208,30196,30932,31322,31338,31006,30368,29449,28411,27179,26040,24874,23813,22826,21980,21250,20656,20171,19785,19510,19351,19259,19283,19378,19570,19844,20199,20629,21137,21701,22324,22978,23625,24231,24805,25281,25637,25896,25952,25841,25559,25094,24449,23744,22967,22109,21221,20381,19609,18907,18265,17710,17230,16839,16520,16275,16108,16008,15956,15979,16066,16231,16463,16749,17118,17543,18034,18594,19192,19811,20493,21232,21961,22695,23417,24105,24757,25345,25899,26322,26626,26891,26998,26997,26921,26710,26375,25990,25501,24937,24347,23712,23066,22425,21751,21127,20520,19943,19394,18896,18428,18025,17648,17335,17054,16785,16561,16350,16148,15962,15778,15597,15426,15277,15156,15059,14977,14917,14880,14857,14864,14877,14904,14928,14945,14998,15019,15047,15129,15143,15155,15165,15171,15195,15202,15205,15194,15144,15104,15021,14955,14858,14779,14645,14489,14327,14136,13918,13721,13468,13203,12936,12650,12366,12077,11783,11507,11241,10981,10743,10524,10245,9951,9622,9325,9033,8791,8570,8411,8275,8125,8052,7957,7882,7813,7767,7669,7537,7361,7195,7080,6972,6866,6788,6725,6668,6631,6620,6606,6594,6580,6599,6589,6452,6143,5712,5102,22.6,22.8,23.4,1569046,0.2,12.9,12.0,5.0,447,-1.00,-1.00,58.7640,-19.256799,0.000574,,,,,211 +SATSLF0720,2024246,22.764202,4.19,0.0587,0.1074,0.0215,0.00,16005,661,1,716,722,728,722,729,733,732,732,734,751,739,733,776,878,1201,1881,3003,4349,5605,6525,7180,7670,8097,8541,9069,9672,10411,11274,12250,13349,14501,15659,16753,17698,18413,18848,18980,18805,18432,17904,17320,16769,16325,15955,15724,15671,15741,15986,16401,16968,17712,18616,19676,20877,22177,23600,25049,26530,27944,29169,30165,30913,31309,31301,30984,30336,29431,28391,27177,26000,24865,23807,22817,21965,21237,20645,20161,19796,19517,19360,19269,19281,19377,19562,19824,20157,20595,21120,21685,22306,22953,23607,24224,24788,25256,25597,25890,25949,25812,25540,25066,24448,23729,22935,22070,21200,20387,19592,18905,18259,17701,17243,16819,16513,16261,16087,15986,15950,15978,16068,16222,16450,16740,17095,17521,18010,18566,19185,19810,20496,21217,21949,22689,23393,24097,24738,25324,25889,26306,26632,26866,26969,27003,26906,26674,26368,25966,25493,24924,24340,23712,23067,22418,21761,21128,20518,19941,19374,18887,18439,18026,17658,17342,17044,16778,16549,16344,16136,15933,15762,15578,15406,15282,15162,15072,14985,14916,14869,14853,14847,14855,14881,14912,14949,14986,15013,15064,15117,15130,15138,15146,15178,15183,15201,15207,15197,15138,15081,15019,14961,14870,14761,14638,14496,14330,14136,13922,13716,13474,13209,12929,12651,12365,12069,11778,11503,11235,10988,10739,10507,10245,9945,9639,9330,9034,8793,8572,8411,8254,8128,8022,7945,7877,7818,7770,7684,7542,7365,7206,7080,6957,6865,6787,6724,6667,6641,6610,6605,6587,6579,6594,6587,6419,6133,5702,5077,22.6,22.8,23.4,1569047,0.1,12.9,11.9,5.0,448,-1.00,-1.00,58.5986,-19.172942,0.000544,,,,,231 +SATSLF0720,2024246,22.764458,4.36,0.0611,0.1091,0.0219,0.00,15965,661,1,713,715,736,724,736,725,733,740,737,751,750,746,773,871,1185,1869,2995,4328,5559,6499,7162,7645,8057,8507,9017,9633,10363,11226,12200,13311,14473,15609,16694,17626,18349,18769,18896,18721,18366,17832,17275,16718,16261,15904,15699,15626,15692,15947,16332,16913,17651,18538,19591,20804,22108,23520,24976,26434,27844,29079,30064,30813,31197,31195,30876,30237,29323,28288,27074,25898,24768,23705,22725,21896,21173,20572,20114,19733,19457,19303,19193,19207,19305,19495,19749,20103,20540,21056,21634,22258,22913,23552,24160,24724,25197,25549,25815,25861,25756,25488,25010,24388,23661,22879,22025,21153,20305,19549,18860,18205,17658,17193,16800,16474,16241,16056,15958,15923,15933,16030,16193,16428,16713,17072,17495,17988,18541,19139,19764,20450,21161,21888,22631,23345,24037,24690,25278,25843,26268,26578,26818,26912,26931,26833,26640,26310,25925,25433,24861,24279,23644,23023,22362,21703,21080,20477,19892,19337,18842,18391,17990,17641,17317,17025,16736,16512,16313,16107,15907,15732,15548,15367,15239,15125,15029,14962,14884,14842,14824,14833,14836,14853,14883,14913,14957,14989,15053,15094,15101,15115,15139,15146,15163,15173,15160,15159,15105,15042,15005,14924,14839,14750,14620,14464,14301,14109,13906,13683,13456,13190,12925,12646,12356,12070,11761,11478,11205,10955,10722,10481,10224,9927,9598,9301,9010,8763,8565,8400,8238,8119,8027,7949,7867,7824,7761,7678,7528,7345,7174,7055,6941,6865,6778,6725,6682,6626,6624,6604,6579,6564,6591,6581,6426,6131,5707,5081,22.6,22.8,23.4,1569048,0.1,13.0,11.9,5.0,446,-1.00,-1.00,58.1432,-18.918211,0.000536,,,,,91 +SATSDF0720,2024246,23.009139,0.00,0.0000,0.0000,0.0000,0.00,662,0,1,644,637,636,633,633,621,636,631,645,649,656,650,649,632,645,653,653,653,643,647,645,656,664,666,665,680,669,673,653,651,655,665,652,654,664,649,649,668,659,679,673,663,665,657,652,660,665,660,669,669,662,675,666,676,660,683,676,670,683,672,668,674,658,674,669,665,661,657,667,661,678,669,656,662,657,652,656,656,659,652,659,653,663,667,667,672,662,666,668,661,661,663,672,672,661,662,659,663,660,651,661,666,672,663,671,668,677,676,663,665,670,674,675,666,666,679,681,669,669,660,660,661,648,657,653,661,666,672,673,649,671,673,664,659,662,675,650,673,666,669,673,664,673,665,653,663,653,675,669,669,665,677,666,672,650,659,663,679,669,653,671,662,649,654,661,652,658,663,668,670,675,661,671,650,655,656,658,658,661,674,657,659,662,672,671,673,674,656,663,660,662,667,657,672,661,662,659,676,670,667,672,666,661,664,656,667,657,662,668,671,668,667,660,663,663,661,663,667,659,670,661,669,653,659,670,665,664,667,671,658,671,665,672,663,666,673,664,667,653,658,649,647,659,664,668,666,656,658,657,660,651,662,654,665,663,488,0.0,0.0,0.0,1569047,0.4,13.5,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,159 +SATSLF0720,2024246,23.009690,4.04,0.0566,0.1016,0.0178,0.00,16195,662,1,713,709,711,711,720,728,726,736,730,742,732,745,770,883,1201,1909,3067,4418,5695,6629,7283,7773,8218,8668,9189,9821,10575,11432,12448,13553,14745,15923,17042,17996,18723,19153,19298,19106,18709,18195,17586,17027,16578,16212,15985,15901,15979,16235,16637,17233,17966,18875,19962,21160,22493,23947,25434,26917,28345,29607,30613,31349,31755,31744,31435,30780,29852,28787,27563,26386,25221,24146,23130,22285,21544,20929,20444,20059,19762,19619,19517,19537,19632,19821,20090,20459,20892,21421,21977,22588,23265,23906,24525,25106,25585,25946,26219,26269,26157,25872,25380,24744,24007,23201,22332,21458,20597,19827,19118,18460,17894,17421,17025,16698,16454,16279,16179,16138,16149,16223,16407,16633,16929,17305,17744,18214,18785,19394,20032,20729,21452,22192,22941,23657,24362,25030,25610,26185,26609,26950,27181,27292,27298,27205,26990,26672,26272,25773,25207,24612,23962,23310,22663,21997,21358,20746,20167,19601,19098,18610,18210,17837,17510,17226,16970,16724,16521,16313,16129,15927,15741,15570,15422,15312,15213,15131,15058,15024,15003,15001,15016,15042,15053,15097,15124,15153,15211,15265,15286,15293,15292,15307,15331,15345,15332,15322,15267,15215,15142,15077,14990,14882,14761,14610,14433,14252,14025,13819,13586,13310,13049,12762,12470,12188,11885,11584,11316,11066,10827,10597,10322,10035,9708,9397,9112,8854,8647,8474,8327,8197,8093,8014,7942,7899,7826,7746,7604,7420,7266,7134,7023,6923,6836,6779,6710,6685,6653,6648,6649,6633,6657,6642,6479,6181,5764,5146,22.4,22.4,22.9,1569048,0.7,13.0,12.0,5.0,566,-1.00,-1.00,57.7027,-19.063530,0.000524,,,,,121 +SATSLF0720,2024246,23.009873,4.15,0.0582,0.1030,0.0179,0.00,16149,662,1,701,699,709,715,729,729,720,739,728,735,730,743,777,884,1182,1887,3024,4387,5653,6591,7253,7740,8178,8628,9149,9778,10525,11385,12395,13514,14686,15838,16954,17906,18643,19073,19217,19026,18649,18105,17523,16965,16502,16139,15913,15845,15922,16171,16587,17162,17914,18818,19892,21106,22427,23856,25344,26832,28250,29493,30502,31249,31645,31650,31317,30682,29740,28692,27467,26289,25131,24085,23074,22220,21479,20875,20380,19993,19710,19547,19456,19496,19582,19778,20040,20385,20820,21339,21901,22515,23189,23830,24459,25052,25523,25883,26146,26195,26069,25769,25307,24669,23946,23138,22270,21386,20545,19780,19066,18423,17863,17390,16992,16650,16397,16239,16138,16081,16129,16202,16359,16579,16863,17242,17673,18168,18734,19345,19989,20669,21403,22155,22890,23618,24300,24969,25573,26117,26561,26858,27109,27223,27232,27141,26914,26583,26195,25696,25133,24552,23917,23269,22606,21943,21319,20695,20107,19534,19038,18569,18164,17802,17462,17177,16916,16669,16473,16270,16074,15899,15701,15536,15393,15267,15191,15101,15034,14998,14970,14971,14985,15005,15022,15052,15101,15134,15176,15221,15245,15238,15240,15248,15288,15305,15297,15296,15249,15190,15139,15063,14965,14884,14725,14571,14400,14214,14012,13793,13550,13285,13020,12749,12457,12176,11856,11560,11293,11046,10816,10563,10291,9997,9687,9369,9092,8839,8627,8471,8324,8172,8068,7994,7919,7858,7808,7713,7575,7417,7253,7133,7011,6907,6833,6770,6709,6665,6651,6636,6616,6600,6626,6621,6468,6177,5747,5117,22.4,22.4,22.9,1569049,0.0,12.9,11.9,5.0,469,-1.00,-1.00,57.7544,-19.022187,0.000538,,,,,238 +SATSLF0720,2024246,23.010129,4.03,0.0564,0.1034,0.0180,0.00,16141,662,1,705,706,716,709,725,744,742,737,737,739,737,749,789,897,1213,1894,3037,4384,5638,6584,7239,7735,8181,8624,9149,9769,10506,11402,12369,13485,14664,15833,16947,17904,18631,19065,19188,19014,18626,18084,17498,16951,16477,16127,15909,15837,15909,16157,16565,17145,17886,18795,19889,21091,22397,23842,25302,26798,28226,29466,30477,31217,31625,31626,31300,30659,29745,28692,27464,26292,25113,24054,23036,22189,21450,20845,20362,19976,19697,19545,19442,19456,19563,19748,20018,20359,20790,21320,21881,22505,23176,23808,24418,24997,25489,25868,26121,26170,26052,25778,25285,24661,23938,23141,22244,21383,20544,19768,19060,18408,17833,17376,16968,16641,16405,16221,16125,16081,16084,16193,16359,16584,16887,17246,17666,18155,18725,19338,19969,20647,21378,22130,22866,23577,24298,24953,25552,26118,26537,26861,27106,27201,27224,27117,26908,26579,26183,25690,25117,24543,23908,23252,22597,21922,21303,20679,20087,19544,19052,18577,18167,17792,17465,17178,16910,16657,16462,16270,16071,15897,15693,15528,15392,15275,15171,15083,15015,14980,14969,14957,14958,14983,15011,15068,15101,15115,15175,15227,15233,15236,15265,15261,15268,15305,15300,15291,15253,15187,15136,15049,14964,14865,14731,14577,14409,14212,14002,13784,13557,13296,13014,12747,12448,12172,11866,11578,11306,11057,10820,10577,10315,10005,9682,9369,9084,8838,8638,8469,8301,8172,8075,7997,7921,7879,7810,7714,7575,7413,7260,7120,7021,6917,6839,6765,6712,6674,6656,6650,6628,6616,6634,6622,6477,6168,5744,5128,22.4,22.4,23.0,1569050,0.2,12.9,11.9,5.0,457,-1.00,-1.00,58.5561,-19.345935,0.000485,,,,,172 +SATSLF0720,2024246,23.010382,4.08,0.0572,0.1031,0.0184,0.00,16153,662,1,721,727,728,723,738,721,739,728,743,741,743,760,785,890,1202,1892,3044,4418,5656,6598,7271,7760,8192,8629,9164,9769,10529,11401,12406,13523,14700,15851,16957,17911,18648,19077,19222,19038,18654,18116,17529,16958,16515,16140,15923,15856,15946,16186,16594,17172,17913,18824,19882,21106,22421,23866,25337,26833,28251,29498,30501,31259,31649,31651,31334,30695,29769,28714,27485,26312,25136,24056,23069,22224,21480,20880,20392,20005,19725,19563,19455,19458,19575,19767,20033,20374,20811,21338,21890,22523,23196,23837,24441,25038,25514,25881,26155,26186,26067,25787,25293,24659,23942,23129,22269,21389,20547,19785,19069,18419,17856,17390,16972,16646,16401,16238,16132,16085,16105,16198,16359,16589,16887,17258,17697,18182,18734,19355,19986,20664,21387,22123,22874,23601,24301,24960,25557,26120,26555,26853,27112,27205,27226,27117,26923,26600,26194,25706,25140,24545,23912,23272,22592,21922,21306,20693,20099,19549,19066,18569,18167,17797,17477,17184,16913,16689,16461,16275,16071,15882,15693,15528,15395,15274,15173,15096,15022,14985,14983,14978,14989,15008,15036,15057,15091,15114,15177,15208,15234,15246,15258,15272,15289,15307,15299,15283,15251,15189,15122,15052,14978,14872,14744,14592,14413,14219,14013,13796,13557,13287,13020,12752,12437,12159,11854,11581,11321,11069,10839,10585,10317,10006,9692,9386,9089,8849,8626,8463,8294,8175,8074,7995,7927,7879,7816,7733,7604,7413,7271,7133,7010,6910,6833,6762,6711,6683,6658,6644,6639,6617,6647,6637,6484,6163,5735,5128,22.4,22.4,23.1,1569051,0.4,12.9,12.0,5.0,454,-1.00,-1.00,58.0321,-19.144900,0.000449,,,,,230 +SATSLF0720,2024246,23.010639,4.17,0.0584,0.1035,0.0189,0.00,16125,662,1,722,722,723,721,719,727,727,724,741,744,738,753,785,885,1195,1894,3033,4395,5647,6588,7269,7740,8153,8606,9129,9755,10494,11364,12373,13477,14659,15826,16921,17879,18586,19024,19147,18990,18610,18093,17502,16937,16476,16126,15893,15833,15913,16145,16541,17138,17861,18785,19836,21047,22373,23809,25293,26792,28200,29453,30455,31202,31589,31589,31253,30619,29704,28653,27426,26256,25093,24009,23011,22163,21430,20816,20349,19940,19673,19511,19434,19450,19549,19754,20006,20364,20780,21306,21854,22485,23145,23789,24401,24987,25460,25833,26096,26151,26013,25751,25261,24636,23921,23104,22229,21365,20505,19731,19022,18375,17826,17349,16947,16636,16377,16214,16121,16062,16093,16186,16340,16567,16860,17233,17668,18133,18705,19313,19953,20633,21370,22116,22837,23563,24253,24912,25513,26066,26499,26816,27053,27163,27189,27094,26872,26533,26155,25669,25098,24496,23875,23225,22589,21902,21271,20682,20064,19522,19025,18534,18132,17789,17441,17158,16885,16650,16449,16240,16052,15861,15664,15509,15360,15259,15171,15086,15002,14965,14941,14952,14956,14981,15005,15040,15097,15116,15156,15212,15221,15224,15230,15243,15265,15291,15292,15291,15234,15182,15107,15042,14951,14852,14727,14567,14386,14212,13997,13781,13547,13280,13014,12713,12422,12139,11829,11546,11287,11034,10804,10565,10301,10000,9679,9368,9094,8828,8627,8448,8290,8158,8066,7991,7922,7867,7809,7719,7585,7413,7253,7125,7013,6899,6830,6749,6707,6670,6653,6649,6637,6619,6629,6619,6473,6154,5729,5122,22.5,22.5,23.1,1569052,0.1,12.9,11.9,5.0,454,-1.00,-1.00,57.8885,-19.046642,0.000486,,,,,94 +SATSLF0720,2024246,23.010894,4.08,0.0572,0.1051,0.0195,0.00,16098,662,1,709,706,715,724,713,729,721,722,718,727,733,733,783,883,1189,1888,3019,4379,5642,6573,7235,7708,8139,8583,9117,9737,10481,11341,12337,13445,14624,15780,16889,17831,18548,18990,19130,18945,18567,18039,17456,16885,16440,16069,15849,15785,15859,16111,16514,17104,17829,18731,19796,21020,22342,23760,25255,26737,28145,29386,30378,31127,31542,31541,31210,30567,29642,28595,27383,26197,25047,23982,22976,22117,21411,20805,20309,19930,19637,19473,19368,19397,19504,19686,19950,20293,20739,21273,21842,22449,23121,23762,24381,24958,25429,25796,26065,26100,25960,25677,25216,24582,23852,23053,22185,21323,20482,19715,19018,18374,17804,17345,16922,16602,16348,16178,16086,16057,16075,16150,16309,16541,16829,17197,17619,18114,18686,19286,19913,20590,21322,22067,22804,23527,24232,24893,25500,26050,26464,26784,27008,27120,27136,27040,26851,26513,26115,25627,25063,24477,23845,23193,22517,21879,21242,20621,20027,19490,18999,18525,18121,17744,17415,17130,16862,16631,16413,16215,16036,15833,15655,15504,15345,15238,15148,15061,14974,14945,14922,14932,14929,14967,14990,15028,15058,15089,15120,15179,15195,15208,15221,15229,15234,15267,15258,15246,15207,15147,15086,15005,14918,14833,14694,14557,14378,14193,13979,13774,13530,13270,12989,12711,12416,12133,11827,11556,11273,11024,10801,10561,10277,9984,9672,9354,9065,8821,8615,8439,8275,8161,8071,7986,7933,7869,7794,7689,7546,7378,7233,7088,6987,6894,6812,6752,6692,6658,6648,6633,6615,6617,6621,6623,6468,6160,5735,5129,22.5,22.5,23.1,1569053,0.3,13.0,11.9,5.0,452,-1.00,-1.00,58.5921,-19.304848,0.000541,,,,,59 +SATSLF0720,2024246,23.011147,4.10,0.0574,0.1041,0.0190,0.00,16115,662,1,718,710,726,724,717,723,724,721,726,731,727,743,771,883,1197,1890,3029,4377,5637,6587,7226,7713,8139,8609,9137,9738,10491,11341,12343,13446,14632,15785,16899,17851,18578,19009,19138,18962,18590,18054,17486,16905,16455,16093,15863,15798,15869,16125,16538,17127,17857,18764,19823,21053,22357,23797,25258,26758,28178,29413,30416,31170,31572,31581,31257,30618,29693,28645,27410,26225,25068,23997,23004,22161,21413,20816,20318,19937,19659,19509,19409,19429,19524,19719,19973,20321,20770,21298,21847,22477,23146,23802,24394,24971,25445,25811,26089,26137,26013,25744,25261,24627,23897,23094,22234,21370,20520,19733,19047,18373,17819,17348,16940,16625,16374,16192,16107,16045,16071,16175,16325,16573,16854,17225,17645,18144,18708,19308,19945,20618,21354,22068,22828,23541,24255,24910,25504,26065,26489,26811,27063,27153,27162,27074,26864,26551,26154,25664,25098,24509,23861,23213,22562,21896,21266,20649,20069,19496,19019,18558,18139,17780,17440,17141,16886,16642,16453,16241,16039,15855,15675,15493,15358,15245,15144,15067,15008,14952,14930,14942,14937,14957,14983,15029,15064,15094,15149,15188,15223,15220,15243,15240,15267,15278,15283,15264,15222,15157,15104,15037,14946,14865,14714,14581,14405,14193,14007,13776,13551,13281,13014,12718,12414,12135,11842,11558,11283,11046,10789,10551,10273,9982,9658,9357,9070,8827,8630,8433,8295,8158,8049,7981,7911,7877,7794,7719,7579,7406,7242,7105,7004,6894,6814,6755,6698,6663,6641,6640,6638,6621,6649,6625,6466,6155,5737,5106,22.5,22.5,23.1,1569054,0.3,13.0,11.9,5.0,451,-1.00,-1.00,58.6026,-19.332909,0.000513,,,,,71 +SATSLF0720,2024246,23.011405,4.10,0.0575,0.1044,0.0195,0.00,16114,662,1,714,717,727,732,734,737,748,742,730,734,730,739,771,889,1185,1901,3021,4387,5654,6582,7241,7735,8154,8620,9126,9755,10497,11357,12362,13462,14622,15782,16895,17853,18582,19011,19143,18973,18608,18057,17462,16904,16446,16076,15851,15789,15873,16136,16532,17113,17866,18770,19821,21043,22349,23791,25281,26762,28165,29428,30426,31168,31554,31557,31229,30590,29674,28627,27405,26219,25062,24001,22981,22147,21415,20817,20325,19934,19653,19501,19398,19425,19528,19723,19979,20323,20776,21278,21847,22461,23120,23769,24398,24953,25437,25814,26069,26128,26011,25738,25240,24601,23878,23088,22222,21352,20513,19738,19024,18397,17821,17353,16939,16610,16355,16193,16104,16061,16077,16176,16340,16558,16867,17217,17642,18142,18705,19317,19944,20635,21344,22096,22826,23551,24256,24900,25483,26059,26489,26814,27069,27154,27159,27079,26853,26535,26141,25646,25080,24493,23850,23189,22535,21895,21252,20647,20055,19509,19008,18521,18108,17767,17427,17146,16874,16642,16442,16238,16043,15843,15684,15489,15359,15251,15169,15090,14999,14963,14941,14948,14937,14976,14989,15029,15057,15101,15156,15206,15229,15245,15241,15234,15260,15284,15285,15267,15224,15149,15086,15015,14949,14842,14715,14558,14401,14200,13997,13793,13546,13278,13013,12727,12432,12148,11841,11545,11290,11036,10801,10560,10297,9989,9683,9353,9091,8842,8630,8462,8308,8162,8084,7994,7930,7878,7806,7721,7561,7409,7241,7127,7016,6909,6833,6766,6721,6674,6646,6643,6621,6606,6605,6615,6471,6153,5733,5126,22.5,22.5,23.2,1569055,0.2,12.9,11.9,5.0,438,-1.00,-1.00,58.4352,-19.257091,0.000578,,,,,116 +SATSLF0720,2024246,23.011663,4.10,0.0574,0.1057,0.0210,0.00,16050,662,1,713,729,730,722,732,728,738,731,752,745,753,733,775,883,1189,1884,3010,4368,5624,6561,7223,7723,8142,8598,9113,9733,10473,11329,12310,13415,14579,15745,16840,17792,18506,18944,19074,18885,18520,17997,17406,16861,16408,16042,15802,15735,15808,16059,16475,17049,17771,18701,19752,20973,22262,23708,25186,26652,28067,29315,30293,31047,31440,31451,31117,30474,29558,28518,27302,26125,24973,23905,22929,22077,21341,20737,20265,19872,19602,19442,19339,19351,19464,19642,19896,20252,20672,21195,21746,22378,23045,23699,24293,24869,25349,25690,25969,26024,25888,25616,25161,24509,23799,22996,22131,21274,20425,19655,18947,18305,17737,17269,16864,16544,16307,16140,16041,15987,16023,16117,16265,16469,16776,17117,17559,18030,18605,19224,19854,20529,21257,21997,22745,23445,24139,24798,25390,25956,26377,26692,26935,27037,27053,26960,26741,26418,26033,25541,24980,24378,23745,23106,22456,21789,21152,20541,19970,19416,18930,18452,18052,17684,17354,17075,16814,16565,16367,16162,15972,15784,15604,15425,15296,15186,15098,15021,14939,14897,14877,14875,14876,14899,14920,14968,15006,15040,15097,15137,15157,15170,15173,15169,15179,15201,15201,15188,15141,15086,15037,14966,14893,14792,14649,14486,14335,14136,13927,13700,13459,13216,12954,12676,12384,12093,11792,11505,11251,10997,10758,10525,10260,9943,9631,9331,9029,8796,8585,8405,8251,8140,8032,7963,7901,7846,7792,7700,7549,7382,7218,7083,6967,6881,6793,6727,6664,6637,6614,6618,6601,6589,6605,6615,6456,6145,5721,5106,22.5,22.6,23.2,1569056,0.1,12.9,11.9,5.0,450,-1.00,-1.00,58.5458,-19.233095,0.000550,,,,,6 +SATSLF0720,2024246,23.011915,4.10,0.0574,0.1053,0.0197,0.00,16079,662,1,729,735,725,735,729,737,741,741,734,747,749,763,784,881,1205,1896,3026,4387,5634,6574,7229,7694,8129,8583,9101,9728,10466,11341,12334,13424,14604,15741,16843,17792,18508,18951,19090,18902,18544,18013,17422,16863,16400,16049,15811,15749,15831,16078,16485,17049,17800,18701,19765,20977,22283,23741,25198,26682,28088,29338,30317,31063,31449,31464,31142,30485,29585,28545,27317,26148,24985,23925,22933,22081,21338,20743,20263,19880,19609,19451,19358,19375,19473,19655,19925,20262,20705,21226,21789,22408,23068,23713,24325,24900,25376,25746,25993,26066,25945,25669,25189,24546,23836,23034,22178,21288,20463,19701,18986,18337,17778,17304,16907,16592,16331,16166,16069,16013,16037,16136,16299,16520,16806,17186,17614,18098,18661,19266,19900,20587,21309,22051,22782,23490,24183,24846,25445,25996,26426,26747,27008,27105,27124,27025,26811,26484,26089,25601,25018,24438,23816,23173,22498,21843,21212,20613,20028,19448,18983,18498,18101,17730,17402,17107,16845,16600,16410,16221,16022,15838,15648,15479,15340,15213,15104,15037,14963,14946,14917,14913,14929,14953,14971,15021,15054,15083,15130,15187,15193,15213,15203,15207,15251,15273,15254,15255,15214,15141,15079,15001,14917,14823,14689,14549,14361,14186,13976,13762,13520,13259,12972,12717,12413,12141,11836,11541,11274,11031,10800,10554,10279,9983,9646,9356,9065,8817,8597,8443,8290,8141,8043,7979,7894,7875,7812,7733,7573,7413,7245,7109,6990,6903,6817,6750,6698,6654,6635,6633,6605,6602,6615,6622,6461,6155,5726,5119,22.5,22.6,23.2,1569057,0.0,13.0,12.0,5.0,446,-1.00,-1.00,58.5145,-19.233095,0.000535,,,,,156 +SATSLF0720,2024246,23.012171,4.18,0.0585,0.1058,0.0204,0.00,16052,662,1,707,721,725,735,734,740,733,731,730,722,735,752,777,886,1193,1894,3018,4381,5627,6566,7205,7699,8137,8572,9089,9696,10443,11296,12297,13400,14565,15724,16826,17766,18484,18929,19043,18877,18497,17965,17388,16848,16374,16019,15800,15715,15811,16053,16458,17036,17778,18673,19737,20950,22263,23704,25157,26633,28042,29258,30268,31004,31405,31415,31080,30461,29541,28497,27272,26113,24965,23905,22893,22050,21329,20716,20221,19848,19566,19413,19336,19364,19449,19632,19893,20228,20675,21201,21746,22363,23047,23684,24289,24869,25347,25707,25972,26023,25906,25622,25160,24516,23808,23005,22130,21271,20441,19659,18966,18301,17746,17282,16869,16556,16293,16139,16040,15994,16014,16097,16264,16485,16769,17144,17561,18061,18626,19239,19886,20557,21290,22020,22745,23462,24167,24806,25399,25947,26393,26704,26957,27055,27072,26964,26773,26442,26042,25554,24981,24401,23784,23129,22477,21821,21197,20585,19990,19435,18941,18474,18069,17710,17381,17085,16821,16594,16382,16188,15993,15812,15619,15460,15316,15201,15106,15024,14947,14914,14890,14880,14888,14917,14933,14973,15015,15051,15099,15165,15176,15182,15178,15182,15217,15234,15249,15226,15174,15122,15057,14994,14893,14805,14672,14504,14328,14133,13952,13732,13506,13257,12977,12688,12401,12097,11797,11501,11230,10995,10764,10528,10268,9967,9650,9333,9049,8805,8595,8439,8265,8151,8048,7975,7891,7850,7779,7691,7537,7369,7209,7086,6970,6892,6804,6754,6693,6645,6624,6616,6600,6590,6612,6613,6454,6145,5719,5107,22.5,22.6,23.2,1569058,0.3,12.9,11.9,5.0,451,-1.00,-1.00,58.3562,-19.138395,0.000491,,,,,6 +SATSLF0720,2024246,23.012426,4.16,0.0583,0.1065,0.0210,0.00,16041,662,1,708,704,707,719,715,719,731,722,731,720,731,745,786,881,1195,1870,3001,4355,5595,6551,7201,7680,8117,8554,9081,9699,10444,11309,12291,13398,14572,15712,16802,17760,18472,18909,19041,18859,18487,17975,17389,16825,16379,16016,15799,15712,15803,16048,16448,17016,17760,18664,19722,20922,22235,23696,25149,26627,28038,29275,30260,31016,31400,31393,31078,30434,29538,28489,27256,26088,24934,23868,22900,22037,21308,20717,20225,19835,19554,19403,19307,19325,19424,19618,19882,20224,20667,21184,21746,22374,23028,23669,24273,24846,25320,25697,25956,25997,25891,25612,25133,24507,23797,22994,22125,21245,20419,19643,18943,18301,17738,17275,16871,16562,16296,16148,16033,15983,16008,16097,16260,16489,16781,17145,17572,18048,18621,19225,19851,20524,21253,21995,22730,23445,24151,24816,25402,25955,26377,26684,26935,27036,27044,26952,26737,26418,26026,25538,24962,24390,23746,23118,22446,21805,21172,20558,19969,19409,18916,18456,18050,17684,17363,17076,16811,16579,16381,16170,15986,15787,15613,15445,15306,15182,15073,15012,14921,14900,14885,14890,14880,14919,14938,14979,15014,15021,15090,15141,15153,15174,15185,15181,15196,15231,15213,15217,15158,15097,15036,14956,14868,14790,14663,14509,14330,14139,13925,13712,13480,13205,12956,12672,12386,12093,11791,11518,11246,10989,10750,10517,10253,9964,9633,9326,9040,8787,8588,8429,8273,8133,8041,7957,7893,7846,7761,7679,7534,7357,7202,7083,6977,6874,6791,6728,6672,6628,6613,6600,6593,6589,6610,6600,6424,6143,5721,5098,22.5,22.6,23.2,1569059,0.1,12.9,12.0,5.0,450,-1.00,-1.00,58.4747,-19.180252,0.000545,,,,,70 +SATSLF0720,2024246,23.012678,4.16,0.0582,0.1063,0.0203,0.00,16045,662,1,705,708,704,703,727,725,728,714,732,729,738,735,777,877,1175,1875,3000,4365,5613,6538,7202,7690,8113,8554,9082,9713,10426,11299,12289,13388,14557,15710,16816,17749,18478,18912,19045,18853,18485,17933,17354,16810,16363,16004,15797,15726,15805,16053,16453,17031,17765,18652,19713,20913,22225,23680,25145,26623,28024,29259,30269,31012,31413,31414,31097,30434,29543,28490,27264,26093,24944,23858,22871,22028,21301,20694,20236,19834,19561,19400,19315,19332,19430,19616,19873,20226,20663,21184,21751,22358,23030,23658,24278,24840,25340,25701,25962,26012,25909,25620,25136,24505,23773,22987,22127,21266,20424,19668,18973,18320,17753,17279,16873,16565,16310,16134,16035,15993,16007,16097,16260,16487,16786,17150,17570,18059,18621,19225,19848,20533,21255,22006,22753,23460,24178,24814,25410,25960,26373,26697,26941,27063,27081,26981,26763,26435,26049,25557,24985,24398,23762,23127,22465,21805,21172,20573,19970,19431,18938,18461,18052,17693,17383,17080,16823,16577,16390,16161,15994,15802,15605,15438,15282,15179,15080,15019,14944,14907,14898,14902,14901,14933,14938,14976,15016,15047,15091,15155,15157,15165,15162,15181,15201,15229,15236,15224,15177,15119,15059,14985,14893,14809,14673,14528,14342,14163,13945,13736,13494,13226,12950,12672,12387,12097,11792,11527,11253,11009,10769,10521,10257,9968,9629,9334,9052,8805,8599,8416,8272,8136,8039,7953,7879,7837,7783,7685,7539,7365,7223,7097,6976,6877,6809,6738,6673,6655,6634,6621,6596,6587,6602,6597,6459,6158,5725,5095,22.5,22.6,23.2,1569059,0.2,12.9,12.0,5.0,447,-1.00,-1.00,58.8071,-19.320805,0.000547,,,,,71 +SATSLF0720,2024246,23.012934,4.10,0.0575,0.1065,0.0207,0.00,16035,662,1,714,707,707,716,725,724,731,722,723,743,734,751,799,901,1202,1890,3022,4373,5618,6557,7209,7700,8127,8566,9081,9687,10423,11296,12275,13370,14539,15699,16788,17730,18443,18877,19035,18856,18490,17959,17361,16803,16349,15997,15776,15707,15783,16036,16424,17017,17748,18634,19705,20906,22214,23641,25111,26589,27986,29235,30232,30976,31368,31364,31037,30407,29501,28456,27222,26058,24922,23851,22866,21997,21292,20688,20205,19829,19553,19394,19306,19316,19429,19606,19858,20211,20663,21165,21734,22357,23013,23661,24274,24841,25320,25682,25948,25984,25870,25593,25113,24481,23766,22978,22098,21235,20400,19626,18942,18281,17742,17271,16862,16541,16298,16122,16017,16000,16001,16073,16255,16469,16768,17152,17569,18045,18627,19220,19851,20534,21248,21979,22715,23426,24134,24786,25389,25941,26368,26681,26937,27032,27050,26952,26734,26426,26018,25521,24973,24385,23752,23108,22451,21798,21162,20550,19975,19406,18920,18451,18044,17697,17356,17079,16801,16572,16360,16168,15975,15781,15619,15444,15306,15186,15073,14999,14936,14901,14891,14886,14888,14913,14940,14973,15019,15053,15085,15143,15152,15178,15179,15191,15205,15239,15209,15208,15150,15090,15047,14964,14880,14787,14653,14498,14333,14135,13946,13722,13495,13222,12958,12676,12380,12095,11801,11517,11245,10997,10757,10519,10266,9964,9629,9338,9055,8805,8589,8429,8266,8150,8045,7966,7902,7859,7791,7691,7549,7377,7212,7091,6978,6865,6790,6728,6671,6646,6619,6599,6598,6586,6609,6597,6440,6141,5714,5111,22.5,22.6,23.2,1569060,0.0,12.9,11.9,5.0,447,-1.00,-1.00,58.5995,-19.209668,0.000517,,,,,235 +SATSLF0720,2024246,23.013188,4.34,0.0607,0.1080,0.0216,0.00,16003,662,1,727,733,729,721,733,729,734,734,730,747,744,741,778,901,1209,1897,3021,4365,5600,6532,7173,7667,8089,8545,9044,9673,10416,11256,12263,13346,14519,15654,16768,17677,18403,18832,18971,18784,18423,17899,17309,16766,16325,15962,15745,15688,15753,15979,16387,16979,17717,18617,19660,20874,22179,23598,25056,26529,27930,29153,30155,30909,31297,31298,30973,30338,29430,28393,27170,26003,24848,23799,22818,21957,21242,20635,20156,19786,19492,19355,19243,19274,19381,19564,19833,20165,20613,21120,21678,22283,22945,23604,24212,24780,25234,25611,25889,25938,25809,25541,25081,24453,23726,22929,22065,21194,20358,19598,18893,18251,17690,17227,16824,16517,16258,16088,15989,15952,15985,16069,16217,16456,16745,17109,17524,18016,18586,19184,19805,20487,21203,21938,22667,23385,24088,24764,25337,25889,26297,26626,26859,26983,26989,26902,26677,26356,25963,25472,24909,24318,23687,23049,22398,21748,21128,20512,19927,19373,18897,18409,18003,17659,17320,17032,16772,16525,16333,16134,15956,15761,15574,15413,15275,15169,15053,14989,14910,14864,14847,14855,14865,14886,14898,14935,14983,15017,15070,15125,15140,15149,15171,15157,15162,15191,15193,15194,15149,15077,15019,14959,14868,14775,14634,14480,14301,14125,13905,13705,13461,13212,12937,12655,12363,12069,11783,11492,11234,10987,10750,10520,10250,9961,9629,9318,9030,8781,8585,8404,8257,8130,8036,7971,7889,7847,7774,7673,7535,7349,7202,7087,6965,6882,6796,6723,6686,6633,6624,6604,6603,6581,6598,6596,6435,6130,5706,5086,22.5,22.7,23.3,1569061,0.1,12.9,12.0,5.0,448,-1.00,-1.00,58.1037,-18.964121,0.000480,,,,,123 +SATSLF0720,2024246,23.013440,4.26,0.0597,0.1068,0.0212,0.00,16025,662,1,711,707,721,722,741,726,731,746,738,738,741,752,781,899,1208,1896,3014,4367,5618,6533,7191,7669,8100,8551,9070,9695,10438,11307,12281,13383,14530,15680,16778,17723,18440,18866,18998,18813,18445,17929,17346,16807,16328,15980,15758,15685,15761,16007,16424,17002,17733,18634,19698,20898,22193,23637,25088,26554,27961,29200,30194,30947,31340,31344,31002,30369,29469,28437,27197,26030,24893,23827,22833,21988,21277,20670,20205,19806,19531,19373,19294,19295,19413,19589,19856,20194,20630,21136,21709,22329,22989,23639,24244,24827,25300,25657,25907,25971,25848,25575,25099,24469,23753,22962,22090,21224,20399,19639,18933,18282,17730,17249,16856,16536,16291,16119,16022,15981,15996,16084,16250,16462,16762,17125,17549,18039,18596,19196,19847,20522,21236,21969,22711,23410,24108,24762,25357,25920,26355,26674,26905,27014,27035,26917,26713,26388,25988,25517,24963,24373,23748,23109,22462,21789,21154,20538,19949,19393,18902,18434,18035,17675,17355,17065,16795,16562,16349,16152,15972,15778,15594,15425,15303,15181,15077,14997,14925,14869,14871,14867,14890,14892,14922,14970,15013,15034,15099,15144,15170,15161,15179,15183,15190,15214,15209,15205,15130,15081,15031,14964,14884,14797,14659,14517,14337,14147,13942,13715,13479,13220,12952,12669,12389,12087,11798,11506,11254,10989,10765,10519,10264,9976,9649,9337,9050,8809,8589,8421,8258,8123,8023,7953,7892,7836,7781,7698,7539,7369,7214,7092,6982,6881,6811,6730,6669,6645,6615,6623,6605,6596,6619,6617,6461,6156,5725,5110,22.5,22.7,23.3,1569062,0.1,12.9,11.9,5.0,450,-1.00,-1.00,58.2187,-19.034452,0.000499,,,,,165 +SATSLF0720,2024246,23.013696,4.00,0.0560,0.1063,0.0206,0.00,16050,662,1,725,728,725,722,725,731,736,746,732,742,746,744,777,883,1197,1891,3029,4386,5627,6551,7227,7714,8125,8566,9092,9702,10450,11303,12292,13399,14567,15710,16836,17768,18496,18929,19081,18885,18519,17988,17397,16840,16381,16010,15792,15714,15794,16043,16464,17038,17773,18688,19734,20955,22262,23693,25143,26613,28037,29280,30269,31013,31410,31417,31101,30457,29541,28497,27270,26094,24960,23889,22885,22030,21296,20704,20226,19841,19559,19415,19317,19326,19426,19618,19896,20233,20660,21180,21746,22375,23040,23699,24301,24877,25341,25705,25963,25997,25881,25617,25141,24513,23793,23015,22141,21273,20419,19657,18965,18300,17747,17275,16886,16577,16317,16141,16034,15981,16011,16104,16258,16480,16775,17146,17582,18062,18635,19236,19860,20542,21262,21997,22747,23457,24146,24801,25384,25952,26387,26701,26941,27050,27048,26973,26749,26432,26036,25544,24968,24390,23772,23130,22486,21813,21185,20561,19980,19423,18933,18464,18056,17687,17367,17091,16810,16571,16380,16179,15989,15802,15617,15440,15303,15203,15103,15028,14949,14905,14888,14869,14895,14914,14921,14951,15002,15044,15086,15149,15152,15169,15181,15187,15207,15241,15234,15223,15179,15112,15049,14983,14896,14792,14672,14509,14344,14150,13952,13738,13497,13250,12973,12696,12401,12102,11798,11514,11245,10999,10762,10530,10258,9971,9651,9341,9051,8820,8603,8425,8281,8138,8036,7971,7908,7855,7785,7701,7557,7373,7231,7109,6987,6885,6802,6730,6664,6647,6633,6613,6611,6605,6617,6617,6454,6155,5714,5115,22.5,22.7,23.3,1569063,0.1,12.9,11.9,5.0,446,-1.00,-1.00,58.8081,-19.325322,0.000573,,,,,115 +SATSLF0720,2024246,23.013950,4.15,0.0581,0.1071,0.0211,0.00,16023,662,1,714,725,722,723,731,727,718,722,741,736,749,753,787,882,1187,1892,3009,4368,5612,6533,7186,7674,8103,8549,9065,9682,10409,11266,12269,13349,14523,15673,16776,17725,18435,18868,18981,18816,18454,17924,17337,16796,16336,15981,15749,15677,15758,16011,16413,16992,17721,18620,19690,20898,22205,23626,25100,26570,27973,29209,30207,30946,31335,31352,31030,30388,29485,28435,27217,26045,24900,23837,22841,21999,21275,20664,20195,19787,19538,19369,19281,19294,19390,19586,19856,20205,20637,21154,21712,22319,22985,23627,24250,24812,25291,25645,25909,25961,25849,25576,25097,24473,23766,22977,22101,21243,20403,19641,18926,18285,17712,17252,16852,16522,16283,16119,16009,15950,15981,16071,16240,16468,16770,17134,17558,18038,18598,19198,19833,20529,21237,21971,22713,23409,24120,24775,25365,25916,26330,26663,26902,27016,27037,26948,26717,26390,26005,25506,24934,24365,23739,23096,22455,21788,21168,20568,19964,19408,18912,18432,18029,17671,17341,17049,16779,16551,16355,16166,15969,15774,15578,15427,15298,15187,15081,15008,14924,14886,14869,14868,14872,14899,14924,14961,15003,15035,15061,15141,15149,15171,15175,15187,15191,15222,15213,15197,15143,15098,15034,14965,14880,14782,14649,14491,14320,14129,13933,13709,13479,13224,12963,12668,12387,12086,11794,11517,11249,10982,10761,10525,10248,9963,9645,9333,9034,8797,8577,8423,8266,8113,8039,7950,7883,7819,7763,7680,7548,7377,7225,7093,6977,6874,6791,6718,6667,6640,6609,6603,6602,6599,6609,6606,6451,6147,5727,5098,22.5,22.7,23.4,1569064,0.2,12.9,11.9,5.0,448,-1.00,-1.00,58.9771,-19.356530,0.000525,,,,,175 +SATSLF0720,2024246,23.014201,4.17,0.0583,0.1078,0.0207,0.00,16006,662,1,716,728,729,717,735,729,737,731,736,734,740,757,767,878,1186,1883,3000,4364,5596,6533,7176,7679,8081,8537,9047,9659,10405,11264,12243,13335,14509,15657,16745,17690,18410,18835,18967,18785,18423,17910,17315,16758,16314,15946,15716,15663,15734,15975,16391,16963,17717,18619,19686,20873,22172,23604,25054,26522,27929,29174,30165,30901,31304,31318,30985,30348,29442,28411,27189,26014,24866,23808,22802,21953,21226,20643,20154,19781,19501,19342,19253,19281,19372,19569,19827,20182,20613,21136,21687,22295,22950,23609,24221,24797,25266,25626,25880,25940,25816,25554,25074,24442,23739,22945,22080,21204,20379,19592,18915,18249,17707,17240,16829,16519,16267,16100,15994,15963,15976,16056,16231,16438,16743,17106,17529,18008,18581,19197,19828,20493,21227,21965,22706,23403,24109,24736,25323,25885,26309,26629,26880,26980,27003,26902,26704,26378,25985,25483,24917,24329,23709,23048,22403,21749,21124,20510,19933,19381,18901,18434,18038,17665,17332,17049,16779,16542,16351,16145,15958,15757,15571,15399,15283,15153,15067,14986,14912,14882,14861,14858,14873,14887,14912,14953,14993,15014,15065,15133,15137,15145,15143,15155,15175,15205,15201,15196,15156,15085,15047,14970,14882,14776,14641,14489,14329,14129,13905,13703,13448,13197,12925,12672,12373,12096,11781,11515,11229,10974,10741,10499,10235,9940,9633,9314,9037,8800,8586,8416,8252,8122,8021,7959,7876,7828,7775,7685,7543,7366,7207,7087,6958,6865,6788,6729,6677,6633,6608,6593,6592,6589,6606,6604,6457,6141,5723,5086,22.5,22.8,23.4,1569065,0.2,13.0,11.9,5.0,447,-1.00,-1.00,59.1212,-19.394085,0.000545,,,,,239 +SATSLF0720,2024246,23.014457,4.15,0.0581,0.1079,0.0221,0.00,15994,662,1,737,728,726,731,738,729,740,746,745,746,751,760,786,887,1199,1880,3006,4367,5610,6555,7205,7684,8113,8558,9071,9683,10410,11284,12253,13333,14507,15662,16760,17718,18438,18866,18986,18817,18436,17899,17331,16779,16314,15965,15745,15673,15737,15991,16398,16977,17717,18608,19661,20871,22163,23611,25069,26533,27943,29178,30167,30901,31290,31297,30969,30334,29431,28382,27170,25992,24848,23769,22789,21925,21219,20610,20154,19772,19497,19337,19245,19266,19361,19549,19802,20157,20590,21118,21677,22293,22948,23590,24187,24772,25234,25605,25875,25912,25809,25529,25058,24433,23719,22922,22061,21189,20345,19584,18880,18234,17690,17219,16834,16498,16249,16093,15977,15932,15953,16042,16193,16435,16717,17089,17510,17992,18560,19177,19788,20477,21200,21923,22652,23351,24061,24704,25299,25861,26260,26599,26829,26935,26955,26858,26652,26333,25939,25431,24896,24305,23670,23034,22377,21733,21098,20516,19920,19367,18856,18410,18001,17643,17309,17031,16765,16518,16311,16103,15930,15733,15555,15399,15259,15152,15061,14985,14901,14859,14829,14831,14842,14862,14887,14917,14968,14997,15054,15096,15104,15117,15141,15147,15150,15173,15177,15165,15113,15051,15002,14920,14843,14746,14611,14465,14304,14117,13914,13690,13451,13190,12928,12646,12357,12060,11773,11501,11235,10977,10733,10497,10213,9924,9605,9301,9033,8781,8579,8404,8249,8131,8022,7953,7863,7815,7752,7671,7524,7353,7186,7075,6962,6871,6773,6720,6662,6622,6615,6596,6587,6587,6599,6587,6427,6139,5706,5100,22.6,22.8,23.4,1569066,0.0,12.9,12.0,5.0,448,-1.00,-1.00,58.4613,-19.111726,0.000558,,,,,248 +SATSDF0720,2024246,23.259139,0.00,0.0000,0.0000,0.0000,0.00,663,0,1,649,637,645,636,636,641,644,634,639,652,641,634,645,626,629,635,638,645,637,657,643,651,649,671,670,673,674,657,665,663,658,654,659,656,669,669,670,670,672,664,674,665,657,671,662,659,676,673,667,673,674,662,662,673,678,679,663,659,667,671,680,661,665,664,663,675,673,679,670,667,667,667,663,658,672,668,665,669,679,666,663,662,667,666,667,665,670,658,671,677,666,666,665,674,661,669,666,670,666,659,665,656,679,672,657,664,657,658,663,660,668,664,662,663,676,662,679,677,673,662,651,651,650,663,649,667,645,659,649,663,659,672,669,680,661,661,671,677,665,673,681,666,669,663,662,657,651,657,655,658,663,679,656,679,673,674,666,659,655,651,660,660,647,663,665,672,675,673,663,669,674,677,661,663,659,669,660,675,661,658,666,665,664,662,658,667,661,647,663,665,667,662,661,665,657,658,673,677,673,669,673,662,664,668,659,663,658,669,665,669,667,676,660,658,652,648,653,663,659,671,669,652,663,659,663,661,655,671,665,679,669,664,672,657,663,666,665,669,667,657,654,656,666,650,656,657,665,662,661,667,663,672,665,670,661,490,0.0,0.0,0.0,1569065,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,60 +SATSLF0720,2024246,23.259693,3.84,0.0538,0.1033,0.0209,0.00,16107,663,1,715,717,722,724,712,726,727,734,734,727,735,737,774,879,1189,1890,3041,4417,5668,6612,7273,7748,8195,8648,9179,9802,10540,11430,12425,13539,14715,15883,16998,17956,18676,19119,19229,19067,18675,18142,17549,16995,16529,16154,15933,15866,15938,16177,16596,17162,17913,18821,19878,21097,22416,23857,25346,26820,28261,29517,30525,31258,31655,31648,31335,30686,29764,28695,27483,26307,25138,24068,23074,22213,21479,20857,20373,19974,19691,19537,19444,19441,19547,19735,20001,20329,20788,21276,21847,22487,23141,23785,24392,24976,25450,25816,26080,26128,26008,25740,25237,24595,23897,23072,22195,21323,20491,19716,19014,18357,17799,17336,16936,16621,16360,16178,16072,16027,16045,16143,16307,16529,16824,17186,17605,18092,18667,19265,19908,20582,21326,22048,22789,23511,24201,24852,25440,26001,26437,26756,27009,27116,27133,27027,26819,26493,26083,25591,25024,24448,23792,23143,22509,21834,21206,20594,20008,19472,18977,18490,18095,17729,17386,17106,16843,16585,16394,16195,15995,15815,15623,15466,15318,15198,15097,15030,14941,14904,14886,14886,14883,14909,14933,14958,15012,15037,15101,15150,15154,15185,15185,15191,15195,15215,15231,15213,15158,15101,15040,14960,14877,14787,14631,14489,14335,14146,13942,13725,13492,13221,12964,12678,12381,12093,11798,11503,11245,11001,10758,10514,10258,9962,9636,9324,9036,8798,8592,8410,8256,8119,8039,7964,7889,7839,7782,7692,7545,7361,7212,7093,6980,6888,6792,6727,6679,6637,6618,6603,6584,6589,6608,6597,6441,6135,5728,5093,22.4,22.4,22.8,1569066,0.3,12.9,12.0,5.0,567,-1.00,-1.00,58.3577,-19.277099,0.000520,,,,,178 +SATSLF0720,2024246,23.259875,3.64,0.0509,0.1050,0.0225,0.00,16052,663,1,709,709,714,713,718,723,727,722,739,738,732,744,768,871,1185,1886,3014,4384,5651,6586,7249,7734,8178,8615,9143,9763,10495,11366,12364,13460,14648,15815,16920,17885,18590,19035,19181,19002,18626,18069,17477,16913,16460,16096,15861,15787,15863,16107,16523,17104,17838,18749,19787,21015,22327,23776,25242,26732,28153,29404,30388,31130,31529,31540,31220,30566,29664,28612,27393,26205,25042,23966,22967,22109,21379,20762,20293,19917,19613,19463,19373,19369,19469,19645,19911,20256,20697,21217,21782,22401,23063,23696,24319,24884,25360,25712,25984,26038,25933,25642,25165,24537,23810,23015,22146,21266,20439,19654,18960,18316,17750,17269,16869,16541,16293,16129,16020,15982,15997,16086,16237,16466,16762,17115,17554,18013,18607,19194,19837,20512,21239,21972,22714,23413,24134,24769,25353,25927,26333,26675,26905,27013,27030,26932,26715,26388,26010,25520,24951,24379,23754,23104,22439,21782,21145,20538,19945,19397,18897,18427,18022,17671,17337,17048,16792,16557,16345,16139,15954,15757,15565,15400,15265,15146,15050,14977,14886,14855,14836,14837,14849,14880,14901,14933,14976,14997,15045,15089,15104,15121,15131,15133,15159,15186,15181,15166,15126,15041,14989,14918,14841,14752,14609,14454,14298,14113,13892,13687,13441,13181,12933,12631,12357,12057,11765,11474,11203,10979,10722,10497,10221,9912,9601,9296,9017,8773,8571,8408,8245,8123,8012,7938,7853,7815,7741,7658,7518,7333,7171,7059,6947,6850,6787,6716,6667,6636,6609,6602,6588,6571,6603,6582,6426,6120,5696,5089,22.4,22.4,22.9,1569067,1.0,12.9,12.0,5.0,469,-1.00,-1.00,59.4816,-19.676346,0.000560,,,,,14 +SATSLF0720,2024246,23.260131,3.84,0.0538,0.1051,0.0220,0.00,16062,663,1,711,717,716,714,709,715,723,709,731,737,724,733,761,874,1183,1873,3038,4392,5643,6600,7249,7737,8170,8616,9127,9758,10501,11366,12358,13474,14657,15818,16919,17883,18613,19026,19172,18997,18612,18072,17483,16919,16461,16080,15877,15793,15877,16126,16528,17101,17846,18759,19808,21035,22346,23778,25252,26730,28145,29404,30395,31156,31572,31554,31226,30578,29658,28628,27386,26204,25052,23975,22986,22109,21408,20774,20292,19907,19627,19468,19367,19383,19475,19674,19920,20282,20712,21234,21796,22421,23066,23721,24338,24913,25385,25749,26013,26054,25933,25642,25172,24532,23821,23024,22163,21298,20442,19676,18965,18309,17768,17296,16893,16556,16311,16144,16030,15995,15997,16106,16265,16483,16769,17151,17563,18049,18617,19218,19845,20531,21259,21989,22733,23446,24138,24801,25392,25949,26361,26677,26918,27029,27057,26957,26741,26428,26024,25531,24961,24384,23753,23108,22464,21786,21165,20560,19965,19403,18907,18448,18062,17693,17356,17063,16801,16565,16357,16158,15969,15771,15588,15411,15290,15170,15076,14969,14915,14878,14868,14869,14857,14888,14892,14933,14967,15010,15050,15115,15126,15127,15147,15168,15170,15176,15187,15186,15133,15073,15006,14935,14848,14768,14641,14473,14307,14114,13915,13685,13447,13196,12937,12658,12371,12085,11767,11475,11217,10965,10733,10498,10244,9945,9611,9313,9018,8785,8566,8402,8253,8118,8020,7939,7868,7806,7751,7653,7525,7337,7193,7063,6957,6853,6760,6711,6661,6634,6615,6615,6586,6568,6598,6593,6438,6130,5710,5093,22.4,22.4,22.9,1569068,0.1,12.9,12.0,5.0,454,-1.00,-1.00,58.8356,-19.413315,0.000552,,,,,229 +SATSLF0720,2024246,23.260385,3.76,0.0527,0.1049,0.0219,0.00,16062,663,1,708,713,704,705,707,698,718,729,718,737,749,759,774,887,1185,1883,3045,4400,5655,6603,7263,7739,8179,8629,9137,9773,10525,11397,12392,13495,14679,15829,16947,17892,18617,19054,19184,19005,18644,18094,17518,16946,16487,16125,15894,15819,15885,16119,16535,17120,17851,18756,19833,21038,22355,23798,25272,26760,28157,29395,30403,31153,31557,31557,31234,30596,29688,28625,27412,26224,25061,23991,22970,22137,21396,20796,20309,19918,19629,19485,19378,19392,19490,19684,19933,20285,20714,21220,21780,22408,23070,23716,24328,24897,25370,25735,26003,26056,25929,25644,25173,24541,23818,23035,22150,21281,20445,19677,18971,18329,17773,17297,16886,16557,16305,16138,16029,15990,16009,16101,16250,16473,16761,17124,17546,18033,18599,19213,19854,20533,21252,21984,22720,23437,24141,24773,25361,25920,26353,26693,26925,27045,27035,26942,26724,26393,26025,25522,24965,24374,23744,23099,22437,21788,21170,20556,19977,19417,18917,18437,18040,17669,17344,17060,16792,16544,16355,16153,15968,15759,15581,15418,15271,15163,15053,14979,14903,14869,14851,14849,14865,14882,14889,14935,14981,15002,15058,15101,15132,15127,15131,15140,15158,15188,15177,15165,15127,15046,15007,14924,14845,14749,14603,14455,14299,14113,13903,13693,13446,13188,12933,12643,12346,12074,11769,11498,11220,10974,10734,10516,10245,9926,9603,9303,9019,8768,8575,8389,8253,8114,8017,7936,7876,7812,7757,7657,7527,7345,7190,7065,6947,6861,6781,6717,6657,6623,6605,6596,6575,6565,6580,6586,6417,6131,5707,5091,22.4,22.4,23.0,1569069,0.1,12.9,11.9,5.0,451,-1.00,-1.00,58.6401,-19.338578,0.000490,,,,,188 +SATSLF0720,2024246,23.260636,3.83,0.0537,0.1056,0.0221,0.00,16034,663,1,705,714,715,720,716,709,721,724,743,733,748,743,771,886,1185,1884,3022,4376,5626,6567,7236,7723,8146,8599,9117,9737,10482,11333,12321,13426,14603,15767,16881,17832,18561,18977,19115,18932,18558,18023,17440,16872,16403,16055,15814,15752,15829,16069,16487,17058,17795,18697,19757,20957,22272,23735,25210,26677,28093,29339,30325,31076,31473,31468,31148,30503,29585,28547,27316,26137,24985,23926,22925,22081,21349,20725,20251,19865,19576,19434,19347,19357,19454,19629,19896,20244,20676,21184,21749,22369,23021,23680,24282,24840,25339,25701,25957,26006,25884,25610,25122,24488,23779,22981,22113,21253,20405,19648,18944,18297,17750,17277,16855,16534,16290,16105,16011,15964,15985,16068,16241,16472,16749,17109,17538,18016,18584,19178,19805,20501,21211,21953,22691,23410,24103,24760,25336,25898,26321,26649,26894,26997,27009,26922,26697,26384,25986,25489,24941,24337,23719,23069,22419,21779,21152,20522,19933,19387,18899,18424,18016,17648,17313,17035,16787,16532,16332,16136,15934,15749,15574,15402,15277,15166,15054,14989,14902,14869,14864,14844,14844,14872,14894,14917,14960,14992,15034,15094,15104,15125,15121,15139,15157,15177,15173,15169,15113,15049,15002,14925,14843,14765,14619,14465,14290,14097,13895,13684,13442,13195,12930,12630,12347,12046,11759,11481,11211,10967,10733,10483,10236,9928,9598,9298,8994,8758,8559,8388,8241,8099,8011,7933,7858,7814,7749,7670,7522,7348,7202,7062,6957,6849,6778,6709,6654,6624,6604,6594,6577,6560,6577,6579,6429,6137,5698,5089,22.4,22.4,23.1,1569070,0.0,12.9,11.9,5.0,455,-1.00,-1.00,59.1967,-19.516926,0.000614,,,,,146 +SATSLF0720,2024246,23.260891,3.80,0.0532,0.1062,0.0232,0.00,16019,663,1,717,713,715,713,729,737,736,723,743,739,741,749,773,903,1201,1896,3034,4390,5638,6580,7230,7728,8150,8604,9126,9742,10489,11347,12337,13445,14606,15780,16893,17833,18555,18985,19111,18935,18557,18019,17434,16889,16416,16059,15837,15754,15835,16077,16477,17045,17779,18690,19757,20962,22278,23705,25184,26657,28057,29312,30312,31069,31453,31443,31133,30491,29573,28522,27313,26132,24973,23913,22922,22073,21325,20736,20244,19845,19567,19409,19319,19326,19419,19607,19869,20221,20654,21165,21729,22341,23013,23646,24245,24835,25313,25664,25927,25988,25865,25571,25095,24453,23745,22962,22098,21225,20381,19629,18914,18262,17706,17223,16827,16513,16264,16099,15989,15940,15963,16056,16201,16436,16733,17094,17512,17996,18557,19161,19797,20477,21185,21921,22660,23365,24055,24710,25290,25861,26292,26609,26836,26963,26961,26882,26669,26321,25950,25458,24881,24316,23680,23039,22394,21727,21106,20496,19909,19357,18872,18412,18005,17637,17318,17017,16750,16529,16297,16114,15933,15727,15544,15389,15250,15120,15031,14959,14877,14838,14831,14836,14841,14861,14876,14912,14939,14970,15016,15060,15087,15110,15125,15125,15146,15163,15147,15157,15102,15034,14965,14907,14824,14731,14572,14430,14261,14077,13864,13659,13410,13168,12900,12617,12326,12040,11741,11462,11206,10945,10713,10473,10225,9926,9595,9291,8997,8759,8544,8381,8240,8096,8018,7935,7873,7818,7742,7661,7511,7325,7179,7049,6945,6852,6776,6709,6646,6617,6594,6582,6577,6563,6573,6569,6435,6129,5698,5077,22.4,22.5,23.1,1569071,0.2,12.9,11.9,5.0,450,-1.00,-1.00,58.9576,-19.407056,0.000525,,,,,41 +SATSLF0720,2024246,23.261145,3.73,0.0523,0.1071,0.0235,0.00,15990,663,1,717,722,718,721,722,713,729,724,735,749,741,758,777,893,1175,1879,3025,4385,5622,6566,7234,7703,8121,8560,9099,9717,10449,11328,12318,13416,14587,15732,16848,17789,18508,18945,19073,18915,18518,18005,17418,16849,16380,16013,15793,15726,15805,16042,16457,17029,17753,18649,19703,20915,22234,23655,25131,26597,28002,29241,30230,30996,31388,31397,31086,30437,29517,28469,27257,26073,24923,23844,22861,22017,21292,20677,20211,19819,19537,19373,19280,19275,19379,19562,19829,20188,20613,21136,21673,22291,22961,23594,24198,24777,25241,25622,25877,25912,25797,25521,25053,24415,23715,22910,22055,21180,20352,19584,18877,18229,17677,17197,16805,16475,16231,16060,15958,15914,15921,16027,16173,16404,16692,17065,17483,17962,18530,19123,19752,20439,21126,21875,22616,23325,24019,24667,25253,25805,26242,26558,26794,26906,26934,26836,26629,26297,25914,25412,24860,24276,23645,23010,22357,21690,21046,20461,19874,19319,18827,18353,17974,17613,17280,16983,16739,16505,16288,16095,15906,15705,15524,15367,15213,15109,15021,14928,14853,14813,14792,14786,14786,14811,14846,14885,14925,14957,15017,15064,15078,15085,15092,15088,15102,15143,15133,15124,15080,15009,14957,14886,14804,14697,14557,14406,14257,14062,13853,13648,13402,13137,12871,12611,12312,12035,11744,11457,11187,10933,10702,10474,10200,9906,9573,9282,9003,8748,8549,8378,8220,8085,7991,7933,7844,7796,7727,7659,7509,7335,7187,7057,6946,6839,6747,6708,6637,6603,6587,6570,6559,6562,6575,6570,6411,6110,5686,5069,22.4,22.5,23.1,1569072,0.0,12.9,12.0,5.0,451,-1.00,-1.00,59.2071,-19.473327,0.000519,,,,,45 +SATSLF0720,2024246,23.261402,3.97,0.0556,0.1069,0.0231,0.00,15997,663,1,699,699,709,715,717,736,743,741,733,739,746,749,779,881,1189,1874,3018,4369,5619,6572,7230,7725,8141,8586,9093,9721,10461,11317,12316,13413,14600,15737,16837,17793,18511,18945,19082,18896,18530,17988,17419,16851,16398,16029,15798,15721,15809,16064,16467,17032,17781,18673,19732,20922,22241,23680,25134,26612,28021,29277,30274,31012,31419,31422,31084,30445,29536,28471,27254,26074,24922,23851,22868,22017,21295,20685,20219,19826,19538,19395,19290,19302,19385,19572,19841,20181,20593,21113,21683,22301,22954,23602,24201,24784,25262,25635,25885,25936,25820,25536,25060,24420,23718,22926,22056,21192,20354,19579,18887,18237,17686,17217,16804,16509,16250,16089,15981,15931,15950,16035,16192,16421,16706,17053,17477,17954,18529,19136,19761,20449,21165,21912,22641,23341,24048,24689,25276,25830,26252,26569,26809,26923,26926,26839,26622,26298,25920,25434,24857,24279,23648,23003,22359,21693,21083,20470,19895,19333,18839,18375,17973,17613,17284,16996,16739,16498,16297,16082,15903,15729,15528,15367,15233,15112,15005,14944,14859,14825,14813,14786,14800,14837,14853,14886,14941,14971,15011,15065,15082,15083,15099,15082,15104,15133,15137,15141,15095,15025,14970,14898,14813,14718,14588,14445,14257,14071,13858,13651,13410,13154,12889,12600,12305,12032,11736,11465,11192,10951,10705,10473,10213,9897,9580,9257,8995,8758,8557,8389,8229,8093,8011,7921,7847,7789,7723,7625,7485,7319,7167,7042,6945,6857,6772,6701,6654,6629,6600,6590,6562,6547,6565,6558,6413,6121,5706,5087,22.5,22.5,23.1,1569073,0.0,13.0,12.0,5.0,440,-1.00,-1.00,58.4142,-19.153002,0.000550,,,,,46 +SATSLF0720,2024246,23.261657,3.94,0.0552,0.1072,0.0229,0.00,15998,663,1,696,707,710,713,732,709,716,725,742,732,735,748,779,882,1182,1882,3029,4377,5629,6566,7225,7705,8121,8564,9079,9707,10454,11306,12293,13390,14579,15739,16833,17792,18501,18935,19061,18900,18519,17984,17399,16837,16387,16008,15810,15729,15805,16037,16451,17039,17755,18665,19720,20925,22237,23670,25130,26613,28007,29251,30250,30989,31393,31383,31077,30425,29518,28482,27253,26084,24925,23861,22869,22005,21284,20681,20195,19813,19520,19380,19277,19276,19382,19595,19842,20187,20595,21127,21701,22305,22961,23605,24213,24773,25259,25623,25888,25945,25824,25547,25069,24432,23715,22935,22070,21192,20353,19592,18888,18241,17685,17222,16819,16499,16251,16075,15961,15928,15949,16029,16185,16436,16721,17075,17502,17986,18545,19149,19777,20463,21175,21906,22634,23351,24037,24681,25275,25841,26274,26602,26827,26937,26955,26841,26647,26329,25931,25433,24871,24284,23673,23033,22381,21725,21089,20481,19877,19329,18838,18392,17973,17629,17307,17014,16737,16517,16305,16098,15894,15719,15545,15364,15234,15120,15014,14937,14861,14831,14805,14796,14809,14825,14848,14875,14932,14976,15014,15089,15093,15103,15092,15081,15111,15125,15137,15116,15092,15037,14976,14902,14834,14722,14586,14432,14265,14081,13858,13657,13426,13169,12905,12618,12320,12029,11735,11466,11185,10944,10708,10473,10227,9920,9589,9298,8998,8765,8557,8383,8217,8089,8007,7913,7846,7802,7722,7655,7506,7347,7177,7051,6938,6841,6770,6701,6646,6610,6599,6583,6571,6563,6585,6553,6387,6091,5687,5072,22.5,22.5,23.1,1569074,0.1,12.9,12.0,5.0,450,-1.00,-1.00,58.6540,-19.246081,0.000491,,,,,245 +SATSLF0720,2024246,23.261910,3.95,0.0554,0.1075,0.0243,0.00,15976,663,1,700,702,717,709,714,711,727,734,733,739,741,743,781,874,1191,1873,3015,4379,5620,6555,7221,7706,8131,8571,9081,9698,10451,11310,12304,13402,14583,15732,16825,17785,18498,18928,19054,18871,18512,17965,17389,16833,16377,16002,15776,15708,15798,16038,16436,17031,17756,18665,19712,20909,22221,23651,25101,26580,27973,29235,30218,30964,31360,31361,31041,30389,29487,28464,27237,26072,24888,23828,22837,21989,21271,20661,20194,19798,19505,19365,19265,19273,19365,19547,19805,20166,20590,21108,21656,22273,22931,23571,24199,24754,25214,25593,25849,25909,25799,25510,25047,24410,23691,22912,22039,21173,20341,19560,18861,18212,17659,17188,16784,16468,16219,16049,15962,15910,15926,16011,16151,16387,16672,17031,17455,17933,18512,19115,19741,20418,21143,21867,22598,23309,24005,24650,25238,25785,26204,26526,26778,26882,26909,26813,26605,26284,25888,25387,24829,24244,23600,22962,22324,21670,21054,20450,19853,19308,18816,18355,17948,17570,17255,16969,16705,16475,16277,16066,15886,15708,15508,15354,15206,15092,15003,14912,14841,14810,14773,14787,14792,14817,14839,14868,14903,14948,14993,15042,15059,15078,15077,15069,15094,15110,15115,15092,15053,14990,14931,14864,14778,14689,14553,14400,14232,14041,13839,13620,13395,13141,12883,12605,12316,12033,11722,11437,11182,10918,10679,10440,10183,9901,9577,9285,9002,8750,8535,8369,8200,8071,7983,7909,7841,7792,7726,7637,7505,7328,7181,7054,6930,6824,6737,6670,6635,6594,6583,6577,6569,6550,6568,6551,6397,6101,5674,5065,22.5,22.6,23.1,1569075,0.1,13.0,11.9,5.0,443,-1.00,-1.00,58.5477,-19.186409,0.000438,,,,,67 +SATSLF0720,2024246,23.262167,3.97,0.0556,0.1083,0.0243,0.00,15956,663,1,726,718,730,722,734,728,725,733,728,737,741,747,782,896,1197,1890,3020,4370,5620,6545,7196,7691,8106,8551,9061,9692,10432,11302,12277,13365,14551,15701,16796,17743,18449,18899,19016,18824,18461,17933,17346,16789,16343,15978,15757,15690,15765,16008,16395,16979,17716,18617,19677,20866,22181,23605,25067,26528,27938,29165,30157,30913,31312,31298,30994,30336,29449,28400,27178,26002,24850,23793,22800,21954,21237,20625,20145,19752,19488,19342,19229,19232,19349,19532,19792,20128,20570,21080,21629,22257,22900,23534,24140,24720,25190,25542,25813,25862,25751,25480,25008,24375,23662,22872,22000,21141,20311,19540,18837,18195,17651,17181,16776,16466,16213,16042,15918,15871,15905,15992,16139,16386,16657,17029,17449,17933,18482,19088,19713,20386,21106,21828,22563,23283,23973,24621,25207,25769,26183,26505,26743,26849,26856,26769,26557,26237,25857,25372,24809,24209,23589,22946,22315,21654,21031,20433,19850,19302,18798,18336,17939,17566,17239,16942,16679,16453,16260,16050,15867,15677,15509,15323,15184,15074,14988,14897,14839,14793,14780,14777,14778,14800,14818,14864,14889,14917,14980,15030,15041,15048,15071,15077,15081,15106,15085,15093,15049,14983,14930,14853,14766,14685,14557,14417,14241,14052,13842,13624,13385,13127,12861,12565,12285,11993,11716,11420,11175,10916,10676,10450,10189,9895,9577,9269,8977,8746,8539,8366,8208,8077,7970,7901,7834,7773,7735,7640,7501,7316,7174,7049,6931,6830,6751,6688,6637,6601,6583,6569,6558,6539,6567,6554,6409,6109,5685,5064,22.5,22.6,23.2,1569076,0.1,12.9,12.0,5.0,451,-1.00,-1.00,58.6745,-19.203750,0.000501,,,,,210 +SATSLF0720,2024246,23.262421,3.95,0.0553,0.1085,0.0243,0.00,15956,663,1,713,711,732,725,726,725,743,741,746,742,748,752,785,889,1191,1882,3021,4369,5612,6542,7215,7693,8106,8570,9081,9689,10421,11265,12254,13371,14537,15690,16794,17735,18464,18889,19022,18841,18460,17928,17333,16791,16345,15976,15749,15670,15761,15993,16401,16965,17709,18617,19656,20868,22165,23587,25053,26510,27917,29156,30145,30885,31286,31277,30967,30323,29421,28360,27147,25979,24832,23770,22789,21935,21225,20617,20133,19729,19463,19307,19221,19229,19325,19511,19789,20122,20549,21053,21626,22240,22881,23531,24129,24715,25181,25558,25814,25865,25738,25491,24996,24373,23680,22877,22022,21152,20309,19534,18835,18179,17639,17177,16776,16454,16209,16027,15923,15877,15885,15986,16157,16381,16668,17032,17453,17933,18498,19107,19730,20404,21110,21843,22549,23268,23977,24617,25200,25773,26177,26505,26746,26857,26869,26778,26576,26262,25870,25388,24823,24233,23597,22944,22304,21637,21027,20432,19845,19288,18801,18340,17938,17581,17246,16960,16696,16466,16254,16037,15865,15669,15481,15329,15198,15080,14979,14912,14849,14795,14765,14779,14780,14816,14833,14850,14906,14936,14968,15040,15054,15061,15054,15079,15086,15102,15115,15105,15048,14977,14928,14859,14778,14697,14557,14417,14250,14053,13853,13640,13394,13153,12885,12601,12312,12008,11715,11427,11164,10916,10675,10439,10187,9892,9578,9273,8994,8765,8542,8365,8218,8095,7985,7918,7832,7791,7731,7642,7507,7320,7172,7042,6932,6834,6759,6684,6647,6613,6586,6575,6562,6555,6577,6567,6403,6123,5691,5073,22.5,22.6,23.2,1569077,0.1,12.9,12.0,5.0,452,-1.00,-1.00,58.4094,-19.078213,0.000532,,,,,183 +SATSLF0720,2024246,23.262673,3.87,0.0542,0.1093,0.0253,0.00,15929,663,1,727,733,722,730,742,729,731,727,753,729,739,742,780,877,1191,1880,3020,4374,5622,6549,7214,7694,8110,8557,9078,9696,10421,11296,12289,13361,14539,15686,16778,17734,18457,18882,18999,18811,18432,17905,17329,16775,16323,15971,15745,15672,15742,15983,16384,16947,17671,18582,19632,20836,22137,23573,25006,26487,27899,29125,30121,30880,31253,31249,30952,30295,29394,28336,27135,25963,24822,23755,22761,21910,21190,20585,20109,19726,19437,19283,19188,19195,19293,19492,19739,20085,20524,21017,21580,22193,22850,23492,24102,24673,25141,25520,25771,25830,25710,25444,24953,24325,23610,22823,21966,21121,20266,19488,18811,18162,17613,17138,16740,16417,16169,16000,15904,15845,15873,15959,16139,16343,16624,16985,17410,17893,18440,19029,19666,20362,21073,21805,22552,23233,23938,24578,25149,25701,26136,26453,26684,26807,26805,26728,26518,26186,25805,25307,24755,24173,23553,22924,22261,21614,20978,20385,19780,19235,18758,18277,17883,17532,17216,16936,16668,16438,16228,16027,15835,15633,15463,15301,15165,15045,14950,14889,14809,14772,14743,14728,14738,14762,14774,14830,14873,14893,14961,14992,15024,15025,15018,15047,15057,15083,15072,15066,15022,14950,14897,14826,14746,14658,14524,14363,14195,14020,13808,13592,13362,13104,12839,12563,12275,12000,11698,11426,11153,10905,10657,10442,10167,9869,9549,9243,8959,8723,8525,8349,8199,8065,7971,7912,7839,7769,7709,7619,7478,7306,7149,7022,6916,6819,6748,6685,6632,6596,6578,6545,6543,6535,6565,6536,6407,6098,5677,5061,22.5,22.6,23.2,1569077,0.1,12.9,12.0,5.0,445,-1.00,-1.00,58.8551,-19.248186,0.000530,,,,,235 +SATSLF0720,2024246,23.262930,3.92,0.0549,0.1093,0.0249,0.00,15927,663,1,715,722,717,719,721,724,722,723,733,737,736,745,772,887,1189,1877,3007,4349,5579,6526,7186,7661,8086,8537,9049,9655,10402,11270,12257,13346,14519,15657,16740,17691,18397,18837,18975,18793,18428,17895,17303,16764,16306,15944,15739,15666,15725,15969,16355,16946,17674,18565,19620,20823,22123,23549,25004,26466,27875,29117,30091,30848,31245,31249,30934,30298,29389,28346,27115,25946,24809,23744,22740,21903,21159,20574,20087,19714,19438,19277,19189,19192,19277,19484,19744,20089,20515,21024,21579,22202,22854,23499,24089,24668,25154,25513,25782,25828,25707,25428,24949,24327,23628,22833,21981,21123,20275,19517,18810,18162,17602,17135,16737,16426,16170,16009,15907,15871,15889,15965,16134,16349,16638,16992,17422,17889,18442,19056,19673,20363,21072,21809,22545,23238,23929,24590,25176,25733,26132,26459,26699,26810,26830,26734,26531,26205,25809,25315,24764,24196,23562,22918,22272,21623,20986,20393,19809,19270,18773,18311,17901,17537,17222,16934,16672,16430,16238,16032,15848,15649,15467,15298,15160,15052,14945,14887,14812,14773,14769,14766,14759,14791,14793,14823,14872,14895,14961,15001,15017,15031,15049,15044,15080,15086,15090,15084,15016,14962,14909,14822,14728,14643,14530,14377,14203,14033,13817,13620,13384,13110,12873,12574,12281,11989,11697,11405,11144,10887,10649,10431,10170,9877,9553,9253,8980,8725,8525,8345,8179,8059,7965,7891,7831,7776,7713,7618,7472,7293,7155,7028,6926,6829,6753,6686,6631,6586,6574,6554,6533,6535,6557,6540,6411,6101,5688,5061,22.5,22.6,23.2,1569078,0.1,12.9,12.0,5.0,451,-1.00,-1.00,59.0519,-19.322668,0.000517,,,,,186 +SATSLF0720,2024246,23.263184,3.94,0.0551,0.1089,0.0246,0.00,15942,663,1,709,711,709,701,710,715,721,731,735,722,733,751,775,877,1194,1869,3003,4353,5595,6533,7192,7669,8101,8542,9045,9676,10421,11278,12256,13361,14536,15685,16782,17713,18429,18845,18992,18818,18441,17922,17326,16789,16317,15957,15739,15662,15738,15976,16385,16942,17691,18577,19639,20845,22154,23586,25041,26507,27922,29153,30130,30874,31252,31269,30928,30306,29405,28358,27149,25988,24826,23755,22777,21926,21195,20599,20117,19735,19458,19311,19205,19225,19318,19499,19763,20091,20533,21045,21613,22221,22885,23525,24129,24678,25163,25547,25790,25841,25728,25463,25004,24358,23649,22857,22003,21129,20298,19533,18827,18186,17619,17159,16762,16435,16194,16016,15910,15855,15877,15987,16137,16345,16655,17013,17424,17926,18464,19074,19701,20382,21105,21819,22545,23249,23957,24617,25190,25748,26156,26487,26736,26840,26850,26768,26552,26221,25819,25341,24790,24209,23586,22936,22298,21637,21017,20401,19817,19272,18769,18305,17901,17553,17229,16942,16689,16454,16255,16052,15867,15660,15490,15316,15169,15056,14978,14890,14821,14795,14772,14764,14772,14793,14818,14867,14904,14930,14985,15042,15041,15058,15054,15067,15072,15095,15091,15069,15031,14976,14921,14856,14773,14682,14550,14390,14231,14022,13827,13609,13373,13128,12877,12590,12298,12016,11700,11419,11147,10903,10678,10437,10183,9883,9578,9261,8973,8734,8539,8362,8213,8088,7977,7911,7822,7782,7729,7626,7503,7321,7159,7037,6916,6823,6743,6685,6625,6594,6572,6548,6541,6521,6563,6554,6397,6102,5676,5064,22.5,22.6,23.2,1569079,0.0,12.9,11.9,5.0,441,-1.00,-1.00,58.9295,-19.288053,0.000541,,,,,222 +SATSLF0720,2024246,23.263436,3.94,0.0551,0.1102,0.0251,0.00,15902,663,1,718,712,717,727,727,733,746,746,742,745,744,748,774,875,1178,1863,3009,4352,5613,6530,7185,7678,8093,8534,9038,9675,10386,11245,12232,13330,14507,15642,16747,17689,18390,18825,18954,18768,18393,17864,17285,16743,16280,15918,15697,15621,15699,15949,16360,16920,17645,18543,19589,20789,22093,23500,24946,26421,27809,29052,30039,30765,31170,31175,30855,30205,29321,28273,27061,25905,24745,23691,22715,21881,21141,20533,20058,19668,19400,19250,19149,19168,19261,19448,19712,20050,20481,20999,21549,22154,22814,23465,24050,24634,25102,25465,25721,25785,25674,25380,24919,24274,23565,22765,21931,21085,20233,19462,18777,18130,17588,17109,16721,16404,16149,16001,15880,15827,15843,15930,16098,16318,16594,16955,17381,17861,18414,19021,19659,20323,21047,21768,22491,23184,23895,24541,25117,25669,26081,26410,26645,26740,26779,26685,26477,26159,25775,25289,24730,24146,23522,22887,22229,21572,20959,20359,19789,19221,18743,18282,17884,17509,17180,16902,16625,16407,16199,16007,15831,15637,15460,15294,15143,15030,14922,14849,14788,14750,14743,14732,14731,14750,14772,14814,14864,14888,14947,14998,15010,15021,14998,15015,15037,15073,15058,15043,15009,14952,14904,14825,14739,14651,14501,14366,14184,14006,13790,13594,13341,13082,12838,12548,12260,11977,11676,11387,11125,10888,10651,10419,10171,9859,9563,9237,8959,8725,8520,8342,8192,8063,7965,7890,7821,7777,7699,7639,7478,7319,7154,7033,6921,6820,6721,6659,6597,6561,6552,6536,6523,6531,6552,6546,6403,6101,5669,5059,22.5,22.6,23.3,1569080,0.2,12.9,11.9,5.0,448,-1.00,-1.00,58.6287,-19.105360,0.000438,,,,,36 +SATSLF0720,2024246,23.263692,4.04,0.0566,0.1103,0.0258,0.00,15900,663,1,727,732,739,732,731,735,754,742,758,737,736,756,777,885,1195,1872,3017,4358,5585,6509,7170,7657,8061,8515,9040,9657,10381,11235,12211,13305,14468,15616,16715,17659,18362,18793,18935,18738,18374,17860,17261,16724,16274,15921,15681,15613,15698,15941,16337,16904,17629,18528,19580,20779,22069,23499,24948,26416,27803,29027,30027,30757,31144,31145,30837,30202,29293,28258,27050,25897,24744,23685,22705,21858,21133,20541,20052,19676,19385,19242,19147,19154,19244,19428,19701,20018,20458,20978,21538,22147,22804,23435,24037,24605,25086,25452,25719,25754,25657,25382,24906,24292,23565,22791,21928,21067,20234,19472,18782,18133,17563,17105,16705,16380,16144,15969,15885,15829,15860,15946,16109,16327,16618,16976,17393,17873,18430,19033,19660,20329,21031,21758,22493,23210,23893,24545,25131,25696,26101,26418,26650,26774,26779,26681,26474,26159,25781,25266,24714,24154,23521,22884,22243,21585,20960,20343,19772,19213,18743,18281,17874,17530,17202,16919,16645,16407,16219,16016,15829,15632,15444,15286,15145,15043,14949,14878,14792,14739,14722,14722,14738,14760,14786,14830,14859,14895,14936,14979,15002,15002,15018,15014,15047,15081,15085,15065,15008,14952,14880,14816,14727,14641,14507,14369,14195,14013,13813,13585,13346,13085,12823,12552,12260,11968,11678,11404,11145,10900,10672,10433,10165,9860,9554,9237,8968,8715,8512,8351,8185,8061,7983,7900,7817,7759,7696,7607,7462,7297,7157,7017,6912,6831,6749,6676,6633,6582,6560,6563,6536,6525,6546,6551,6392,6090,5672,5058,22.5,22.7,23.3,1569081,0.1,12.9,11.9,5.0,450,-1.00,-1.00,58.5022,-19.043748,0.000439,,,,,61 +SATSLF0720,2024246,23.263945,4.03,0.0564,0.1108,0.0255,0.00,15881,663,1,730,732,736,739,721,738,744,726,739,748,739,751,791,903,1202,1881,2996,4338,5582,6509,7158,7640,8069,8512,9030,9633,10365,11204,12211,13294,14429,15572,16653,17605,18324,18742,18871,18701,18340,17829,17237,16683,16229,15886,15653,15590,15652,15911,16298,16875,17596,18491,19527,20739,22026,23435,24883,26361,27745,28970,29965,30709,31108,31101,30793,30162,29256,28210,26997,25835,24691,23649,22656,21810,21098,20482,20027,19628,19366,19225,19124,19141,19235,19409,19661,19997,20425,20944,21508,22116,22765,23410,24022,24585,25060,25424,25686,25738,25618,25355,24881,24257,23552,22765,21901,21042,20196,19435,18732,18105,17562,17101,16697,16393,16141,15974,15861,15821,15825,15919,16078,16299,16574,16954,17369,17849,18403,19003,19636,20307,21012,21733,22470,23174,23866,24517,25093,25653,26070,26394,26634,26745,26753,26664,26443,26135,25751,25258,24689,24131,23493,22856,22216,21562,20941,20330,19762,19226,18725,18273,17873,17511,17173,16899,16635,16390,16194,16005,15802,15631,15447,15277,15140,15041,14930,14859,14789,14738,14732,14724,14734,14745,14775,14807,14844,14855,14907,14966,14992,15014,15030,15031,15049,15067,15063,15044,15009,14948,14891,14814,14720,14627,14499,14347,14172,13990,13781,13579,13347,13100,12842,12557,12272,11979,11691,11405,11140,10876,10661,10426,10154,9854,9533,9239,8953,8722,8525,8349,8197,8069,7971,7905,7830,7780,7706,7618,7479,7293,7151,7020,6911,6812,6747,6670,6615,6577,6547,6550,6535,6527,6546,6528,6379,6075,5667,5049,22.5,22.7,23.3,1569082,0.2,13.0,12.0,5.0,446,-1.00,-1.00,58.9112,-19.180863,0.000464,,,,,85 +SATSLF0720,2024246,23.264197,3.95,0.0554,0.1105,0.0257,0.00,15890,663,1,729,721,716,719,718,725,729,732,741,764,749,767,796,889,1186,1877,2999,4338,5575,6519,7176,7650,8079,8525,9037,9645,10375,11235,12221,13323,14465,15627,16714,17638,18351,18791,18932,18754,18377,17859,17261,16717,16253,15905,15671,15611,15684,15942,16325,16892,17621,18514,19577,20781,22069,23485,24934,26394,27786,29027,30009,30756,31140,31143,30837,30184,29299,28249,27025,25867,24724,23653,22683,21826,21104,20517,20025,19655,19376,19220,19137,19149,19252,19442,19694,20023,20447,20979,21528,22138,22792,23429,24019,24603,25088,25445,25709,25757,25634,25361,24898,24265,23553,22771,21922,21058,20215,19457,18780,18138,17581,17101,16715,16389,16129,15965,15868,15814,15831,15931,16100,16318,16605,16951,17369,17833,18404,18989,19630,20313,21026,21750,22488,23186,23869,24506,25096,25656,26065,26393,26632,26747,26756,26660,26465,26138,25757,25267,24713,24141,23507,22858,22214,21564,20936,20333,19765,19226,18738,18269,17873,17497,17173,16896,16633,16398,16205,16008,15812,15629,15434,15269,15139,15017,14913,14844,14769,14745,14716,14724,14722,14749,14769,14807,14849,14873,14918,14977,14996,15005,15017,15010,15038,15052,15059,15043,15003,14949,14882,14817,14740,14634,14503,14349,14182,14000,13777,13576,13344,13077,12813,12531,12259,11972,11687,11402,11134,10891,10657,10413,10161,9871,9544,9241,8959,8710,8503,8336,8190,8049,7943,7872,7815,7761,7716,7617,7475,7311,7173,7029,6929,6818,6727,6673,6609,6570,6559,6545,6533,6530,6562,6549,6378,6097,5677,5057,22.5,22.7,23.4,1569083,0.0,13.0,12.0,5.0,449,-1.00,-1.00,58.7549,-19.141202,0.000516,,,,,231 +SATSLF0720,2024246,23.264453,4.04,0.0566,0.1093,0.0250,0.00,15927,663,1,713,717,706,711,716,732,717,736,743,747,745,759,774,889,1197,1883,3005,4369,5599,6535,7195,7677,8113,8535,9047,9667,10411,11282,12269,13353,14515,15665,16769,17699,18419,18832,18971,18801,18437,17905,17319,16769,16305,15941,15718,15652,15728,15983,16381,16936,17692,18574,19633,20825,22121,23546,25017,26476,27867,29118,30101,30851,31217,31243,30901,30263,29381,28320,27108,25955,24801,23737,22743,21888,21178,20577,20096,19714,19441,19269,19186,19220,19285,19496,19746,20084,20498,21015,21559,22183,22848,23490,24097,24667,25149,25517,25765,25829,25709,25438,24971,24330,23611,22828,21970,21109,20276,19497,18806,18152,17597,17154,16731,16420,16162,16005,15902,15845,15876,15972,16137,16353,16638,16998,17414,17895,18454,19059,19700,20349,21083,21814,22536,23238,23930,24572,25156,25711,26138,26471,26699,26804,26818,26728,26523,26198,25802,25326,24768,24181,23555,22909,22257,21615,20971,20379,19798,19237,18753,18290,17901,17536,17210,16932,16681,16441,16237,16053,15845,15655,15460,15299,15156,15040,14936,14878,14814,14778,14753,14771,14770,14777,14803,14838,14882,14913,14958,14993,15011,15020,15022,15040,15065,15074,15091,15074,15026,14971,14908,14843,14767,14669,14530,14382,14211,14022,13818,13604,13367,13114,12849,12570,12279,11995,11703,11413,11145,10907,10669,10434,10173,9876,9552,9249,8962,8718,8541,8357,8203,8072,7974,7899,7821,7788,7726,7624,7477,7314,7165,7030,6911,6816,6746,6681,6605,6599,6557,6570,6549,6525,6567,6548,6400,6106,5671,5067,22.5,22.8,23.4,1569084,0.2,12.9,12.0,5.0,438,-1.00,-1.00,58.3419,-19.022464,0.000479,,,,,233 +SATSDF0720,2024246,23.509139,0.00,0.0000,0.0000,0.0000,0.00,662,0,1,650,645,630,633,638,648,645,648,639,637,632,633,631,640,645,654,649,651,652,663,669,661,678,665,675,666,661,668,673,679,685,680,679,667,666,669,665,663,667,666,666,666,665,660,662,660,666,661,689,672,667,674,670,672,669,685,660,667,661,659,676,668,673,683,689,684,665,676,664,664,677,657,665,646,659,651,657,663,673,666,665,664,669,673,663,665,663,656,661,653,647,658,662,664,651,667,660,673,670,665,668,664,663,652,658,658,651,657,663,669,668,675,677,669,666,673,665,661,653,660,655,665,656,650,663,661,675,669,669,670,661,669,668,662,657,654,661,657,663,664,667,663,673,674,682,674,663,679,656,655,661,661,660,655,664,664,667,658,657,649,654,650,648,653,656,662,654,655,653,667,669,665,663,652,651,657,656,670,668,674,661,652,661,653,660,659,665,672,674,665,661,657,650,655,653,659,668,653,652,649,667,649,655,656,659,663,657,660,661,656,664,663,658,657,674,660,675,670,674,666,657,663,650,651,660,653,667,669,663,671,666,665,674,660,667,657,671,657,655,659,675,665,675,672,651,655,652,648,651,666,648,670,672,649,664,490,0.0,0.0,0.0,1569083,0.5,13.4,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,157 +SATSLF0720,2024246,23.509696,4.10,0.0574,0.1021,0.0180,0.00,16181,662,1,714,710,718,717,725,727,727,727,733,729,737,732,771,879,1199,1895,3047,4431,5677,6631,7290,7789,8203,8660,9178,9801,10553,11417,12425,13536,14722,15906,17017,17970,18691,19117,19259,19077,18694,18153,17571,17008,16544,16178,15962,15874,15964,16215,16619,17209,17936,18853,19926,21160,22496,23938,25414,26904,28328,29560,30585,31323,31716,31725,31410,30749,29831,28783,27549,26353,25195,24125,23112,22259,21526,20912,20439,20050,19741,19608,19498,19515,19616,19809,20081,20422,20874,21384,21949,22565,23242,23881,24499,25079,25562,25920,26185,26222,26110,25829,25345,24700,23973,23188,22308,21446,20585,19831,19118,18459,17885,17419,17006,16681,16433,16277,16154,16123,16132,16217,16388,16618,16912,17269,17707,18201,18766,19388,20017,20688,21419,22183,22930,23645,24341,25008,25601,26161,26583,26922,27157,27269,27282,27181,26980,26649,26263,25769,25198,24596,23943,23292,22631,21961,21322,20734,20125,19574,19077,18605,18205,17838,17493,17205,16932,16695,16497,16298,16109,15925,15721,15560,15406,15299,15200,15115,15057,14999,14990,14976,14999,15005,15045,15080,15117,15141,15188,15257,15269,15269,15283,15287,15302,15332,15325,15317,15282,15225,15138,15089,14992,14882,14747,14599,14421,14235,14034,13815,13569,13302,13029,12759,12457,12157,11863,11584,11314,11074,10832,10592,10327,10028,9706,9393,9096,8854,8658,8468,8313,8189,8081,8013,7941,7893,7828,7754,7588,7416,7257,7128,7019,6914,6825,6753,6720,6677,6662,6656,6651,6633,6649,6635,6482,6175,5753,5144,22.4,22.4,22.8,1569085,0.0,12.9,11.9,5.0,568,-1.00,-1.00,57.9517,-19.153321,0.000556,,,,,232 +SATSLF0720,2024246,23.509878,4.07,0.0570,0.1026,0.0180,0.00,16151,662,1,709,701,705,710,721,714,727,715,731,736,732,733,773,880,1180,1891,3039,4393,5657,6603,7258,7746,8190,8612,9144,9754,10516,11385,12385,13506,14682,15853,16955,17907,18627,19065,19197,19022,18646,18106,17514,16949,16490,16132,15905,15834,15930,16162,16576,17153,17896,18817,19884,21104,22418,23857,25336,26824,28249,29485,30491,31257,31653,31658,31345,30693,29766,28700,27457,26299,25127,24057,23072,22213,21493,20871,20405,20004,19714,19558,19473,19496,19563,19767,20032,20381,20810,21343,21897,22526,23186,23829,24442,25008,25499,25865,26138,26192,26057,25795,25316,24677,23946,23153,22274,21393,20551,19781,19070,18419,17857,17388,16984,16659,16405,16234,16135,16093,16125,16220,16381,16597,16891,17246,17689,18152,18748,19351,19995,20669,21399,22138,22874,23600,24320,24973,25573,26141,26562,26880,27120,27232,27229,27148,26929,26608,26186,25723,25133,24559,23913,23274,22614,21939,21300,20700,20106,19541,19051,18569,18168,17806,17474,17178,16920,16679,16478,16272,16094,15894,15713,15545,15397,15280,15170,15111,15026,14999,14972,14963,14979,15005,15029,15057,15108,15151,15181,15245,15245,15265,15265,15277,15274,15294,15307,15298,15252,15193,15136,15063,14967,14884,14721,14587,14412,14225,14005,13799,13549,13291,13023,12757,12461,12173,11868,11586,11312,11061,10812,10579,10317,10009,9681,9369,9095,8834,8625,8459,8306,8177,8083,7997,7931,7889,7816,7721,7575,7397,7242,7116,6991,6907,6830,6765,6709,6673,6658,6649,6637,6622,6632,6620,6483,6158,5734,5117,22.4,22.4,22.9,1569085,0.0,12.9,11.9,5.0,463,-1.00,-1.00,58.4670,-19.321829,0.000563,,,,,221 +SATSLF0720,2024246,23.510137,4.09,0.0574,0.1020,0.0178,0.00,16187,662,1,712,707,721,714,720,717,733,721,718,737,747,752,787,888,1200,1905,3051,4432,5678,6636,7300,7784,8223,8677,9196,9821,10576,11445,12436,13554,14732,15915,17025,17977,18709,19137,19287,19092,18717,18181,17596,17031,16564,16200,15970,15888,15991,16232,16654,17220,17963,18860,19939,21163,22501,23952,25426,26916,28325,29602,30581,31341,31722,31748,31422,30771,29836,28786,27554,26376,25197,24134,23113,22283,21537,20920,20453,20049,19766,19611,19502,19531,19616,19812,20074,20422,20853,21377,21946,22577,23252,23894,24505,25091,25570,25950,26205,26248,26139,25850,25369,24721,23992,23187,22312,21432,20591,19825,19112,18455,17901,17417,17003,16691,16432,16269,16171,16117,16134,16229,16401,16628,16908,17291,17714,18200,18782,19381,20013,20690,21435,22176,22920,23643,24359,25027,25604,26161,26599,26923,27160,27253,27280,27178,26972,26644,26242,25757,25187,24586,23945,23309,22653,21990,21338,20724,20133,19579,19085,18616,18213,17836,17508,17229,16945,16702,16503,16291,16091,15911,15721,15562,15415,15310,15204,15136,15053,15015,14993,14984,15003,15018,15045,15084,15125,15141,15192,15254,15267,15273,15296,15281,15311,15331,15329,15317,15272,15201,15143,15070,14987,14876,14752,14601,14434,14253,14039,13821,13584,13311,13044,12765,12476,12173,11885,11589,11317,11071,10826,10590,10327,10025,9704,9389,9098,8867,8653,8486,8321,8199,8105,8029,7953,7882,7824,7733,7577,7399,7258,7134,7017,6929,6853,6777,6724,6679,6658,6641,6624,6625,6650,6647,6501,6185,5762,5145,22.4,22.4,22.9,1569086,0.1,12.9,11.9,5.0,454,-1.00,-1.00,57.4977,-18.971927,0.000503,,,,,170 +SATSLF0720,2024246,23.510390,4.05,0.0567,0.1019,0.0174,0.00,16179,662,1,722,713,727,722,729,729,736,741,741,737,743,746,777,890,1209,1908,3044,4409,5676,6625,7291,7779,8202,8659,9173,9803,10564,11413,12438,13546,14730,15897,17013,17962,18680,19133,19252,19079,18713,18176,17580,17013,16564,16197,15952,15882,15971,16215,16623,17213,17953,18842,19917,21155,22471,23918,25403,26884,28312,29576,30568,31319,31717,31700,31392,30743,29821,28758,27525,26359,25198,24107,23106,22247,21503,20912,20421,20043,19750,19594,19506,19520,19622,19812,20081,20418,20845,21367,21943,22562,23234,23891,24497,25069,25557,25920,26178,26230,26106,25842,25364,24722,23988,23189,22313,21433,20578,19819,19114,18465,17896,17424,16994,16679,16406,16239,16148,16103,16110,16211,16374,16619,16906,17282,17705,18194,18773,19384,20014,20705,21437,22173,22921,23633,24353,25002,25578,26144,26577,26892,27159,27257,27277,27185,26965,26626,26233,25750,25173,24581,23945,23285,22632,21964,21334,20713,20131,19564,19072,18603,18202,17819,17501,17216,16943,16702,16503,16289,16104,15909,15729,15554,15413,15301,15194,15137,15056,15010,14978,14983,14974,15023,15037,15073,15123,15136,15206,15245,15268,15273,15277,15283,15315,15329,15337,15321,15283,15210,15158,15080,14988,14882,14755,14608,14433,14242,14031,13826,13589,13317,13057,12770,12466,12169,11876,11577,11309,11066,10833,10585,10335,10025,9696,9382,9117,8864,8651,8472,8318,8175,8074,8002,7931,7892,7821,7733,7590,7416,7263,7138,7016,6925,6830,6764,6708,6678,6655,6650,6632,6629,6656,6645,6501,6181,5751,5132,22.4,22.4,23.0,1569087,0.2,12.9,12.0,5.0,452,-1.00,-1.00,57.6671,-19.026676,0.000502,,,,,161 +SATSLF0720,2024246,23.510648,4.07,0.0570,0.1031,0.0186,0.00,16142,662,1,728,697,726,725,729,729,727,727,729,725,743,755,785,886,1198,1906,3037,4395,5647,6601,7253,7750,8172,8621,9140,9773,10537,11397,12397,13488,14651,15842,16950,17898,18628,19070,19195,19021,18645,18116,17517,16962,16496,16146,15904,15827,15915,16170,16582,17156,17905,18807,19869,21093,22410,23842,25329,26823,28232,29488,30490,31213,31635,31626,31332,30669,29748,28701,27447,26278,25111,24041,23045,22192,21465,20860,20373,19989,19721,19542,19455,19469,19569,19765,20013,20362,20790,21323,21890,22533,23194,23820,24439,25028,25509,25866,26120,26169,26060,25754,25271,24640,23926,23122,22250,21384,20544,19767,19068,18414,17834,17371,16971,16650,16389,16227,16122,16070,16113,16190,16355,16589,16874,17235,17658,18157,18727,19345,19977,20662,21402,22132,22873,23576,24280,24941,25526,26098,26522,26855,27090,27208,27220,27127,26904,26591,26173,25677,25099,24521,23895,23220,22586,21915,21298,20695,20078,19527,19037,18558,18165,17800,17461,17172,16909,16667,16470,16279,16062,15873,15689,15517,15381,15261,15162,15081,15032,14986,14965,14970,14973,15005,15019,15054,15090,15121,15168,15221,15227,15249,15241,15234,15267,15292,15297,15293,15242,15181,15117,15044,14961,14856,14725,14577,14406,14219,14010,13784,13550,13297,13017,12743,12434,12150,11855,11568,11300,11047,10816,10595,10305,10003,9687,9373,9093,8846,8636,8459,8307,8161,8062,7989,7913,7877,7810,7742,7590,7405,7263,7121,7005,6893,6816,6747,6695,6666,6656,6644,6622,6621,6629,6618,6467,6154,5732,5125,22.4,22.4,23.0,1569088,0.0,13.0,11.9,5.0,452,-1.00,-1.00,58.0867,-19.153734,0.000520,,,,,78 +SATSLF0720,2024246,23.510903,4.00,0.0560,0.1037,0.0187,0.00,16124,662,1,702,707,704,707,736,738,738,727,743,738,738,745,781,884,1201,1899,3041,4395,5653,6601,7257,7741,8179,8613,9139,9773,10528,11389,12389,13498,14665,15825,16933,17885,18609,19041,19169,19004,18613,18103,17497,16944,16491,16119,15888,15829,15900,16149,16540,17131,17869,18779,19835,21068,22381,23830,25296,26785,28192,29456,30453,31197,31605,31610,31275,30647,29717,28676,27428,26251,25086,24009,23016,22166,21435,20843,20356,19966,19684,19534,19429,19437,19537,19720,19994,20332,20782,21297,21866,22487,23161,23789,24402,24970,25453,25808,26078,26140,26017,25734,25269,24624,23905,23114,22233,21370,20509,19735,19040,18389,17814,17363,16951,16641,16378,16219,16121,16058,16074,16163,16343,16566,16861,17223,17656,18124,18708,19305,19939,20628,21346,22098,22845,23545,24259,24928,25509,26077,26493,26819,27070,27175,27180,27084,26861,26549,26150,25649,25096,24506,23865,23241,22570,21900,21268,20658,20070,19504,19013,18552,18134,17785,17457,17171,16893,16648,16432,16231,16045,15837,15663,15497,15355,15253,15148,15075,15021,14965,14944,14961,14962,14969,15000,15025,15076,15101,15165,15208,15225,15218,15249,15240,15265,15289,15287,15288,15222,15166,15113,15038,14940,14845,14711,14562,14390,14193,13985,13761,13517,13274,13014,12729,12442,12149,11844,11556,11300,11041,10787,10569,10292,10001,9681,9370,9069,8828,8613,8442,8281,8167,8065,7991,7931,7877,7793,7704,7563,7387,7245,7106,6999,6902,6832,6768,6704,6661,6644,6643,6621,6613,6630,6618,6449,6155,5726,5111,22.4,22.4,23.1,1569089,0.2,12.9,12.0,5.0,452,-1.00,-1.00,58.5346,-19.320942,0.000530,,,,,51 +SATSLF0720,2024246,23.511157,4.08,0.0571,0.1035,0.0189,0.00,16123,662,1,713,705,713,707,726,722,720,731,729,721,723,735,775,878,1179,1897,3037,4389,5650,6592,7255,7749,8181,8613,9153,9765,10505,11366,12368,13488,14649,15824,16942,17893,18606,19042,19182,18995,18625,18084,17480,16930,16482,16126,15909,15826,15899,16155,16552,17133,17869,18775,19850,21061,22375,23841,25301,26794,28201,29456,30450,31202,31594,31602,31275,30625,29713,28662,27434,26256,25081,24009,23017,22166,21436,20832,20343,19961,19682,19525,19437,19442,19560,19733,20001,20321,20763,21280,21838,22465,23161,23794,24393,24986,25459,25826,26089,26138,26016,25728,25254,24616,23888,23095,22225,21360,20500,19746,19046,18389,17821,17347,16951,16624,16379,16208,16109,16053,16075,16183,16334,16555,16855,17216,17645,18145,18720,19325,19959,20632,21358,22099,22848,23556,24265,24928,25517,26081,26521,26829,27067,27168,27181,27081,26871,26560,26154,25652,25095,24499,23853,23227,22572,21923,21280,20667,20073,19502,19013,18554,18146,17782,17454,17152,16883,16653,16442,16241,16049,15860,15661,15496,15359,15243,15149,15085,15008,14973,14956,14951,14958,14976,14989,15025,15061,15085,15144,15213,15227,15245,15245,15251,15280,15288,15275,15265,15236,15161,15106,15025,14941,14850,14704,14578,14397,14203,13988,13779,13521,13269,12995,12731,12432,12142,11840,11555,11291,11040,10801,10569,10292,9985,9670,9370,9079,8846,8617,8443,8287,8157,8067,7997,7917,7865,7793,7720,7587,7382,7236,7109,7000,6897,6811,6747,6699,6657,6643,6631,6621,6608,6632,6627,6469,6167,5741,5113,22.4,22.4,23.1,1569090,0.0,12.9,12.0,5.0,450,-1.00,-1.00,58.2051,-19.183000,0.000522,,,,,112 +SATSLF0720,2024246,23.511413,4.18,0.0585,0.1040,0.0184,0.00,16124,662,1,715,708,728,721,733,717,727,734,733,733,747,750,792,885,1195,1902,3034,4401,5669,6600,7237,7739,8170,8624,9133,9750,10509,11371,12374,13491,14666,15826,16921,17889,18606,19036,19160,18965,18603,18061,17489,16938,16465,16100,15884,15821,15893,16137,16541,17129,17882,18775,19844,21067,22384,23818,25298,26773,28194,29450,30434,31190,31570,31593,31266,30617,29706,28657,27419,26247,25082,24019,23005,22155,21429,20826,20337,19953,19669,19497,19415,19437,19549,19717,19970,20330,20756,21274,21856,22475,23143,23803,24406,24989,25470,25824,26084,26139,26026,25744,25257,24623,23904,23105,22227,21354,20514,19751,19047,18391,17824,17365,16941,16621,16385,16209,16113,16046,16082,16174,16333,16557,16854,17215,17654,18138,18712,19315,19960,20621,21359,22105,22850,23555,24262,24914,25501,26071,26500,26825,27064,27172,27185,27097,26874,26554,26157,25673,25089,24515,23859,23228,22571,21900,21274,20657,20065,19506,19015,18562,18144,17773,17453,17168,16894,16665,16461,16256,16057,15869,15662,15495,15352,15239,15150,15090,15013,14970,14965,14954,14960,14984,15011,15029,15076,15107,15152,15218,15217,15243,15250,15239,15265,15292,15301,15282,15230,15173,15122,15033,14950,14853,14706,14561,14373,14205,13986,13785,13530,13283,13024,12747,12449,12163,11850,11571,11301,11044,10805,10555,10292,9995,9685,9362,9069,8841,8616,8455,8295,8170,8059,7991,7911,7872,7803,7716,7591,7395,7255,7125,7005,6904,6824,6765,6705,6661,6651,6642,6618,6601,6621,6619,6475,6165,5743,5121,22.4,22.5,23.1,1569091,0.2,12.9,12.0,5.0,442,-1.00,-1.00,58.0727,-19.122260,0.000513,,,,,228 +SATSLF0720,2024246,23.511670,4.23,0.0592,0.1047,0.0194,0.00,16101,662,1,721,723,715,719,716,722,727,725,736,730,734,753,780,883,1198,1885,3031,4383,5635,6576,7259,7729,8166,8613,9124,9725,10487,11362,12354,13466,14629,15793,16896,17835,18551,19005,19110,18947,18575,18045,17445,16903,16450,16085,15851,15799,15861,16111,16510,17094,17852,18754,19826,21040,22348,23787,25262,26733,28130,29385,30365,31121,31507,31525,31203,30555,29659,28594,27386,26201,25040,23979,22985,22117,21385,20781,20308,19914,19631,19485,19385,19401,19483,19690,19955,20313,20748,21266,21837,22464,23115,23754,24355,24936,25402,25774,26048,26105,25978,25683,25216,24588,23866,23070,22205,21333,20490,19719,19018,18362,17800,17334,16926,16610,16349,16187,16089,16037,16052,16151,16309,16541,16832,17202,17643,18122,18702,19301,19929,20624,21338,22074,22805,23521,24233,24888,25472,26043,26469,26794,27021,27120,27141,27051,26829,26505,26112,25617,25051,24474,23826,23193,22525,21859,21242,20636,20053,19489,19008,18521,18123,17749,17418,17128,16854,16618,16416,16218,16029,15839,15653,15489,15358,15239,15141,15061,14993,14949,14929,14909,14939,14966,14973,15015,15048,15075,15123,15184,15211,15221,15233,15243,15259,15284,15287,15268,15226,15155,15090,15009,14915,14831,14699,14550,14361,14195,13973,13770,13541,13282,13012,12733,12432,12141,11835,11561,11280,11031,10792,10563,10305,9992,9662,9359,9075,8828,8617,8443,8291,8165,8068,7990,7934,7874,7805,7709,7564,7396,7249,7118,6996,6907,6805,6743,6693,6669,6642,6637,6621,6612,6625,6627,6468,6162,5751,5123,22.4,22.5,23.1,1569092,0.1,12.9,12.0,5.0,449,-1.00,-1.00,57.8442,-18.993068,0.000493,,,,,160 +SATSLF0720,2024246,23.511923,4.20,0.0588,0.1054,0.0203,0.00,16065,662,1,731,726,718,721,710,718,727,722,753,744,749,755,799,897,1203,1914,3037,4407,5640,6570,7234,7714,8141,8601,9120,9739,10465,11356,12341,13425,14589,15755,16853,17797,18504,18951,19096,18896,18525,18011,17417,16862,16410,16057,15837,15746,15837,16081,16475,17051,17794,18693,19766,20990,22300,23729,25204,26673,28075,29316,30313,31064,31461,31458,31143,30498,29578,28536,27300,26123,24981,23899,22910,22048,21333,20730,20254,19875,19600,19440,19353,19370,19464,19640,19905,20240,20686,21214,21765,22387,23059,23701,24300,24873,25340,25709,25997,26010,25902,25632,25159,24512,23800,23005,22147,21281,20448,19684,18962,18320,17757,17287,16875,16569,16320,16142,16044,16009,16030,16102,16276,16494,16802,17156,17582,18055,18635,19236,19869,20547,21285,22017,22755,23472,24175,24823,25404,25974,26392,26717,26956,27072,27089,26994,26793,26449,26053,25566,25001,24417,23793,23136,22488,21809,21189,20578,19975,19427,18944,18476,18077,17725,17398,17109,16854,16600,16390,16179,15987,15799,15624,15445,15313,15205,15111,15041,14961,14925,14909,14909,14913,14939,14968,15001,15026,15062,15108,15163,15171,15191,15202,15205,15217,15227,15230,15211,15169,15125,15062,14997,14898,14816,14673,14512,14357,14169,13954,13757,13508,13250,12981,12692,12396,12109,11817,11517,11251,11002,10768,10534,10273,9966,9638,9335,9045,8805,8590,8420,8277,8157,8061,7981,7909,7853,7777,7684,7545,7373,7213,7106,6997,6898,6827,6746,6696,6639,6631,6612,6586,6575,6613,6595,6459,6163,5725,5119,22.4,22.5,23.1,1569093,0.2,12.9,12.0,5.0,447,-1.00,-1.00,57.9855,-19.009073,0.000562,,,,,101 +SATSLF0720,2024246,23.512180,4.24,0.0594,0.1053,0.0198,0.00,16074,662,1,721,712,719,723,720,732,737,738,736,738,741,760,782,893,1201,1889,3023,4373,5618,6563,7235,7721,8137,8580,9117,9733,10457,11331,12319,13437,14610,15777,16869,17809,18518,18967,19092,18903,18531,18004,17421,16876,16417,16059,15835,15779,15845,16098,16489,17068,17800,18701,19767,20981,22306,23744,25213,26688,28097,29330,30332,31074,31474,31490,31157,30505,29589,28538,27320,26148,24994,23924,22933,22093,21349,20750,20279,19878,19618,19445,19357,19360,19465,19660,19922,20275,20701,21229,21786,22401,23063,23719,24337,24901,25383,25737,26009,26064,25947,25669,25181,24546,23821,23041,22170,21302,20464,19685,18980,18334,17778,17312,16889,16582,16328,16160,16056,16013,16027,16127,16288,16514,16801,17168,17585,18088,18668,19265,19914,20590,21309,22039,22789,23491,24183,24833,25416,25986,26416,26743,26978,27091,27109,27013,26808,26473,26079,25576,25028,24434,23808,23149,22519,21833,21211,20601,20008,19456,18970,18492,18082,17721,17386,17095,16834,16594,16381,16203,16002,15816,15649,15472,15325,15200,15107,15035,14961,14925,14907,14901,14914,14923,14957,15002,15030,15068,15122,15177,15186,15200,15218,15197,15225,15240,15235,15237,15197,15136,15077,14992,14913,14812,14688,14532,14348,14163,13959,13745,13504,13249,12978,12689,12392,12103,11817,11523,11266,11007,10792,10550,10278,9973,9643,9345,9065,8817,8615,8434,8279,8153,8042,7968,7898,7844,7781,7698,7550,7385,7234,7100,6991,6899,6805,6738,6675,6632,6628,6608,6606,6594,6605,6604,6458,6153,5725,5109,22.5,22.6,23.1,1569094,0.3,12.9,12.0,5.0,451,-1.00,-1.00,57.8657,-18.968721,0.000519,,,,,71 +SATSLF0720,2024246,23.512434,4.15,0.0582,0.1052,0.0196,0.00,16077,662,1,709,714,715,727,723,729,729,731,734,731,747,757,773,884,1184,1882,3022,4372,5638,6579,7228,7719,8149,8610,9108,9745,10465,11350,12326,13433,14582,15754,16858,17815,18538,18954,19105,18921,18539,18007,17416,16855,16406,16037,15826,15742,15845,16089,16485,17064,17792,18723,19780,20994,22289,23744,25217,26690,28098,29330,30339,31079,31478,31483,31168,30501,29591,28546,27319,26144,24996,23918,22928,22091,21362,20759,20269,19882,19616,19442,19362,19354,19462,19664,19904,20258,20685,21217,21796,22405,23063,23717,24340,24918,25385,25749,26008,26062,25916,25651,25173,24541,23820,23035,22188,21301,20463,19693,18998,18330,17780,17306,16900,16578,16337,16155,16074,16020,16045,16125,16298,16529,16825,17186,17604,18091,18636,19254,19889,20567,21285,22038,22781,23504,24201,24853,25455,26005,26435,26757,26984,27083,27101,27015,26814,26493,26088,25594,25045,24445,23801,23163,22513,21832,21207,20593,20010,19468,18973,18503,18106,17741,17405,17120,16850,16613,16405,16205,15997,15815,15644,15466,15332,15217,15117,15034,14979,14942,14913,14921,14925,14950,14962,15008,15039,15074,15114,15173,15191,15196,15215,15220,15246,15257,15248,15243,15193,15138,15085,15004,14912,14813,14688,14526,14361,14162,13963,13749,13513,13254,12966,12707,12405,12115,11829,11538,11275,11022,10786,10545,10279,9980,9646,9332,9057,8807,8604,8444,8277,8155,8058,7990,7922,7862,7790,7687,7542,7385,7228,7093,6995,6898,6807,6751,6689,6644,6615,6611,6592,6586,6613,6611,6458,6167,5737,5121,22.4,22.6,23.2,1569095,0.1,12.9,12.0,5.0,449,-1.00,-1.00,58.3646,-19.177733,0.000604,,,,,94 +SATSLF0720,2024246,23.512686,4.20,0.0589,0.1056,0.0202,0.00,16065,662,1,713,715,717,727,717,725,737,721,739,739,733,743,765,887,1193,1885,3019,4375,5633,6567,7223,7713,8141,8573,9097,9717,10450,11315,12327,13409,14586,15730,16842,17784,18506,18941,19078,18893,18519,17994,17412,16853,16389,16040,15813,15734,15799,16055,16469,17063,17805,18713,19773,20980,22285,23733,25197,26664,28086,29339,30309,31045,31428,31438,31130,30486,29578,28538,27306,26133,24973,23901,22925,22065,21342,20742,20245,19866,19580,19445,19344,19361,19455,19664,19904,20259,20682,21204,21768,22385,23057,23698,24315,24885,25357,25736,26000,26044,25907,25641,25169,24535,23825,23029,22152,21287,20440,19661,18968,18310,17766,17283,16881,16560,16319,16148,16051,16004,16016,16123,16281,16508,16803,17166,17602,18081,18641,19246,19882,20556,21282,22025,22759,23483,24182,24825,25429,25979,26413,26737,26964,27077,27082,26999,26776,26461,26053,25565,25009,24417,23784,23135,22487,21820,21192,20586,20008,19449,18954,18472,18073,17693,17383,17091,16832,16617,16405,16202,16017,15819,15625,15451,15317,15197,15102,15022,14959,14919,14912,14907,14921,14925,14956,14995,15035,15066,15118,15163,15179,15189,15197,15197,15219,15243,15238,15235,15193,15119,15065,14998,14905,14809,14679,14537,14363,14157,13959,13740,13500,13234,12977,12691,12399,12113,11809,11523,11258,11012,10765,10535,10264,9965,9649,9339,9060,8817,8603,8437,8275,8141,8053,7979,7894,7855,7786,7696,7549,7367,7221,7089,6969,6874,6797,6745,6685,6651,6641,6607,6603,6596,6608,6621,6467,6149,5738,5115,22.5,22.6,23.2,1569096,0.5,13.0,11.9,5.0,444,-1.00,-1.00,58.3195,-19.146663,0.000593,,,,,220 +SATSLF0720,2024246,23.512942,4.02,0.0564,0.1063,0.0201,0.00,16053,662,1,701,711,722,729,737,736,745,741,718,717,723,747,778,893,1202,1902,3027,4389,5626,6564,7223,7719,8138,8582,9113,9733,10465,11314,12315,13393,14571,15735,16843,17800,18513,18949,19082,18903,18526,17997,17396,16840,16375,16027,15799,15730,15815,16067,16473,17045,17777,18688,19734,20951,22261,23697,25158,26642,28057,29300,30288,31008,31435,31447,31113,30453,29554,28503,27277,26094,24940,23875,22891,22025,21315,20713,20229,19831,19570,19421,19314,19334,19443,19646,19877,20229,20660,21179,21745,22359,23032,23674,24285,24857,25333,25704,25965,26010,25898,25620,25131,24495,23800,22996,22135,21265,20426,19665,18949,18310,17738,17274,16883,16573,16301,16155,16037,15997,16004,16115,16261,16473,16779,17145,17555,18063,18625,19239,19869,20548,21285,22005,22747,23451,24153,24813,25398,25958,26376,26701,26952,27050,27072,26983,26775,26450,26026,25543,24994,24402,23757,23113,22478,21805,21191,20569,19991,19434,18935,18466,18068,17700,17380,17096,16820,16590,16376,16178,15973,15785,15608,15449,15319,15194,15094,15031,14949,14895,14887,14880,14907,14913,14941,14963,15029,15045,15093,15159,15181,15180,15193,15190,15213,15229,15239,15223,15178,15118,15066,14996,14900,14819,14681,14530,14347,14171,13944,13736,13502,13239,12979,12690,12402,12094,11804,11526,11262,11008,10776,10525,10278,9977,9645,9335,9053,8806,8593,8425,8270,8145,8053,7969,7914,7865,7799,7709,7554,7369,7225,7104,6973,6887,6785,6736,6664,6638,6615,6600,6599,6597,6614,6613,6434,6143,5714,5105,22.5,22.6,23.2,1569096,0.1,12.9,11.9,5.0,448,-1.00,-1.00,58.6036,-19.246734,0.000582,,,,,34 +SATSLF0720,2024246,23.513196,4.15,0.0581,0.1065,0.0205,0.00,16050,662,1,714,713,715,726,726,722,741,724,747,740,748,753,769,887,1200,1899,3019,4385,5625,6565,7226,7702,8133,8581,9097,9708,10455,11312,12315,13420,14578,15723,16822,17757,18475,18914,19046,18875,18499,17977,17393,16837,16363,16007,15782,15719,15803,16054,16460,17033,17768,18662,19729,20934,22243,23688,25149,26642,28029,29271,30289,31028,31426,31402,31074,30446,29533,28498,27261,26084,24940,23861,22880,22036,21303,20700,20216,19844,19576,19401,19307,19331,19429,19623,19890,20233,20656,21166,21749,22346,23022,23669,24273,24858,25334,25696,25967,26010,25898,25618,25145,24500,23799,22986,22131,21271,20424,19653,18941,18311,17741,17280,16860,16546,16289,16124,16037,15993,16018,16117,16272,16485,16781,17137,17569,18062,18625,19225,19875,20545,21284,22013,22750,23462,24170,24813,25396,25958,26387,26711,26960,27065,27066,26969,26765,26425,26041,25540,24981,24384,23766,23109,22479,21799,21179,20573,19981,19431,18944,18467,18056,17704,17382,17092,16818,16592,16402,16189,16000,15798,15630,15454,15309,15186,15091,15014,14941,14901,14891,14892,14906,14916,14937,14992,15035,15058,15110,15153,15177,15175,15185,15186,15207,15223,15230,15221,15176,15109,15053,14972,14909,14805,14665,14517,14342,14155,13963,13738,13511,13237,12977,12685,12379,12089,11796,11509,11238,11003,10776,10539,10280,9982,9652,9338,9049,8814,8584,8423,8263,8138,8051,7973,7909,7858,7787,7703,7556,7382,7223,7104,6983,6899,6809,6726,6683,6649,6629,6609,6614,6582,6606,6605,6440,6151,5727,5109,22.5,22.6,23.2,1569097,0.0,12.9,12.0,5.0,447,-1.00,-1.00,58.5025,-19.195667,0.000576,,,,,42 +SATSLF0720,2024246,23.513448,4.07,0.0570,0.1062,0.0205,0.00,16055,662,1,726,729,727,727,725,729,741,736,741,741,751,757,780,870,1195,1881,3013,4374,5625,6554,7216,7699,8155,8586,9102,9718,10443,11309,12302,13396,14583,15732,16827,17766,18489,18918,19059,18888,18498,17959,17394,16829,16391,16034,15803,15727,15802,16057,16446,17022,17766,18678,19742,20949,22251,23698,25165,26637,28048,29285,30276,31019,31408,31416,31089,30468,29545,28513,27300,26121,24962,23867,22891,22030,21309,20704,20238,19850,19571,19406,19321,19342,19437,19624,19874,20224,20664,21179,21725,22361,23022,23680,24293,24866,25347,25706,25966,26018,25893,25623,25149,24509,23808,23010,22139,21270,20425,19657,18953,18305,17753,17280,16874,16567,16310,16153,16041,15995,16033,16121,16280,16504,16789,17168,17586,18059,18629,19240,19872,20548,21290,22024,22769,23469,24179,24825,25410,25977,26401,26711,26954,27045,27079,26976,26762,26442,26042,25552,24986,24396,23764,23131,22489,21822,21207,20581,19969,19439,18923,18459,18068,17693,17389,17101,16821,16585,16391,16196,16001,15801,15613,15450,15302,15185,15088,15024,14941,14908,14904,14890,14898,14925,14957,14986,15025,15050,15105,15159,15186,15187,15212,15209,15238,15229,15238,15241,15190,15122,15055,14982,14894,14793,14675,14525,14349,14157,13958,13744,13501,13249,12973,12706,12410,12110,11824,11536,11250,11004,10759,10526,10264,9973,9645,9355,9063,8828,8606,8436,8274,8145,8044,7972,7895,7854,7786,7702,7561,7381,7226,7102,6982,6875,6784,6727,6678,6647,6617,6623,6613,6601,6603,6612,6457,6157,5713,5103,22.5,22.6,23.2,1569098,0.2,12.9,11.9,5.0,451,-1.00,-1.00,58.9042,-19.372012,0.000506,,,,,73 +SATSLF0720,2024246,23.513703,4.18,0.0585,0.1067,0.0207,0.00,16030,662,1,715,729,726,717,719,727,732,716,728,727,737,745,791,889,1191,1873,3023,4360,5600,6547,7212,7687,8109,8555,9085,9697,10445,11302,12296,13398,14573,15713,16807,17758,18468,18901,19037,18843,18475,17950,17365,16811,16366,15997,15773,15722,15776,16039,16444,17012,17753,18646,19714,20916,22209,23663,25125,26596,27993,29243,30226,30981,31368,31370,31053,30388,29501,28458,27222,26071,24922,23846,22853,22014,21285,20673,20200,19827,19556,19390,19297,19304,19401,19585,19857,20182,20630,21156,21708,22325,22994,23640,24241,24837,25301,25661,25925,25962,25863,25573,25111,24489,23758,22986,22106,21248,20416,19641,18933,18290,17728,17256,16857,16535,16296,16126,16021,15974,16001,16096,16233,16473,16757,17125,17553,18024,18604,19213,19830,20518,21240,21985,22709,23426,24113,24774,25352,25932,26348,26661,26931,27021,27038,26939,26738,26393,25991,25512,24945,24358,23745,23099,22443,21787,21158,20537,19963,19418,18902,18429,18032,17673,17355,17053,16795,16556,16359,16163,15985,15778,15589,15427,15303,15181,15062,14995,14934,14884,14859,14873,14880,14904,14935,14953,15005,15028,15095,15137,15161,15178,15185,15175,15191,15223,15215,15211,15162,15092,15047,14976,14864,14785,14646,14496,14326,14144,13934,13723,13491,13221,12965,12672,12396,12089,11788,11514,11248,10989,10751,10511,10257,9953,9629,9331,9047,8802,8586,8423,8263,8131,8041,7956,7881,7832,7768,7676,7537,7369,7210,7083,6985,6876,6798,6725,6667,6642,6629,6601,6582,6592,6600,6589,6443,6146,5718,5101,22.5,22.6,23.3,1569099,0.0,12.9,11.9,5.0,448,-1.00,-1.00,58.2846,-19.081641,0.000508,,,,,2 +SATSLF0720,2024246,23.513956,4.05,0.0567,0.1071,0.0212,0.00,16024,662,1,704,713,711,710,721,712,727,729,728,730,741,739,782,872,1183,1879,3017,4367,5611,6551,7201,7694,8116,8555,9079,9680,10420,11275,12264,13368,14544,15704,16802,17753,18465,18907,19026,18839,18480,17934,17355,16804,16343,15993,15762,15713,15777,16004,16409,16993,17735,18640,19710,20914,22211,23638,25098,26582,27984,29224,30235,30973,31360,31367,31031,30395,29497,28438,27207,26038,24871,23821,22844,21993,21281,20681,20198,19806,19531,19363,19281,19296,19378,19576,19859,20196,20624,21143,21712,22336,22986,23638,24249,24826,25293,25670,25905,25970,25850,25572,25099,24471,23754,22961,22097,21237,20396,19625,18933,18276,17733,17258,16836,16539,16281,16115,16010,15973,15993,16085,16237,16480,16765,17121,17553,18034,18597,19216,19842,20509,21237,21970,22698,23415,24121,24756,25367,25926,26343,26662,26900,27010,27036,26930,26726,26402,26026,25514,24957,24363,23745,23085,22434,21773,21146,20541,19946,19403,18918,18432,18045,17681,17345,17054,16786,16552,16342,16145,15959,15758,15591,15429,15297,15178,15072,15004,14925,14891,14866,14871,14886,14916,14924,14971,15008,15042,15090,15128,15143,15151,15156,15176,15177,15208,15197,15200,15151,15093,15031,14964,14881,14789,14647,14507,14330,14144,13925,13713,13467,13225,12946,12669,12389,12103,11793,11512,11252,10989,10746,10525,10255,9948,9619,9307,9025,8786,8577,8407,8267,8141,8042,7970,7889,7847,7781,7687,7525,7377,7209,7082,6970,6883,6797,6725,6661,6621,6610,6599,6582,6579,6600,6592,6441,6139,5713,5102,22.5,22.7,23.3,1569100,0.1,12.9,11.9,5.0,442,-1.00,-1.00,58.8519,-19.309132,0.000629,,,,,67 +SATSLF0720,2024246,23.514208,4.29,0.0601,0.1070,0.0211,0.00,16022,662,1,729,714,735,724,725,720,718,731,733,732,738,756,805,904,1204,1883,3027,4370,5628,6557,7205,7690,8122,8548,9072,9685,10428,11303,12277,13383,14545,15690,16795,17733,18449,18877,19013,18811,18436,17916,17336,16789,16340,15990,15764,15697,15772,16009,16419,16994,17717,18627,19704,20906,22216,23639,25116,26577,27972,29217,30208,30941,31342,31342,31018,30379,29465,28432,27197,26043,24893,23837,22820,22007,21266,20667,20192,19801,19530,19374,19284,19286,19377,19577,19848,20193,20614,21141,21718,22321,22984,23634,24243,24807,25286,25645,25908,25973,25845,25582,25096,24477,23758,22952,22107,21229,20381,19623,18921,18276,17719,17255,16841,16531,16284,16105,16009,15947,15983,16069,16219,16454,16730,17115,17537,18048,18592,19203,19831,20521,21242,21975,22714,23419,24108,24754,25343,25901,26336,26641,26891,27000,27014,26931,26726,26393,26001,25522,24957,24375,23733,23088,22429,21770,21145,20525,19940,19385,18909,18438,18042,17678,17354,17076,16800,16560,16353,16158,15966,15776,15590,15421,15286,15162,15075,15008,14928,14881,14871,14881,14889,14906,14938,14966,15014,15029,15082,15136,15147,15154,15159,15170,15188,15203,15198,15208,15158,15096,15034,14957,14862,14778,14641,14484,14331,14130,13923,13725,13481,13221,12957,12664,12383,12085,11768,11507,11242,10979,10745,10517,10258,9945,9627,9331,9044,8804,8584,8419,8265,8136,8044,7952,7876,7835,7766,7687,7537,7365,7215,7095,6976,6882,6793,6734,6675,6633,6619,6605,6593,6584,6594,6600,6441,6133,5719,5109,22.5,22.7,23.3,1569101,0.1,12.9,11.9,5.0,447,-1.00,-1.00,58.2000,-19.031075,0.000568,,,,,90 +SATSLF0720,2024246,23.514464,4.14,0.0579,0.1075,0.0213,0.00,16025,662,1,732,726,713,716,714,722,731,739,748,743,740,755,773,887,1189,1883,3027,4371,5629,6562,7218,7698,8116,8554,9086,9697,10426,11298,12297,13381,14545,15691,16781,17731,18441,18874,19009,18841,18450,17937,17349,16806,16338,15988,15755,15687,15770,16022,16418,16986,17735,18646,19688,20893,22190,23625,25096,26570,27969,29212,30217,30941,31351,31338,31024,30368,29472,28426,27221,26037,24890,23822,22841,21981,21262,20650,20187,19798,19524,19365,19265,19286,19389,19582,19836,20202,20627,21141,21700,22326,22988,23634,24237,24803,25281,25659,25911,25979,25856,25578,25095,24467,23738,22961,22085,21225,20378,19610,18924,18282,17720,17253,16857,16536,16296,16130,16024,15969,15992,16082,16223,16451,16763,17126,17554,18050,18601,19208,19843,20522,21233,21961,22715,23412,24117,24763,25353,25921,26339,26678,26913,27001,27027,26922,26709,26369,25988,25501,24949,24368,23740,23094,22429,21771,21153,20545,19952,19403,18923,18437,18045,17675,17352,17069,16792,16563,16366,16165,15976,15779,15592,15433,15300,15189,15089,15005,14933,14892,14861,14857,14873,14902,14923,14961,15004,15027,15092,15149,15153,15176,15174,15177,15201,15219,15213,15194,15147,15099,15029,14976,14893,14786,14654,14501,14334,14147,13933,13709,13474,13213,12950,12672,12377,12093,11790,11519,11261,11016,10765,10534,10244,9963,9640,9328,9043,8811,8589,8427,8277,8153,8050,7962,7902,7850,7791,7689,7546,7371,7216,7081,6965,6875,6803,6732,6678,6646,6632,6615,6604,6593,6608,6596,6436,6138,5724,5103,22.5,22.8,23.4,1569102,0.1,12.9,12.0,5.0,444,-1.00,-1.00,58.5975,-19.195403,0.000510,,,,,32 +SATSDF0720,2024246,23.759139,0.00,0.0000,0.0000,0.0000,0.00,661,0,1,661,659,648,647,640,629,629,633,641,640,633,643,645,635,647,644,642,643,646,643,651,637,667,664,670,665,668,663,665,679,676,677,674,672,670,672,669,669,673,667,669,662,677,662,663,663,649,663,654,666,657,659,670,678,674,679,665,666,655,652,665,672,669,664,661,665,663,670,680,678,672,658,652,663,670,658,654,662,669,677,676,663,671,675,680,685,663,675,668,668,653,653,646,648,654,650,659,659,665,661,664,669,668,659,668,656,668,673,650,661,659,658,661,660,646,659,664,670,681,669,658,659,663,651,661,659,674,659,664,667,664,669,666,668,661,667,656,649,656,667,662,665,657,668,657,658,672,658,658,648,649,647,659,653,663,661,663,665,672,673,667,671,661,669,649,658,642,652,658,660,657,657,658,658,651,649,655,664,667,679,660,655,676,657,658,660,649,657,654,666,667,666,665,657,669,665,670,649,657,661,653,669,671,661,675,677,668,661,661,658,669,649,663,669,662,672,662,664,659,651,659,662,659,662,661,656,659,657,659,669,671,670,669,669,660,657,661,649,652,656,659,661,648,638,651,662,660,665,675,672,663,657,642,651,667,497,0.0,0.0,0.0,1569101,0.3,13.2,0.1,5.0,57,0.00,0.00,0.0000,0.000000,0.000000,,,,,68 +SATSLF0720,2024246,23.759690,3.86,0.0541,0.1058,0.0211,0.00,16055,661,1,713,697,711,715,728,718,729,726,739,742,743,745,782,885,1189,1884,3023,4380,5631,6581,7245,7725,8166,8603,9145,9749,10478,11363,12333,13435,14623,15769,16897,17837,18567,18994,19133,18957,18562,18036,17434,16891,16426,16063,15840,15768,15848,16089,16493,17063,17819,18702,19771,20980,22294,23742,25205,26683,28082,29345,30338,31058,31459,31462,31144,30509,29602,28562,27330,26153,24987,23934,22925,22071,21347,20737,20264,19889,19605,19441,19334,19348,19453,19645,19901,20245,20682,21201,21765,22367,23037,23690,24304,24873,25344,25698,25952,26001,25880,25614,25117,24491,23792,23000,22134,21277,20419,19645,18957,18299,17742,17269,16864,16544,16295,16131,16019,15983,15997,16088,16266,16469,16778,17130,17568,18054,18606,19228,19863,20538,21268,22010,22742,23460,24165,24818,25417,25958,26379,26705,26941,27035,27052,26955,26750,26429,26036,25543,24984,24398,23765,23117,22466,21810,21174,20577,19985,19434,18941,18473,18062,17694,17366,17078,16828,16579,16383,16165,15962,15787,15582,15427,15298,15181,15089,15025,14930,14898,14881,14874,14888,14906,14915,14969,14993,15029,15081,15137,15153,15145,15163,15173,15190,15221,15223,15214,15165,15109,15033,14961,14872,14772,14635,14487,14318,14131,13914,13721,13481,13229,12961,12683,12370,12093,11794,11504,11234,10968,10731,10504,10234,9947,9635,9322,9040,8789,8587,8417,8252,8111,8027,7949,7885,7833,7771,7683,7538,7380,7209,7089,6968,6861,6787,6718,6671,6630,6602,6601,6586,6574,6597,6596,6439,6139,5709,5095,22.4,22.4,22.8,1569102,0.1,12.7,11.9,5.0,573,-1.00,-1.00,58.6787,-19.306552,0.000499,,,,,160 +SATSLF0720,2024246,23.759873,4.02,0.0563,0.1059,0.0217,0.00,16040,661,1,705,709,711,704,723,725,745,737,726,739,729,726,785,873,1177,1879,3027,4385,5629,6576,7233,7720,8144,8592,9111,9729,10471,11337,12324,13431,14604,15761,16859,17815,18536,18961,19104,18920,18563,18016,17431,16888,16420,16055,15821,15744,15831,16071,16485,17062,17801,18693,19744,20962,22261,23716,25172,26633,28065,29298,30305,31037,31443,31450,31109,30475,29549,28509,27275,26105,24971,23886,22907,22069,21338,20729,20236,19862,19585,19410,19332,19334,19442,19636,19884,20237,20653,21187,21758,22363,23021,23673,24277,24826,25310,25676,25933,25966,25856,25600,25122,24481,23775,22981,22103,21233,20402,19630,18925,18268,17730,17248,16842,16528,16286,16113,16013,15960,15998,16085,16247,16466,16765,17145,17558,18026,18594,19201,19840,20522,21252,21982,22740,23436,24147,24801,25389,25947,26359,26682,26922,27026,27037,26944,26723,26409,26007,25518,24957,24365,23744,23087,22417,21771,21148,20551,19962,19413,18923,18446,18053,17681,17365,17065,16804,16554,16365,16151,15970,15773,15594,15417,15271,15159,15065,14981,14919,14890,14868,14859,14875,14893,14921,14949,14981,15004,15074,15120,15130,15149,15159,15158,15190,15202,15200,15191,15133,15083,15012,14944,14855,14763,14621,14470,14305,14121,13908,13705,13477,13201,12936,12650,12358,12074,11777,11483,11214,10981,10732,10497,10236,9934,9621,9323,9040,8785,8577,8425,8256,8109,8029,7955,7868,7821,7766,7662,7532,7361,7208,7065,6962,6861,6777,6704,6656,6634,6600,6599,6585,6586,6590,6587,6429,6143,5714,5092,22.4,22.4,22.9,1569103,0.0,12.7,12.0,5.0,478,-1.00,-1.00,57.9283,-18.970005,0.000524,,,,,131 +SATSLF0720,2024246,23.760129,4.23,0.0592,0.1062,0.0216,0.00,16030,661,1,718,727,729,724,734,721,737,724,731,744,734,753,781,883,1204,1888,3021,4379,5634,6565,7227,7712,8136,8583,9107,9717,10464,11316,12311,13421,14604,15763,16848,17807,18513,18952,19082,18903,18532,17997,17402,16861,16397,16043,15810,15751,15833,16068,16486,17053,17793,18701,19756,20954,22281,23701,25178,26632,28059,29289,30273,31024,31429,31424,31093,30453,29546,28493,27282,26094,24952,23898,22901,22052,21319,20711,20234,19848,19569,19409,19318,19321,19431,19608,19872,20216,20644,21157,21730,22338,23008,23655,24250,24833,25303,25667,25937,25969,25861,25581,25102,24477,23757,22978,22081,21223,20375,19603,18923,18260,17713,17258,16858,16535,16297,16117,16003,15966,15978,16065,16233,16444,16741,17105,17536,18026,18597,19197,19821,20513,21225,21957,22702,23418,24114,24762,25339,25908,26330,26643,26873,26993,27010,26909,26700,26387,25978,25501,24941,24352,23714,23079,22429,21757,21127,20522,19925,19378,18892,18427,18021,17654,17343,17056,16776,16539,16347,16130,15954,15771,15573,15409,15271,15154,15062,14969,14906,14878,14857,14844,14850,14883,14906,14950,14989,15015,15067,15105,15129,15127,15143,15155,15159,15195,15188,15196,15126,15072,15017,14941,14850,14765,14612,14466,14309,14102,13899,13693,13460,13189,12941,12650,12343,12062,11764,11481,11216,10962,10729,10499,10236,9943,9610,9316,9037,8790,8580,8418,8253,8104,8003,7927,7869,7822,7751,7675,7530,7361,7207,7077,6967,6852,6783,6729,6650,6619,6612,6593,6581,6586,6597,6598,6434,6135,5709,5106,22.4,22.4,22.9,1569104,0.0,12.8,12.0,5.0,461,-1.00,-1.00,57.4281,-18.756678,0.000480,,,,,111 +SATSLF0720,2024246,23.760382,4.20,0.0589,0.1065,0.0216,0.00,16019,661,1,728,728,729,733,725,733,732,725,741,737,741,741,776,887,1189,1888,3012,4385,5621,6554,7208,7696,8118,8566,9090,9710,10437,11301,12285,13395,14564,15705,16804,17755,18477,18913,19044,18858,18467,17953,17383,16821,16374,16013,15795,15723,15801,16035,16439,17027,17761,18666,19716,20932,22241,23666,25137,26613,28002,29240,30235,30984,31372,31392,31076,30420,29514,28469,27237,26087,24923,23859,22875,22018,21293,20691,20221,19820,19544,19400,19305,19306,19417,19593,19865,20203,20625,21156,21716,22322,22990,23628,24247,24809,25290,25640,25905,25945,25850,25565,25091,24468,23734,22941,22074,21217,20373,19589,18903,18257,17703,17221,16840,16509,16265,16101,16007,15954,15981,16080,16229,16456,16732,17099,17527,18002,18580,19191,19828,20503,21227,21960,22709,23396,24097,24758,25338,25893,26323,26637,26890,26990,27013,26912,26682,26374,25978,25476,24932,24346,23700,23059,22410,21751,21121,20516,19933,19373,18886,18413,18019,17642,17333,17029,16771,16549,16338,16146,15954,15763,15575,15403,15283,15173,15056,14985,14903,14865,14849,14848,14850,14875,14905,14948,15010,15018,15061,15115,15129,15149,15149,15159,15185,15208,15203,15199,15141,15077,15018,14925,14859,14744,14612,14465,14286,14107,13904,13681,13464,13189,12929,12646,12349,12068,11770,11490,11221,10972,10739,10504,10221,9943,9620,9305,9035,8780,8565,8395,8237,8116,8017,7943,7877,7819,7736,7663,7509,7342,7197,7078,6976,6868,6804,6733,6672,6643,6623,6609,6569,6552,6596,6596,6436,6133,5715,5093,22.4,22.4,23.0,1569105,0.3,12.8,11.9,5.0,456,-1.00,-1.00,58.1376,-19.030409,0.000478,,,,,99 +SATSLF0720,2024246,23.760633,4.37,0.0612,0.1063,0.0216,0.00,16021,661,1,711,725,717,723,721,727,733,723,717,725,725,749,769,887,1189,1889,3025,4370,5623,6545,7192,7667,8094,8526,9055,9668,10406,11269,12246,13352,14517,15663,16759,17705,18419,18857,18993,18811,18434,17923,17333,16791,16347,15985,15761,15689,15765,16033,16421,17008,17744,18647,19705,20915,22217,23640,25102,26582,27981,29218,30214,30968,31376,31369,31045,30409,29485,28458,27238,26053,24909,23858,22845,22019,21293,20685,20217,19821,19544,19403,19314,19318,19425,19605,19858,20202,20641,21150,21719,22341,23005,23641,24250,24835,25304,25669,25949,25981,25856,25579,25097,24462,23744,22951,22100,21241,20392,19619,18928,18263,17723,17241,16842,16530,16288,16127,16017,15978,16000,16090,16245,16461,16759,17112,17553,18036,18593,19205,19841,20529,21245,21973,22705,23421,24132,24778,25365,25927,26356,26666,26912,27018,27042,26937,26730,26400,26011,25509,24956,24359,23719,23083,22432,21764,21131,20537,19948,19397,18909,18433,18053,17678,17348,17053,16788,16554,16336,16147,15953,15767,15566,15409,15282,15156,15074,14988,14928,14869,14862,14850,14867,14898,14913,14960,14994,15021,15070,15136,15133,15150,15145,15158,15179,15191,15191,15189,15137,15097,15016,14951,14858,14764,14631,14480,14309,14134,13913,13707,13461,13205,12938,12661,12365,12071,11793,11493,11225,10958,10724,10506,10229,9937,9625,9316,9033,8789,8579,8411,8245,8119,8020,7940,7882,7833,7761,7672,7539,7354,7198,7070,6969,6853,6775,6719,6662,6619,6612,6589,6591,6592,6594,6595,6442,6126,5712,5088,22.4,22.4,23.0,1569106,0.0,12.8,11.9,5.0,459,-1.00,-1.00,58.3484,-19.106690,0.000479,,,,,44 +SATSLF0720,2024246,23.760890,4.27,0.0598,0.1063,0.0209,0.00,16031,661,1,713,715,709,699,706,721,729,729,722,729,720,728,763,876,1193,1873,3007,4372,5610,6533,7185,7657,8091,8525,9042,9671,10407,11269,12237,13344,14522,15663,16773,17723,18444,18859,18998,18814,18460,17922,17342,16779,16331,15971,15755,15684,15765,16017,16433,17001,17752,18645,19707,20909,22220,23653,25127,26589,28004,29245,30237,30967,31373,31379,31063,30426,29509,28451,27243,26073,24922,23873,22881,22026,21298,20701,20227,19837,19549,19389,19315,19333,19441,19629,19881,20231,20664,21175,21744,22355,23024,23669,24282,24861,25318,25696,25965,26001,25877,25601,25131,24493,23784,22985,22118,21248,20388,19626,18925,18275,17723,17277,16853,16553,16288,16125,16017,15985,16001,16097,16257,16477,16777,17132,17570,18055,18629,19234,19856,20544,21261,22010,22729,23451,24146,24801,25386,25950,26381,26691,26940,27042,27040,26955,26743,26415,26034,25545,24973,24390,23744,23100,22452,21797,21166,20549,19964,19419,18939,18469,18074,17687,17355,17071,16808,16564,16361,16153,15976,15767,15603,15444,15294,15188,15097,15009,14935,14893,14868,14873,14873,14892,14933,14953,14990,15027,15087,15137,15141,15156,15169,15179,15198,15221,15217,15203,15156,15094,15040,14961,14882,14773,14636,14479,14325,14128,13925,13705,13465,13208,12947,12676,12385,12085,11784,11490,11231,10969,10735,10498,10237,9952,9625,9315,9035,8794,8583,8417,8253,8124,8029,7956,7877,7819,7761,7671,7518,7349,7203,7063,6951,6861,6777,6724,6675,6649,6617,6603,6594,6581,6606,6593,6439,6141,5704,5096,22.4,22.4,23.1,1569107,0.0,12.7,12.0,5.0,456,-1.00,-1.00,58.9513,-19.365257,0.000559,,,,,248 +SATSLF0720,2024246,23.761143,4.06,0.0568,0.1063,0.0211,0.00,16041,661,1,706,697,719,717,715,725,722,723,731,729,733,734,781,879,1191,1885,3015,4357,5621,6530,7207,7685,8108,8547,9079,9685,10426,11273,12279,13362,14536,15693,16793,17752,18464,18883,19033,18860,18474,17937,17354,16806,16358,15997,15760,15685,15781,16032,16441,17012,17747,18664,19717,20913,22231,23681,25133,26619,28025,29254,30259,31002,31394,31396,31076,30429,29525,28504,27273,26103,24939,23881,22893,22034,21305,20697,20225,19825,19547,19419,19313,19331,19440,19629,19898,20244,20669,21186,21745,22359,23028,23680,24285,24860,25339,25703,25961,26013,25882,25613,25134,24493,23786,22989,22117,21246,20409,19637,18947,18304,17739,17275,16875,16558,16308,16136,16023,15989,16007,16106,16262,16489,16782,17152,17571,18071,18631,19221,19858,20546,21275,22004,22749,23450,24163,24813,25405,25981,26389,26723,26949,27056,27068,26988,26773,26429,26026,25543,24980,24389,23768,23118,22469,21815,21193,20574,19996,19426,18932,18459,18059,17700,17366,17082,16817,16592,16368,16170,15982,15789,15597,15432,15293,15183,15084,15005,14935,14907,14888,14887,14898,14925,14941,14978,15017,15033,15089,15133,15171,15169,15186,15191,15213,15229,15233,15213,15153,15099,15033,14962,14870,14784,14648,14502,14336,14139,13932,13726,13465,13217,12954,12688,12376,12088,11792,11512,11238,10999,10762,10521,10257,9956,9644,9329,9041,8807,8592,8424,8266,8131,8032,7941,7877,7838,7765,7669,7523,7362,7210,7085,6967,6882,6802,6725,6686,6642,6611,6612,6581,6574,6599,6599,6450,6152,5720,5118,22.4,22.4,23.1,1569108,0.2,12.8,11.9,5.0,448,-1.00,-1.00,59.5132,-19.612981,0.000559,,,,,216 +SATSLF0720,2024246,23.761402,4.22,0.0591,0.1064,0.0205,0.00,16041,661,1,717,701,701,711,709,719,737,734,737,741,730,739,775,879,1185,1878,3013,4372,5607,6541,7195,7685,8103,8565,9073,9702,10427,11296,12268,13376,14549,15693,16800,17745,18467,18901,19023,18839,18469,17953,17373,16825,16368,16005,15783,15714,15789,16029,16442,17033,17754,18643,19722,20923,22243,23673,25143,26613,28014,29258,30254,31005,31398,31401,31085,30434,29527,28474,27245,26085,24923,23863,22882,22038,21321,20706,20232,19843,19562,19397,19312,19341,19429,19634,19886,20221,20672,21190,21748,22352,23022,23670,24279,24852,25337,25688,25949,26010,25878,25613,25128,24490,23769,22981,22113,21239,20393,19633,18935,18305,17738,17276,16878,16556,16305,16130,16026,15977,16007,16100,16268,16488,16782,17154,17579,18049,18631,19229,19857,20524,21258,21992,22730,23443,24157,24805,25387,25963,26377,26702,26953,27050,27068,26966,26749,26439,26028,25552,24998,24397,23773,23098,22471,21798,21165,20561,19977,19418,18941,18460,18073,17704,17363,17079,16815,16573,16375,16152,15975,15792,15613,15457,15301,15188,15085,15024,14947,14916,14880,14874,14878,14905,14934,14960,15010,15033,15098,15154,15175,15181,15191,15187,15195,15226,15217,15208,15157,15101,15054,14974,14893,14797,14672,14501,14329,14137,13938,13715,13480,13217,12950,12681,12373,12099,11815,11525,11252,10997,10757,10516,10239,9951,9630,9322,9049,8813,8593,8415,8263,8134,8025,7962,7897,7842,7780,7693,7535,7371,7222,7093,6977,6874,6784,6723,6676,6641,6613,6615,6589,6590,6608,6599,6445,6131,5727,5097,22.4,22.5,23.1,1569109,0.4,12.8,12.0,5.0,452,-1.00,-1.00,58.5112,-19.192153,0.000540,,,,,51 +SATSLF0720,2024246,23.761657,4.25,0.0596,0.1064,0.0210,0.00,16039,661,1,723,723,728,725,738,738,739,733,737,748,726,739,770,888,1196,1889,3015,4376,5607,6545,7191,7683,8113,8548,9072,9677,10436,11289,12295,13385,14550,15714,16809,17754,18461,18893,19021,18845,18462,17948,17364,16806,16359,15989,15769,15698,15771,16029,16437,17024,17758,18673,19725,20940,22229,23677,25140,26611,28011,29256,30250,30994,31379,31392,31067,30421,29509,28468,27243,26096,24917,23860,22865,22021,21296,20709,20222,19841,19556,19405,19309,19313,19418,19619,19882,20218,20657,21182,21725,22343,23014,23652,24277,24853,25322,25687,25945,25994,25881,25600,25120,24496,23774,22981,22103,21257,20405,19637,18931,18293,17735,17267,16862,16544,16291,16129,16022,15985,16010,16106,16253,16471,16771,17137,17553,18041,18608,19227,19843,20534,21261,21993,22731,23447,24161,24809,25395,25954,26365,26683,26930,27031,27050,26957,26745,26444,26033,25531,24970,24389,23742,23100,22457,21790,21161,20560,19967,19403,18919,18464,18048,17702,17361,17083,16811,16572,16385,16173,15982,15779,15605,15445,15297,15195,15077,15021,14944,14913,14901,14887,14888,14905,14938,14979,15013,15026,15096,15134,15149,15176,15186,15201,15225,15249,15237,15225,15171,15107,15036,14969,14874,14782,14659,14493,14331,14152,13941,13729,13500,13235,12961,12688,12390,12114,11797,11510,11252,10996,10763,10518,10244,9947,9639,9324,9046,8791,8582,8415,8269,8144,8048,7976,7901,7847,7786,7689,7541,7362,7209,7081,6966,6875,6797,6743,6680,6655,6630,6613,6598,6596,6620,6604,6449,6154,5719,5103,22.4,22.5,23.1,1569110,0.0,12.7,12.0,5.0,456,-1.00,-1.00,58.5224,-19.193943,0.000560,,,,,18 +SATSLF0720,2024246,23.761910,4.27,0.0598,0.1068,0.0208,0.00,16027,661,1,705,715,721,720,727,723,735,734,747,746,725,733,767,871,1181,1881,3021,4371,5613,6543,7213,7685,8122,8561,9081,9689,10430,11287,12276,13367,14537,15684,16785,17729,18436,18876,19003,18825,18462,17930,17341,16803,16341,15973,15770,15702,15773,16004,16418,16991,17739,18635,19700,20914,22221,23653,25115,26593,27997,29248,30229,30972,31362,31355,31033,30391,29478,28426,27219,26048,24906,23837,22848,22000,21258,20659,20190,19808,19544,19397,19293,19307,19405,19588,19864,20199,20635,21149,21705,22322,22987,23621,24247,24823,25301,25668,25940,25985,25869,25591,25111,24476,23749,22950,22099,21214,20397,19616,18935,18292,17738,17255,16849,16540,16296,16116,16026,15970,16002,16096,16251,16468,16765,17139,17546,18044,18609,19204,19843,20519,21253,21988,22724,23425,24129,24775,25367,25922,26353,26678,26930,27005,27042,26945,26734,26405,26018,25522,24955,24367,23738,23095,22444,21778,21157,20538,19959,19399,18911,18436,18045,17677,17345,17069,16800,16569,16357,16157,15969,15780,15594,15428,15288,15174,15073,15008,14924,14894,14866,14882,14875,14903,14921,14967,15005,15030,15078,15147,15145,15153,15177,15181,15200,15213,15193,15195,15149,15095,15042,14981,14885,14786,14657,14512,14337,14141,13936,13717,13473,13219,12944,12657,12363,12072,11780,11492,11225,10991,10749,10519,10252,9954,9637,9326,9049,8813,8592,8410,8264,8133,8046,7958,7885,7835,7763,7674,7517,7357,7207,7086,6977,6886,6800,6729,6681,6637,6637,6612,6608,6597,6608,6605,6452,6141,5709,5095,22.4,22.5,23.1,1569111,0.0,12.7,11.9,5.0,452,-1.00,-1.00,58.3608,-19.107488,0.000616,,,,,246 +SATSLF0720,2024246,23.762167,4.40,0.0617,0.1067,0.0210,0.00,16028,661,1,708,714,724,728,726,723,734,724,729,739,734,753,771,881,1198,1875,3016,4380,5618,6568,7226,7700,8123,8568,9081,9698,10437,11302,12292,13395,14557,15705,16819,17748,18468,18883,19019,18821,18470,17947,17365,16803,16358,16017,15797,15721,15798,16034,16439,17019,17758,18634,19709,20906,22225,23669,25122,26605,28021,29260,30237,30976,31364,31381,31046,30404,29497,28448,27228,26055,24919,23841,22855,22009,21267,20667,20199,19811,19543,19393,19297,19324,19405,19593,19868,20210,20638,21165,21722,22331,22999,23634,24263,24820,25290,25666,25928,25975,25869,25570,25114,24476,23758,22958,22097,21237,20389,19621,18919,18283,17715,17251,16855,16541,16291,16110,16006,15977,15986,16094,16249,16475,16761,17127,17552,18033,18603,19213,19812,20503,21230,21956,22720,23432,24119,24787,25365,25940,26353,26665,26900,26996,27014,26930,26713,26392,26004,25504,24949,24357,23732,23080,22436,21778,21153,20541,19947,19388,18913,18433,18041,17677,17354,17079,16810,16577,16359,16167,15968,15751,15587,15409,15283,15161,15062,14982,14918,14888,14848,14871,14856,14894,14930,14951,14990,15026,15069,15128,15147,15160,15156,15158,15203,15206,15223,15207,15159,15099,15037,14965,14862,14762,14635,14487,14320,14130,13909,13705,13469,13197,12942,12672,12385,12087,11796,11496,11240,10991,10753,10507,10246,9959,9633,9329,9057,8789,8579,8409,8250,8107,8027,7948,7879,7835,7771,7685,7536,7371,7214,7100,6974,6886,6801,6738,6670,6644,6605,6595,6595,6578,6595,6595,6455,6144,5721,5107,22.4,22.5,23.1,1569112,0.5,12.8,12.0,5.0,456,-1.00,-1.00,57.5473,-18.776861,0.000527,,,,,209 +SATSLF0720,2024246,23.762421,4.26,0.0597,0.1060,0.0208,0.00,16051,661,1,703,699,712,709,722,718,729,738,738,747,742,743,776,894,1186,1891,3039,4397,5645,6577,7226,7709,8119,8576,9096,9716,10461,11338,12329,13429,14598,15763,16842,17795,18505,18937,19079,18900,18516,17982,17401,16865,16404,16032,15809,15755,15829,16073,16483,17061,17801,18697,19761,20973,22272,23726,25194,26664,28069,29303,30307,31065,31461,31458,31129,30481,29575,28521,27297,26129,24977,23895,22908,22065,21330,20733,20254,19866,19594,19428,19328,19337,19437,19621,19885,20243,20677,21194,21755,22382,23040,23678,24278,24861,25341,25698,25962,26017,25895,25629,25154,24510,23815,22997,22144,21261,20433,19666,18949,18308,17735,17269,16876,16557,16305,16142,16032,15991,16017,16109,16266,16491,16790,17157,17565,18040,18615,19217,19847,20540,21272,22007,22758,23472,24165,24818,25410,25957,26376,26685,26925,27037,27058,26953,26765,26424,26025,25543,24980,24395,23770,23121,22458,21797,21160,20553,19949,19415,18927,18454,18054,17685,17372,17078,16795,16567,16365,16171,15979,15772,15591,15427,15307,15179,15091,15018,14930,14909,14881,14875,14893,14920,14939,14973,15001,15026,15075,15130,15141,15146,15168,15168,15205,15225,15226,15217,15162,15108,15042,14953,14872,14789,14662,14503,14335,14140,13938,13729,13483,13237,12953,12683,12389,12109,11789,11511,11241,11000,10746,10513,10256,9950,9627,9333,9045,8793,8582,8407,8267,8126,8040,7966,7885,7842,7761,7672,7521,7364,7209,7081,6976,6869,6798,6722,6673,6638,6617,6603,6589,6585,6597,6594,6442,6149,5709,5099,22.4,22.6,23.2,1569113,1.0,12.7,12.0,5.0,454,-1.00,-1.00,57.9550,-18.993524,0.000515,,,,,192 +SATSLF0720,2024246,23.762673,4.12,0.0578,0.1054,0.0200,0.00,16072,661,1,707,705,713,702,715,704,715,729,745,746,753,760,789,890,1181,1884,3012,4370,5623,6561,7226,7717,8150,8590,9118,9730,10485,11331,12328,13441,14600,15749,16855,17809,18533,18962,19111,18930,18551,18017,17421,16871,16405,16054,15828,15766,15846,16101,16496,17075,17815,18724,19770,20966,22299,23734,25192,26685,28100,29346,30336,31090,31469,31474,31144,30513,29589,28549,27333,26149,25005,23917,22940,22093,21360,20752,20265,19881,19602,19437,19353,19355,19474,19661,19916,20265,20697,21222,21776,22408,23061,23712,24327,24893,25364,25736,25997,26046,25922,25657,25185,24563,23830,23040,22173,21301,20461,19684,19002,18328,17781,17310,16908,16595,16353,16170,16064,16005,16023,16125,16281,16507,16803,17165,17602,18084,18658,19266,19901,20571,21296,22029,22744,23474,24162,24821,25417,25987,26408,26740,26978,27079,27108,27024,26797,26470,26068,25575,25003,24430,23801,23130,22482,21827,21197,20589,19997,19447,18973,18496,18091,17725,17389,17093,16818,16589,16400,16203,16012,15826,15633,15475,15313,15207,15113,15030,14947,14919,14889,14900,14905,14935,14960,14989,15019,15065,15116,15166,15179,15186,15201,15197,15227,15242,15243,15229,15174,15116,15069,14989,14897,14803,14678,14524,14359,14167,13958,13736,13495,13241,12979,12696,12409,12121,11813,11533,11265,11018,10769,10541,10267,9965,9643,9332,9048,8807,8605,8429,8275,8154,8037,7971,7898,7849,7787,7709,7556,7381,7225,7099,6984,6891,6807,6731,6683,6642,6622,6621,6609,6598,6624,6619,6457,6146,5717,5097,22.4,22.6,23.2,1569113,0.2,12.7,12.0,5.0,454,-1.00,-1.00,58.1682,-19.096090,0.000501,,,,,109 +SATSLF0720,2024246,23.762930,4.22,0.0591,0.1058,0.0203,0.00,16069,661,1,731,721,743,730,724,727,726,731,722,735,742,748,787,893,1207,1897,3034,4393,5637,6567,7243,7717,8137,8582,9114,9730,10476,11330,12331,13442,14605,15747,16859,17818,18517,18949,19085,18913,18529,17997,17413,16865,16413,16037,15831,15742,15840,16085,16487,17063,17805,18724,19770,20982,22292,23729,25202,26670,28083,29330,30320,31058,31462,31460,31145,30485,29595,28545,27318,26149,24986,23917,22913,22080,21338,20743,20256,19874,19584,19419,19335,19351,19464,19665,19921,20262,20685,21207,21773,22400,23069,23707,24313,24887,25360,25728,25981,26048,25912,25643,25161,24539,23819,23033,22156,21303,20442,19685,18977,18330,17755,17283,16875,16574,16325,16139,16050,16014,16025,16124,16272,16507,16809,17168,17589,18089,18650,19253,19886,20557,21276,22023,22757,23479,24180,24840,25414,25980,26405,26733,26969,27084,27090,26993,26781,26470,26069,25570,25008,24422,23788,23141,22482,21830,21197,20594,20005,19442,18952,18473,18067,17708,17371,17085,16836,16600,16404,16193,16005,15812,15621,15457,15321,15191,15103,15035,14949,14923,14899,14904,14908,14949,14965,14987,15033,15075,15114,15166,15185,15179,15192,15199,15230,15246,15259,15246,15170,15134,15061,14995,14909,14822,14685,14541,14357,14160,13959,13739,13507,13248,12983,12701,12419,12114,11822,11523,11257,11003,10763,10535,10258,9969,9655,9345,9046,8824,8613,8449,8277,8139,8062,7977,7901,7849,7794,7696,7567,7388,7232,7101,6984,6887,6808,6737,6689,6649,6638,6637,6610,6609,6631,6618,6459,6149,5726,5110,22.5,22.6,23.2,1569114,0.3,12.8,12.0,5.0,446,-1.00,-1.00,58.0638,-19.047423,0.000479,,,,,59 +SATSLF0720,2024246,23.763186,4.19,0.0587,0.1063,0.0213,0.00,16043,661,1,709,720,731,727,733,727,729,747,738,738,734,755,783,883,1199,1891,3035,4385,5633,6581,7225,7709,8125,8563,9095,9706,10451,11314,12298,13414,14578,15733,16820,17763,18469,18915,19050,18866,18515,17965,17383,16833,16374,16017,15803,15730,15806,16054,16454,17030,17757,18658,19721,20930,22251,23677,25152,26633,28032,29277,30273,31030,31410,31411,31082,30427,29520,28481,27253,26074,24930,23869,22884,22036,21293,20699,20226,19830,19552,19397,19313,19321,19417,19613,19873,20213,20649,21160,21734,22333,23029,23674,24277,24852,25323,25690,25959,26001,25890,25610,25124,24484,23757,22980,22114,21245,20405,19642,18944,18295,17729,17277,16860,16549,16293,16114,16023,15985,15996,16100,16267,16493,16769,17138,17563,18043,18610,19217,19842,20539,21265,21990,22731,23426,24117,24770,25370,25928,26355,26685,26909,27024,27046,26940,26733,26421,26037,25536,24973,24385,23764,23122,22457,21794,21167,20561,19976,19420,18913,18458,18057,17673,17357,17071,16814,16592,16378,16185,15983,15789,15585,15432,15303,15187,15095,15013,14935,14902,14893,14876,14887,14901,14937,14967,14997,15047,15098,15140,15159,15160,15182,15189,15205,15237,15233,15226,15155,15109,15028,14983,14881,14801,14651,14503,14337,14146,13932,13731,13492,13235,12968,12669,12381,12087,11796,11515,11238,11003,10765,10531,10274,9957,9627,9331,9051,8814,8590,8423,8278,8141,8045,7978,7901,7842,7774,7689,7551,7373,7218,7084,6969,6882,6781,6746,6682,6654,6631,6615,6597,6587,6609,6601,6458,6156,5722,5105,22.4,22.6,23.2,1569115,0.2,12.7,11.9,5.0,452,-1.00,-1.00,58.1225,-19.033577,0.000574,,,,,83 +SATSLF0720,2024246,23.763438,4.15,0.0582,0.1065,0.0208,0.00,16036,661,1,701,703,705,715,720,730,727,743,753,745,753,750,787,874,1185,1878,3015,4374,5637,6556,7227,7698,8147,8572,9098,9711,10454,11309,12293,13393,14562,15720,16821,17765,18477,18913,19047,18865,18498,17962,17390,16813,16375,16009,15797,15704,15795,16046,16444,17025,17762,18672,19721,20928,22237,23673,25138,26617,28023,29254,30249,30985,31379,31381,31056,30412,29513,28461,27253,26091,24922,23877,22865,22015,21270,20673,20207,19831,19552,19393,19305,19313,19411,19610,19885,20221,20650,21157,21718,22336,22997,23626,24245,24821,25304,25678,25937,25977,25877,25597,25124,24497,23767,22978,22121,21241,20405,19638,18941,18286,17735,17261,16858,16541,16293,16118,16019,15987,16009,16101,16257,16477,16761,17133,17537,18027,18605,19201,19840,20514,21239,21975,22712,23418,24126,24777,25367,25929,26347,26674,26915,27016,27037,26928,26738,26416,26005,25529,24966,24385,23729,23095,22452,21781,21165,20562,19970,19409,18914,18439,18043,17680,17355,17057,16794,16563,16353,16156,15980,15776,15603,15441,15310,15185,15092,15014,14941,14890,14876,14875,14867,14899,14930,14965,15000,15035,15094,15130,15156,15149,15171,15180,15200,15220,15212,15212,15149,15094,15042,14973,14881,14786,14664,14497,14338,14154,13945,13741,13485,13238,12960,12679,12395,12100,11809,11522,11243,11001,10749,10528,10261,9949,9634,9332,9035,8800,8581,8422,8266,8137,8033,7962,7896,7841,7781,7701,7550,7381,7225,7097,6982,6886,6790,6741,6675,6646,6621,6609,6581,6579,6605,6610,6457,6155,5727,5107,22.5,22.6,23.2,1569116,0.0,12.8,12.0,5.0,452,-1.00,-1.00,58.2413,-19.074524,0.000498,,,,,108 +SATSLF0720,2024246,23.763695,4.25,0.0596,0.1066,0.0212,0.00,16032,661,1,721,721,721,721,727,727,728,732,733,737,742,755,789,887,1192,1895,3021,4368,5602,6538,7185,7674,8097,8546,9066,9680,10405,11287,12269,13370,14532,15693,16782,17729,18440,18859,18996,18830,18445,17935,17344,16800,16330,15973,15767,15685,15769,16019,16421,17005,17737,18636,19696,20896,22219,23648,25112,26593,27982,29243,30218,30969,31362,31365,31044,30423,29489,28442,27220,26056,24912,23834,22848,22000,21288,20682,20203,19818,19539,19389,19301,19301,19411,19600,19866,20201,20644,21165,21729,22336,23025,23649,24254,24841,25315,25685,25953,26013,25904,25605,25122,24481,23779,22987,22109,21257,20405,19640,18939,18280,17726,17250,16854,16544,16301,16143,16038,15969,16007,16090,16267,16473,16775,17134,17579,18046,18613,19207,19843,20529,21254,21981,22720,23426,24136,24796,25389,25961,26371,26699,26935,27042,27049,26961,26728,26405,26017,25529,24954,24386,23744,23088,22461,21799,21166,20554,19973,19413,18908,18455,18049,17685,17357,17073,16817,16564,16378,16158,15979,15779,15605,15429,15292,15185,15095,15010,14937,14885,14869,14881,14889,14920,14926,14977,15001,15033,15081,15131,15146,15163,15165,15181,15195,15232,15226,15202,15155,15085,15029,14961,14882,14794,14664,14509,14346,14162,13931,13731,13485,13229,12950,12669,12363,12082,11786,11513,11249,11010,10777,10532,10259,9952,9640,9324,9033,8793,8589,8420,8261,8126,8037,7979,7905,7842,7781,7696,7549,7371,7213,7089,6961,6871,6793,6721,6661,6639,6608,6602,6589,6605,6611,6591,6446,6141,5726,5101,22.4,22.7,23.2,1569117,0.2,12.7,12.0,5.0,457,-1.00,-1.00,58.6671,-19.238172,0.000556,,,,,27 +SATSLF0720,2024246,23.763948,4.36,0.0610,0.1076,0.0214,0.00,16013,661,1,712,727,717,712,715,715,727,724,721,735,731,741,789,884,1191,1884,3000,4363,5589,6534,7183,7665,8069,8527,9047,9659,10390,11263,12241,13345,14502,15650,16738,17686,18393,18826,18967,18781,18417,17898,17302,16755,16299,15948,15733,15671,15751,16007,16402,16981,17713,18606,19675,20869,22176,23595,25058,26523,27929,29189,30173,30921,31301,31319,30997,30352,29445,28390,27180,26005,24854,23797,22813,21953,21248,20650,20182,19792,19511,19363,19258,19289,19370,19569,19830,20180,20621,21141,21698,22314,22973,23626,24230,24811,25290,25633,25911,25966,25842,25562,25082,24460,23761,22952,22089,21223,20368,19613,18904,18261,17709,17251,16836,16524,16279,16103,16006,15954,15988,16078,16241,16467,16757,17125,17544,18048,18592,19204,19834,20505,21224,21989,22725,23418,24125,24766,25345,25921,26337,26656,26892,26998,27034,26933,26716,26395,25997,25513,24953,24361,23725,23075,22443,21776,21150,20553,19956,19413,18922,18445,18033,17662,17338,17047,16797,16553,16347,16148,15965,15772,15593,15425,15287,15168,15064,15003,14933,14884,14864,14857,14859,14903,14922,14964,15008,15021,15069,15140,15149,15161,15173,15172,15205,15224,15203,15199,15145,15095,15022,14959,14875,14782,14653,14499,14317,14133,13931,13713,13476,13218,12946,12673,12376,12097,11794,11513,11249,10980,10751,10507,10253,9932,9626,9321,9029,8788,8585,8418,8257,8134,8043,7969,7891,7847,7781,7687,7553,7362,7210,7080,6965,6871,6796,6717,6665,6634,6614,6615,6589,6594,6609,6610,6439,6143,5706,5104,22.4,22.7,23.2,1569118,0.7,12.8,11.9,5.0,455,-1.00,-1.00,58.3937,-19.092004,0.000507,,,,,20 +SATSLF0720,2024246,23.764199,4.22,0.0591,0.1073,0.0213,0.00,16010,661,1,709,720,729,725,734,743,740,736,744,734,741,746,773,869,1183,1883,3007,4360,5602,6522,7183,7654,8075,8529,9051,9687,10416,11254,12247,13344,14504,15667,16738,17697,18409,18841,18965,18792,18427,17895,17315,16762,16305,15945,15731,15672,15741,16001,16405,16973,17707,18604,19642,20859,22162,23595,25054,26531,27946,29175,30173,30925,31324,31333,30989,30328,29435,28389,27160,26003,24858,23785,22794,21965,21229,20633,20160,19776,19493,19359,19270,19285,19380,19573,19825,20181,20614,21136,21698,22304,22958,23613,24224,24796,25275,25629,25902,25953,25826,25550,25084,24452,23725,22932,22080,21213,20357,19613,18901,18256,17719,17250,16842,16534,16284,16109,16008,15977,15969,16063,16238,16466,16765,17125,17554,18026,18582,19191,19821,20503,21225,21957,22692,23397,24107,24760,25349,25906,26333,26665,26885,26993,26993,26902,26688,26368,25993,25501,24946,24356,23725,23076,22422,21774,21150,20540,19929,19386,18889,18423,18036,17657,17342,17053,16789,16549,16357,16148,15964,15769,15589,15433,15282,15169,15066,14991,14926,14893,14869,14872,14877,14899,14908,14967,14994,15018,15078,15129,15151,15163,15164,15179,15198,15202,15207,15204,15144,15099,15025,14974,14888,14784,14649,14497,14319,14127,13928,13709,13485,13217,12953,12674,12382,12102,11794,11522,11243,10990,10749,10519,10243,9939,9612,9303,9029,8788,8581,8413,8263,8142,8049,7953,7877,7831,7770,7678,7522,7353,7211,7076,6977,6873,6800,6729,6671,6629,6600,6603,6596,6589,6605,6601,6444,6147,5725,5113,22.4,22.7,23.3,1569119,0.0,12.8,12.0,5.0,454,-1.00,-1.00,58.7258,-19.226820,0.000575,,,,,197 +SATSLF0720,2024246,23.764455,4.37,0.0612,0.1077,0.0212,0.00,16013,661,1,720,717,729,722,727,743,750,745,749,753,740,756,782,887,1187,1891,3027,4363,5612,6539,7193,7675,8093,8541,9050,9671,10409,11275,12265,13353,14510,15664,16745,17694,18421,18853,18973,18785,18427,17913,17321,16765,16315,15954,15735,15673,15754,15998,16409,16996,17728,18622,19672,20859,22167,23610,25073,26549,27946,29181,30179,30921,31306,31312,30980,30342,29430,28385,27168,26001,24871,23805,22816,21961,21251,20647,20169,19778,19500,19333,19255,19278,19369,19572,19842,20181,20609,21126,21682,22301,22965,23616,24226,24795,25276,25638,25906,25948,25826,25549,25067,24445,23732,22941,22078,21217,20375,19614,18897,18261,17706,17241,16818,16513,16253,16099,16000,15962,15974,16060,16220,16442,16741,17119,17537,18025,18600,19194,19828,20497,21230,21966,22693,23415,24112,24771,25352,25917,26325,26659,26893,26997,27003,26914,26714,26394,25997,25510,24949,24368,23733,23083,22429,21756,21130,20529,19933,19389,18895,18431,18027,17683,17345,17072,16804,16554,16359,16154,15958,15762,15581,15412,15286,15158,15065,15008,14913,14884,14862,14854,14864,14892,14900,14946,14983,15042,15085,15137,15154,15171,15179,15169,15205,15205,15209,15197,15143,15080,15031,14971,14869,14776,14653,14500,14327,14144,13937,13719,13473,13226,12957,12673,12375,12093,11782,11507,11245,10988,10754,10513,10257,9947,9637,9322,9044,8791,8595,8433,8275,8141,8039,7958,7881,7838,7757,7683,7545,7369,7218,7085,6983,6868,6795,6722,6657,6643,6613,6606,6592,6593,6597,6592,6436,6143,5718,5115,22.5,22.8,23.3,1569120,0.3,12.7,12.0,5.0,454,-1.00,-1.00,57.9246,-18.894702,0.000545,,,,,234 diff --git a/flow/tests/testthat/pfs/sunav2_trino_data_parser/sunav2/2024/09/10/20349/data/sunav2_20349_2024-09-10.parquet b/flow/tests/testthat/pfs/sunav2_trino_data_parser/sunav2/2024/09/10/20349/data/sunav2_20349_2024-09-10.parquet new file mode 100644 index 000000000..140468a87 Binary files /dev/null and b/flow/tests/testthat/pfs/sunav2_trino_data_parser/sunav2/2024/09/10/20349/data/sunav2_20349_2024-09-10.parquet differ diff --git a/flow/tests/testthat/test-wrap-gap-fill-nonrglr.R b/flow/tests/testthat/test-wrap-gap-fill-nonrglr.R new file mode 100644 index 000000000..cf19a5629 --- /dev/null +++ b/flow/tests/testthat/test-wrap-gap-fill-nonrglr.R @@ -0,0 +1,154 @@ +############################################################################################## +#' @title Gap filling module for NEON IS data processing. + +#' @author +#' Nora Catolico \email{ncatolico@battelleecology.org} +#' +#' #' @param DirIn Character value. The input path to the data from a single sensor or location, structured as follows: +#' #/pfs/BASE_REPO/#/yyyy/mm/dd/#/id, where # indicates any number of parent and child directories +#' of any name, so long as they are not 'pfs' or recognizable as the 'yyyy/mm/dd' structure which indicates +#' the 4-digit year, 2-digit month, and' 2-digit day. The id is the unique identifier of the sensor or location. \cr +#' +#' Nested within this path are the folders: +#' /data +#' /flags +#' +#' @param DirOutBase Character value. The output path that will replace the #/pfs/BASE_REPO portion of DirIn. +#' +#' @param DirFill List of the terminal directories where the data to be +#' gap filled resides. This will be one or more child levels away from "DirIn". All files in the +#' terminal directory will be gap filled. The value may also be a vector of terminal directories, +#' separated by pipes (|). All terminal directories must be present and at the same directory level. +#' For example, "DirFill=data|flags" indicates to gap fill the data files within each the data +#' and flags directories. +#' +#' @param FileSchm Character value (optional), where value is the full path to schema for data output by +#' this workflow. The value may be NA, in which case the output schema will be the same as the input +#' data. The value may be a single file, in which case it will apply to all output, or +#' multiple values in which case the argument is formatted as dir:value|dir:value... +#' where dir is one of the directories specified in DirFill and value is the path to the schema file +#' for the output of that directory. Multiple dir:value pairs are separated by pipes (|). +#' For example, "FileSchm=data:/path/to/schemaData.avsc|flags:NA" indicates that the +#' output from the data directory will be written with the schema /path/to/schemaData.avsc and the +#' output from the flags directory will be the same as the input files found in that +#' directory. +#' +#' @param WndwFill Character value. The window in minutes in which data are expected. It is formatted as a 3 character sequence, +#' representing the number of minutes over which any number of measurements are expected. +#' For example, "WndwFill=015" refers to a 15-minute interval, while "WndwAgr=030" refers to a +#' 30-minute interval. +#' +#' @param DirSubCopy (optional) Character vector. The names of additional subfolders at +#' the same level as the location folder in the input path that are to be copied with a symbolic link to the +#' output path (i.e. not combined but carried through as-is). +#' +#' @description Unit tests for wrap.gap.fill.nonrglr. +#' +# changelog and author contributions / copyrights +# Nora Catolico (2026-02-09) +# initial creation +############################################################################################## + +context("\n | Unit test of Gap Filling Non-Regularized module for NEON IS data processing \n") + +test_that("Unit test of wrap.gap.fill.nonrglr", { + source('../../flow.gap.fill.nonrglr/wrap.gap.fill.nonrglr.R') + library(stringr) + + log <- NEONprocIS.base::def.log.init(Lvl = "debug") + + # Define input parameters (adjust paths to your test files as needed) + DirIn <- "pfs/sunav2_location_group_and_restructure/sunav2/2025/06/23/CFGLOC110819" + DirOutBase <- "pfs/nitrate_out" + DirFill <- c("data", "flags") + WndwFill <- 15 # 15 minutes window + + #Schemas + schmData<-'pfs/sunav2_avro_schemas/sunav2_logfilled.avsc' + schmCalFlag<-'pfs/sunav2_avro_schemas/sunav2_calibration_flags.avsc' + schmLogFlag <- 'pfs/sunav2_avro_schemas/sunav2_log_flags.avsc' + NameCol = c('DirFill', 'FileSchmFill') + SchmDirs <- c("data","flags","flags") + Schmas = c(schmData,schmCalFlag,schmLogFlag) + SchmFill <- data.frame(SchmDirs, Schmas) + names(SchmFill) <- NameCol + # Read in the schema(s) + SchmFill$SchmFill <- NA + for (idxSchmFill in 1:base::length(SchmFill$FileSchmFill)) { + if (SchmFill$FileSchmFill[idxSchmFill] != 'NA') { + SchmFill$SchmFill[idxSchmFill] <- + base::paste0(base::readLines(SchmFill$FileSchmFill[idxSchmFill]), + collapse = '') + } + } + + # Clean up before run + if (dir.exists(DirOutBase)) { + unlink(DirOutBase, recursive = TRUE) + } + + # 1. Base test: Fill gaps in input data and check output files exist + wrap.gap.fill.nonrglr( + DirIn = DirIn, + DirOutBase = DirOutBase, + DirFill = DirFill, + WndwFill = WndwFill, + SchmFill = SchmFill, + DirSubCopy = NULL + ) + + dirInData <- base::paste0(DirIn, '/data') + dirInFlags <- base::paste0(DirIn, '/flags') + dirInLoc <- base::paste0(DirIn, '/location') + fileData <- base::dir(dirInData) + fileFlags <- base::dir(dirInFlags) + fileLoc <- base::dir(dirInLoc) + dirOutData <- gsub("gap_fill_nonrglr", "out", dirInData) + dirOutFlags <- gsub("gap_fill_nonrglr", "out", dirInFlags) + dirOutLoc <- gsub("gap_fill_nonrglr", "out", dirInLoc) + + # Check for filled output presence + testthat::expect_true ((file.exists(fs::path(dirOutData,fileData), recursive = TRUE)) && + (file.exists(fs::path(dirOutFlags, fileFlags)[1], recursive = TRUE))) + + # Check for pass-through output of 'location' subdir + testthat::expect_true ((file.exists(fs::path(dirOutLoc, fileLoc)[1], recursive = TRUE))) + + # 2. Check that gap-filled output includes min expected points + dataChk <- NEONprocIS.base::def.read.parq(NameFile=fs::path(dirOutData,fileData)) + InfoDir <- NEONprocIS.base::def.dir.splt.pach.time(dir=DirIn) + timeBgn <- InfoDir$time + timeEnd <- InfoDir$time + as.difftime(1, units = 'days') + # Sequence of expected window starts + all_starts <- seq(timeBgn, timeEnd - WndwFill*60, by = WndwFill*60) + num_starts <- length(all_starts) + testthat::expect_true(length(dataChk$readout_time)>=num_starts) + + # 3. Remove output + if (dir.exists(DirOutBase)) { + unlink(DirOutBase, recursive = TRUE) + } + + # 4. No files in input directory: should error + DirIn_nofiles <- "pfs/gap_fill_nonrglr/empty_folder/2020/01/01/CFGLOCEMPTY" + returnedOutput <- try(wrap.gap.fill.nonrglr( + DirIn = DirIn_nofiles, + DirOutBase = DirOutBase, + DirFill = DirFill, + WndwFill = WndwFill, + SchmFill = SchmFill + ), silent = TRUE) + testthat::expect_true("try-error" %in% class(returnedOutput)) + + # 6. File missing readout_time column: should error + DirIn_noreadout <- NEONprocIS.base::def.read.parq(NameFile=fs::path(dirOutData,fileData)) + DirIn_noreadout$readout_time<-NULL + returnedOutput <- try(wrap.gap.fill.nonrglr( + DirIn = DirIn_noreadout, + DirOutBase = DirOutBase, + DirFill = DirFill, + WndwFill = WndwFill, + SchmFill = SchmFill + ), silent = TRUE) + testthat::expect_true("try-error" %in% class(returnedOutput)) +}) diff --git a/flow/tests/testthat/test-wrap-qf-insuff-data.R b/flow/tests/testthat/test-wrap-qf-insuff-data.R new file mode 100644 index 000000000..b1041dce6 --- /dev/null +++ b/flow/tests/testthat/test-wrap-qf-insuff-data.R @@ -0,0 +1,123 @@ +############################################################################################## +#' @title Unit test for insufficient data quality flag wrapper (wrap.qf.insuff.data) +#' +#' @author Nora Catolico +#' +#' @description Unit test for wrap.qf.insuff.data.R. This test covers: +#' - Successful application of insufficient data QF on appropriate files +#' - Creation of output directories and files +#' - Pass-through of symbolic links for subdirectories +#' - Error handling for missing files/columns +#' +#' @param InssuffParam Data table of parameters generated by flow script. +#' +#' @param DirOut Character value. The base file path for the output data. +#' +#' @param SchmStats (optional), A json-formatted character string containing the schema for the output averaged stats parquet. +#' Should be the same as the input. +#' +#' @param SchmQMs (optional), A json-formatted character string containing the schema for the output quality metrics parquet +#' with insufficient data quality flag added. +#' +#' @param DirSubCopy (optional) Character vector. The names of additional subfolders at +#' the same level as the location folder in the input path that are to be copied with a symbolic link to the +#' output path (i.e. not combined but carried through as-is). +#' +#' @param log A logger object as produced by NEONprocIS.base::def.log.init to produce structured log +#' output. Defaults to NULL, in which the logger will be created and used within the function. See NEONprocIS.base::def.log.init +#' for more details. +#' +# changelog and author contributions +# ncatolico (2026-02-09) +# Original Creation +############################################################################################## +context("\n | Unit test of Insufficient Data QF Wrapper for NEON IS data processing \n") + +test_that("Unit test of wrap.qf.insuff.data.R", { + source('../../flow.qf.insuff.data/wrap.qf.insuff.data.R') + library(stringr) + + log <- NEONprocIS.base::def.log.init(Lvl = "debug") + + # Setup example test parameters + DirIn <- "pfs/nitrate_insuff_data_in/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686" + DirOutBase <- "pfs/nitrate_out" + SchmQM <- base::paste0(base::readLines('pfs/sunav2_avro_schemas/nitrate/nitrate_insufficient_data.avsc'), collapse = '') + + # Example insuffParam dataframe + # Should match what your flow scripts produce (InfoSet, field, value, etc) + insuffParam <- data.frame( + InfoSet = c("insuffInfo1", "insuffInfo1", "insuffInfo1"), + field = c("wndw", "minPoints", "term"), + value = c("015", "5", "nitrate"), + stringsAsFactors = FALSE + ) + + # Clean up output directory before test + if (dir.exists(DirOutBase)) { + unlink(DirOutBase, recursive = TRUE) + } + + # Test 1: Successful run (correct input files/columns exist) + wrap.qf.insuff.data( + DirIn = DirIn, + insuffParam = insuffParam, + DirOutBase = DirOutBase, + SchmQMs = SchmQM, + DirSubCopy = NULL + ) + + # Check for output stats and QM files in expected locations + InfoDirIn <- NEONprocIS.base::def.dir.splt.pach.time(DirIn) + DirOutStats <- base::paste0(DirOutBase, InfoDirIn$dirRepo, "/stats") + DirOutQMs <- base::paste0(DirOutBase, InfoDirIn$dirRepo, "/quality_metrics") + statsFileNames <- base::list.files(DirOutStats, full.names = TRUE) + qmFileNames <- base::list.files(DirOutQMs, full.names = TRUE) + + testthat::expect_true(length(statsFileNames) > 0) + testthat::expect_true(length(qmFileNames) > 0) + + # Check that the insufficientDataQF and finalQF columns are correctly applied + qmData <- NEONprocIS.base::def.read.parq(NameFile = qmFileNames[1]) + testthat::expect_true("insufficientDataQF" %in% names(qmData)) + testthat::expect_true("finalQF" %in% names(qmData)) + testthat::expect_true(all(qmData$finalQF == qmData$insufficientDataQF)) # FinalQF = InsuffQF + + + # Test 3: Error if required columns missing in stats/QM + insuffParam_bad <- data.frame( + InfoSet = c("insuffInfo1", "insuffInfo1", "insuffInfo1"), + field = c("wndw", "minPoints", "term"), + value = c("015", "3", "INVALID_TERM"), + stringsAsFactors = FALSE + ) + testthat::expect_error( + wrap.qf.insuff.data( + DirIn = DirIn, + insuffParam = insuffParam_bad, + DirOutBase = DirOutBase + ), + regexp = "No column found with name" + ) + + # Test 4: Error if bad wndw format + insuffParam_bad <- data.frame( + InfoSet = c("insuffInfo1", "insuffInfo1", "insuffInfo1"), + field = c("wndw", "minPoints", "term"), + value = c("15min", "3", "nitrate"), + stringsAsFactors = FALSE + ) + testthat::expect_error( + wrap.qf.insuff.data( + DirIn = DirIn, + insuffParam = insuffParam_bad, + DirOutBase = DirOutBase + ), + regexp = "No column found with name" + ) + + # Clean up + if (dir.exists(DirOutBase)) { + unlink(DirOutBase, recursive = TRUE) + } +}) diff --git a/flow/tests/testthat/test-wrap-sunav2-exp-uncert.R b/flow/tests/testthat/test-wrap-sunav2-exp-uncert.R new file mode 100644 index 000000000..6d119a113 --- /dev/null +++ b/flow/tests/testthat/test-wrap-sunav2-exp-uncert.R @@ -0,0 +1,80 @@ +############################################################################################## +#' @title Unit test for Wrapper for SUNA Expanded Uncertainty Calculations +#' +#' @author +#' Nora Catolico \email{ncatolico@battelleecology.org} \cr +#' +#' @description Wrapper function unit test. Calculates expanded uncertainty for SUNA v2 data bursts. +#' +#' @param DirIn Character value. The base file path to the averaged stats and uncertainty coefficients. +#' +#' @param DirOutBase Character value. The base file path for the output data. +#' +#' @param SchmStats (optional), A json-formatted character string containing the schema for the output averaged stats parquet. +#' +#' @param DirSubCopy (optional) Character vector. The names of additional subfolders at +#' the same level as the location folder in the input path that are to be copied with a symbolic link to the +#' output path (i.e. not combined but carried through as-is). +#' +#' @param log A logger object as produced by NEONprocIS.base::def.log.init to produce structured log +#' output. Defaults to NULL, in which the logger will be created and used within the function. See NEONprocIS.base::def.log.init +#' for more details. +#' +#' @seealso Currently none +#' +# changelog and author contributions +# ncatolico (2026-02-09) +# Original Creation +############################################################################################## + +context("\n Unit test of wrap.sunav2.exp.uncert.R\n") + +test_that("Unit test of wrap.sunav2.exp.uncert.R", { + # Source the target script + source('../../flow.sunav2.exp.uncert/wrap.sunav2.exp.uncert.R') + library(stringr) + log <- NEONprocIS.base::def.log.init(Lvl = "debug") + + workingDirPath <- getwd() + testDirOut = file.path(workingDirPath, 'pfs/out_suna') + + # Construct dummy input and output directories (should point to existing test data for actual runs) + DirIn <- file.path(workingDirPath, 'pfs/nitrate_null_gap_ucrt_group/2019/11/18/nitrate-surfacewater_POSE102100/sunav2/CFGLOC101686') + DirOutBase <- file.path(workingDirPath, 'pfs/nitrate_out') + + # Avro schema (as in examples, adapt as needed) + testAvroDir <- file.path(workingDirPath, 'pfs/sunav2_avro_schemas/nitrate/nitrate_ucrt.avsc') + SchmStats <- base::paste0(base::readLines(testAvroDir), collapse = '') + + # Subfolders to copy (optional, use dummy/test folders if available) + DirSubCopy <- c("quality metrics", "location") # Example; adjust per test data + + # Determine output location + InfoDirIn <- NEONprocIS.base::def.dir.splt.pach.time(DirIn) + testDirRepo <- InfoDirIn$dirRepo + testDirOutPath <- base::paste0(DirOutBase, testDirRepo, "/stats") + + # Clean output before test + if (dir.exists(testDirOutPath)) { + unlink(testDirOutPath, recursive = TRUE) + } + + # Run wrapper + wrap.sunav2.exp.uncert( + DirIn = DirIn, + DirOutBase = DirOutBase, + SchmStats = SchmStats, + DirSubCopy = DirSubCopy, + log = log + ) + + # Check the stats file was written to the destination + testthat::expect_true(length(list.files(testDirOutPath, pattern = "\\.parquet$")) > 0) + + # Additional: check that non-numeric or NaN means are set as NA in output file (read file and check if possible) + statsFiles <- list.files(testDirOutPath, full.names = TRUE, pattern = "\\.parquet$") + if (length(statsFiles) > 0) { + statsData <- NEONprocIS.base::def.read.parq(NameFile = statsFiles[1]) + testthat::expect_true(all(is.na(statsData$surfWaterNitrateMean[is.nan(statsData$surfWaterNitrateMean)]))) + } +}) \ No newline at end of file diff --git a/flow/tests/testthat/test-wrap-sunav2-logfiles-fill.R b/flow/tests/testthat/test-wrap-sunav2-logfiles-fill.R new file mode 100644 index 000000000..35137f47b --- /dev/null +++ b/flow/tests/testthat/test-wrap-sunav2-logfiles-fill.R @@ -0,0 +1,152 @@ +############################################################################################## +#' @title Unit test for Wrapper for SUNA Log File Comparison and Gap Filling +#' +#' @author +#' Nora Catolico \email{ncatolico@battelleecology.org} \cr +#' +#' @description Unit test for the wrapper function. Compares logged SUNA data to streamed data and fills gaps. +#' +#' @param DirIn Character value. The input path to the data from a single source ID, structured as follows: +#' #/pfs/BASE_REPO/sensor/yyyy/mm/dd/source-id +#' +#' @param DirInStream (optional) Character value. This input is used for testing purposes only prior to joining repos. +#' The input path to the streamed L0 data from a single source ID. +#' +#' @param DirInLogs (optional) Character value. This input is used for testing purposes only prior to joining repos. +#' The input path to the log data from a single source ID. +#' +#' @param DirOutBase Character value. The output base directory. +#' +#' @param SchmDataOut (optional) Schema for output data file. +#' +#' @param SchmFlagsOut (optional) Schema for output flags file. +#' +#' @param log Logger object as produced by NEONprocIS.base::def.log.init +#' +#' @return Combined logged and streamed L0 data in daily parquets. +#' +#' @examples +#' # Not run +# DirInLogs <- "~/pfs/sunav2_logjam_assign_clean_files/sunav2/2024/09/11/20349" +# DirInStream <- "~/pfs/sunav2_trino_data_parser/sunav2/2025/06/22/20345" +# DirIn <- NULL +# DirOutBase <- "~/pfs/out" +# SchmDataOut <- base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2/sunav2_logfilled.avsc'),collapse='') +# log <- NEONprocIS.base::def.log.init(Lvl = "debug") +# SchmFlagsOut <- base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2_log_flags.avsc'),collapse='') +# wrap.sunav2.logfiles.fill(DirInLogs, DirInStream, DirIn, DirOutBase, SchmDataOut, SchmFlagsOut, log) +#' +# changelog and author contributions +# Nora Catolico (2026-02-09) +# Original Creation +############################################################################################## +context("\n Unit test of wrap.sunav2.logfiles.fill.R\n") + +test_that("Unit test of wrap.sunav2.logfiles.fill.R", { + + source('../../flow.sunav2.logfiles.fill/wrap.sunav2.logfiles.fill.R') + library(stringr) + + workingDirPath <- getwd() + testDirOut = file.path(workingDirPath, 'pfs/out') + log <- NEONprocIS.base::def.log.init(Lvl = "debug") + + if (dir.exists(testDirOut)) { + unlink(testDirOut, recursive = TRUE) + } + + # Test 1: SUNAV2, only directories and output passed in, no schema + DirInLogs <- file.path(workingDirPath, 'pfs/sunav2_logjam_assign_clean_files/sunav2/2024/09/10/20349') + DirInStream <- file.path(workingDirPath, 'pfs/sunav2_trino_data_parser/sunav2/2024/09/10/20349') + DirIn <- NULL + InfoDirIn <- NEONprocIS.base::def.dir.splt.pach.time(DirInLogs) + subDirParts <- InfoDirIn$dirRepo + subDir <- paste0(subDirParts, collapse = '', sep = '/') + subDirPath <- file.path(subDir) + testOutputDirPath <- base::paste0(testDirOut, "/", subDirPath) + + if (dir.exists(testDirOut)) { + unlink(testDirOut, recursive = TRUE) + } + + wrap.sunav2.logfiles.fill( + DirInLogs = DirInLogs, + DirInStream = DirInStream, + DirIn = DirIn, + DirOutBase = testDirOut, + SchmDataOut = NULL, + SchmFlagsOut = NULL, + log = log + ) + + testthat::expect_true(file.exists(file.path(testOutputDirPath, "data"))) + testthat::expect_true(file.exists(file.path(testOutputDirPath, "flags"))) + + # Test 2: SUNAV2, schema files provided + SchmDataOut <- base::paste0(base::readLines('pfs/sunav2_avro_schemas/sunav2_logfilled.avsc'), collapse = '') + SchmFlagsOut <- base::paste0(base::readLines('pfs/sunav2_avro_schemas/sunav2_log_flags.avsc'), collapse = '') + + if (dir.exists(testDirOut)) { + unlink(testDirOut, recursive = TRUE) + } + + wrap.sunav2.logfiles.fill( + DirInLogs = DirInLogs, + DirInStream = DirInStream, + DirIn = NULL, + DirOutBase = testDirOut, + SchmDataOut = SchmDataOut, + SchmFlagsOut = SchmFlagsOut, + log = log + ) + + testthat::expect_true(file.exists(file.path(testOutputDirPath, "data"))) + testthat::expect_true(file.exists(file.path(testOutputDirPath, "flags"))) + + # Test 3: SUNAV2, DirInStream does not have files, only logs available + if (dir.exists(testDirOut)) { + unlink(testDirOut, recursive = TRUE) + } + + DirInStreamEmpty <- file.path(workingDirPath, 'pfs/sunav2_trino_data_parser/sunav2/2024/09/11/20349_empty') + InfoDirInEmpty <- NEONprocIS.base::def.dir.splt.pach.time(DirInStreamEmpty) + subDirPartsEmpty <- InfoDirInEmpty$dirRepo + subDirEmpty <- paste0(subDirPartsEmpty, collapse = '', sep = '/') + subDirPathEmpty <- file.path(subDirEmpty) + testOutputDirPathEmpty <- base::paste0(testDirOut, "/", subDirPathEmpty) + + wrap.sunav2.logfiles.fill( + DirInLogs = DirInLogs, + DirInStream = DirInStreamEmpty, + DirIn = DirIn, + DirOutBase = testDirOut, + SchmDataOut = SchmDataOut, + SchmFlagsOut = SchmFlagsOut, + log = log + ) + + testthat::expect_true(file.exists(file.path(testOutputDirPathEmpty, "data"))) + testthat::expect_true(file.exists(file.path(testOutputDirPathEmpty, "flags"))) + + # Test 4: SUNAV2, DirInLogs is empty, only stream available + if (dir.exists(testDirOut)) { + unlink(testDirOut, recursive = TRUE) + } + + DirInLogsEmpty <- file.path(workingDirPath, 'pfs/sunav2_logjam_assign_clean_files/sunav2/2024/09/11/20349_empty') + + wrap.sunav2.logfiles.fill( + DirInLogs = DirInLogsEmpty, + DirInStream = DirInStream, + DirIn = DirIn, + DirOutBase = testDirOut, + SchmDataOut = SchmDataOut, + SchmFlagsOut = SchmFlagsOut, + log = log + ) + + testthat::expect_true(file.exists(file.path(testOutputDirPath, "data"))) + testthat::expect_true(file.exists(file.path(testOutputDirPath, "flags"))) + + +}) \ No newline at end of file diff --git a/flow/tests/testthat/test-wrap-sunav2-logfiles.R b/flow/tests/testthat/test-wrap-sunav2-logfiles.R new file mode 100644 index 000000000..48601b556 --- /dev/null +++ b/flow/tests/testthat/test-wrap-sunav2-logfiles.R @@ -0,0 +1,99 @@ +############################################################################################## +#' @title Unit test for wrap.sunav2.logfiles module for NEON IS data processing +#' +#' @author +#' Nora Catolico \email{ncatolico@battelleecology.org} \cr +#' +#' @description Unit test for wrap.sunav2.logfiles +#' +#' Tests include normal operation, expected output file/directory creation, handling of bad input, and missing files/fields. +#' +#'#' @param FileIn Character value. The input path to the data from a single source ID, structured as: +#' #/pfs/BASE_REPO/source-id/. The source-id is the unique identifier of the sensor. +#' +#' @param DirOut Character value. The output path that will replace the #/pfs/BASE_REPO portion of FileIn. +#' +#' @param SchmDataOut (optional), the full path to the avro schema for the output data file. +#' If not provided, output schema will match the input file columns. +#' +#' @param log A logger object as produced by NEONprocIS.base::def.log.init to produce structured log +#' output. Defaults to NULL, in which the logger will be created and used within the function. +#' +#' @return Cleaned SunaV2 log files in daily parquets. +#' +#' #' @examples +#' # Not run +#' log <- NEONprocIS.base::def.log.init(Lvl = "debug") +#' wrap.troll.logfiles <- function(FileIn="~/pfs/sunav2_logjam_load_files/20349/logjam_prod_20349.csv", +#' DirOut="~/pfs/out", +#' SchmDataOut=NULL, +#' log=log) +#' +#'# changelog and author contributions +# Nora Catolico (2026-02-06) +# Original Creation +# +############################################################################################## +context("\n Unit test of wrap.sunav2.logfiles.R\n") + +test_that("Unit test of wrap.sunav2.logfiles.R", { + + source('../../flow.sunav2.logfiles/wrap.sunav2.logfiles.R') + library(stringr) + library(lubridate) + log <- NEONprocIS.base::def.log.init(Lvl = "debug") + + #setwd('~/R/NEON-IS-data-processing/flow/tests/testthat') + + # Test 1: process a typical file and expect daily output directories created + workingDirPath <- getwd() + testFileIn = file.path(workingDirPath, 'pfs/sunav2_logjam_load_files/20349/logjam_prod_20349.csv') + Asset<-"20349" + fileName<-basename(testFileIn) + testDirOut = 'pfs/out' + + + # Read in file + log_file <- + base::try(read.table(paste0(testFileIn), header = FALSE, sep = ",", + col.names = paste0("V",seq_len(286)),encoding = 'utf-8', + stringsAsFactors = FALSE,fill = TRUE,strip.white = TRUE,na.strings=c(-1,''))) + start<-which(grepl('Zeiss Coefficient',log_file$V2))+1 + # Separate data and metadata + logData<-log_file[start:(nrow(log_file)),] + #' Calculates the readout date and time in POSIXct format + logData$readout_time<-lubridate::parse_date_time(as.character(logData[,2]),order="yj") + startDate <- min(logData$readout_time) + endDate <- max(logData$readout_time) + date_obj <- as.POSIXct(startDate, format = "%Y-%m-%d", tz = "UTC") + y<-format(date_obj, "%Y") # "2024" + m<-format(date_obj, "%m") # "09" + d<-format(date_obj, "%d") # "02" + + if (dir.exists(testDirOut)) { + unlink(testDirOut, recursive=TRUE) + } + + testDirOutDir<-paste(testDirOut,"sunav2",y,m,d,Asset,sep="/") + + # Test 1: runs without error + wrap.sunav2.logfiles(FileIn=testFileIn, DirOut=testDirOut, SchmDataOut=NULL, log=log) + testthat::expect_true(file.exists(file.path(testDirOutDir, "data"))) + + + # Test 2: Not NULL Schema is passed in + if (dir.exists(testDirOut)) { + unlink(testDirOut, recursive=TRUE) + } + schm<-file.path(workingDirPath, 'pfs/sunav2_avro_schemas/sunav2_logfilled.avsc') + SchmDataOut <- base::paste0(base::readLines(schm),collapse='') + wrap.sunav2.logfiles(FileIn=testFileIn, DirOut=testDirOut, SchmDataOut=SchmDataOut, log=log) + testthat::expect_true(file.exists(file.path(testDirOutDir, "data"))) + + # Additional negative/robustness tests could be added, e.g. missing column, corrupt file, etc + + if (dir.exists(testDirOut)) { + unlink(testDirOut, recursive=TRUE) + } + +}) diff --git a/flow/tests/testthat/test-wrap-sunav2-quality-flags.R b/flow/tests/testthat/test-wrap-sunav2-quality-flags.R new file mode 100644 index 000000000..52400eb76 --- /dev/null +++ b/flow/tests/testthat/test-wrap-sunav2-quality-flags.R @@ -0,0 +1,87 @@ +############################################################################################## +#' @title Unit test for Wrapper for SUNA sensor-specific quality flagging +#' +#' @author +#' Nora Catolico \email{ncatolico@battelleecology.org} \cr +#' +#' @description Unit test for wrap.sunav2.quality.flags.R. Tests basic file/directory input/output, +#' schema argument passing, and successful output of SUNA quality flagged files. +#' +#' @param DirIn Character value. The base file path to the input data, QA/QC plausibility flags and quality flag thresholds. +#' +#' @param DirOut Character value. The base file path for the output data. +#' +#' @param SchmDataOut (optional), A json-formatted character string containing the schema for the data file. +#' This should be the same for the input as the output. Only the number of rows of measurements should change. +#' +#' @param SchmFlagsOut (optional), A json-formatted character string containing the schema for the output flags. +#' +#' @param log A logger object as produced by NEONprocIS.base::def.log.init to produce structured log +#' output. Defaults to NULL, in which the logger will be created and used within the function. See NEONprocIS.base::def.log.init +#' for more details. +#' +#' @references +#' License: (example) GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 +#' +#' @examples +#' # Not run +#' log <- NEONprocIS.base::def.log.init(Lvl = "debug") +#' SchmDataOut <- base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2_logfilled.avsc'),collapse='') +#' SchmFlagsOut <- base::paste0(base::readLines('~/pfs/sunav2_avro_schemas/sunav2_all_flags.avsc'),collapse='') +#' +#' changelog and author contributions +# Nora Catolico (2026-02-09) +# Original Creation +# +############################################################################################## + +context("\n Unit test of wrap.sunav2.quality.flags.R\n") + +test_that("Unit test of wrap.sunav2.quality.flags.R", { + + source('../../flow.sunav2.quality.flags/wrap.sunav2.quality.flags.R') + library(stringr) + library(dplyr) + log <- NEONprocIS.base::def.log.init(Lvl = "debug") + + # Set up working directories and schemas + workingDirPath <- getwd() + testDirIn <- file.path(workingDirPath, 'pfs/nitrate_analyze_pad_and_qaqc_plau/2025/06/25/nitrate_HOPB112100/sunav2/CFGLOC113620') + testDirOut <- file.path(workingDirPath, 'pfs/nitrate_out') + testSchmFlagsOutDir <- file.path(workingDirPath, 'pfs/sunav2_avro_schemas/nitrate/nitrate_all_flags.avsc') + testSchmFlagsOut <- base::paste0(base::readLines(testSchmFlagsOutDir), collapse='') + + # Get repo info and output directory + InfoDirIn <- NEONprocIS.base::def.dir.splt.pach.time(testDirIn) + testDirRepo <- InfoDirIn$dirRepo + testDirOutPath <- base::paste0(testDirOut, testDirRepo) + + if (dir.exists(testDirOut)) { + unlink(testDirOut, recursive = TRUE) + } + + ## Test 1: Only input and output directories passed in + wrap.sunav2.quality.flags (DirIn=testDirIn, + DirOutBase=testDirOut) + testthat::expect_true(file.exists(testDirOutPath)) + + ## Test 2: Not NULL Schema is passed in + if (dir.exists(testDirOut)) { + unlink(testDirOut, recursive = TRUE) + } + wrap.sunav2.quality.flags (DirIn=testDirIn, + DirOutBase=testDirOut, + SchmFlagsOut=testSchmFlagsOut, + log=log) + testthat::expect_true(file.exists(testDirOutPath)) + + + ## Additional checks: + # Check that the output files (data & flags) exist in their expected locations + DirOutData <- file.path(testDirOutPath, 'data') + DirOutFlags <- file.path(testDirOutPath, 'flags') + testthat::expect_true(dir.exists(DirOutData)) + testthat::expect_true(dir.exists(DirOutFlags)) + # You may add further checks for file output, schema format, etc. + +}) \ No newline at end of file diff --git a/flow/tests/testthat/test-wrap-troll-logfiles.R b/flow/tests/testthat/test-wrap-troll-logfiles.R index 741b3aa27..64bd53fe5 100644 --- a/flow/tests/testthat/test-wrap-troll-logfiles.R +++ b/flow/tests/testthat/test-wrap-troll-logfiles.R @@ -42,100 +42,78 @@ # Mija Choi (2024-05-03) # Updated after a change in one of the input parameters of wrap.troll.logfiles.R, # DirIn to FileIn. +# ############################################################################################## -# Define test context -context("\n Unit test of wrap.troll.logfiles.R\n") +context("\n Unit test of wrap.sunav2.logfiles.R\n") -# Unit test of wrap.troll.logfiles.R -test_that("Unit test of wrap.troll.logfiles.R", { +test_that("Unit test of wrap.sunav2.logfiles.R", { - source('../../flow.troll.logfiles/wrap.troll.logfiles.R') + source('../../flow.sunav2.logfiles/wrap.sunav2.logfiles.R') library(stringr) log <- NEONprocIS.base::def.log.init(Lvl = "debug") - # - # Test 1. Only the input of directories, resistance and voltage, and output directry are passed in + # Test 1: process a typical file and expect daily output directories created workingDirPath <- getwd() - testFileIn = file.path(workingDirPath, 'pfs/logjam_load_files/21115/7a5c6a2adb01c935f8dc87a3fcc25316.csv') - testDirOut = file.path(workingDirPath, 'pfs/out') - # - fileData <- base::list.files(testFileIn,full.names=TRUE) - log_file <- base::try(read.table(paste0(testFileIn), header = FALSE, sep = ",", - col.names = paste0("V",seq_len(6)),encoding = 'utf-8', - stringsAsFactors = FALSE,fill = TRUE,strip.white = TRUE,na.strings=c(-1,''))) - #log_file$V1[52] "11/5/2019 19:50" - #log_file$V1[53] "11/19/2019 19:11" - #log_file$V2[13] "Level TROLL 500" - - sensor = tolower(gsub(" ", "", paste(log_file$V2[13]))) - #datePattern = "\d{1,2}\/\d{1,2}\/\d{2,4}" - #format(as.Date(df1$Date, format="%d/%m/%Y"),"%Y") - yr = format(as.Date(log_file$V1[52], format="%m/%d/%Y"),"%Y") - mo = format(as.Date(log_file$V1[52], format="%m/%d/%Y"),"%m") - startDate = format(as.Date(log_file$V1[52], format="%m/%d/%Y"),"%d") - endDate = format(as.Date(log_file$V1[53], format="%m/%d/%Y"),"%d") - testDirOutDir = file.path(testDirOut, sensor, yr, mo) + file.path(workingDirPath, 'pfs/logjam_load_files/21115/7a5c6a2adb01c935f8dc87a3fcc25316.csv') + testDirOut = file.path(workingDirPath, 'pfs/out_sunav2') + + # Demo read for info (format and index below may be modified for real SunAV2 data) + log_file <- base::try(read.table(testFileIn, header=FALSE, sep=",", col.names=paste0("V",seq_len(8)), + encoding="utf-8", stringsAsFactors=FALSE, fill=TRUE, strip.white=TRUE, na.strings=c(-1,"")), silent=TRUE) + sensor_id <- tolower(gsub(" ", "", as.character(log_file$V2[5]))) + yr <- format(as.Date(log_file$V1[11], format="%m/%d/%Y"),"%Y") + mo <- format(as.Date(log_file$V1[11], format="%m/%d/%Y"),"%m") + startDate <- format(as.Date(log_file$V1[11], format="%m/%d/%Y"),"%d") + endDate <- format(as.Date(log_file$V1[12], format="%m/%d/%Y"),"%d") + testDirOutDir <- file.path(testDirOut, sensor_id, yr, mo) if (dir.exists(testDirOut)) { - unlink(testDirOut, recursive = TRUE) + unlink(testDirOut, recursive=TRUE) } - wrap.troll.logfiles (FileIn=testFileIn, - DirOut=testDirOut, - SchmDataOut=NULL, - log=log) + wrap.sunav2.logfiles(FileIn=testFileIn, DirOut=testDirOut, SchmDataOut=NULL, log=log) - for (iDate in startDate:endDate){ - #need to keep leading 0 in the directory - expect_true (file.exists(file.path(testDirOutDir, str_pad(iDate, 2, pad = "0")))) - } - # - # Test 2. Not NULL Schema is passed in - # - if (dir.exists(testDirOut)) { - unlink(testDirOut, recursive = TRUE) + for (iDate in as.numeric(startDate):as.numeric(endDate)){ + expect_true(file.exists(file.path(testDirOutDir, str_pad(iDate, 2, pad="0")))) } - # - #generate schema of "source_id", "readout_time", "pressure", "temperature", "logFlag" and "logDateErrorFlag") - #from data frame - source_id <- c("21115") - readout_time <- c("2019-01-03T00:00:00Z") - pressure <- c("0.000000000") - temperature <- c("191428.000000000") - logFlag <- c("1.0") - logDateErrorFlag <- c("0.1") - df1 <- data.frame(source_id, readout_time, pressure, temperature, logFlag, logDateErrorFlag) - schm = NEONprocIS.base::def.schm.parq.from.df (df = df1, log=NULL) + # Test 2: Not NULL Schema is passed in + if (dir.exists(testDirOut)) { + unlink(testDirOut, recursive=TRUE) + } + # Example dummy data for schema (modify columns as appropriate for SunAV2!) + source_id <- c("10001") + log_time <- c("2020-01-02T00:00:00Z") + voltage <- c("12.3") + temperature <- c("22.5") + logFlag <- c("1") + logDateErrorFlag <- c("0") + df1 <- data.frame(source_id, log_time, voltage, temperature, logFlag, logDateErrorFlag) + schm <- NEONprocIS.base::def.schm.parq.from.df(df=df1, log=NULL) - wrap.troll.logfiles (FileIn=testFileIn, - DirOut=testDirOut, - SchmDataOut=schm, - log=log) + wrap.sunav2.logfiles(FileIn=testFileIn, DirOut=testDirOut, SchmDataOut=schm, log=log) - # Test 3. The input file has date < 2018 + # Test 3: input file has all dates before 2018 (should still process) + testFileIn_past <- file.path(workingDirPath,'pfs/sunav2_logfiles_before2018/10001/abcd1234.csv') + log_file_past <- base::try(read.table(testFileIn_past, header=FALSE, sep=",", col.names=paste0("V",seq_len(8)), + encoding="utf-8", stringsAsFactors=FALSE, fill=TRUE, strip.white=TRUE, na.strings=c(-1,"")), silent=TRUE) + sensor_id_past <- tolower(gsub(" ", "", as.character(log_file_past$V2[5]))) + yr_past <- format(as.Date(log_file_past$V1[11], format="%m/%d/%Y"),"%Y") + mo_past <- format(as.Date(log_file_past$V1[11], format="%m/%d/%Y"),"%m") + startDate_past <- format(as.Date(log_file_past$V1[11], format="%m/%d/%Y"),"%d") + endDate_past <- format(as.Date(log_file_past$V1[12], format="%m/%d/%Y"),"%d") + testDirOutDir_past <- file.path(testDirOut, sensor_id_past, yr_past, mo_past) - testFileIn = file.path(workingDirPath, 'pfs/logjam_load_files_before2018/21115/7a5c6a2adb01c935f8dc87a3fcc25316.csv') - fileData <- base::list.files(testFileIn,full.names=TRUE) + if (dir.exists(testDirOut)) { + unlink(testDirOut, recursive=TRUE) + } + wrap.sunav2.logfiles(FileIn=testFileIn_past, DirOut=testDirOut, SchmDataOut=NULL, log=log) + expect_true(file.exists(testDirOutDir_past)) - log_file <- base::try(read.table(paste0(testFileIn), header = FALSE, sep = ",", - col.names = paste0("V",seq_len(6)),encoding = 'utf-8', - stringsAsFactors = FALSE,fill = TRUE,strip.white = TRUE,na.strings=c(-1,''))) - sensor = tolower(gsub(" ", "", paste(log_file$V2[13]))) - yr = format(as.Date(log_file$V1[52], format="%m/%d/%Y"),"%Y") - mo = format(as.Date(log_file$V1[52], format="%m/%d/%Y"),"%m") - startDate = format(as.Date(log_file$V1[52], format="%m/%d/%Y"),"%d") - endDate = format(as.Date(log_file$V1[53], format="%m/%d/%Y"),"%d") - testDirOutDir = file.path(testDirOut, sensor, yr, mo) + # Additional negative/robustness tests could be added, e.g. missing column, corrupt file, etc if (dir.exists(testDirOut)) { - unlink(testDirOut, recursive = TRUE) + unlink(testDirOut, recursive=TRUE) } - wrap.troll.logfiles (FileIn=testFileIn, - DirOut=testDirOut, - SchmDataOut=NULL, - log=log) - expect_true (file.exists(file.path(testDirOutDir))) - }) diff --git a/modules_combined/fill_date_gaps_nonregularized/Dockerfile b/modules_combined/fill_date_gaps_nonregularized/Dockerfile new file mode 100644 index 000000000..6dc11c104 --- /dev/null +++ b/modules_combined/fill_date_gaps_nonregularized/Dockerfile @@ -0,0 +1,57 @@ +# Dockerfile for NEON IS Data Processing - Combined date gap filler and nonregularized gap filler +# This image combines the two modules: date_gap_filler and flow.gap.fill.nonrglr + +# Start with the base R image. +FROM us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-pack-base-r:v1.7.0 + +# maintainer handle +MAINTAINER "Nora Catolico" ncatolico@battelleecology.org + +# Build in the filter-joiner python module +ARG MODULE_DIR="modules" +ARG APP_DIR="date_gap_filler" +ARG COMMON_DIR="common" +ARG CONTAINER_APP_DIR="/usr/src/app" +ENV PYTHONPATH="${PYTHONPATH}:${CONTAINER_APP_DIR}" + +WORKDIR ${CONTAINER_APP_DIR} + +COPY ${MODULE_DIR}/${APP_DIR}/requirements.txt ${CONTAINER_APP_DIR}/${APP_DIR}/requirements.txt + + +RUN apt update && \ + apt-get install -y --no-install-recommends \ + python3.8 && \ + apt install -y python3-pip && \ + python3 -mpip install --no-cache-dir --upgrade pip setuptools wheel && \ + python3 -mpip install --no-cache-dir -r ${CONTAINER_APP_DIR}/${APP_DIR}/requirements.txt && \ + apt-get autoremove -y && \ + apt-get autoclean -y && \ + rm -rf /var/lib/apt/lists/* + + +# Copy in python code +COPY ${MODULE_DIR}/${APP_DIR} ${CONTAINER_APP_DIR}/${APP_DIR} +COPY ${MODULE_DIR}/${COMMON_DIR} ${CONTAINER_APP_DIR}/${COMMON_DIR} + +# Build in the module +ARG MODULE_DIR="flow" + +# Copy the lockfile and restore known working versions of R dependency packages +# ENSURE that the renv.lock file is up-to-date and thus has all listed dependencies prior to creating this docker image +COPY ./${MODULE_DIR}/flow.gap.fill.nonrglr/renv.lock ./renv.lock +RUN R -e 'renv::restore(lockfile="./renv.lock")' +#RUN git clone -b deve https://github.com/NEONScience/eddy4R.git +#RUN R -e 'renv::install("./eddy4R/pack/eddy4R.base",repos=c(remotes::bioc_install_repos(),"https://cran.rstudio.com/"))' + +# Create app user +RUN groupadd appuser && \ + useradd appuser -g appuser +WORKDIR /usr/src/app + +# Copy in application code +COPY ./${MODULE_DIR}/flow.gap.fill.nonrglr/wrap.gap.fill.nonrglr.R . +COPY ./${MODULE_DIR}/flow.gap.fill.nonrglr/flow.gap.fill.nonrglr.R . + +# Run as app user +USER appuser diff --git a/modules_combined/sunav2_logs_group_and_fill/Dockerfile b/modules_combined/sunav2_logs_group_and_fill/Dockerfile new file mode 100644 index 000000000..fa005b80b --- /dev/null +++ b/modules_combined/sunav2_logs_group_and_fill/Dockerfile @@ -0,0 +1,62 @@ +# Dockerfile for NEON IS Data Processing - sunav2 logs fill module combined with filter-joiner +# Example command (must be run from project parent directory to include modules/ and flow/ paths in Docker context): +# docker build -t neon-is-sunav2-logs-group-fill -f ./modules_combined/sunav2_logs_group_and_fill/Dockerfile . + +# Start with the base R image. +FROM us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-pack-base-r:v1.7.0 + +# maintainer handle +MAINTAINER "Nora Catolico" ncatolico@battelleecology.org + +# Add in the python-based filter-joiner module +ARG MODULE_DIR="modules" +ARG APP_DIR="filter_joiner" +ARG COMMON_DIR="common" +ARG CONTAINER_APP_DIR="/usr/src/app" +ENV PYTHONPATH="${PYTHONPATH}:${CONTAINER_APP_DIR}" + +WORKDIR ${CONTAINER_APP_DIR} + +COPY ${MODULE_DIR}/${APP_DIR}/requirements.txt ${CONTAINER_APP_DIR}/${APP_DIR}/requirements.txt + + +RUN apt update && \ + apt-get install -y --no-install-recommends \ + python3.8 && \ + apt install -y python3-pip && \ + python3 -mpip install --no-cache-dir --upgrade pip setuptools wheel && \ + python3 -mpip install --no-cache-dir -r ${CONTAINER_APP_DIR}/${APP_DIR}/requirements.txt && \ + apt-get autoremove -y && \ + apt-get autoclean -y && \ + rm -rf /var/lib/apt/lists/* && \ + groupadd -g 9999 appuser && \ + useradd -r -u 9999 -g appuser appuser + +# Copy in python code +COPY ${MODULE_DIR}/${APP_DIR} ${CONTAINER_APP_DIR}/${APP_DIR} +COPY ${MODULE_DIR}/${COMMON_DIR} ${CONTAINER_APP_DIR}/${COMMON_DIR} + +# Load kafka combiner +# Copy the lockfile and restore known working versions of R dependency packages +# ENSURE that the renv.lock file is up-to-date and thus has all listed dependencies prior to creating this docker image +COPY ./flow/flow.kfka.comb/renv.lock . +RUN R -e 'renv::restore(lockfile="./renv.lock")' + +# Copy in R code +COPY ./flow/flow.kfka.comb/flow.kfka.comb.R . +COPY ./flow/flow.kfka.comb/wrap.kfka.comb.R . + +# Build in the log file filler module +ARG MODULE_DIR="flow" +ARG APP_DIR_1="flow.sunav2.logfiles.fill" + +# Copy the lockfile and restore known working versions of R dependency packages +COPY ./flow/flow.sunav2.logfiles.fill/renv.lock . +RUN R -e 'renv::restore(lockfile="./renv.lock")' + +# Copy in R code +COPY ./flow/flow.sunav2.logfiles.fill/flow.sunav2.logfiles.fill.R . +COPY ./flow/flow.sunav2.logfiles.fill/wrap.sunav2.logfiles.fill.R . + +# Run as app user +USER appuser diff --git a/modules_combined/sunav2_ucrt_group/Dockerfile b/modules_combined/sunav2_ucrt_group/Dockerfile new file mode 100644 index 000000000..422f9dc07 --- /dev/null +++ b/modules_combined/sunav2_ucrt_group/Dockerfile @@ -0,0 +1,60 @@ +# Dockerfile for NEON IS Data Processing - sunav2 uncertainty module combined with filter-joiner and insufficient data + +# Start with the cal package image. +FROM us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-pack-cal-r:v3.1.0 + +# maintainer handle +MAINTAINER "Nora Catolico" ncatolico@battelleecology.org + +# Add in the python-based filter-joiner module +ARG MODULE_DIR="modules" +ARG APP_DIR="filter_joiner" +ARG COMMON_DIR="common" +ARG CONTAINER_APP_DIR="/usr/src/app" +ENV PYTHONPATH="${PYTHONPATH}:${CONTAINER_APP_DIR}" + +WORKDIR ${CONTAINER_APP_DIR} + +COPY ${MODULE_DIR}/${APP_DIR}/requirements.txt ${CONTAINER_APP_DIR}/${APP_DIR}/requirements.txt + + +RUN apt update && \ + apt-get install -y --no-install-recommends \ + python3.8 && \ + apt install -y python3-pip && \ + python3 -mpip install --no-cache-dir --upgrade pip setuptools wheel && \ + python3 -mpip install --no-cache-dir -r ${CONTAINER_APP_DIR}/${APP_DIR}/requirements.txt && \ + apt-get autoremove -y && \ + apt-get autoclean -y && \ + rm -rf /var/lib/apt/lists/* && \ + groupadd -g 9999 appuser && \ + useradd -r -u 9999 -g appuser appuser + +# Copy in python code +COPY ${MODULE_DIR}/${APP_DIR} ${CONTAINER_APP_DIR}/${APP_DIR} +COPY ${MODULE_DIR}/${COMMON_DIR} ${CONTAINER_APP_DIR}/${COMMON_DIR} + + +# Build in the uncertainty module +ARG MODULE_DIR="flow" +ARG APP_DIR_1="flow.sunav2.exp.uncert" +ARG APP_DIR_2="flow.qf.insuff.data" + +# Copy the lockfile and restore known working versions of R dependency packages +COPY ./flow/flow.sunav2.exp.uncert/renv.lock . +RUN R -e 'renv::restore(lockfile="./renv.lock")' + +# Copy in R code +COPY ./flow/flow.sunav2.exp.uncert/flow.sunav2.exp.uncert.R . +COPY ./flow/flow.sunav2.exp.uncert/wrap.sunav2.exp.uncert.R . + +# Copy the lockfile and restore known working versions of R dependency packages +COPY ./flow/flow.qf.insuff.data/renv.lock . +RUN R -e 'renv::restore(lockfile="./renv.lock")' + +# Copy in R code +COPY ./flow/flow.qf.insuff.data/flow.qf.insuff.data.R . +COPY ./flow/flow.qf.insuff.data/wrap.qf.insuff.data.R . + +# Run as app user +USER appuser diff --git a/modules_combined/troll_logs_group_and_fill/Dockerfile b/modules_combined/troll_logs_group_and_fill/Dockerfile index 3535a4569..f7c5e13be 100644 --- a/modules_combined/troll_logs_group_and_fill/Dockerfile +++ b/modules_combined/troll_logs_group_and_fill/Dockerfile @@ -59,4 +59,4 @@ COPY ./flow/flow.troll.logfiles.fill/flow.troll.logfiles.fill.R . COPY ./flow/flow.troll.logfiles.fill/wrap.troll.logfiles.fill.R . # Run as app user -USER appuser +USER appuser \ No newline at end of file diff --git a/pipe/nitrate/nitrate_analyze_pad_and_qaqc_plau.yaml b/pipe/nitrate/nitrate_analyze_pad_and_qaqc_plau.yaml new file mode 100644 index 000000000..9ef95d35b --- /dev/null +++ b/pipe/nitrate/nitrate_analyze_pad_and_qaqc_plau.yaml @@ -0,0 +1,82 @@ +--- +pipeline: + name: nitrate_analyze_pad_and_qaqc_plau +transform: + image_pull_secrets: + - battelleecology-quay-read-all-pull-secret + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-ts-pad-anls-qaqc-plau:v2.0.0 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + + # Refresh interim directories with each datum (otherwise they persist and cause probs) + rm -rf /tmp/pfs/padded_analyzer + rm -rf /tmp/pfs/padded_analyzerCopy + mkdir -p /tmp/pfs/padded_analyzer + + # Run first module - padded_timeseries_analyzer + python3 -m padded_timeseries_analyzer.padded_timeseries_analyzer.padded_timeseries_analyzer_main + + # Copy output to another interim folder to destroy links (cannot daisy chain links from pfs input to output) + cp -rL /tmp/pfs/padded_analyzer /tmp/pfs/padded_analyzerCopy || : # Allow to fail without exit code (happens if step above produced no output) + rm -r -f /tmp/pfs/padded_analyzer + + # Run second module - qaqc plausibility + Rscript ./flow.qaqc.plau.R \ + DirIn=/tmp/pfs/padded_analyzerCopy \ + DirOut=/pfs/out \ + DirErr=/pfs/out/errored_datums \ + "TermTest1=nitrate:range(rmv)|step(rmv)|persistence(rmv)|spike(rmv)" \ + "DirSubCopy=threshold|flags" + EOF + env: + # Environment variables for padded timeseries analyzer + OUT_PATH: /tmp/pfs/padded_analyzer + LOG_LEVEL: INFO + RELATIVE_PATH_INDEX: '3' + ERR_PATH: /pfs/out/errored_datums + # Environment variables for qaqc plausibility + PARALLELIZATION_INTERNAL: '1' +input: + cross: + - pfs: + name: DATA_PATH + repo: nitrate_thresh_select_ts_pad + glob: /*/*/* +parallelism_spec: + constant: 5 +autoscaling: true +resource_requests: + memory: 700M + cpu: 2 +resource_limits: + memory: 4G + cpu: 7 +sidecar_resource_requests: + memory: 3G + cpu: 0.3 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/gke-ephemeral-storage-local-ssd: "true" + nodepool.neonscience.org/pipeline: "yes" + cloud.google.com/gke-spot: "true" +pod_spec: |- + { "tolerations": [ + { + "key": "nodepool.neonscience.org/pipeline", + "operator": "Exists" + }, + { + "effect": "NoSchedule", + "key": "cloud.google.com/gke-spot", + "operator": "Exists" + } + ] } diff --git a/pipe/nitrate/nitrate_cron_monthly_and_pub_control.yaml b/pipe/nitrate/nitrate_cron_monthly_and_pub_control.yaml new file mode 100644 index 000000000..dfd20350f --- /dev/null +++ b/pipe/nitrate/nitrate_cron_monthly_and_pub_control.yaml @@ -0,0 +1,50 @@ +--- +pipeline: + name: nitrate_cron_monthly_and_pub_control +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-pub-cntl:v1.1.0 + cmd: ["/bin/bash"] + env: + # START_MONTH and END_MONTH indicate the date range (inclusive) to create the /Y/M folder structure + # START_DATE must be set, format "YYYY-MM" + # END_DATE can be set or unset (comment or remove line to unset). If unset, end month will be last month. + OUT_PATH: /pfs/out + START_MONTH: "2019-11" + END_MONTH: "2019-11" # Inclusive. Run the pipeline with END_MONTH set to initialize, then comment out and update pipeline (no reprocess) to let the cron take over + stdin: + - "#!/bin/bash" + - ./cron_monthly_and_pub_control/populate_pub_months.sh +input: + # Choose a monthly cron date to be something sufficiently after the 1st to allow kafka lag and timeseries pad + cron: + name: tick + spec: "@never" + #spec: "0 7 10 * *" # Run at 00:00 MST (07:00 GMT) on the 10th of the month + overwrite: true +autoscaling: true +resource_requests: + memory: 64M + cpu: 0.1 +resource_limits: + memory: 200M + cpu: 1 +sidecar_resource_requests: + memory: 200M + cpu: 0.1 +scheduling_spec: + node_selector: + cloud.google.com/gke-ephemeral-storage-local-ssd: "true" + nodepool.neonscience.org/pipeline: "yes" + cloud.google.com/gke-spot: "true" +pod_spec: |- + { "tolerations": [ + { + "key": "nodepool.neonscience.org/pipeline", + "operator": "Exists" + }, + { + "effect": "NoSchedule", + "key": "cloud.google.com/gke-spot", + "operator": "Exists" + } + ] } diff --git a/pipe/nitrate/nitrate_flags_specific.yaml b/pipe/nitrate/nitrate_flags_specific.yaml new file mode 100644 index 000000000..1d84027d9 --- /dev/null +++ b/pipe/nitrate/nitrate_flags_specific.yaml @@ -0,0 +1,45 @@ +--- +pipeline: + name: nitrate_flags_specific +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-sunav2-flags-specific:sha-95e1912 + # image_pull_secrets: + # - battelleecology-quay-read-all-pull-secret + cmd: ["/bin/bash"] + stdin: + - "#!/bin/bash" + - Rscript ./flow.sunav2.quality.flags.R + DirIn=$DIR_IN + DirOut=/pfs/out + DirErr=/pfs/out/errored_datums + FileSchmQf=$SCHEMA_FLAGS + env: + LOG_LEVEL: INFO +input: + cross: + - pfs: + name: DIR_IN + repo: nitrate_analyze_pad_and_qaqc_plau + # /YYYY/MM/DD/group/sourcetype/CFGLOC + glob: /(*/*/*/*) + - pfs: + name: SCHEMA_FLAGS + repo: nitrate_avro_schemas + glob: /nitrate/nitrate_all_flags.avsc +parallelism_spec: + constant: 6 +autoscaling: true +resource_requests: + memory: 500M + cpu: 1.2 +resource_limits: + memory: 1G + cpu: 2 +sidecar_resource_requests: + memory: 2G + cpu: 0.5 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/nitrate/nitrate_group_assignment.yaml b/pipe/nitrate/nitrate_group_assignment.yaml new file mode 100644 index 000000000..372679c61 --- /dev/null +++ b/pipe/nitrate/nitrate_group_assignment.yaml @@ -0,0 +1,61 @@ +--- +pipeline: + name: nitrate_group_assignment +transform: + cmd: ["/bin/bash"] + stdin: + - "#!/bin/bash" + - export ERR_PATH="/pfs/out/errored_datums$FILE_YEAR" + - Rscript + ./flow.loc.grp.asgn.R + DirIn=$DIR_IN + DirOut=/pfs/out + DirErr=$ERR_PATH + FileYear=$FILE_YEAR + TypeFile=group + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-loc-grp-asgn:v1.3.0 + # image_pull_secrets: + # - battelleecology-quay-read-all-pull-secret + env: + LOG_LEVEL: INFO +input: + cross: + - pfs: + name: DIR_IN + repo: nitrate_group_loader + glob: /nitrate-surfacewater/* + - pfs: + name: FILE_YEAR + repo: sunav2_cron_daily_and_date_control + glob: /data_year_*.txt +parallelism_spec: + constant: 2 +autoscaling: true +resource_requests: + memory: 250M + cpu: 1 +resource_limits: + memory: 400M + cpu: 2 +sidecar_resource_requests: + memory: 1G + cpu: 0.5 +datum_set_spec: + number: 5 +scheduling_spec: + node_selector: + cloud.google.com/gke-ephemeral-storage-local-ssd: "true" + nodepool.neonscience.org/pipeline: "yes" + cloud.google.com/gke-spot: "true" +pod_spec: |- + { "tolerations": [ + { + "key": "nodepool.neonscience.org/pipeline", + "operator": "Exists" + }, + { + "effect": "NoSchedule", + "key": "cloud.google.com/gke-spot", + "operator": "Exists" + } + ] } diff --git a/pipe/nitrate/nitrate_group_loader.yaml b/pipe/nitrate/nitrate_group_loader.yaml new file mode 100644 index 000000000..cefa9bef5 --- /dev/null +++ b/pipe/nitrate/nitrate_group_loader.yaml @@ -0,0 +1,53 @@ +pipeline: + name: nitrate_group_loader +transform: + cmd: + - /bin/bash + env: + GROUP_PREFIX: nitrate-surfacewater_ + LOG_LEVEL: INFO + OUT_PATH: /pfs/out + # ERR_PATH can be changed, it is user specified + ERR_PATH: /pfs/out/errored_datums + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-group-loader:v1.0.0 + # image_pull_secrets: + # - battelleecology-quay-read-all-pull-secret + secrets: + - name: pdr-secret + mount_path: /var/db_secret + stdin: + - '#!/bin/bash' + - python3 -m group_loader.group_loader_main +input: + pfs: + branch: master + empty_files: true + glob: /* + repo: sunav2_cron_daily_and_date_control_tick +autoscaling: true +resource_requests: + memory: 50M + cpu: 0.1 +resource_limits: + memory: 300M + cpu: 1.5 +sidecar_resource_requests: + memory: 200M + cpu: 0.2 +scheduling_spec: + node_selector: + cloud.google.com/gke-ephemeral-storage-local-ssd: "true" + nodepool.neonscience.org/pipeline: "yes" + cloud.google.com/gke-spot: "true" +pod_spec: |- + { "tolerations": [ + { + "key": "nodepool.neonscience.org/pipeline", + "operator": "Exists" + }, + { + "effect": "NoSchedule", + "key": "cloud.google.com/gke-spot", + "operator": "Exists" + } + ] } diff --git a/pipe/nitrate/nitrate_group_path.yaml b/pipe/nitrate/nitrate_group_path.yaml new file mode 100644 index 000000000..956cc9e39 --- /dev/null +++ b/pipe/nitrate/nitrate_group_path.yaml @@ -0,0 +1,87 @@ +--- +pipeline: + name: nitrate_group_path +transform: + # image_pull_secrets: + # - battelleecology-quay-read-all-pull-secret + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-group-path:v1.0.1 + cmd: + - /bin/bash + stdin: + - '#!/bin/bash' + - python3 -m group_path.group_path_main + env: + GROUP: nitrate-surfacewater_ + LOG_LEVEL: INFO + OUT_PATH: /pfs/out + # ERR_PATH can be changed, it is user specified + ERR_PATH: /pfs/out/errored_datums + GROUP_ASSIGNMENT_YEAR_INDEX: '4' + GROUP_ASSIGNMENT_MONTH_INDEX: '5' + GROUP_ASSIGNMENT_DAY_INDEX: '6' + GROUP_ASSIGNMENT_MEMBER_INDEX: '7' + GROUP_ASSIGNMENT_DATA_TYPE_INDEX: '8' + LOCATION_FOCUS_SOURCE_TYPE_INDEX: '3' + LOCATION_FOCUS_YEAR_INDEX: '4' + LOCATION_FOCUS_MONTH_INDEX: '5' + LOCATION_FOCUS_DAY_INDEX: '6' + LOCATION_FOCUS_LOCATION_INDEX: '7' + LOCATION_FOCUS_DATA_TYPE_INDEX: '8' + GROUP_FOCUS_YEAR_INDEX: '3' + GROUP_FOCUS_MONTH_INDEX: '4' + GROUP_FOCUS_DAY_INDEX: '5' + GROUP_FOCUS_GROUP_INDEX: '6' +input: +# The input to the group_path module must be a join between the group_assignment module and the union of any/all +# data repos that are currently in a location focus structure or a (different/L1+ dependency) group focus structure + join: + - pfs: + # name must be GROUP_ASSIGNMENT_PATH + name: GROUP_ASSIGNMENT_PATH + repo: nitrate_group_assignment + glob: /nitrate-surfacewater/(*/*/*) + joinOn: $1 + - union: + - pfs: + # Any/all repos in location focus name must be named LOCATION_FOCUS_PATH + name: LOCATION_FOCUS_PATH + repo: sunav2_fill_date_gaps + glob: /sunav2/(*/*/*) + joinOn: $1 +# - pfs: +# # Any/all repos in L1+ dependency group focus name must be named GROUP_FOCUS_PATH +# name: GROUP_FOCUS_PATH +# repo: +# glob: /(*/*/*) +# joinOn: $1 +parallelism_spec: + constant: 5 +autoscaling: true +resource_requests: + memory: 600M + cpu: 0.4 +resource_limits: + memory: 2G + cpu: 1.2 +sidecar_resource_requests: + memory: 3G + cpu: 1 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/gke-ephemeral-storage-local-ssd: "true" + nodepool.neonscience.org/pipeline: "yes" + cloud.google.com/gke-spot: "true" +pod_spec: |- + { "tolerations": [ + { + "key": "nodepool.neonscience.org/pipeline", + "operator": "Exists" + }, + { + "effect": "NoSchedule", + "key": "cloud.google.com/gke-spot", + "operator": "Exists" + } + ] } diff --git a/pipe/nitrate/nitrate_level1_group_consolidate_srf.yaml b/pipe/nitrate/nitrate_level1_group_consolidate_srf.yaml new file mode 100644 index 000000000..da3e25e72 --- /dev/null +++ b/pipe/nitrate/nitrate_level1_group_consolidate_srf.yaml @@ -0,0 +1,214 @@ +--- +pipeline: + name: nitrate_level1_group_consolidate_srf +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-levl1-grp-cons-srf:v2.2.1 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + # + # Refresh interim directories with each datum (otherwise they persist and cause probs) + rm -rf /tmp/interimA + rm -rf /tmp/interimB + rm -rf /tmp/pfs/interimC + mkdir /tmp/interimA + mkdir /tmp/interimB + mkdir -p /tmp/pfs/interimC + # + # Set some environment variables for the first module + export OUT_PATH=$OUT_PATH_1 + # + # Run first module - filter-joiner (using environment variables below as input parameters) + python3 -m filter_joiner.filter_joiner_main + # Set some environment variables for the second module + export OUT_PATH=$OUT_PATH_2 + export CONFIG=$CONFIG2 + # + # Run second module - filter-joiner to bring in SRF (using environment variables below as input parameters) + python3 -m filter_joiner.filter_joiner_main + # Clean up 1st interim directory (this is the only one we can clean up bc the rest use symlinks) + rm -rf /tmp/interimA + # Set some environment variables for the 3rd module + export OUT_PATH=$OUT_PATH_3 + # + # Run third module - level 1 consolidate (using environment variables below as input parameters) + python3 -m level1_consolidate.level1_consolidate_main + # + # Run fourth module - pub workbook loader (using environment variables below as input parameters) + python3 -m pub_workbook_loader.pub_workbook_loader_main + # + # Run fifth and final module - create pub tables and apply science review flags (if any) + Rscript ./flow.pub.tabl.srf.R \ + DirIn=/tmp/pfs/interimC \ + DirOut=/pfs/out \ + DirErr=/pfs/out/errored_datums \ + "DirData=stats|quality_metrics" \ + PathPubWb=$PUB_WORKBOOKS \ + "DirSubCopy=science_review_flags|group|location" + # + # + # Export Level 1 data to bucket + export OUT_PATH=/pfs/out + linkdir=$(mktemp -d) + shopt -s globstar + out_parquet_glob="${OUT_PATH}/**/*.parquet" + # Example: /2024/01/18/par-quantum-line_UKFS001000/data/par-quantum-line_UKFS001000_2024-01-18_PARQL_1min_001.parquet + echo "Linking output files to ${linkdir}" + #set -x # Echo commands to output for debugging + fname="" + for f in $out_parquet_glob; do + if [[ -f "$f" ]]; then + # Parse the path + [[ "$f" =~ ^$OUT_PATH/([0-9]+)/([0-9]+)/([0-9]+)/(${GROUP_PREFIX}_[A-Za-z0-9]+)/data/(.*)$ ]] + fyear="${BASH_REMATCH[1]}" + fmonth="${BASH_REMATCH[2]}" + fday="${BASH_REMATCH[3]}" + fgroup="${BASH_REMATCH[4]}" + fname="${BASH_REMATCH[5]}" + # Now get the timing index from the file name + [[ "$fname" =~ ^${GROUP_PREFIX}_[A-Za-z0-9]+_${fyear}-${fmonth}-${fday}_[A-Za-z0-9]+_([A-Za-z0-9]+)+_([A-Za-z0-9]+)_([A-Za-z0-9]+).parquet ]] + avg_int="${BASH_REMATCH[3]}" + #Form the output path and link + outdir="${linkdir}/v2/${GROUP_PREFIX}/${avg_int}/group=${fgroup}/ms=${fyear}-${fmonth}" + mkdir -p "${outdir}" + ln -s "${f}" "${outdir}/${fname}" + fi + done + #set +x + if [[ "${fname}" ]]; then + echo "Syncing files to bucket" + rclone \ + --no-check-dest \ + --copy-links \ + --gcs-bucket-policy-only \ + --gcs-no-check-bucket \ + copy \ + "${linkdir}" \ + ":gcs://${BUCKET_NAME}" + echo "Removing temporary files" + rm -rf $linkdir + fi + EOF + env: + # Environment variables for 1st filter-joiner. Need to join by day again here because an outer join was used on + # these repos in order to pull them in with or without the SRF + CONFIG: | + --- + # In Pachyderm root will be index 0, 'pfs' index 1, and the repo name index 2. + # Metadata indices will typically begin at index 3. + # Use unix-style glob pattern to select the desired directories in each repo + input_paths: + - path: + name: DATA_PATH + # Filter for data directory + glob_pattern: /pfs/DATA_PATH/*/*/*/*/** + # Join on Y/M/D/group ID + join_indices: [3,4,5,6] + - path: + name: GROUP_PATH + # Grab group information + glob_pattern: /pfs/GROUP_PATH/*/*/*/*/group/** + # Join on Y/M/D/group ID + join_indices: [3,4,5,6] + OUT_PATH_1: /tmp/interimA # Transfered to OUT_PATH for the first module + RELATIVE_PATH_INDEX: "3" # This is shared among the 2 filter joiners and consolidation module + LINK_TYPE: COPY # options are COPY or SYMLINK. Use COPY for combined modules. Also shared with 2nd & 3rd modules + LOG_LEVEL: DEBUG # Shared among all modules + +# Below are the environment variables for 2nd filter-joiner bringing in the Science review flags +# Can't do this in first filter-joiner bc there are only data in the srf assignment +# repo for groups that have applicable SRFs for the day. Need to pass through the +# consolidated output with an outer join. + CONFIG2: | + --- + # In Pachyderm root will be index 0, 'pfs' index 1, and the repo name index 2. + # Metadata indices will typically begin at index 3. + # Use unix-style glob pattern to select the desired directories in each repo + input_paths: + - path: + name: CONSOLIDATED_PATH + # Filter for data directory + glob_pattern: /tmp/interimA/*/*/*/*/** + # Join on group ID (already joined below by day) + join_indices: [6] + outer_join: True + - path: + name: SRF_PATH + # Filter for data directory + glob_pattern: /pfs/SRF_PATH/*/*/*/*/** + # Join on group ID(already joined below by day) + join_indices: [6] + OUT_PATH_2: /tmp/interimB # This will be transfered to OUT_PATH for the this module + +# Environment variables for level 1 consolidation + IN_PATH: /tmp/interimB + OUT_PATH_3: /tmp/pfs/interimC # This will be transfered to OUT_PATH for the second module + GROUP_INDEX: "6" # path index of names of group-level metadata to include in the output + GROUP_METADATA_INDEX: "7" + GROUP_METADATA_NAMES: group,science_review_flags + # path index of names of directories to include in the output + DATA_TYPE_INDEX: "9" + DATA_TYPE_NAMES: location,stats,quality_metrics + +# Environment variables for pub_workbook_loader + OUT_PATH_WORKBOOK: /tmp/pub_workbooks + PRODUCTS: NEON.DOM.SITE.DP1.20033.001 # Format: NEON.DOM.SITE.DPX.XXXXX.XXX,NEON.DOM.SITE.DPX.XXXXX.XXX,etc + +# Environment variables for pub table and srf module + PUB_WORKBOOKS: /tmp/pub_workbooks + PARALLELIZATION_INTERNAL: '2' + +# Environment variables for the L1 archiver + GROUP_PREFIX: nitrate-surfacewater # no ending "_" + + secrets: + - name: pdr-secret + mount_path: /var/db_secret + - name: l1-bucket + env_var: BUCKET_NAME + key: L1_BUCKET + +input: + join: + - pfs: + name: DATA_PATH + repo: nitrate_null_gap_ucrt + glob: /(*/*/*) + joinOn: $1 + outer_join: true # Need outer join to pull in with or without SRFs + empty_files: false # Make sure this is false for LINK_TYPE=COPY + - pfs: + name: GROUP_PATH + repo: nitrate_group_path + glob: /(*/*/*) + joinOn: $1 + outer_join: true # Need outer join to pull in with or without SRFs + empty_files: false # Make sure this is false for LINK_TYPE=COPY + - pfs: + name: SRF_PATH + repo: nitrate_srf_assignment + glob: /(*/*/*) + joinOn: $1 + empty_files: false # Make sure this is false for LINK_TYPE=COPY +parallelism_spec: + constant: 5 +autoscaling: true +resource_requests: + memory: 1G + cpu: 2.2 +resource_limits: + memory: 2G + cpu: 3.5 +sidecar_resource_requests: + memory: 3G + cpu: 0.5 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/nitrate/nitrate_null_gap_ucrt.yaml b/pipe/nitrate/nitrate_null_gap_ucrt.yaml new file mode 100644 index 000000000..f0906487c --- /dev/null +++ b/pipe/nitrate/nitrate_null_gap_ucrt.yaml @@ -0,0 +1,135 @@ +--- +pipeline: + name: nitrate_null_gap_ucrt +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-sunav2-ucrt-group:sha-2025667 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + + # Refresh interim directories with each datum (otherwise they persist and cause probs) + rm -r -f /tmp/pfs/filter_joined + rm -rf /tmp/pfs/interimUcrt + mkdir -p /tmp/pfs/filter_joined + mkdir /tmp/pfs/interimUcrt + + + # Run first module - filter-joiner (using environment variables below as input parameters) + python3 -m filter_joiner.filter_joiner_main + + # Run second module - uncertianty + Rscript ./flow.sunav2.exp.uncert.R \ + DirIn=/tmp/pfs/filter_joined \ + DirOut=/tmp/pfs/interimUcrt \ + DirErr=/pfs/out/errored_datums \ + SchmStats=$FILE_SCHEMA_UCRT \ + "DirSubCopy=group|location|quality_metrics" + + # Run third module - insufficient data + Rscript ./flow.qf.insuff.data.R \ + DirIn=/tmp/pfs/interimUcrt \ + DirOut=/pfs/out \ + DirErr=/pfs/out/errored_datums \ + minPoints=5 \ + SchmQMs=$FILE_SCHEMA_INSUF \ + "DirSubCopy=location" + + EOF + env: + # Environment variables for 1st filter-joiner. Need to join by day again here because an outer join was used on + # these repos in order to pull them in with or without the SRF + CONFIG: | + --- + # In Pachyderm root will be index 0, 'pfs' index 1, and the repo name index 2. + # Metadata indices will typically begin at index 3. + # Use unix-style glob pattern to select the desired directories in each repo + input_paths: + - path: + name: QUALITY_METRICS_PATH + # Filter for data directory + glob_pattern: /pfs/QUALITY_METRICS_PATH/*/*/*/*/** + # Join on Y/M/D/group ID + join_indices: [3,4,5,6] + - path: + name: STATISTICS_PATH + # Filter for data directory + glob_pattern: /pfs/STATISTICS_PATH/*/*/*/*/** + # Join on Y/M/D/group ID + join_indices: [3,4,5,6] + - path: + name: GROUP_PATH + # Grab group information + glob_pattern: /pfs/GROUP_PATH/*/*/*/*/group/** + # Join on Y/M/D/group ID + join_indices: [3,4,5,6] + - path: + name: GROUP_PATH + # Grab location information + glob_pattern: /pfs/GROUP_PATH/*/*/*/*/*/*/location/** + # Join on Y/M/D/group ID + join_indices: [3,4,5,6] + - path: + name: GROUP_PATH + # Grab location information + glob_pattern: /pfs/GROUP_PATH/*/*/*/*/*/*/uncertainty*/** + # Join on Y/M/D/group ID + join_indices: [3,4,5,6] + OUT_PATH: /tmp/pfs/filter_joined + RELATIVE_PATH_INDEX: "3" # This is shared among the 2 filter joiners and consolidation module + LINK_TYPE: COPY # options are COPY or SYMLINK. Use COPY for combined modules. Also shared with 2nd & 3rd modules + LOG_LEVEL: INFO # Shared among all modules + +input: + cross: + - pfs: + name: FILE_SCHEMA_UCRT + repo: nitrate_avro_schemas + glob: /nitrate/nitrate_ucrt.avsc + - pfs: + name: FILE_SCHEMA_INSUF + repo: nitrate_avro_schemas + glob: /nitrate/nitrate_insufficient_data.avsc + - join: + - pfs: + name: QUALITY_METRICS_PATH + repo: nitrate_qm_group_and_compute + glob: /(*/*/*) + joinOn: $1 + outer_join: true # Need outer join to pull in with or without SRFs + empty_files: false # Make sure this is false for LINK_TYPE=COPY + - pfs: + name: STATISTICS_PATH + repo: nitrate_stats_group_and_compute + glob: /(*/*/*) + joinOn: $1 + outer_join: true # Need outer join to pull in with or without SRFs + empty_files: false # Make sure this is false for LINK_TYPE=COPY + - pfs: + name: GROUP_PATH + repo: nitrate_group_path + glob: /(*/*/*) + joinOn: $1 + outer_join: true # Need outer join to pull in with or without SRFs + empty_files: false # Make sure this is false for LINK_TYPE=COPY +parallelism_spec: + constant: 5 +autoscaling: true +resource_requests: + memory: 1G + cpu: 2.2 +resource_limits: + memory: 2G + cpu: 3.5 +sidecar_resource_requests: + memory: 3G + cpu: 0.5 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/nitrate/nitrate_pub_egress_and_publish.yaml b/pipe/nitrate/nitrate_pub_egress_and_publish.yaml new file mode 100644 index 000000000..b0defc9e5 --- /dev/null +++ b/pipe/nitrate/nitrate_pub_egress_and_publish.yaml @@ -0,0 +1,173 @@ +--- +pipeline: + name: nitrate_pub_egress_and_publish +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-pub-egrs-publ:v5.0.0 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + + curl -o $OUT_MDP_SITES https://raw.githubusercontent.com/NEONScience/NEON-IS-data-processing-inputs/refs/heads/main/mdp_sites_list.txt + + # Run first module - pub_egress (using environment variables below as input parameters) + if [[ $(echo $DATA_PATH) ]]; then + python3 -m pub_egress.pub_egress_main + fi + # If there is output, egress it + if ls $OUT_PATH/NEON.DOM.SITE* 1> /dev/null 2>&1; then + for DIR in $OUT_PATH/NEON.DOM.SITE*; do + echo "Starting non-MDP sites==================" + echo "Syncing $DIR to bucket $BUCKET_NAME" + # Parse the product + [[ "$DIR" =~ ^$OUT_PATH/(.*)$ ]] + PRODUCT="${BASH_REMATCH[1]}" + echo "PRODUCT is $PRODUCT" + rclone \ + --no-check-dest \ + --copy-links \ + --gcs-bucket-policy-only \ + --gcs-no-check-bucket \ + copy \ + "${OUT_PATH}/${PRODUCT}" \ + ":gcs://${BUCKET_NAME}/${PRODUCT}" + done + echo "============ Done for non-MDP sites" + else + echo "No pub output to egress" + fi + + # + # Do the same for MDP sites if mdp sites exists in the output + # Check to see if the output need to be sent to the staging or not + # For example, BUCKET_NAME_MDP: neon-aa-dev-md03-staging/Publication for staging SITE=MD03 + # Read mdp_site_list from githubusercontent + # + if ls $OUT_PATH_MDP/NEON.DOM.SITE* 1> /dev/null 2>&1; then + for DIR in $OUT_PATH_MDP/NEON.DOM.SITE*; do + echo "=" + echo "Starting MDP sites==================" + # Parse the product + [[ "$DIR" =~ ^$OUT_PATH_MDP/(.*)$ ]] + PRODUCT="${BASH_REMATCH[1]}" + echo "PRODUCT is $PRODUCT" + for DIR_SUB in $DIR/MD*; do + echo "DIR is $DIR" + echo "DIR_SUB is $DIR_SUB" + # Parse the site + [[ "$DIR_SUB" =~ ^$DIR/(.*)$ ]] + SITE="${BASH_REMATCH[1]}" + # to change to lowercase in case + # export site="${SITE,,}" + # + while read -r mdpsite prod staging bucket_name + do + if [[ $SITE == $mdpsite ]] && [[ $prod == $PROD ]] && [[ $staging == $STAGING ]]; then + BUCKET_NAME_MDP=$bucket_name + echo "$mdpsite products to $bucket_name bucket" + else echo "**** No products available for $mdpsite to $bucket_name bucket" + fi + done < $OUT_MDP_SITES + echo "Syncing $SITE products directory $DIR to mdp bucket $BUCKET_NAME_MDP" + done + rclone \ + --no-check-dest \ + --copy-links \ + --gcs-bucket-policy-only \ + --gcs-no-check-bucket \ + copy \ + "${OUT_PATH_MDP}/${PRODUCT}" \ + ":gcs://${BUCKET_NAME_MDP}/${PRODUCT}" + done + echo "============ Done for MDP sites" + cp -f "$OUT_MDP_SITES" $OUT_PATH_MDP/mdp_sites.txt + else + echo "No MDP pub output to egress" + fi + + # Run second module - pub_upload (using environment variables below as input parameters) + echo "run pub uploader ..." + export DATA_PATH=$OUT_PATH + python3 -m pub_uploader.pub_uploader_main + # Run third module - pub_sync (using environment variables below as input parameters) + echo "run pub sync sites ..." + python3 -m pub_sync.pub_sync_main + EOF + env: + LOG_LEVEL: INFO + + # Environment variables for 1st module: pub_egress. The pub bucket and egress url are specified via secrets below. + OUT_PATH: "/pfs/out" + OUT_PATH_MDP: "/pfs/out/mdp" + OUT_MDP_SITES: "/tmp/mdp_sites.txt" + # ERR_PATH can be changed, it is user specified + ERR_PATH: /pfs/out/errored_datums + STARTING_PATH_INDEX: "2" # starting path index to process pub packages. Use "2" to process the whole repo with path structure /pfs/repo_name/... + PROD: "false" # false for non-prod, true for prod + STAGING: "true" # The default is true. + + # Environment variables for 2nd module: pub_upload. + # DATA_PATH is set in the code above to the output from the egress module + # Uses STARTING_PATH_INDEX above + VERSION: 'pachyderm_v1' + CHANGE_BY: pachyderm + + # Environment variables for 3rd module: pub_sync. + # Uses DATE_PATH from input spec. DATA_PATH is set in the code above to the output from the egress module + # Uses CHANGE_BY above + DATE_PATH_YEAR_INDEX: "3" + DATE_PATH_MONTH_INDEX: "4" + DATA_PATH_PRODUCT_INDEX: "3" + DATA_PATH_SITE_INDEX: "4" + DATA_PATH_DATE_INDEX: "5" + DATA_PATH_PACKAGE_INDEX: "6" + PRODUCTS: NEON.DOM.SITE.DP1.20033.001 # CAN BE MULTIPLE, COMMA-SEPARATED + SITES: "all" # CAN BE MULTIPLE, COMMA-SEPARATED array of NEON site codes. "all" will find all sites with pub records in the database. + + secrets: + - name: pdr-secret + mount_path: /var/db_secret + - name: pub-bucket + env_var: BUCKET_NAME + key: BUCKET_NAME + - name: pub-bucket + env_var: EGRESS_URL + key: EGRESS_URL + +input: + group: + - join: + - pfs: + name: DATA_PATH + repo: nitrate_pub_format_and_package + # Glob must be at each intended pub datum (i.e. each site/year/month), grouped by month + glob: /*/*/(*/*) + joinOn: $1 + group_by: $1 + - pfs: + name: DATE_PATH + repo: nitrate_cron_monthly_and_pub_control + glob: /(*/*) + joinOn: $1 + outer_join: True # We want to run even if no data so pub_sync runs + group_by: $1 + empty_files: true +autoscaling: true +resource_requests: + memory: 500M + cpu: .5 +resource_limits: + memory: 1G + cpu: 1.3 +sidecar_resource_requests: + memory: 2G + cpu: 1.3 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/nitrate/nitrate_pub_format_and_package.yaml b/pipe/nitrate/nitrate_pub_format_and_package.yaml new file mode 100644 index 000000000..d3db6206c --- /dev/null +++ b/pipe/nitrate/nitrate_pub_format_and_package.yaml @@ -0,0 +1,163 @@ +--- +pipeline: + name: nitrate_pub_format_and_package +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-pub-grp-pack:v4.2.0 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + + # Refresh interim directories with each datum (otherwise they persist and cause probs) + rm -rf $OUT_PATH_TRANSFORMER + rm -rf $OUT_PATH_PACKAGER + rm -rf $OUT_PATH_PUBFILES + rm -rf $OUT_PATH_MAINTFILES + mkdir $OUT_PATH_TRANSFORMER + mkdir $OUT_PATH_PACKAGER + mkdir $OUT_PATH_PUBFILES + mkdir $OUT_PATH_MAINTFILES + + # Set some environment variables for the pub transformer module + export DATA_PATH=$GROUPED_PATH + export OUT_PATH=$OUT_PATH_TRANSFORMER + + # Run pub_workbook_loader to load pub workbooks for pub_transformer and os_table_loader. + python3 -m pub_workbook_loader.pub_workbook_loader_main + + # Run pub_transformer (using environment variables below as input parameters) + python3 -m pub_transformer.pub_transformer_main + + # Run pub_packager. Packager needs to be run at monthly glob. Get those paths. + export OUT_PATH=$OUT_PATH_PACKAGER + product_month_paths="${OUT_PATH_TRANSFORMER}/*/*/*" + for path in $product_month_paths; do + echo "Processing product-month path $path" + export DATA_PATH=$path + python3 -m pub_packager.pub_packager_main + done + + # Clean up after pub_transformer. + rm -rf $OUT_PATH_TRANSFORMER + + # Run pub_files. + export OUT_PATH=$OUT_PATH_PUBFILES + export IN_PATH=$OUT_PATH_PACKAGER + export LOCATION_PATH=$GROUPED_PATH + python3 -m pub_files.main + + # Run os_table_loader for maintenance files + export IN_PATH=$OUT_PATH_PUBFILES + export OUT_PATH=$OUT_PATH_MAINTFILES + export WORKBOOK_PATH=$WORKBOOK_PATH + export PARTIAL_TABLE_NAME="maintenance" + export FILE_TYPE="csv" + export DB_CONFIG_SOURCE="mount" + export LOG_LEVEL=$LOG_LEVEL + export INPUT_PATH_PARSE_INDEX="3" + export DATA_PRODUCT_PATH_INDEX="3" + export SITE_PATH_INDEX="4" + export YEAR_PATH_INDEX="5" + export MONTH_PATH_INDEX="6" + export PACKAGE_TYPE_PATH_INDEX="7" + python3 -m os_table_loader.publication_main + + # Run os_table_loader for SUNA clean/cal files + export IN_PATH=$OUT_PATH_MAINTFILES + export OUT_PATH="/pfs/out" + export WORKBOOK_PATH=$WORKBOOK_PATH + export PARTIAL_TABLE_NAME="sunaCleanAndCal" + export FILE_TYPE="csv" + export DB_CONFIG_SOURCE="mount" + export LOG_LEVEL=$LOG_LEVEL + export INPUT_PATH_PARSE_INDEX="3" + export DATA_PRODUCT_PATH_INDEX="3" + export SITE_PATH_INDEX="4" + export YEAR_PATH_INDEX="5" + export MONTH_PATH_INDEX="6" + export PACKAGE_TYPE_PATH_INDEX="7" + python3 -m os_table_loader.publication_main + + + EOF + env: + # Environment variables for 2nd (part A) module: pub_workbook_loader. + OUT_PATH_WORKBOOK: "/tmp/pub_workbooks" + PRODUCTS: NEON.DOM.SITE.DP1.20033.001 # Format: NEON.DOM.SITE.DPX.XXXXX.XXX,NEON.DOM.SITE.DPX.XXXXX.XXX,etc + + # Environment variables for 2nd module (part B): pub_transformer. + LOG_LEVEL: INFO + PRODUCT_INDEX: '3' # input path index of the data product identifier. Also shared with pub_packager. + YEAR_INDEX: '4' + MONTH_INDEX: '5' + DAY_INDEX: '7' + DATA_TYPE_INDEX: '8' + GROUP_METADATA_DIR: group + DATA_PATH_PARSE_INDEX: '2' + OUT_PATH_TRANSFORMER: "/tmp/pub_transformer" + WORKBOOK_PATH: "/tmp/pub_workbooks" + + # Environment variables for module: pub_packager. Also uses PRODUCT_INDEX from pub_transformer. + OUT_PATH_PACKAGER: "/tmp/pub_packager" + ERR_PATH_PACKAGER: "/pfs/out/packager/errored_datums" + PUBLOC_INDEX: '6' # input path index of the pub package location (typically the site) + DATE_INDEX: '4' # Starting index of date in path (i.e. year index) + DATE_INDEX_LENGTH: '2' # length of date index for pub package (should be 2 for monthly) + SORT_INDEX: '10' # File name index corresponding to date field (delimiter = .) + + # Environment variables for module: pub_files. + OUT_PATH_PUBFILES: "/tmp/pub_files" + RELATIVE_PATH_INDEX: '3' + DB_SECRETS_PATH: /var/db_secret + GITHUB_PEM_PATH: /var/github_secret/key + GITHUB_APP_ID: '300002' + GITHUB_INSTALLATION_ID: '34765458' + GITHUB_HOST: https://api.github.com + GITHUB_REPO_OWNER: NEONScience + GITHUB_README_REPO: neon-metadata-docs + GITHUB_README_PATH: readme/template.j2 + GITHUB_EML_REPO: neon-metadata-docs + GITHUB_EML_BOILERPLATE_PATH: eml/neon_components/NEON_EML_Boilerplate.xml + GITHUB_EML_CONTACT_PATH: eml/neon_components/neon_contact.xml + GITHUB_EML_INTELLECTUAL_RIGHTS_PATH: eml/neon_components/neon_intellectualRights.xml + GITHUB_EML_UNIT_TYPES_PATH: eml/neon_components/neon_unitTypes.xml + GITHUB_EML_UNITS_PATH: eml/neon_components/NEON_units.txt + GITHUB_BRANCH: main + + # Environment variables for module: ais_maintenance table loader + OUT_PATH_MAINTFILES: "/tmp/maint_out" + + secrets: + - name: pdr-secret + mount_path: /var/db_secret + - name: github-neonscience-app-secret + mount_path: /var/github_secret + +input: + pfs: + name: GROUPED_PATH + repo: nitrate_pub_group + # Glob must be product-monthly or product-site-monthly. Product-site-month datums reduce unneccesary republication. + # path structure is e.g. DP1.00098.001/2023/04/CPER/04 (product/year/month/site/day) + glob: /*/*/*/* +parallelism_spec: + constant: 5 +autoscaling: true +resource_requests: + memory: 400M + cpu: 1.2 +resource_limits: + memory: 800M + cpu: 1.2 +sidecar_resource_requests: + memory: 3.5G + cpu: 0.4 +datum_set_spec: + number: 5 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/nitrate/nitrate_pub_group.yaml b/pipe/nitrate/nitrate_pub_group.yaml new file mode 100644 index 000000000..c20de26de --- /dev/null +++ b/pipe/nitrate/nitrate_pub_group.yaml @@ -0,0 +1,53 @@ +--- +pipeline: + name: nitrate_pub_group +transform: +# image_pull_secrets: [battelleecology-quay-read-all-pull-secret] + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-pub-grp-pack:v4.2.0 + cmd: ["/bin/bash"] + stdin: + - "#!/bin/bash" + - '# Run first module - pub_grouper (using environment variables below as input parameters)' + - python3 -m pub_grouper.pub_grouper_main + env: + # Environment variables for 1st module: pub_grouper. + LOG_LEVEL: INFO + OUT_PATH: "/pfs/out" + ERR_PATH_GROUPER: "pfs/out/errored_datums" + YEAR_INDEX: '3' + GROUP_INDEX: '6' + DATA_TYPE_INDEX: '7' # Also shared with pub_transform + GROUP_METADATA_DIR: group + PUBLOC_KEY: site + LINK_TYPE: SYMLINK + +input: + join: + - pfs: + name: DATA_PATH + repo: nitrate_level1_group_consolidate_srf + # Glob should be monthly and joined with pub_control to hold pub until month is likely complete + glob: /(*/*) + joinOn: $1 + - pfs: + repo: nitrate_cron_monthly_and_pub_control + glob: /(*/*) + joinOn: $1 + empty_files: true +parallelism_spec: + constant: 2 +autoscaling: true +resource_requests: + memory: 1.8G + cpu: 1 +resource_limits: + memory: 2.5G + cpu: 1.5 +sidecar_resource_requests: + memory: 3G + cpu: 1 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/nitrate/nitrate_qm_group_and_compute.yaml b/pipe/nitrate/nitrate_qm_group_and_compute.yaml new file mode 100644 index 000000000..7b65a30d2 --- /dev/null +++ b/pipe/nitrate/nitrate_qm_group_and_compute.yaml @@ -0,0 +1,68 @@ +--- +pipeline: + name: nitrate_qm_group_and_compute +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-qaqc-qm-grp:v2.1.1 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + + # ---- Run module - quality metrics (averaged) ---- + Rscript ./flow.qaqc.qm.R \ + DirIn=$QAQC_PLAUSIBILITY_PATH \ + DirOut=/pfs/out \ + DirErr=/pfs/out/errored_datums \ + "WndwAgr=015" \ + "WghtAlphBeta=2|1" \ + Thsh=0.2 \ + FileSchmQm=$FILE_SCHEMA_QM \ + "GrpQfAlph1=nitrate:nitrateRangeQF|nitrateStepQF|nitrateSpikeQF|nitratePersistenceQF|nitrateHumidityQF|nitrateLampTempQF|nitrateLightDarkRatioQF|nitrateLampStabilizeQF" \ + "GrpQfBeta1=nitrate:nitrateRangeQF|nitrateStepQF|nitrateSpikeQF" + env: + LOG_LEVEL: DEBUG +input: + cross: + - pfs: + name: FILE_SCHEMA_QM + repo: nitrate_avro_schemas + glob: /nitrate/nitrate_quality_metrics.avsc + - pfs: + name: QAQC_PLAUSIBILITY_PATH + repo: nitrate_flags_specific + glob: /*/*/*/* +parallelism_spec: + constant: 5 +autoscaling: true +resource_requests: + memory: 500M + cpu: 1.2 +resource_limits: + memory: 1G + cpu: 2 +sidecar_resource_requests: + memory: 2G + cpu: 0.5 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/gke-ephemeral-storage-local-ssd: "true" + nodepool.neonscience.org/pipeline: "yes" + cloud.google.com/gke-spot: "true" +pod_spec: |- + { "tolerations": [ + { + "key": "nodepool.neonscience.org/pipeline", + "operator": "Exists" + }, + { + "effect": "NoSchedule", + "key": "cloud.google.com/gke-spot", + "operator": "Exists" + } + ] } diff --git a/pipe/nitrate/nitrate_srf_assignment.yaml b/pipe/nitrate/nitrate_srf_assignment.yaml new file mode 100644 index 000000000..dbea14b0d --- /dev/null +++ b/pipe/nitrate/nitrate_srf_assignment.yaml @@ -0,0 +1,58 @@ +--- +pipeline: + name: nitrate_srf_assignment +transform: + cmd: ["/bin/bash"] + stdin: + - "#!/bin/bash" + - export ERR_PATH="/pfs/out/errored_datums$FILE_YEAR" + - Rscript + ./flow.srf.asgn.R + DirIn=$DIR_IN + DirOut=/pfs/out + DirErr=$ERR_PATH + FileYear=$FILE_YEAR + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-srf-asgn:v1.1.2 + env: + LOG_LEVEL: INFO +input: + cross: + - pfs: + name: DIR_IN + repo: nitrate_srf_loader + glob: /* + - pfs: + name: FILE_YEAR + repo: sunav2_cron_daily_and_date_control + glob: /data_year*.txt +parallelism_spec: + constant: 4 +autoscaling: true +resource_requests: + memory: 200M + cpu: 0.8 +resource_limits: + memory: 800M + cpu: 1.5 +sidecar_resource_requests: + memory: 3G + cpu: 0.2 +datum_set_spec: + number: 10 +scheduling_spec: + node_selector: + cloud.google.com/gke-ephemeral-storage-local-ssd: "true" + nodepool.neonscience.org/pipeline: "yes" + cloud.google.com/gke-spot: "true" +pod_spec: |- + { "tolerations": [ + { + "key": "nodepool.neonscience.org/pipeline", + "operator": "Exists" + }, + { + "effect": "NoSchedule", + "key": "cloud.google.com/gke-spot", + "operator": "Exists" + } + ] } diff --git a/pipe/nitrate/nitrate_srf_loader.yaml b/pipe/nitrate/nitrate_srf_loader.yaml new file mode 100644 index 000000000..7e1d59cd9 --- /dev/null +++ b/pipe/nitrate/nitrate_srf_loader.yaml @@ -0,0 +1,51 @@ +pipeline: + name: nitrate_srf_loader +transform: + cmd: + - /bin/bash + env: + GROUP_PREFIX: nitrate-surfacewater_ + LOG_LEVEL: INFO + OUT_PATH: /pfs/out + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-srf-loader:v1.0.0 + # image_pull_secrets: + # - battelleecology-quay-read-all-pull-secret + secrets: + - name: pdr-secret + mount_path: /var/db_secret + stdin: + - '#!/bin/bash' + - python3 -m srf_loader.srf_loader_main +input: + pfs: + branch: master + empty_files: true + glob: /* + repo: sunav2_cron_daily_and_date_control_tick +autoscaling: true +resource_requests: + memory: 50M + cpu: 0.1 +resource_limits: + memory: 300M + cpu: 1.5 +sidecar_resource_requests: + memory: 500M + cpu: 0.3 +scheduling_spec: + node_selector: + cloud.google.com/gke-ephemeral-storage-local-ssd: "true" + nodepool.neonscience.org/pipeline: "yes" + cloud.google.com/gke-spot: "true" +pod_spec: |- + { "tolerations": [ + { + "key": "nodepool.neonscience.org/pipeline", + "operator": "Exists" + }, + { + "effect": "NoSchedule", + "key": "cloud.google.com/gke-spot", + "operator": "Exists" + } + ] } diff --git a/pipe/nitrate/nitrate_stats_group_and_compute.yaml b/pipe/nitrate/nitrate_stats_group_and_compute.yaml new file mode 100644 index 000000000..9ec23ab58 --- /dev/null +++ b/pipe/nitrate/nitrate_stats_group_and_compute.yaml @@ -0,0 +1,89 @@ +--- +pipeline: + name: nitrate_stats_group_and_compute +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-stat-basc-grp:v2.0.2 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + # Refresh interim directories with each datum (otherwise they persist and cause probs) + rm -r -f /tmp/pfs/filter_joined + mkdir -p /tmp/pfs/filter_joined + # Run first module - filter-joiner (using environment variables below as input parameters) + python3 -m filter_joiner.filter_joiner_main + # Run second module - basic stats + Rscript ./flow.stat.basc.R \ + DirIn=/tmp/pfs/filter_joined \ + DirOut=/pfs/out \ + DirErr=/pfs/out/errored_datums \ + WndwAgr=015 \ + FileSchmStat=$FILE_SCHEMA_STATS \ + "TermStat1=nitrate:mean|minimum|maximum|variance|numPts|stdEr" + EOF + env: + # Environment variables for filter-joiner + CONFIG: | + --- + # In Pachyderm root will be index 0, 'pfs' index 1, and the repo name index 2. + # Metadata indices will typically begin at index 3. + # Use unix-style glob pattern to select the desired directories in each repo + input_paths: + - path: + name: QAQC_PATH + # Filter for data & uncertainty_data directories + glob_pattern: /pfs/QAQC_PATH/*/*/*/*/*/*/data/** + # Join on named location (already joined below by day) + join_indices: [6] + - path: + name: UNCERTAINTY_PATH + # Filter for data directory + glob_pattern: /pfs/UNCERTAINTY_PATH/*/*/*/*/*/*/uncertainty*/** + # Join on named location (already joined below by day) + join_indices: [6] + OUT_PATH: /tmp/pfs/filter_joined + LOG_LEVEL: INFO + RELATIVE_PATH_INDEX: "3" + LINK_TYPE: COPY # options are COPY or SYMLINK. Use COPY for combined module. + # Environment variables for calibration module + PARALLELIZATION_INTERNAL: '5' # Option for stats module +input: + cross: + - pfs: + name: FILE_SCHEMA_STATS + repo: nitrate_avro_schemas + glob: /nitrate/nitrate_stats.avsc + - join: + - pfs: + name: QAQC_PATH + repo: nitrate_flags_specific + glob: /(*/*/*) + joinOn: $1 + empty_files: false # Make sure this is false for LINK_TYPE=COPY + - pfs: + name: UNCERTAINTY_PATH + repo: nitrate_group_path + glob: /(*/*/*) + joinOn: $1 + empty_files: false # Make sure this is false for LINK_TYPE=COPY +parallelism_spec: + constant: 5 +resource_requests: + memory: 1.8G + cpu: 6 +resource_limits: + memory: 3G + cpu: 7 +sidecar_resource_requests: + memory: 3G + cpu: 0.5 +autoscaling: true +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/nitrate/nitrate_thresh_select_ts_pad.yaml b/pipe/nitrate/nitrate_thresh_select_ts_pad.yaml new file mode 100644 index 000000000..a15e3a4de --- /dev/null +++ b/pipe/nitrate/nitrate_thresh_select_ts_pad.yaml @@ -0,0 +1,81 @@ +--- +pipeline: + name: nitrate_thresh_select_ts_pad +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-thsh-slct-ts-pad:v2.1.1 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + # Refresh interim directories with each datum (otherwise they persist and cause probs) + rm -rf /tmp/threshold_select + rm -rf /tmp/threshold_selectCopy + mkdir -p /tmp/threshold_select + # Run first module - threshold_select' + Rscript ./flow.thsh.slct.R \ + DirIn=$REPO_LOCATIONS \ + DirOut=/tmp/threshold_select \ + DirErr=/pfs/out/errored_datums \ + FileThsh=$FILE_THRESHOLDS \ + "TermCtxt1=nitrate" \ + "DirSubCopy=location|data|flags" + # Copy output to another interim folder to destroy links (cannot daisy chain links from pfs input to output) + cp -rL /tmp/threshold_select /tmp/threshold_selectCopy || : # Allow to fail without exit code (happens if step above produced no output) || : # Allow to fail without exit code (happens if step above produced no output) + rm -r -f /tmp/threshold_select + # Run second module - timeseries_padder + python3 -m timeseries_padder.timeseries_padder.variable_pad_main --yearindex 3 --monthindex 4 --dayindex 5 --locindex 8 --subdirindex 9 + EOF + env: + DATA_PATH: /tmp/threshold_selectCopy + OUT_PATH: /pfs/out + LOG_LEVEL: INFO + PAD_DIR: data + COPY_DIR: flags # Can be multiple, separated by commas without spaces. Directories other than the pad directory and threshold directory to copy to the output (e.g. location,flags). Set to something like 'none' if none other are desired. + RELATIVE_PATH_INDEX: '3' + PARALLELIZATION_INTERNAL: '1' # For threshold select module +output_branch: master +input: + cross: + - pfs: + name: REPO_LOCATIONS + repo: nitrate_group_path + glob: /*/*/* + - pfs: + name: FILE_THRESHOLDS + repo: nitrate_threshold + glob: /thresholds.json +parallelism_spec: + constant: 1 +autoscaling: true +resource_requests: + memory: 300M + cpu: 1.1 +resource_limits: + memory: 1.5G + cpu: 5 +sidecar_resource_requests: + memory: 3G + cpu: 0.7 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/gke-ephemeral-storage-local-ssd: "true" + nodepool.neonscience.org/pipeline: "yes" + cloud.google.com/gke-spot: "true" +pod_spec: |- + { "tolerations": [ + { + "key": "nodepool.neonscience.org/pipeline", + "operator": "Exists" + }, + { + "effect": "NoSchedule", + "key": "cloud.google.com/gke-spot", + "operator": "Exists" + } + ] } diff --git a/pipe/nitrate/nitrate_threshold.yaml b/pipe/nitrate/nitrate_threshold.yaml new file mode 100644 index 000000000..18faa901e --- /dev/null +++ b/pipe/nitrate/nitrate_threshold.yaml @@ -0,0 +1,53 @@ +--- +pipeline: + name: nitrate_threshold +transform: + # image_pull_secrets: + # - battelleecology-quay-read-all-pull-secret + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-threshold-loader:v1.0.0 + cmd: + - /bin/bash + stdin: + - '#!/bin/bash' + - python3 -m threshold_loader.threshold_loader_main + env: + OUT_PATH: /pfs/out + LOG_LEVEL: INFO + # Separate multiple terms with a pipe (|). Enter "none" to retrieve all terms + TERM: nitrate + CTXT: nitrate + secrets: + - name: pdr-secret + mount_path: /var/db_secret +input: + pfs: + repo: sunav2_cron_daily_and_date_control_tick + glob: /* + empty_files: true +autoscaling: true +resource_requests: + memory: 32M + cpu: 0.05 +resource_limits: + memory: 200M + cpu: 0.5 +sidecar_resource_requests: + memory: 200M + cpu: 0.5 +scheduling_spec: + node_selector: + cloud.google.com/gke-ephemeral-storage-local-ssd: "true" + nodepool.neonscience.org/pipeline: "yes" + cloud.google.com/gke-spot: "true" +pod_spec: |- + { "tolerations": [ + { + "key": "nodepool.neonscience.org/pipeline", + "operator": "Exists" + }, + { + "effect": "NoSchedule", + "key": "cloud.google.com/gke-spot", + "operator": "Exists" + } + ] } diff --git a/pipe/nitrate/pipe_list_nitrate.txt b/pipe/nitrate/pipe_list_nitrate.txt new file mode 100644 index 000000000..bf8f2e611 --- /dev/null +++ b/pipe/nitrate/pipe_list_nitrate.txt @@ -0,0 +1,17 @@ +nitrate_group_loader.yaml +nitrate_group_assignment.yaml +nitrate_srf_loader.yaml +nitrate_srf_assignment.yaml +nitrate_group_path.yaml +nitrate_threshold.yaml +nitrate_thresh_select_ts_pad.yaml +nitrate_analyze_pad_and_qaqc_plau.yaml +nitrate_flags_specific.yaml +nitrate_stats_group_and_compute.yaml +nitrate_null_gap_ucrt.yaml +nitrate_qm_group_and_compute.yaml +nitrate_level1_group_consolidate_srf.yaml +nitrate_cron_monthly_and_pub_control.yaml +nitrate_pub_group.yaml +nitrate_pub_format_and_package.yaml +nitrate_pub_egress_and_publish.yaml diff --git a/pipe/sunav2/data_source_sunav2_list_years.json b/pipe/sunav2/data_source_sunav2_list_years.json deleted file mode 100644 index 386f47bae..000000000 --- a/pipe/sunav2/data_source_sunav2_list_years.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "pipeline": { - "name": "data_source_sunav2_list_years" - }, - "transform": { - "image":"registry.access.redhat.com/ubi8/ubi-minimal:8.3", - "cmd": [ - "/bin/bash" - ], - "stdin": [ - "#!/bin/bash", - "ls $REPO_IN > /pfs/out/data_years.txt" - ] - }, - "input": { - "pfs": { - "name": "REPO_IN", - "repo": "data_source_sunav2", - "glob": "/sunav2", - "empty_files": true - } - }, - "enable_stats": false, - "standby": true, - "resource_requests": { - "memory": "1K", - "cpu": 0.01 - } -} diff --git a/pipe/sunav2/pipe_list_sunav2.txt b/pipe/sunav2/pipe_list_sunav2.txt index 01d0fb6df..ee116354d 100644 --- a/pipe/sunav2/pipe_list_sunav2.txt +++ b/pipe/sunav2/pipe_list_sunav2.txt @@ -1,2 +1,22 @@ sunav2_cron_daily_and_date_control.yaml +<<<<<<< HEAD +sunav2_logjam_list_files.yaml +sunav2_logjam_load_files.yaml +sunav2_logjam_assign_clean_files.yaml sunav2_data_source_kafka.yaml +sunav2_data_source_trino.yaml +sunav2_trino_data_parser.yaml +sunav2_fill_log_files.yaml +sunav2_calibration_list_files.yaml +sunav2_calibration_loader.yaml +sunav2_calibration_assignment.yaml +sunav2_calibration_group_and_convert.yaml +sunav2_location_asset.yaml +sunav2_location_asset_assignment.yaml +sunav2_location_loader.yaml +sunav2_location_active_dates_assignment.yaml +sunav2_location_group_and_restructure.yaml +sunav2_fill_date_gaps.yaml +======= +sunav2_data_source_kafka.yaml +>>>>>>> master diff --git a/pipe/sunav2/site-list.json b/pipe/sunav2/site-list.json index c331be1e6..6c1ad5f8f 100644 --- a/pipe/sunav2/site-list.json +++ b/pipe/sunav2/site-list.json @@ -53,7 +53,11 @@ }, { "site" : "HQTW", +<<<<<<< HEAD + "kafka_start_date" : "2023-06-01", +======= "kafka_start_date" : "2023-06-01" +>>>>>>> master }, { "site" : "KING", diff --git a/pipe/sunav2/sunav2_calibrated_location_group.yaml b/pipe/sunav2/sunav2_calibrated_location_group.yaml deleted file mode 100644 index a044e48ce..000000000 --- a/pipe/sunav2/sunav2_calibrated_location_group.yaml +++ /dev/null @@ -1,51 +0,0 @@ ---- -pipeline: - name: sunav2_calibrated_location_group -transform: -# image_pull_secrets: [battelleecology-quay-read-all-pull-secret] - image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-filt-join:v1.0.0 - cmd: ["/bin/bash"] - stdin: - - "#!/bin/bash" - - "python3 -m filter_joiner.filter_joiner_main" - env: - CONFIG: | - --- - # In Pachyderm root will be index 0, 'pfs' index 1, and the repo name index 2. - # Metadata indices will typically begin at index 3. - input_paths: - - path: - name: DATA_PATH - # Filter for data directory - glob_pattern: /pfs/DATA_PATH/sunav2/*/*/*/*/** - # Join on named location (already joined below by day) - join_indices: [7] - outer_join: true - - path: - name: LOCATION_PATH - # Filter for data directory - glob_pattern: /pfs/LOCATION_PATH/sunav2/*/*/*/*/** - # Join on named location (already joined below by day) - join_indices: [7] - OUT_PATH: /pfs/out - LOG_LEVEL: INFO - RELATIVE_PATH_INDEX: "3" -input: - join: - - pfs: - name: DATA_PATH - repo: sunav2_data_calibration_group - glob: /sunav2/(*)/(*)/(*) - joinOn: $1/$2/$3 - outer_join: true - empty_files: true - - pfs: - name: LOCATION_PATH - repo: sunav2_location_asset_assignment - glob: /sunav2/(*)/(*)/(*) - joinOn: $1/$2/$3 - empty_files: true -parallelism_spec: - constant: "1" -enable_stats: false -standby: true diff --git a/pipe/sunav2/sunav2_calibration_assignment.json b/pipe/sunav2/sunav2_calibration_assignment.json deleted file mode 100644 index bd8d52ee7..000000000 --- a/pipe/sunav2/sunav2_calibration_assignment.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "pipeline": { - "name": "sunav2_calibration_assignment" - }, - "transform": { - "cmd": [ - "Rscript", - "./flow.cal.asgn.R", - "DirIn=$DIR_IN", - "DirOut=/pfs/out", - "DirErr=/pfs/out/errored_datums", - "FileYear=$FILE_YEAR", - "PadDay=-1|1" - ], - "image": "us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-cal-asgn:v2.0.3", - "env": { - "LOG_LEVEL": "INFO" - } - }, - "input": { - "cross": [ - { - "pfs": { - "name": "DIR_IN", - "repo": "calibration", - "glob": "/sunav2/*" - } - }, - { - "pfs": { - "name": "FILE_YEAR", - "repo": "data_source_sunav2_list_years", - "glob": "/data_year*.txt" - } - } - ] - }, - "enable_stats": false, - "standby": true, - "resource_requests": { - "memory": "210M", - "cpu": 0.3 - }, - "parallelism_spec": { - "constant": "4" - } -} diff --git a/pipe/sunav2/sunav2_calibration_assignment.yaml b/pipe/sunav2/sunav2_calibration_assignment.yaml new file mode 100644 index 000000000..bfd45d287 --- /dev/null +++ b/pipe/sunav2/sunav2_calibration_assignment.yaml @@ -0,0 +1,46 @@ +--- +pipeline: + name: sunav2_calibration_assignment +transform: + cmd: ["/bin/bash"] + stdin: + - "#!/bin/bash" + - export ERR_PATH="/pfs/out/errored_datums$FILE_YEAR" + - Rscript + ./flow.cal.asgn.R + DirIn=$DIR_IN + DirOut=/pfs/out + DirErr=$ERR_PATH + FileYear=$FILE_YEAR + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-cal-asgn:v2.0.3 + # image_pull_secrets: + # - battelleecology-quay-read-all-pull-secret + env: + LOG_LEVEL: INFO +input: + cross: + - pfs: + name: DIR_IN + repo: sunav2_calibration_loader + glob: /sunav2/* + - pfs: + name: FILE_YEAR + repo: sunav2_cron_daily_and_date_control + glob: /data_year*.txt +parallelism_spec: + constant: 2 +autoscaling: true +resource_requests: + memory: 200M + cpu: 0.8 +resource_limits: + memory: 600M + cpu: 1.5 +sidecar_resource_requests: + memory: 3G + cpu: 1 +datum_set_spec: + number: 5 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_calibration_group_and_convert.yaml b/pipe/sunav2/sunav2_calibration_group_and_convert.yaml new file mode 100644 index 000000000..2d445c76e --- /dev/null +++ b/pipe/sunav2/sunav2_calibration_group_and_convert.yaml @@ -0,0 +1,103 @@ +--- +pipeline: + name: sunav2_calibration_group_and_convert +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-cal-grp-conv:v3.1.0 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + + # Refresh interim directories with each datum (otherwise they persist and cause probs) + rm -r -f /tmp/pfs/filter_joined + rm -rf $OUT_PATH + mkdir -p /tmp/pfs/filter_joined + mkdir -p $OUT_PATH # R modules must have pfs in the repo structure + + # Run filter-joiner for data (using environment variables below as input parameters) + python3 -m filter_joiner.filter_joiner_main + + # Run calibration conversion module + Rscript ./flow.cal.conv.R \ + DirIn=/tmp/pfs/filter_joined \ + DirOut=/pfs/out \ + DirErr=/pfs/out/errored_datums \ + TermQf=nitrate \ + FileSchmData=$FILE_SCHEMA_DATA \ + FileSchmQf=$FILE_SCHEMA_FLAGS \ + DirSubCopy=flags + EOF + env: + # Environment variables for filter-joiner. + CONFIG: | + --- + # Configuration for filter-joiner module that will bring together the data and calibrations + # In Pachyderm root will be index 0, 'pfs' index 1, and the repo name index 2. + # Metadata indices will typically begin at index 3. + input_paths: + - path: + name: DATA_PATH + # Filter for data directory + glob_pattern: /pfs/DATA_PATH/sunav2/*/*/*/*/** + # Join on named location (already joined below by source type and day) + join_indices: [7] + outer_join: true + - path: + name: CALIBRATION_PATH + # Filter for data directory + glob_pattern: /pfs/CALIBRATION_PATH/sunav2/*/*/*/*/** + # Join on named location (already joined below by day) + join_indices: [7] + OUT_PATH: /tmp/pfs/filter_joined # Note that R modules use "pfs" in the path structure to determine datums + LOG_LEVEL: INFO + RELATIVE_PATH_INDEX: "3" # Must be consistent across inputs + LINK_TYPE: COPY # options are COPY or SYMLINK. MUST BE SIMLINK IF USING COMBINED MODULE. + # Environment variables for calibration module + PARALLELIZATION_INTERNAL: '3' # Option for calibration conversion module +input: + cross: + - pfs: + name: FILE_SCHEMA_FLAGS + repo: sunav2_avro_schemas + glob: /sunav2/sunav2_calibration_flags.avsc + - pfs: + name: FILE_SCHEMA_DATA + repo: sunav2_avro_schemas + glob: /sunav2/sunav2_logfilled.avsc + # Outer join all repos so that varying sensors between kafka and trino loaders will all get joined with calibrations. Filter-joiner will narrow down. + - join: + - pfs: + name: CALIBRATION_PATH + repo: sunav2_calibration_assignment + glob: /sunav2/(*)/(*)/(*) + joinOn: $1/$2/$3 + outer_join: true + empty_files: false # Make sure to use false if LINK_TYPE=COPY. Can also be set to false for LINK_TYPE=SYMLINK. + - pfs: + name: DATA_PATH + repo: sunav2_fill_log_files + glob: /sunav2/(*)/(*)/(*) + joinOn: $1/$2/$3 + outer_join: true + empty_files: false # Make sure to use false if LINK_TYPE=COPY. Can also be set to false for LINK_TYPE=SYMLINK. +parallelism_spec: + constant: 5 +autoscaling: true +resource_requests: + memory: 1.5G + cpu: 3.3 +resource_limits: + memory: 3G + cpu: 4.5 +sidecar_resource_requests: + memory: 3G + cpu: 0.6 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_calibration_list_files.yaml b/pipe/sunav2/sunav2_calibration_list_files.yaml new file mode 100644 index 000000000..3d42f72ca --- /dev/null +++ b/pipe/sunav2/sunav2_calibration_list_files.yaml @@ -0,0 +1,30 @@ +--- +pipeline: + name: sunav2_calibration_list_files +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-cval-loader:v3.0.0 + cmd: ["/bin/bash"] + env: + CVAL_INGEST_BUCKET: neon-cval + OUT_PATH: /pfs/out + stdin: + - "#!/bin/bash" + - python3 -m calval_loader.calval_loader +input: + pfs: + repo: sunav2_cron_daily_and_date_control_tick + glob: /* + empty_files: true +autoscaling: true +resource_requests: + memory: 500M + cpu: 0.4 +resource_limits: + memory: 1G + cpu: 1.5 +sidecar_resource_requests: + memory: 1G + cpu: 0.5 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_calibration_loader.yaml b/pipe/sunav2/sunav2_calibration_loader.yaml new file mode 100644 index 000000000..71f17324b --- /dev/null +++ b/pipe/sunav2/sunav2_calibration_loader.yaml @@ -0,0 +1,50 @@ +--- +pipeline: + name: sunav2_calibration_loader +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-cval-loader:v3.0.0 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-sstrict-mode/ + set -euo pipefail + IFS=$'\n\t' + + python3 -m calval_loader.load_all_calval_files # run the calibration loader + + EOF + env: + CVAL_INGEST_BUCKET: neon-cval + LOG_LEVEL: INFO + OUT_PATH: /pfs/out + SOURCE_TYPE: "sunav2" + SCHEMA_NAME: "sunav2_raw" + STARTING_PATH_INDEX: "5" + secrets: + - name: pdr-secret + mount_path: /var/db_secret +input: + pfs: + name: IN_PATH + repo: sunav2_calibration_list_files + glob: /*/*/*/* + empty_files: true +parallelism_spec: + constant: 10 +autoscaling: true +resource_requests: + memory: 500M + cpu: 0.5 +resource_limits: + memory: 1G + cpu: 1.5 +sidecar_resource_requests: + memory: 800M + cpu: 0.2 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_cron_daily_and_date_control.yaml b/pipe/sunav2/sunav2_cron_daily_and_date_control.yaml index e262f3bbc..27900b7a2 100644 --- a/pipe/sunav2/sunav2_cron_daily_and_date_control.yaml +++ b/pipe/sunav2/sunav2_cron_daily_and_date_control.yaml @@ -11,8 +11,13 @@ transform: # kafka_start_date in the site-list file is the first full day from which data began streaming via Kafka # END_DATE can be set or unset (remove line entirely to unset). If unset, end date will be yesterday. OUT_PATH: /pfs/out +<<<<<<< HEAD + START_DATE: "2019-10-29" # Inclusive + END_DATE: "2019-12-02" # Inclusive +======= START_DATE: "2026-01-19" # Inclusive #END_DATE: "2019-12-02" # Inclusive +>>>>>>> master SOURCE_TYPE: "sunav2" stdin: - "#!/bin/bash" @@ -22,8 +27,13 @@ input: # This cron is the central driver for daily scheduled updates, such as data ingest and metadata loaders. - cron: name: tick +<<<<<<< HEAD + spec: "@never" + #spec: "0 7 * * *" # Run at 00:00 MST (07:00 GMT) +======= #spec: "@never" spec: "0 0 * * *" # Run at 00:00 GMT +>>>>>>> master overwrite: true - pfs: name: SITE_FILE diff --git a/pipe/sunav2/sunav2_cron_daily_and_date_control_kafka.yaml b/pipe/sunav2/sunav2_cron_daily_and_date_control_kafka.yaml new file mode 100644 index 000000000..bdcdf9aae --- /dev/null +++ b/pipe/sunav2/sunav2_cron_daily_and_date_control_kafka.yaml @@ -0,0 +1,43 @@ +--- +pipeline: + name: sunav2_cron_daily_and_date_control_kafka +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-date-cntl:v2.0.1 + cmd: ["/bin/bash"] + env: + # START_DATE ("YYYY-MM-DD") and END_DATE ("YYYY-MM-DD") indicate the max date range (inclusive) to create the /Y/M/D folder structure + # If START_DATE is not set (remove line entirely to unset), the start_date and/or the kafka_start_date for each site will be used, as indicated in the site-list json file + # start_date field in the site-list file is the earliest date to pull data from a site + # kafka_start_date in the site-list file is the first full day from which data began streaming via Kafka + # END_DATE can be set or unset (remove line entirely to unset). If unset, end date will be yesterday. + OUT_PATH: /pfs/out + START_DATE: "2025-08-25" # Inclusive + SOURCE_TYPE: "sunav2" + stdin: + - "#!/bin/bash" + - python3 -m cron_daily_and_date_control.cron_daily_and_date_control_main +input: + cross: + # This cron is the central driver for daily scheduled updates, such as data ingest and metadata loaders. + - cron: + name: tick + #spec: "@never" + spec: "0 7 * * *" # Run at 00:00 MST (07:00 GMT) + overwrite: true + - pfs: + name: SITE_FILE + repo: sunav2_site_list + glob: /site-list.json +resource_requests: + memory: 100M + cpu: 1 +resource_limits: + memory: 300M + cpu: 1.5 +sidecar_resource_requests: + memory: 500M + cpu: 0.5 +autoscaling: true +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_data_calibration_group.yaml b/pipe/sunav2/sunav2_data_calibration_group.yaml deleted file mode 100644 index 8e54d6158..000000000 --- a/pipe/sunav2/sunav2_data_calibration_group.yaml +++ /dev/null @@ -1,51 +0,0 @@ ---- -pipeline: - name: sunav2_data_calibration_group -transform: -# image_pull_secrets: [battelleecology-quay-read-all-pull-secret] - image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-filt-join:v1.0.0 - cmd: ["/bin/bash"] - stdin: - - "#!/bin/bash" - - "python3 -m filter_joiner.filter_joiner_main" - env: - CONFIG: | - --- - # In Pachyderm root will be index 0, 'pfs' index 1, and the repo name index 2. - # Metadata indices will typically begin at index 3. - input_paths: - - path: - name: DATA_PATH - # Filter for data directory - glob_pattern: /pfs/DATA_PATH/sunav2/*/*/*/*/** - # Join on named location (already joined below by day) - join_indices: [7] - outer_join: true - - path: - name: CALIBRATION_PATH - # Filter for data directory - glob_pattern: /pfs/CALIBRATION_PATH/sunav2/*/*/*/*/** - # Join on named location (already joined below by day) - join_indices: [7] - OUT_PATH: /pfs/out - LOG_LEVEL: INFO - RELATIVE_PATH_INDEX: "3" -input: - join: - - pfs: - name: DATA_PATH - repo: data_source_sunav2 - glob: /sunav2/(*)/(*)/(*) - joinOn: $1/$2/$3 - outer_join: true - empty_files: true - - pfs: - name: CALIBRATION_PATH - repo: sunav2_calibration_assignment - glob: /sunav2/(*)/(*)/(*) - joinOn: $1/$2/$3 - empty_files: true -parallelism_spec: - constant: "1" -enable_stats: false -standby: true diff --git a/pipe/sunav2/sunav2_data_source_kafka.yaml b/pipe/sunav2/sunav2_data_source_kafka.yaml index 3ad6c3ab5..e2a9e1272 100644 --- a/pipe/sunav2/sunav2_data_source_kafka.yaml +++ b/pipe/sunav2/sunav2_data_source_kafka.yaml @@ -2,12 +2,20 @@ pipeline: name: sunav2_data_source_kafka transform: +<<<<<<< HEAD + image: us-central1-docker.pkg.dev/neon-shared-service/bei/neon-avro-kafka-loader:v4.10.1 +======= image: us-central1-docker.pkg.dev/neon-shared-service/bei/neon-avro-kafka-loader:sha-3a11e51 +>>>>>>> master env: # environment variables for kafka loader OUT_PATH: /pfs/out #also used for parser SOURCE_TYPE: "sunav2_raw" +<<<<<<< HEAD + LOG_LEVEL: INFO +======= LOG_LEVEL: DEBUG +>>>>>>> master YEAR_INDEX: "5" MONTH_INDEX: "6" DAY_INDEX: "7" @@ -31,9 +39,12 @@ transform: - name: pachyderm-kafka-auth env_var: KAFKA_BROKER key: KAFKA_BROKER +<<<<<<< HEAD +======= - name: pachyderm-kafka-auth env_var: KAFKA_LOG_TOPIC key: KAFKA_LOG_TOPIC +>>>>>>> master - name: l0-bucket env_var: BUCKET_NAME key: LO_BUCKET @@ -61,6 +72,21 @@ transform: # Get GCP zone meta=$(curl -sH "Metadata-Flavor: Google" "http://metadata/computeMetadata/v1/instance/zone") +<<<<<<< HEAD + zone=$(echo $meta | cut -d "/" -f 4) + echo $zone + + # Get today's date for evaluating kafka data retention period + date_today=$(date -u +%Y-%m-%d) + kafka_min_date=$(date -u -d "$KAFKA_RETENTION_DAYS days ago" +%Y-%m-%d) + + # Get date from input path. Terminal path structure must be /SOURCE_TYPE/YYYY/MM/DD/SITE_FILE + # Datum must be set at /SOURCE_TYPE/YYYY/MM/DD or /SOURCE_TYPE/YYYY/MM/DD/SITE_FILE + date_path=$(echo $import_trigger | cut -f $YEAR_INDEX,$MONTH_INDEX,$DAY_INDEX -d "/") + echo $date_path + date_str=$(date -u +%Y-%m-%d -d $date_path) + +======= zone=$(echo "${meta}" | cut -d "/" -f 4) echo "GCP Zone: ${zone}" @@ -74,12 +100,30 @@ transform: echo "${date_path}" date_str=$(date -u +%Y-%m-%d -d "${date_path}") +>>>>>>> master # Get each site to run if [[ -f ${import_trigger} ]]; then import_trigger_glob="${import_trigger}" else import_trigger_glob="${import_trigger}/*" fi +<<<<<<< HEAD + + sites_output=() + + for site_kafka in $import_trigger_glob; do + site_file=$(basename $site_kafka) # Strip off any path prefix + site=$(echo $site_file | cut -f 1 -d "." --only-delimited) # Extract the site from site.kafka. Ignore site-only files (e.g. CPER vs. CPER.kafka) + type=$(echo $site_file | cut -f 2 -d "." --only-delimited) # Extract the 'kafka' from site.kafka + if [ "$type" != "kafka" ] + then + echo "$site_file is not indicated to be streaming from Kafka. Skipping..." + continue + elif [ "$(date -u +%s -d "$date_str")" -lt "$(date -u +%s -d "$kafka_min_date")" ] + then + echo -n "Cannot extract $date_str Kafka data for $site. " + echo -n "Today's date ($date_today) is beyond the Kafka retention period ($KAFKA_RETENTION_DAYS days). Skipping..." +======= mkdir -p "${OUT_PATH}/${SOURCE_TYPE}" @@ -95,10 +139,62 @@ transform: then echo -n "Cannot extract ${date_str} Kafka data for ${site}. " echo -n "Today's date (${date_today}) is beyond the Kafka retention period (${KAFKA_RETENTION_DAYS} days). Skipping..." +>>>>>>> master continue fi # We are ok to run +<<<<<<< HEAD + echo "Extracting $date_str kafka data for $SOURCE_TYPE at $site" + + # Get "current data" - data that came in on the specified day, which is the same day it was measured + # Note: We cannot use the --removeoffset flag on the kafka loader (which removes the offsets from the filenames. This will often violate the Pachyderm requirement that different datums cannot write the same file) + ./extract-kafka-sensor.py -s $site -S $SOURCE_TYPE -D "$OUT_PATH/$SOURCE_TYPE" -d $date_str --only current --consumer client.rack=$zone + + # Get "non-current data" - data that came in on the specified day, which is NOT the same day it was measured + date_str_1=$(date +%Y-%m-%d -d "$date_str + 1 day") + ./extract-kafka-sensor.py -s $site -S $SOURCE_TYPE -D "$OUT_PATH/$SOURCE_TYPE" -d $date_str_1 --only noncurrent --consumer client.rack=$zone + + sites_output+=($site) + + done + + # Upload L0 files to bucket, compacting with any existing file with the same name + if [[ -d "$OUT_PATH/$SOURCE_TYPE" ]]; then + linkdir=$(mktemp -d) + shopt -s globstar + out_parquet_glob="${OUT_PATH}/**/*.parquet" + # /pfs/out/li191r/2023/01/01/12345/data/file.parquet + echo "Linking output files to ${linkdir}" + # set -x # Uncomment for debugging + for f in $out_parquet_glob; do + # Parse the path + [[ "$f" =~ ^$OUT_PATH/(.*)/([0-9]+)/([0-9]+)/([0-9]+)/(.*)/(.*)/(.*)$ ]] + fsourcetype="${BASH_REMATCH[1]}" + fyear="${BASH_REMATCH[2]}" + fmonth="${BASH_REMATCH[3]}" + fday="${BASH_REMATCH[4]}" + fsourceid="${BASH_REMATCH[5]}" + fname="${BASH_REMATCH[7]}" + # fname_out="${fsourcetype}_${fsourceid}_${fyear}-${fmonth}-${fday}.parquet" # Remove offsets from the filename + outdir="${linkdir}/v2/${fsourcetype}/ms=${fyear}-${fmonth}/source_id=${fsourceid}" + mkdir -p "${outdir}" + ln -s "${f}" "${outdir}/${fname}" + + done + + # Upload to bucket, compacting with any existing file + ./compact-bucket-copy.py --sourcepath "${linkdir}" --destbucket "${BUCKET_NAME}" --stripoffset + + # Update the airflow triggering table + for site_output in "${sites_output[@]}"; do + ./update-trigger-table.py -s $site_output -S $SOURCE_TYPE -D "$OUT_PATH/$SOURCE_TYPE" + done + + # set +x # Uncomment for debugging + rm -rf $linkdir + fi +======= echo "Extracting ${date_str} kafka data for ${site}" # Make a directory to store the output files by site @@ -161,11 +257,44 @@ transform: fi done +>>>>>>> master # run data parser if [[ -d "$OUT_PATH/$SOURCE_TYPE" ]]; then python3 -m raw_data_parsers.raw_data_parser.suna_data_parser_main +<<<<<<< HEAD + # save parsed data to gcs + export SOURCE_TYPE=sunav2 + + linkdir=$(mktemp -d) + shopt -s globstar + out_parquet_glob="${OUT_PATH}/${SOURCE_TYPE}/**/*.parquet" + # /pfs/out/sunav2/2023/01/01/12345/data/file.parquet + echo "Linking output files to ${linkdir}" + # set -x + for f in $out_parquet_glob; do + # Parse the path + [[ "$f" =~ ^$OUT_PATH/(.*)/([0-9]+)/([0-9]+)/([0-9]+)/(.*)/(.*)/(.*)$ ]] + fsourcetype="${BASH_REMATCH[1]}" + fyear="${BASH_REMATCH[2]}" + fmonth="${BASH_REMATCH[3]}" + fday="${BASH_REMATCH[4]}" + fsourceid="${BASH_REMATCH[5]}" + fname="${BASH_REMATCH[7]}" + # fname_out="${fsourcetype}_${fsourceid}_${fyear}-${fmonth}-${fday}.parquet" # Remove offsets from the filename + outdir="${linkdir}/v2/${fsourcetype}/ms=${fyear}-${fmonth}/source_id=${fsourceid}" + mkdir -p "${outdir}" + ln -s "${f}" "${outdir}/${fname}" + + done + + # Upload to bucket, compacting with any existing file + ./compact-bucket-copy.py --sourcepath "${linkdir}" --destbucket "${BUCKET_NAME}" --stripoffset + + # set +x # Uncomment for debugging + rm -rf $linkdir +======= # Upload L0 files to bucket, compacting with any existing file with the same name # when SOURCE_TYPE is sunav2_raw, OUT_SOURCE_TYPE is sunav2 OUT_SOURCE_TYPE=${SOURCE_TYPE%%_raw} @@ -205,6 +334,7 @@ transform: rm -rf $linkdir fi +>>>>>>> master fi @@ -212,11 +342,19 @@ transform: input: pfs: name: import_trigger +<<<<<<< HEAD + repo: sunav2_cron_daily_and_date_control_kafka + # Must be datum by day (e.g. /SOURCE_TYPE/*/*/*) or by day/site (e.g. /SOURCE_TYPE/*/*/*/*) + glob: "/sunav2/*/*/*" +parallelism_spec: + constant: 3 +======= repo: sunav2_cron_daily_and_date_control # Must be datum by day (e.g. /SOURCE_TYPE/*/*/*) or by day/site (e.g. /SOURCE_TYPE/*/*/*/*) glob: "/*/*/*/*" parallelism_spec: constant: 1 +>>>>>>> master autoscaling: true resource_requests: memory: 2.5G diff --git a/pipe/sunav2/sunav2_data_source_trino.yaml b/pipe/sunav2/sunav2_data_source_trino.yaml new file mode 100644 index 000000000..15a3b6079 --- /dev/null +++ b/pipe/sunav2/sunav2_data_source_trino.yaml @@ -0,0 +1,146 @@ +--- +pipeline: + name: sunav2_data_source_trino +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-data-src-trino:v2.3.0 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + + # Refresh interim directories with each datum (otherwise they persist and cause probs) + interimDir="/tmp/interimData" + rm -rf $interimDir + + # Get today's date for evaluating kafka data retention period + date_today=$(date -u +%Y-%m-%d) + kafka_min_date=$(date -u -d "$KAFKA_RETENTION_DAYS days ago" +%Y-%m-%d) + + # Run first module - data_source_site (pull data from database by site) + # Split data source path + for path in $(find -L $import_trigger -type f); do + echo "Processing $path" + p=${path#/pfs} + IFS="/"; arr=($p); unset IFS; + year=${arr[3]} + month=${arr[4]} + day=${arr[5]} + site=${arr[6]} + type=$(echo $site | cut -f 2 -d "." --only-delimited); # Extract the "kafka" from site.kafka if present + if [ "$type" = "kafka" ] && [ $(date -u +%s -d $year-$month-$day) -lt $(date -u +%s -d $kafka_min_date) ] + then + site=$(echo $site | cut -f 1 -d "." --only-delimited); # Extract the site from site.kafka. + echo "$year/$month/$day for $site is indicated to be streaming from Kafka but has passed the Kafka retention period ($KAFKA_RETENTION_DAYS days)." + elif [ "$type" = "kafka" ] + then + echo "$year/$month/$day/$site is indicated to be streaming from Kafka. Skipping..." + continue + fi + echo "Extracting data from Trino for $year/$month/$day/$site" + export GEN_DATE=$year-$month-$day + export GEN_SITE_NAME=$site + export GEN_OUTPUT_DIR=$interimDir/$SOURCE_TYPE/$year/$month/$day + export REQUESTS_CA_BUNDLE=/etc/pki/tls/cert.pem + mkdir -p $GEN_OUTPUT_DIR + /usr/src/app/genscript/genparquet.py --storesitename --codec gzip + done + + # Run second module - parquet_linkmerge (merges data from a source id that collected data from multiple sites in one day + python3 -m parquet_linkmerge.parquet_linkmerge_main + + # Export L0 data to bucket + if [[ -d "$OUT_PATH/$SOURCE_TYPE" ]]; then + linkdir=$(mktemp -d) + shopt -s globstar + out_parquet_glob="${OUT_PATH}/**/*.parquet" + # Example: /pfs/out/sunav2_raw/2023/01/01/12345/data/file.parquet + echo "Linking output files to ${linkdir}" + # set -x # Uncomment for debugging + for f in $out_parquet_glob; do + # Parse the path + [[ "$f" =~ ^$OUT_PATH/(.*)/([0-9]+)/([0-9]+)/([0-9]+)/(.*)/data/(.*)$ ]] + fsourcetype="${BASH_REMATCH[1]}" + fyear="${BASH_REMATCH[2]}" + fmonth="${BASH_REMATCH[3]}" + fday="${BASH_REMATCH[4]}" + fsourceid="${BASH_REMATCH[5]}" + fname="${BASH_REMATCH[6]}" + outdir="${linkdir}/v2/${fsourcetype}/ms=${fyear}-${fmonth}/source_id=${fsourceid}" + mkdir -p "${outdir}" + ln -s "${f}" "${outdir}/${fname}" + done + + echo "Syncing files to bucket" + rclone \ + --no-check-dest \ + --copy-links \ + --gcs-bucket-policy-only \ + --gcs-no-check-bucket \ + --metadata-set "content-type=application/vnd.apache.parquet" \ + copy \ + "${linkdir}" \ + ":gcs://${BUCKET_NAME}" + + echo "Removing temporary files" + rm -rf $linkdir + + # set +x # Uncomment for debugging + fi + EOF + env: + # Environment variables for data conversion step + GEN_YAML_CONF: "/usr/src/app/genscript/configs/sunav2_streams.yaml" + GEN_SCHEMA_FILE: "/usr/src/app/schemas/sunav2/sunav2_raw.avsc" + LOG_LEVEL: INFO + REQUESTS_CA_BUNDLE: "/etc/pki/tls/cert.pem" + # Environment variables for linkmerge step + IN_PATH: /tmp/interimData + OUT_PATH: /pfs/out + SOURCE_TYPE_INDEX: '3' + YEAR_INDEX: '4' + MONTH_INDEX: '5' + DAY_INDEX: '6' + SOURCE_ID_INDEX: '7' + KAFKA_RETENTION_DAYS: "15" + # Environment variables for bash code + SOURCE_TYPE: 'sunav2_raw' + secrets: + - name: pachd-trino-secret + key: TRINO_HOST + env_var: PRESTO_HOST + - name: pachd-trino-secret + key: TRINO_PASSWORD + env_var: PRESTO_PASSWORD + - name: pachd-trino-secret + key: TRINO_USER + env_var: PRESTO_USER + - name: l0-bucket + env_var: BUCKET_NAME + key: LO_BUCKET +input: + pfs: + name: import_trigger + repo: sunav2_cron_daily_and_date_control #update in cert + glob: "/sunav2/*/*/*" +output_branch: master +parallelism_spec: + constant: 5 +autoscaling: true +resource_requests: + memory: 800M + cpu: 1.2 +resource_limits: + memory: 1600M + cpu: 2 +sidecar_resource_requests: + memory: 3G + cpu: 0.5 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_fill_date_gaps.yaml b/pipe/sunav2/sunav2_fill_date_gaps.yaml new file mode 100644 index 000000000..91fd9860f --- /dev/null +++ b/pipe/sunav2/sunav2_fill_date_gaps.yaml @@ -0,0 +1,113 @@ +--- +pipeline: + name: sunav2_fill_date_gaps +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-gap-fill-nonrglr:sha-98108c3 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + + # Refresh interim directories with each datum (otherwise they persist and cause probs) + rm -r -f /tmp/pfs/interim + rm -rf $OUT_PATH + mkdir -p /tmp/pfs/interim + mkdir -p $OUT_PATH # R modules must have pfs in the repo structure + + # Run first module - date-gap-filler (using environment variables below as input parameters) + python3 -m date_gap_filler.date_gap_filler_main + + #run gap filler for nonregularized data + Rscript ./flow.gap.fill.nonrglr.R \ + DirIn=/tmp/pfs/interim \ + DirOut=/pfs/out \ + DirErr=/pfs/out/errored_datums \ + "DirFill=data|flags" \ + WndwFill="015" \ + "DirSubCopy=location|uncertainty_coef" \ + "FileSchm=data:$FILE_SCHEMA_DATA|flags:$FILE_SCHEMA_CAL_FLAGS|flags:$FILE_SCHEMA_LOG_FLAGS" + + EOF + env: + # Environment variables for date gap filler + LOG_LEVEL: INFO + OUT_PATH: /tmp/pfs/interim + OUTPUT_DIRECTORIES: data,location,uncertainty_coef,flags + DATA_SOURCE_TYPE_INDEX: '3' + DATA_YEAR_INDEX: '4' + DATA_MONTH_INDEX: '5' + DATA_DAY_INDEX: '6' + DATA_LOCATION_INDEX: '7' + DATA_TYPE_INDEX: '8' + LOCATION_SOURCE_TYPE_INDEX: '3' + LOCATION_YEAR_INDEX: '4' + LOCATION_MONTH_INDEX: '5' + LOCATION_DAY_INDEX: '6' + LOCATION_INDEX: '7' + EMPTY_FILE_TYPE_INDEX: '4' + LINK_TYPE: COPY # options are COPY or SYMLINK. Use COPY for combined modules. + # Environment variables for regularizer + PARALLELIZATION_INTERNAL: '3' # Parallelization within R. If increased, adjust resource requests appropriately. +input: + cross: + - pfs: + name: EMPTY_FILE_PATH + repo: sunav2_empty_files + glob: /sunav2 + empty_files: false # Make sure to use false if LINK_TYPE=COPY. Can also be set to false for LINK_TYPE=SYMLINK. + - pfs: + name: FILE_SCHEMA_DATA + repo: sunav2_avro_schemas + glob: /sunav2/sunav2_logfilled.avsc + - pfs: + name: FILE_SCHEMA_CAL_FLAGS + repo: sunav2_avro_schemas + glob: /sunav2/sunav2_calibration_flags.avsc + - pfs: + name: FILE_SCHEMA_LOG_FLAGS + repo: sunav2_avro_schemas + glob: /sunav2/sunav2_log_flags.avsc + - group: + - pfs: + name: DATA_PATH + repo: sunav2_location_group_and_restructure + glob: /(*/*/*/*) + group_by: $1 + empty_files: false # Make sure to use false if LINK_TYPE=COPY. Can also be set to false for LINK_TYPE=SYMLINK. + - join: + - pfs: + name: LOCATION_PATH + repo: sunav2_location_active_dates_assignment + glob: /(*/*/*/*) + joinOn: $1 + group_by: $1 + empty_files: false # Make sure to use false if LINK_TYPE=COPY. Can also be set to false for LINK_TYPE=SYMLINK. + - pfs: + name: DATE_LIMITER_PATH + repo: sunav2_cron_daily_and_date_control + glob: /(*/*/*/*) + joinOn: $1 + group_by: $1 + empty_files: true # This can remain true even if LINK_TYPE=COPY + +parallelism_spec: + constant: 5 +autoscaling: true +resource_requests: + memory: 2G + cpu: 3.3 +resource_limits: + memory: 3G + cpu: 4.5 +sidecar_resource_requests: + memory: 3G + cpu: 0.5 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_fill_log_files.yaml b/pipe/sunav2/sunav2_fill_log_files.yaml new file mode 100644 index 000000000..272f9cf96 --- /dev/null +++ b/pipe/sunav2/sunav2_fill_log_files.yaml @@ -0,0 +1,188 @@ +--- +pipeline: + name: sunav2_fill_log_files +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-sunav2-logs-group-fill:sha-4fa99b1 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + # + # Refresh interim directories with each datum (otherwise they persist and cause probs) + rm -rf /tmp/kafka_merged + rm -rf $OUT_PATH_LIMIT_LOGFILES + rm -rf $OUT_PATH_JOIN_SOURCES + mkdir -p /tmp/kafka_merged # Filter joiner relies on the same path positions among inputs (i.e. repo name in 2nd position) + mkdir -p $OUT_PATH_LIMIT_LOGFILES # Filter joiner relies on the same path positions among inputs (i.e. repo name in 2nd position) + mkdir -p $OUT_PATH_JOIN_SOURCES # R modules must have pfs in the repo structure + # + # Check if there is any data (could just be the DATE_CONTROL, in which case we'll skip) + data="F" + if [ ${DATA_PATH_KAFKA+x} ]; then + data="T" + fi + if [ ${DATA_PATH_TRINO+x} ]; then + data="T" + fi + if [ ${DATA_PATH_LOG+x} ]; then + data="T" + fi + if [ $data = "F" ]; then + echo "No actual data in datum. Skipping..." + exit 0 + fi + # + # Get source type + path_glob="/pfs/DATA_PATH_*/*/" + for path in $path_glob; do + # Parse the path + [[ "$path" =~ ^/pfs/DATA_PATH_(.*)/(.*)/$ ]] + source_type="${BASH_REMATCH[2]}" + done + # + # If we have log files, limit them to the dates in the date_control pipeline + echo "Running filter-joiner to limit log files" + export CONFIG=$CONFIG_LIMIT_LOGFILES + export OUT_PATH=$OUT_PATH_LIMIT_LOGFILES + python3 -m filter_joiner.filter_joiner_main + # + # If data come from Kafka, run the Kafka-merger (could be multiple files) + if [ ${DATA_PATH_KAFKA+x} ]; then + # Data from kafka. + # Run kafka combiner + Rscript ./flow.kfka.comb.R \ + DirIn=$DATA_PATH_KAFKA \ + DirOut=/tmp/kafka_merged \ + DirErr=/pfs/out/errored_datums + fi + # Run the filter joiner to merge files from all sources. + echo "Running filter-joiner to merge all data sources" + export CONFIG=$CONFIG_JOIN_SOURCES + export OUT_PATH=$OUT_PATH_JOIN_SOURCES + python3 -m filter_joiner.filter_joiner_main + # + # Run log filler script + Rscript ./flow.sunav2.logfiles.fill.R \ + DirIn=$OUT_PATH_JOIN_SOURCES \ + DirOut=/pfs/out \ + FileSchmData=$FILE_SCHEMA_DATA \ + DirErr=/pfs/out/errored_datums + EOF + env: + # Environment variables for filter-joiner. + # Ensure the path for the kafka data is listed prior to that for the archive data. When a conflict arises, + # such as when Kafka re-streams data, the Kafka data will take precedence because it is + # the latest and greatest. + CONFIG_LIMIT_LOGFILES: | + --- + # Configuration for filter-joiner module that will limit log files to the dates in + # the date control pipeline + # Make sure the DATE_CONTROL path is second. We actually don't want these files and + # they won't be copied if log files for the site are present + # In Pachyderm root will be index 0, 'pfs' index 1, and the repo name index 2. + # Metadata indices will typically begin at index 3. + input_paths: + - path: + name: DATA_PATH_LOG + # Filter for data directory + glob_pattern: /pfs/DATA_PATH_LOG/*/*/*/** + # Join on y/m/d and sourceID + join_indices: [3,4,5,6] + outer_join: False + - path: + name: DATE_CONTROL + # Filter for data directory + glob_pattern: /pfs/DATE_CONTROL/*/*/*/** + # Join on y/m/d and sourceID + join_indices: [3,4,5,6] + outer_join: False + CONFIG_JOIN_SOURCES: | + --- + # Configuration for filter-joiner module that will bring together all sources of data + # Make sure the DATA_PATH_LOG path is second. Any site files from the date_control pipeline + # won't be copied if there are files from the archive, kafka, or the log files. + # In Pachyderm root will be index 0, 'pfs' index 1, and the repo name index 2. + # Metadata indices will typically begin at index 3. + input_paths: + # - path: + # name: DATA_PATH_KAFKA + # # Filter for data directory + # glob_pattern: /tmp/kafka_merged/*/*/*/*/*/** + # # Join on named location (already joined below by day) + # join_indices: [3,4,5,6] + # outer_join: true + - path: + name: DATA_PATH_TRINO + # Filter for data directory + glob_pattern: /pfs/DATA_PATH_TRINO/*/*/*/** + # Join on y/m/d and sourceID + join_indices: [3,4,5,6] + outer_join: True + - path: + name: DATA_PATH_LOG + # Filter for data directory + glob_pattern: /tmp/log_limited/*/*/*/** + # Join on y/m/d and sourceID + join_indices: [3,4,5,6] + outer_join: True + OUT_PATH_LIMIT_LOGFILES: /tmp/log_limited + OUT_PATH_JOIN_SOURCES: /tmp/pfs/filter_joined # Note that R modules use "pfs" in the path structure to determine datums + LOG_LEVEL: DEBUG + RELATIVE_PATH_INDEX: "3" # Must be consistent across inputs + LINK_TYPE: COPY # options are COPY or SYMLINK. MUST BE SIMLINK IF USING COMBINED MODULE. +input: + cross: + - pfs: + name: FILE_SCHEMA_DATA + repo: sunav2_avro_schemas + glob: /sunav2/sunav2_logfilled.avsc + - join: + - pfs: + name: DATA_PATH_TRINO + repo: sunav2_trino_data_parser + glob: /(sunav2/*/*/*) #sunav2/Y/M/D + joinOn: $1 + empty_files: false # Make sure this is false for LINK_TYPE=COPY + outer_join: true + # - pfs: + # name: DATA_PATH_KAFKA + # repo: sunav2_data_source_kafka + # glob: /(sunav2/*/*/*) + # joinOn: $1 + # empty_files: false # Make sure to use false if LINK_TYPE=COPY. Can also be set to false for LINK_TYPE=SYMLINK. + # outer_join: true + - pfs: + name: DATA_PATH_LOG + repo: sunav2_logjam_assign_clean_files + glob: /(sunav2/*/*/*) #sunav2/Y/M/D + joinOn: $1 + empty_files: false # Make sure this is false for LINK_TYPE=COPY + outer_join: true + - pfs: + name: DATE_CONTROL + repo: sunav2_cron_daily_and_date_control + glob: /(sunav2/*/*/*) #sunav2/Y/M/D + joinOn: $1 + empty_files: false # Make sure this is false for LINK_TYPE=COPY + outer_join: true +parallelism_spec: + constant: 5 +autoscaling: true +resource_requests: + memory: 1G + cpu: 1.5 +resource_limits: + memory: 2G + cpu: 2 +sidecar_resource_requests: + memory: 2G + cpu: 0.3 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_location_active_dates_assignment.json b/pipe/sunav2/sunav2_location_active_dates_assignment.json deleted file mode 100644 index 30012ffca..000000000 --- a/pipe/sunav2/sunav2_location_active_dates_assignment.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "pipeline": { - "name": "sunav2_location_active_dates_assignment" - }, - "transform": { - "cmd": [ - "Rscript", - "./flow.loc.grp.asgn.R", - "DirIn=$DIR_IN", - "DirOut=/pfs/out", - "DirErr=/pfs/out/errored_datums", - "FileYear=$FILE_YEAR", - "TypeFile=namedLocation" - ], - "image": "us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-loc-grp-asgn:v1.3.0", - "env": { - "LOG_LEVEL": "INFO" - } - }, - "input": { - "cross": [ - { - "pfs": { - "name": "DIR_IN", - "repo": "location_loader", - "glob": "/sunav2/*" - } - }, - { - "pfs": { - "name": "FILE_YEAR", - "repo": "data_source_sunav2_list_years", - "glob": "/data_year*.txt" - } - } - ] - }, - "enable_stats": false, - "standby": true, - "resource_requests": { - "memory": "200M", - "cpu": 1 - }, - "parallelism_spec": { - "constant": "8" - } -} diff --git a/pipe/sunav2/sunav2_location_active_dates_assignment.yaml b/pipe/sunav2/sunav2_location_active_dates_assignment.yaml new file mode 100644 index 000000000..d685e6dab --- /dev/null +++ b/pipe/sunav2/sunav2_location_active_dates_assignment.yaml @@ -0,0 +1,48 @@ +--- +pipeline: + name: sunav2_location_active_dates_assignment +transform: + cmd: ["/bin/bash"] + stdin: + - "#!/bin/bash" + - export ERR_PATH="/pfs/out/errored_datums$FILE_YEAR" + - Rscript + ./flow.loc.grp.asgn.R + DirIn=$DIR_IN + DirOut=/pfs/out + DirErr=$ERR_PATH + FileYear=$FILE_YEAR + TypeFile=namedLocation + "Prop=HOR|VER|name|description|site|Data Rate|active_periods" + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-loc-grp-asgn:v1.3.0 + # image_pull_secrets: + # - battelleecology-quay-read-all-pull-secret + env: + LOG_LEVEL: INFO +input: + cross: + - pfs: + name: DIR_IN + repo: sunav2_location_loader + glob: /sunav2/* + - pfs: + name: FILE_YEAR + repo: sunav2_cron_daily_and_date_control + glob: /data_year*.txt +parallelism_spec: + constant: 2 +autoscaling: true +resource_requests: + memory: 210M + cpu: 1.2 +resource_limits: + memory: 500M + cpu: 1.6 +sidecar_resource_requests: + memory: 2G + cpu: 0.3 +datum_set_spec: + number: 5 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_location_asset.yaml b/pipe/sunav2/sunav2_location_asset.yaml new file mode 100644 index 000000000..c44f94456 --- /dev/null +++ b/pipe/sunav2/sunav2_location_asset.yaml @@ -0,0 +1,54 @@ +--- +pipeline: + name: sunav2_location_asset +transform: + # image_pull_secrets: + # - battelleecology-quay-read-all-pull-secret + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-loc-asset-loader:v1.1.0 + + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + + # Refresh interim directories with each datum (otherwise they persist and cause probs) + rm -rf $OUT_PATH + mkdir -p $OUT_PATH # R modules must have pfs in the repo structure + + python3 -m location_asset_loader.location_asset_loader_main + + cp -r $OUT_PATH/$SOURCE_TYPE /pfs/out/$SOURCE_TYPE_OUT + + EOF + env: + OUT_PATH: /tmp/out + # ERR_PATH can be changed, it is user specified + ERR_PATH: /pfs/out/errored_datums + LOG_LEVEL: INFO + SOURCE_TYPE: sunav2_raw + SOURCE_TYPE_OUT: sunav2 + secrets: + - name: pdr-secret + mount_path: /var/db_secret +input: + pfs: + repo: sunav2_cron_daily_and_date_control_tick + glob: /* + empty_files: true +autoscaling: true +resource_requests: + memory: 100M + cpu: 0.15 +resource_limits: + memory: 300M + cpu: 0.5 +sidecar_resource_requests: + memory: 250M + cpu: 0.3 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_location_asset_assignment.json b/pipe/sunav2/sunav2_location_asset_assignment.json deleted file mode 100644 index 63121cab2..000000000 --- a/pipe/sunav2/sunav2_location_asset_assignment.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "pipeline": { - "name": "sunav2_location_asset_assignment" - }, - "transform": { - "cmd": [ - "Rscript", - "./flow.loc.grp.asgn.R", - "DirIn=$DIR_IN", - "DirOut=/pfs/out", - "DirErr=/pfs/out/errored_datums", - "FileYear=$FILE_YEAR", - "TypeFile=asset" - ], - "image": "us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-loc-grp-asgn:v1.3.0", - "env": { - "LOG_LEVEL": "INFO" - } - }, - "input": { - "cross": [ - { - "pfs": { - "name": "DIR_IN", - "repo": "location_asset", - "glob": "/sunav2/*" - } - }, - { - "pfs": { - "name": "FILE_YEAR", - "repo": "data_source_sunav2_list_years", - "glob": "/data_year*.txt" - } - } - ] - }, - "enable_stats": false, - "standby": true, - "resource_requests": { - "memory": "210M", - "cpu": 0.3 - }, - "parallelism_spec": { - "constant": "8" - } -} diff --git a/pipe/sunav2/sunav2_location_asset_assignment.yaml b/pipe/sunav2/sunav2_location_asset_assignment.yaml new file mode 100644 index 000000000..209ebf699 --- /dev/null +++ b/pipe/sunav2/sunav2_location_asset_assignment.yaml @@ -0,0 +1,48 @@ +--- +pipeline: + name: sunav2_location_asset_assignment +transform: + cmd: ["/bin/bash"] + stdin: + - "#!/bin/bash" + - export ERR_PATH="/pfs/out/errored_datums$FILE_YEAR" + - Rscript + ./flow.loc.grp.asgn.R + DirIn=$DIR_IN + DirOut=/pfs/out + DirErr=$ERR_PATH + FileYear=$FILE_YEAR + TypeFile=asset + "Prop=HOR|VER|install_date|remove_date|name|site|Data Rate" + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-loc-grp-asgn:v1.3.0 + # image_pull_secrets: + # - battelleecology-quay-read-all-pull-secret + env: + LOG_LEVEL: INFO +input: + cross: + - pfs: + name: DIR_IN + repo: sunav2_location_asset + glob: /sunav2/* + - pfs: + name: FILE_YEAR + repo: sunav2_cron_daily_and_date_control + glob: /data_year*.txt +parallelism_spec: + constant: 2 +autoscaling: true +resource_requests: + memory: 400M + cpu: 1.5 +resource_limits: + memory: 800M + cpu: 2 +sidecar_resource_requests: + memory: 2G + cpu: 0.3 +datum_set_spec: + number: 5 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_location_group_and_restructure.yaml b/pipe/sunav2/sunav2_location_group_and_restructure.yaml new file mode 100644 index 000000000..ab889695d --- /dev/null +++ b/pipe/sunav2/sunav2_location_group_and_restructure.yaml @@ -0,0 +1,97 @@ +--- +pipeline: + name: sunav2_location_group_and_restructure +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-loc-grp-strc-comb:v1.2.1 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + # Refresh interim directories with each datum (otherwise they persist and cause probs) + rm -rf /tmp/pfs/filter_joined + rm -rf /tmp/pfs/structured + rm -rf /tmp/pfs/structuredCopy + mkdir -p /tmp/pfs/filter_joined + # Run first module - filter-joiner (using environment variables below as input parameters) + python3 -m filter_joiner.filter_joiner_main + # Run second module - structure repo by location + Rscript ./flow.loc.repo.strc.R \ + DirIn=/tmp/pfs/filter_joined \ + DirOut=/tmp/pfs/structured \ + DirErr=/pfs/out/errored_datums \ + Comb=TRUE + # Copy output to another interim folder to destroy links (cannot daisy chain links from pfs input to output) + cp -rL /tmp/pfs/structured /tmp/pfs/structuredCopy || : # Allow to fail without exit code (happens if step above produced no output) + rm -rf /tmp/pfs/filter_joined + rm -rf /tmp/pfs/structured + # Run third module - merge data by location + Rscript ./flow.loc.data.trnc.comb.R \ + DirIn=/tmp/pfs/structuredCopy \ + DirOut=/pfs/out \ + DirErr=/pfs/out/errored_datums \ + "DirSubCombData=data|flags" \ + DirSubCombUcrt=uncertainty_coef \ + DirSubCopy=location + EOF + env: + # Environment variables for filter-joiner + CONFIG: | + --- + # In Pachyderm root will be index 0, 'pfs' index 1, and the repo name index 2. + # Metadata indices will typically begin at index 3. + input_paths: + - path: + name: DATA_PATH + # Filter for data directory + glob_pattern: /pfs/DATA_PATH/sunav2/*/*/*/*/** + # Join on named location (already joined below by day) + join_indices: [7] + outer_join: true + - path: + name: LOCATION_PATH + # Filter for data directory + glob_pattern: /pfs/LOCATION_PATH/sunav2/*/*/*/*/** + # Join on named location (already joined below by day) + join_indices: [7] + OUT_PATH: /tmp/pfs/filter_joined + LOG_LEVEL: INFO + RELATIVE_PATH_INDEX: "3" + LINK_TYPE: COPY # options are COPY or SYMLINK. Use COPY for combined module. + # Environment variables for R modules + PARALLELIZATION_INTERNAL: '3' +input: + join: + - pfs: + name: DATA_PATH + repo: sunav2_calibration_group_and_convert + glob: /sunav2/(*)/(*)/(*) + joinOn: $1/$2/$3 + outer_join: true + empty_files: false # Make sure to use false if LINK_TYPE=COPY. Can also be set to false for LINK_TYPE=SYMLINK. + - pfs: + name: LOCATION_PATH + repo: sunav2_location_asset_assignment + glob: /sunav2/(*)/(*)/(*) + joinOn: $1/$2/$3 + empty_files: false # Make sure to use false if LINK_TYPE=COPY. Can also be set to false for LINK_TYPE=SYMLINK. +parallelism_spec: + constant: 5 +autoscaling: true +resource_requests: + memory: 2.2G + cpu: 3.3 +resource_limits: + memory: 4G + cpu: 4.5 +sidecar_resource_requests: + memory: 3G + cpu: 0.5 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_location_loader.yaml b/pipe/sunav2/sunav2_location_loader.yaml new file mode 100644 index 000000000..1f820410a --- /dev/null +++ b/pipe/sunav2/sunav2_location_loader.yaml @@ -0,0 +1,53 @@ +--- +pipeline: + name: sunav2_location_loader +transform: + # image_pull_secrets: + # - battelleecology-quay-read-all-pull-secret + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-loc-loader:v1.0.0 + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + + # Refresh interim directories with each datum (otherwise they persist and cause probs) + rm -rf $OUT_PATH + mkdir -p $OUT_PATH # R modules must have pfs in the repo structure + + python3 -m location_loader.location_loader_main #run the location loader + + cp -r $OUT_PATH/$SOURCE_TYPE /pfs/out/$SOURCE_TYPE_OUT + + EOF + env: + LOCATION_TYPE: CONFIG + SOURCE_TYPE: sunav2_raw + SOURCE_TYPE_OUT: sunav2 + OUT_PATH: /tmp/out + LOG_LEVEL: INFO + ERR_PATH: /pfs/out/errored_datums + secrets: + - name: pdr-secret + mount_path: /var/db_secret +input: + pfs: + repo: sunav2_cron_daily_and_date_control_tick + glob: /* + empty_files: true +autoscaling: true +resource_requests: + memory: 100M + cpu: 0.1 +resource_limits: + memory: 300M + cpu: 0.5 +sidecar_resource_requests: + memory: 300M + cpu: 0.3 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_logjam_assign_clean_files.yaml b/pipe/sunav2/sunav2_logjam_assign_clean_files.yaml new file mode 100644 index 000000000..e382a87d3 --- /dev/null +++ b/pipe/sunav2/sunav2_logjam_assign_clean_files.yaml @@ -0,0 +1,47 @@ +--- +pipeline: + name: sunav2_logjam_assign_clean_files +transform: + cmd: ["/bin/bash"] + stdin: + - "#!/bin/bash" + - Rscript + ./flow.sunav2.logfiles.R + DirIn=$DIR_IN + DirOut=/pfs/out + DirErr=$ERR_PATH + FileSchmData=$FILE_SCHEMA_DATA + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-sunav2-logfiles:sha-538bf66 + # image_pull_secrets: + # - battelleecology-quay-read-all-pull-secret + env: + LOG_LEVEL: DEBUG + ERR_PATH: /pfs/out/errored_datums +input: + cross: + - pfs: + name: FILE_SCHEMA_DATA + repo: sunav2_avro_schemas + glob: /sunav2/sunav2_logfilled.avsc + - join: + - pfs: + name: DIR_IN + repo: sunav2_logjam_load_files + glob: /* +parallelism_spec: + constant: 5 +autoscaling: true +resource_requests: + memory: 1G + cpu: 1.5 +resource_limits: + memory: 1.5G + cpu: 2 +sidecar_resource_requests: + memory: 3G + cpu: 1 +datum_set_spec: + number: 5 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_logjam_list_files.yaml b/pipe/sunav2/sunav2_logjam_list_files.yaml new file mode 100644 index 000000000..68db8f5cf --- /dev/null +++ b/pipe/sunav2/sunav2_logjam_list_files.yaml @@ -0,0 +1,32 @@ +--- +pipeline: + name: sunav2_logjam_list_files +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-logjam-loader:v2.0.0 + cmd: ["/bin/bash"] + env: + LOGJAM_INGEST_BUCKET: neon-is-logjam-ingest + OUT_PATH: /pfs/out + LOG_LEVEL: DEBUG + stdin: + - "#!/bin/bash" + - python3 --version + - python3 -m logjam_loader.logjam_loader +input: + pfs: + repo: nitrate_cron_monthly_and_pub_control_tick + glob: /(*-*)-* + empty_files: true +autoscaling: true +resource_requests: + memory: 1G + cpu: 1 +resource_limits: + memory: 1.5G + cpu: 1.5 +sidecar_resource_requests: + memory: 1G + cpu: 0.4 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_logjam_load_files.yaml b/pipe/sunav2/sunav2_logjam_load_files.yaml new file mode 100644 index 000000000..ffd1e04bf --- /dev/null +++ b/pipe/sunav2/sunav2_logjam_load_files.yaml @@ -0,0 +1,45 @@ +--- +pipeline: + name: sunav2_logjam_load_files +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-logjam-loader:v2.0.0 + cmd: + - /bin/bash + stdin: + - '#!/bin/bash' + - python3 --version + - python3 -c "import environs; print(environs.__version__)" + - python3 -c "import marshmallow; print(marshmallow.__version__)" + - python3 -m logjam_loader.load_all_logjam_files + + env: + LOGJAM_INGEST_BUCKET: neon-is-logjam-ingest + OUT_PATH: /pfs/out + LOG_LEVEL: DEBUG + STARTING_PATH_INDEX: "7" + secrets: + - name: pdr-secret + mount_path: /var/db_secret +input: + pfs: + name: IN_PATH + repo: sunav2_logjam_list_files + glob: /*/*/*/logjam_prod/sunav2/ + empty_files: true +parallelism_spec: + constant: 10 +autoscaling: true +resource_requests: + memory: 500M + cpu: 0.5 +resource_limits: + memory: 1G + cpu: 1.5 +sidecar_resource_requests: + memory: 2G + cpu: 0.2 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/pipe/sunav2/sunav2_merge_data_by_location.json b/pipe/sunav2/sunav2_merge_data_by_location.json deleted file mode 100644 index bfdfea21f..000000000 --- a/pipe/sunav2/sunav2_merge_data_by_location.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pipeline": { - "name": "sunav2_merge_data_by_location" - }, - "transform": { - "cmd": [ - "Rscript", - "./flow.loc.data.trnc.comb.R", - "DirIn=$DIR_IN", - "DirOut=/pfs/out", - "DirErr=/pfs/out/errored_datums", - "DirSubCombData=data", - "DirSubCopy=location|calibration" - ], - "image": "us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-loc-data-trnc-comb:v1.1.1", - "env": { - "LOG_LEVEL": "INFO", - "PARALLELIZATION_INTERNAL": "1" - } - }, - "input": { - "pfs": { - "name": "DIR_IN", - "repo": "sunav2_structure_repo_by_location", - "glob": "/sunav2/*/*/*" - } - }, - "enable_stats": false, - "standby": false, - "resource_requests": { - "memory": "80M", - "cpu": 0.3 - } -} diff --git a/pipe/sunav2/sunav2_structure_repo_by_location.json b/pipe/sunav2/sunav2_structure_repo_by_location.json deleted file mode 100644 index edb59b29c..000000000 --- a/pipe/sunav2/sunav2_structure_repo_by_location.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "pipeline": { - "name": "sunav2_structure_repo_by_location" - }, - "transform": { - "cmd": [ - "Rscript", - "./flow.loc.repo.strc.R", - "DirIn=$DIR_IN", - "DirOut=/pfs/out", - "DirErr=/pfs/out/errored_datums", - "Comb=TRUE" - ], - "image": "us-central1-docker.pkg.dev/neon-shared-service/neonscience/neon-is-loc-repo-strc:v1.0.7", - "env": { - "LOG_LEVEL": "INFO" - } - }, - "input": { - "pfs": { - "name": "DIR_IN", - "repo": "sunav2_calibrated_location_group", - "glob": "/sunav2/*/*/*" - } - }, - "enable_stats": false, - "standby": true, - "resource_requests": { - "memory": "100M", - "cpu": 0.13 - } -} diff --git a/pipe/sunav2/sunav2_trino_data_parser.yaml b/pipe/sunav2/sunav2_trino_data_parser.yaml new file mode 100644 index 000000000..d15be2042 --- /dev/null +++ b/pipe/sunav2/sunav2_trino_data_parser.yaml @@ -0,0 +1,98 @@ +pipeline: + name: sunav2_trino_data_parser +transform: + image: us-central1-docker.pkg.dev/neon-shared-service/bei/neon-avro-kafka-loader:v4.13.1 + env: + # if use default PARSED_START_INDEX and PARSED_END_INDEX, parse all elements in parse_field + # if use default for FIELD_START_INDEX and FIELD_END_INDEX, + # skip first 3 fields (source_id, site_id, readout_time) in parsed schema + LOG_LEVEL: DEBUG + OUT_PATH: /pfs/out + PARSE_FIELD: serial_output + RELATIVE_PATH_INDEX: "4" + PARSED_SCHEMA_PATH: /usr/src/app/parsed-schemas/sunav2/sunav2_parsed.avsc + SOURCE_TYPE: 'sunav2_raw' + secrets: + - name: l0-bucket + env_var: BUCKET_NAME + key: LO_BUCKET + - name: pdr-secret + env_var: PDR_HOST + key: hostname + - name: pdr-secret + env_var: PDR_DBNAME + key: database + - name: pdr-secret + env_var: PDR_USER + key: username + - name: pdr-secret + env_var: PDR_PASSWORD + key: password + cmd: + - sh + - "-c" + - |- + /bin/bash <<'EOF' + + # Use bash-scrict mode. See http://redsymbol.net/articles/unofficial-bash-strict-mode/ + set -euo pipefail + IFS=$'\n\t' + + # run data parser + python3 -m raw_data_parsers.raw_data_parser.suna_data_parser_main + + # Upload L0 files to bucket, compacting with any existing file with the same name + # when SOURCE_TYPE is sunav2_raw, OUT_SOURCE_TYPE is sunav2 + OUT_SOURCE_TYPE=${SOURCE_TYPE%%_raw} + if [[ -d "$OUT_PATH/$OUT_SOURCE_TYPE" ]]; then + linkdir=$(mktemp -d) + shopt -s globstar + out_parquet_glob="${OUT_PATH}/**/*.parquet" + # /pfs/out/sunav2/2023/01/01/12345/data/file.parquet + echo "Linking output files to ${linkdir}" + # set -x # Uncomment for debugging + for f in $out_parquet_glob; do + # Parse the path + [[ "$f" =~ ^$OUT_PATH/(.*)/([0-9]+)/([0-9]+)/([0-9]+)/(.*)/data/(.*)$ ]] + fsourcetype="${BASH_REMATCH[1]}" + fyear="${BASH_REMATCH[2]}" + fmonth="${BASH_REMATCH[3]}" + fday="${BASH_REMATCH[4]}" + fsourceid="${BASH_REMATCH[5]}" + fname="${BASH_REMATCH[6]}" + outdir="${linkdir}/v2/${fsourcetype}/ms=${fyear}-${fmonth}/source_id=${fsourceid}" + mkdir -p "${outdir}" + ln -s "${f}" "${outdir}/${fname}" + + done + + # Upload to bucket, compacting with any existing file + ./compact-bucket-copy.py --sourcepath "${linkdir}" --destbucket "${BUCKET_NAME}" + + # set +x # Uncomment for debugging + rm -rf $linkdir + fi + + EOF +input: + pfs: + name: DATA_PATH + repo: sunav2_data_source_trino + glob: /sunav2_raw/*/*/* +parallelism_spec: + constant: 3 +autoscaling: true +resource_requests: + memory: 1.5G + cpu: 0.5 +resource_limits: + memory: 3G + cpu: 1.5 +sidecar_resource_requests: + memory: 2G + cpu: 0.5 +datum_set_spec: + number: 1 +scheduling_spec: + node_selector: + cloud.google.com/compute-class: pach-pipeline-class diff --git a/utilities/vignettes/stand_up_product_dag_example.sh b/utilities/vignettes/stand_up_product_dag_example.sh index 43f21b6f9..1c8301954 100644 --- a/utilities/vignettes/stand_up_product_dag_example.sh +++ b/utilities/vignettes/stand_up_product_dag_example.sh @@ -9,12 +9,12 @@ # Define paths data_path='/scratch/pfs' # Where base repos like avro_schemas, empty_files, etc. are stored -git_path_pipelines='/home/NEON/ncatolico/NEON-IS-data-processing-homeDir/pipe' -git_path_avro='/home/NEON/ncatolico/NEON-IS-avro-schemas' -git_path_avro_l0='/home/NEON/ncatolico/neon-avro-schemas' +git_path_pipelines='/home/NEON/ncatolico/R/NEON-IS-data-processing/pipe' +git_path_avro='/home/NEON/ncatolico/R/NEON-IS-avro-schemas' +#git_path_avro_l0='/home/NEON/ncatolico/neon-avro-schemas' pipe_list_prefix='pipe_list_' -source_type='tchain' -product='tempSpecificDepthLakes' +source_type='sunav2' +product='nitrate' # Define paths based on base paths and product information above spec_path_source_type=$git_path_pipelines/$source_type